-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
run-gui.js
475 lines (419 loc) · 17.5 KB
/
run-gui.js
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
const fs = require('fs-extra');
const ps = require('ps-node');
const request = require('https').request;
const {URL} = require('url');
const semver = require('semver');
const asar = require('asar');
const path = require('path');
const {spawn} = require("child_process");
const open = require('open');
const express = require('express');
const xApp = express();
let io = require('socket.io');
let client = null;
let version = '0';
let started = false;
let updURL = 'https://raw.githubusercontent.com/m4heshd/whatsapp-desktop-dark/master/package.json';
let bkPath = path.join(__dirname, 'backup', 'app.asar');
let WAPath = null;
let platform = process.platform;
let execPath = '/Applications/WhatsApp.app/Contents/MacOS/WhatsApp';
let command = 'WhatsApp.exe';
let psargs = 'ux';
if (platform === 'darwin') {
WAPath = '/Applications/WhatsApp.app/Contents/Resources/app.asar';
command = execPath;
psargs = 'ax';
}
//Backend setup
exports.startGUI = function () {
xApp.use(express.static(path.join(__dirname, 'gui')));
let xServ = xApp.listen(3210, function () {
console.log('WADark GUI installer backend started');
openInstaller();
});
io = io(xServ, {
pingTimeout: 90000
});
io.on('connection', function (socket) {
if (!started) {
client = socket;
console.log('WADark installer client connected. ID - ' + socket.id);
//Incoming messages
client.on('startInstall', function () {
setOLTxt('Identifying process..');
if (fs.existsSync(bkPath)) {
ask('Current backup will be replaced and it cannot be undone. Are you sure want to continue?', function () {
validateAndStart(false);
}, function () {
say('Hope you\'re enjoying WhatsApp dark.. :)');
hideOL();
});
} else {
validateAndStart(false);
}
});
client.on('startRestore', function () {
setOLTxt('Identifying process..');
if (fs.existsSync(bkPath)) {
validateAndStart(true);
} else {
say('Unable to locate the backup file');
hideOL();
}
});
client.on('endApp', function () {
console.log('Quitting the installer..\n');
client.disconnect();
process.exit(0);
});
client.on('checkUpd', function () {
checkAppUpd(false);
});
if (platform === 'darwin') {
setMacUI();
}
startInit();
} else {
console.log('Client connection rejected. ID - ' + socket.id);
socket.emit('setOLTxt', 'One instance of the process is already running.. Please restart if this is an error.');
}
});
};
//Backend functions
function startInit() {
showOL('Reading version info..');
fs.readJson(path.join(__dirname, 'info.json'), (error, infoJSON) => {
if (!error) {
version = infoJSON.version;
// version = "0.3.4940";
setVersion('v' + version);
checkAppUpd(true);
} else {
console.log(error);
start();
}
});
}
function checkAppUpd(isStart) {
showOL('Checking for updates..');
let req = request(new URL(updURL), function (res) {
res.on('data', (d) => {
let latest = JSON.parse(d.toString())['version'];
if (semver.lt(version, latest)) {
ask('A new update is available (v' + latest + '). Would you like to download?', openDownload, start);
} else {
if (isStart) {
start();
} else {
hideOL();
say('Your script copy is up to date.');
}
}
});
});
req.on('error', (e) => {
console.log(e);
if (isStart) {
start();
} else {
hideOL();
}
});
req.end();
}
function start() {
getThemes(function () {
endInit(fs.existsSync(bkPath));
});
}
function validateAndStart(isRestore) {
if (platform === 'darwin') {
if (fs.existsSync(WAPath)) {
startInstall(isRestore);
} else {
say('Unable to locate your WhatsApp Desktop installation. Check again and retry.');
hideOL();
}
} else {
startInstall(isRestore);
}
}
function startInstall(isRestore) {
started = true;
ps.lookup({
command: command,
psargs: psargs
}, function (err, resultList) {
if (err) {
console.log(err);
} else {
if (resultList.length) {
setOLTxt('Please close WhatsApp Desktop manually to continue installation.. </br>(Please wait if you already have)');
if (platform === 'win32') {
WAPath = resultList[0].command;
execPath = WAPath;
}
startInstall(isRestore);
} else {
if (WAPath) {
if (isRestore) {
restoreBackup(WAPath);
} else {
if (fs.existsSync(path.join(__dirname, 'override.json'))) {
overrideStyles();
} else {
applyDarkStyles(WAPath);
}
}
} else {
say('WhatsApp process not found. Make sure WhatsApp desktop is running before installing dark mode.');
hideOL();
started = false;
}
}
}
});
}
function applyDarkStyles(procPath) {
console.log('\x1b[33m%s\x1b[0m', 'TIP: You can create/download custom themes using "override.json" (Instructions are in the documentation)\n');
try {
let dir = path.dirname(procPath);
let fullpath = path.join(dir, 'resources', 'app.asar');
if (platform === 'darwin') {
fullpath = procPath;
}
setOLTxt('Backing up..');
fs.copySync(fullpath, bkPath);
setOLTxt('Extracting..');
let extPath = path.join(__dirname, 'extracted');
asar.extractAll(fullpath, extPath);
setOLTxt('Injecting styles..');
let stylePath = path.join(__dirname, 'styles', platform);
if (fs.existsSync(path.join(extPath, 'index.html'))) {
try {
fs.copySync(stylePath, extPath);
let newAsar = path.join(__dirname, 'app.asar');
asar.createPackage(extPath, newAsar, function () {
setOLTxt('Replacing files..');
try {
fs.copySync(newAsar, fullpath);
setOLTxt('Cleaning up..');
fs.removeSync(extPath);
fs.removeSync(newAsar);
let bkPath = path.join(__dirname, 'styles', platform, 'bk');
fs.copySync(path.join(bkPath, 'dark.css'), path.join(stylePath, 'dark.css'));
fs.copySync(path.join(bkPath, 'index.html'), path.join(stylePath, 'index.html'));
fs.removeSync(bkPath);
say('All done. May your beautiful eyes burn no more.. Enjoy WhatsApp Dark mode!! :)');
let WAPP = spawn(execPath, [], {
detached: true,
stdio: ['ignore', 'ignore', 'ignore']
});
WAPP.unref();
startInit();
started = false;
} catch (error) {
console.log(error);
setOLTxt('An error occurred. Cleaning up..');
fs.removeSync(extPath);
fs.removeSync(newAsar);
startInit();
started = false;
}
});
} catch (error) {
console.log(error);
hideOL();
started = false;
}
} else {
say('\x1b[31m%s\x1b[0m', 'Failed to extract WhatsApp source.');
hideOL();
started = false;
}
} catch (error) {
console.log(error);
hideOL();
started = false;
}
}
function overrideStyles() {
let stylePath = path.join(__dirname, 'styles', platform, 'dark.css');
let htmlPath = path.join(__dirname, 'styles', platform, 'index.html');
let bkPath = path.join(__dirname, 'styles', platform, 'bk');
fs.copySync(stylePath, path.join(bkPath, 'dark.css'));
fs.copySync(htmlPath, path.join(bkPath, 'index.html'));
fs.readJson(path.join(__dirname, 'override.json'), (error, ovrdJSONObject) => {
if (!error) {
getSelectedTheme(function (selTheme) {
setOLTxt('Applying theme "' + selTheme + '"..');
let ovrdJSON = ovrdJSONObject.find(x => x.themeName === selTheme);
let themeName = ((ovrdJSON.themeName === undefined) ? 'Unknown' : ovrdJSON.themeName);
let dark = ((ovrdJSON.dark === undefined) ? '#272c35' : ovrdJSON.dark);
let dark_alpha = ((ovrdJSON.dark_alpha === undefined) ? 'rgba(39, 44, 53, 0.89)' : ovrdJSON.dark_alpha);
let darker = ((ovrdJSON.darker === undefined) ? '#1f232a' : ovrdJSON.darker);
let bgcol = ((ovrdJSON.bgcol === undefined) ? '#101318' : ovrdJSON.bgcol);
let light = ((ovrdJSON.light === undefined) ? '#d1d1d1' : ovrdJSON.light);
let lighter = ((ovrdJSON.lighter === undefined) ? '#e9e9e9' : ovrdJSON.lighter);
let accent = ((ovrdJSON.accent === undefined) ? '#5792ff' : ovrdJSON.accent);
let accent2 = ((ovrdJSON.accent2 === undefined) ? '#09d261' : ovrdJSON.accent2);
let icon = ((ovrdJSON.icon === undefined) ? '#e1e1e1' : ovrdJSON.icon);
let shadow = ((ovrdJSON.shadow === undefined) ? 'rgba(0, 0, 0, 0.12)' : ovrdJSON.shadow);
let mred = ((ovrdJSON.mred === undefined) ? '#dd3b4f' : ovrdJSON.mred);
let mgreen = ((ovrdJSON.mgreen === undefined) ? '#70A352' : ovrdJSON.mgreen);
let mblue = ((ovrdJSON.mblue === undefined) ? '#527AA3' : ovrdJSON.mblue);
let msgout = ((ovrdJSON.msgout === undefined) ? '#131a25' : ovrdJSON.msgout);
let win_title = ((ovrdJSON.win_title === undefined) ? 'var(--accent)' : ovrdJSON.win_title);
let ctl_hover = ((ovrdJSON.ctl_hover === undefined) ? 'var(--darker)' : ovrdJSON.ctl_hover);
let dark_title = ((ovrdJSON.dark_title === undefined) ? true : ovrdJSON.dark_title);
fs.readFile(stylePath, 'utf8', (err, data) => {
if (!err) {
let newStyle = data;
newStyle = newStyle.replace(/^.*--dark:.*$/mg, " --dark: " + dark + ";");
newStyle = newStyle.replace(/^.*--dark_alpha:.*$/mg, " --dark_alpha: " + dark_alpha + ";");
newStyle = newStyle.replace(/^.*--darker:.*$/mg, " --darker: " + darker + ";");
newStyle = newStyle.replace(/^.*--bgcol:.*$/mg, " --bgcol: " + bgcol + ";");
newStyle = newStyle.replace(/^.*--light:.*$/mg, " --light: " + light + ";");
newStyle = newStyle.replace(/^.*--lighter:.*$/mg, " --lighter: " + lighter + ";");
newStyle = newStyle.replace(/^.*--accent:.*$/mg, " --accent: " + accent + ";");
newStyle = newStyle.replace(/^.*--accent2:.*$/mg, " --accent2: " + accent2 + ";");
newStyle = newStyle.replace(/^.*--icon:.*$/mg, " --icon: " + icon + ";");
newStyle = newStyle.replace(/^.*--shadow:.*$/mg, " --shadow: " + shadow + ";");
newStyle = newStyle.replace(/^.*--mred:.*$/mg, " --mred: " + mred + ";");
newStyle = newStyle.replace(/^.*--mgreen:.*$/mg, " --mgreen: " + mgreen + ";");
newStyle = newStyle.replace(/^.*--mblue:.*$/mg, " --mblue: " + mblue + ";");
newStyle = newStyle.replace(/^.*--msgout:.*$/mg, " --msgout: " + msgout + ";");
newStyle = newStyle.replace(/^.*--win_title:.*$/mg, " --win_title: " + win_title + ";");
newStyle = newStyle.replace(/^.*--ctl_hover:.*$/mg, " --ctl_hover: " + ctl_hover + ";");
if (dark_title === false) {
newStyle = newStyle.replace("background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));", "");
}
fs.outputFile(stylePath, newStyle, err => {
if (err) {
console.log('\x1b[31m%s\x1b[0m', 'Unable to process the request.\n');
console.error(err);
applyDarkStyles(WAPath);
} else {
fs.readFile(htmlPath, 'utf8', (err, data) => {
if (!err) {
let newHtml = data.replace("progress[value]::-webkit-progress-value{background-color:#5792ff}progress[value]::-moz-progress-bar{background-color:#5792ff}", "progress[value]::-webkit-progress-value{background-color:" + accent + "}progress[value]::-moz-progress-bar{background-color:" + accent + "}");
fs.outputFile(htmlPath, newHtml, err => {
if (err) {
console.log('\x1b[31m%s\x1b[0m', 'Unable to process the request.\n');
console.error(err);
applyDarkStyles(WAPath);
} else {
console.log('\x1b[32m%s\x1b[0m', '\nTheme "' + themeName + '" was successfully applied.\n');
applyDarkStyles(WAPath);
}
});
} else {
console.log('\x1b[31m%s\x1b[0m', 'Unable to process the request.\n');
console.error(err);
applyDarkStyles(WAPath);
}
});
}
});
} else {
console.log('\x1b[31m%s\x1b[0m', 'Unable to process the request.\n');
console.error(err);
applyDarkStyles(WAPath);
}
});
});
} else {
console.log('\x1b[31m%s\x1b[0m', 'Unable to read "override.json" file.\n');
console.log(error);
applyDarkStyles(WAPath);
}
});
}
function restoreBackup(procPath) {
setOLTxt('Restoring original version of the application...');
started = true;
let dir = path.dirname(procPath);
let fullpath = path.join(dir, 'resources', 'app.asar');
if (platform === 'darwin') {
fullpath = procPath;
}
try {
fs.copySync(bkPath, fullpath);
say('All done. Make sure to let the developers know if something was wrong.. :)');
let WAPP = spawn(execPath, [], {
detached: true,
stdio: ['ignore', 'ignore', 'ignore']
});
WAPP.unref();
hideOL();
started = false;
} catch (error) {
say('An error occurred while restoring.');
console.log(error);
hideOL();
started = false;
}
}
function getThemes(callback) {
showOL('Loading themes..');
fs.readJson(path.join(__dirname, 'override.json'), (error, ovrdJSONObject) => {
if (!error) {
setThemeNames(ovrdJSONObject);
callback();
} else {
say('Unable to read "override.json" file.');
console.log(error);
callback();
}
});
}
function openDownload() {
(async () => {
await open('https://github.com/m4heshd/whatsapp-desktop-dark/releases/latest');
})();
}
function openInstaller() {
(async () => {
await open('http://127.0.0.1:3210/');
})();
}
//Client functions
function setOLTxt(text) {
client.emit('setOLTxt', text);
}
function showOL(text) {
client.emit('showOL', text);
}
function hideOL() {
client.emit('hideOL');
}
function setMacUI() {
client.emit('setMacUI');
}
function setVersion(ver) {
client.emit('setVersion', ver);
}
function setThemeNames(themes) {
client.emit('setThemeNames', themes);
}
function endInit(isBkAvail) {
client.emit('endInit', isBkAvail);
}
function ask(text, yes, no) {
client.emit('ask', text, function (resp) {
if (resp) {
yes();
} else {
no();
}
});
}
function say(msg) {
client.emit('say', msg);
}
function getSelectedTheme(callback) {
client.emit('getSelectedTheme', function (resp) {
callback(resp);
});
}