forked from neutralinojs/neutralinojs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchrome.cpp
More file actions
138 lines (116 loc) · 4.54 KB
/
chrome.cpp
File metadata and controls
138 lines (116 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#include <string>
#include <vector>
#include <regex>
#include "lib/json/json.hpp"
#include "lib/filedialogs/portable-file-dialogs.h"
#include "settings.h"
#include "helpers.h"
#include "api/os/os.h"
#include "api/fs/fs.h"
using namespace std;
using json = nlohmann::json;
/*
* C++ rewrite of https://github.com/zserge/lorca/ (Go-based) concept
*/
namespace chrome {
string __getDefaultChromeArgs() {
return "--disable-background-networking "
"--disable-background-timer-throttling "
"--disable-backgrounding-occluded-windows "
"--disable-breakpad "
"--disable-client-side-phishing-detection "
"--disable-default-apps "
"--disable-dev-shm-usage "
"--disable-infobars "
"--disable-extensions "
"--disable-features=site-per-process "
"--disable-hang-monitor "
"--disable-ipc-flooding-protection "
"--disable-popup-blocking "
"--disable-prompt-on-repost "
"--disable-renderer-backgrounding "
"--disable-sync "
"--disable-translate "
"--disable-windows10-custom-titlebar "
"--metrics-recording-only "
"--no-first-run "
"--no-default-browser-check "
"--safebrowsing-disable-auto-update "
"--password-store=basic "
"--use-mock-keychain";
}
string __findChrome(const json &input) {
string chromePath = "";
#if defined(__linux__)
vector<string> chromeBins = {
"/usr/bin/google-chrome-stable",
"/usr/bin/google-chrome",
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
"/snap/bin/chromium",
};
#elif defined(__APPLE__)
vector<string> chromeBins = {
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary",
"/Applications/Chromium.app/Contents/MacOS/Chromium",
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge",
"/usr/bin/google-chrome-stable",
"/usr/bin/google-chrome",
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
};
#elif defined(_WIN32)
vector<string> chromeBins = {
os::getEnv("LocalAppData") + "/Google/Chrome/Application/chrome.exe",
os::getEnv("ProgramFiles") + "/Google/Chrome/Application/chrome.exe",
os::getEnv("ProgramFiles(x86)") + "/Google/Chrome/Application/chrome.exe",
os::getEnv("LocalAppData") + "/Chromium/Application/chrome.exe",
os::getEnv("ProgramFiles") + "/Chromium/Application/chrome.exe",
os::getEnv("ProgramFiles(x86)") + "/Chromium/Application/chrome.exe",
os::getEnv("ProgramFiles(x86)") + "/Microsoft/Edge/Application/msedge.exe",
os::getEnv("ProgramFiles") + "/Microsoft/Edge/Application/msedge.exe",
};
#endif
string browserBinaryKeyForOs = "browserBinary" + string(NEU_OS_NAME);
if(helpers::hasField(input, "browserBinary") || helpers::hasField(input, browserBinaryKeyForOs)) {
string customBin = helpers::hasField(input, browserBinaryKeyForOs) ? input[browserBinaryKeyForOs].get<string>() :
input["browserBinary"].get<string>();
chromeBins.insert(chromeBins.begin(), fs::applyPathConstants(customBin));
}
for(const string &cmd: chromeBins) {
fs::FileStats stats = fs::getStats(cmd);
if(stats.status == errors::NE_ST_OK && stats.entryType == fs::EntryTypeFile) {
chromePath = cmd;
break;
}
}
return chromePath;
}
void init(const json &input) {
string chromeCmd = __findChrome(input);
if(chromeCmd.empty()) {
pfd::message("Unable to start Chrome mode",
"You need to install Google Chrome to run this Neutralinojs application",
pfd::choice::ok,
pfd::icon::error);
std::exit(1);
}
if(regex_search(chromeCmd, regex(" "))) {
chromeCmd = "\"" + chromeCmd + "\"";
}
chromeCmd += " " + __getDefaultChromeArgs();
chromeCmd += " --user-data-dir=\"" + settings::joinAppDataPath("/.tmp/chromedata") + "\"";
chromeCmd += " --app=\"" + input["url"].get<string>() + "\"";
if(helpers::hasRequiredFields(input, {"width", "height"})) {
chromeCmd += " --window-size=" + to_string(input["width"].get<int>()) +
"," + to_string(input["height"].get<int>());
}
if(helpers::hasField(input, "args")) {
chromeCmd += " " + input["args"].get<string>();
}
os::ChildProcessOptions processOptions;
processOptions.background = true;
os::execCommand(chromeCmd, processOptions);
}
} // namespace chrome