-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrap.js
435 lines (368 loc) · 15.3 KB
/
bootstrap.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
// Imports
const {classes: Cc, interfaces: Ci, manager: Cm, results: Cr, utils: Cu, Constructor: CC} = Components;
Cu.import('resource://gre/modules/osfile.jsm');
Cu.import('resource://gre/modules/Services.jsm');
// Globals
var core = { // brought over from background.js if needed
path: {
chrome: {
scripts: 'chrome://profilist/content/webextension/scripts/'
}
}
};
var gAndroidMenus = [];
var gBgComm;
var gWkComm;
var callInBackground;
var callInExe;
var callInMainworker;
function install() {}
function uninstall(aData, aReason) {
if (OS.Constants.Sys.Name != 'Android' && aReason == ADDON_UNINSTALL) {
uninstallNativeMessaging() // if it wasnt installed, then this will do nothing
.then(valarr => { console.log('uninstalled:', valarr); cleanupNativeMessaging(); })
.catch(err => console.error('uninstall error:', err));
}
}
function startup(aData, aReason) {
Services.scriptloader.loadSubScript(core.path.chrome.scripts + 'comm/webext.js');
var promiseallarr = [];
// if (OS.Constants.Sys.Name != 'Android' && [ADDON_DOWNGRADE, ADDON_UPGRADE, ADDON_INSTALL].includes(aReason)) {
// promiseallarr.push( installNativeMessaging() );
// }
// wait for all promises, then startup webext
Promise.all(promiseallarr)
.then(valarr => {
console.log('valarr:', valarr);
gBgComm = new Comm.server.webext(aData.webExtension); // starts up the webext
callInBackground = Comm.callInX2.bind(null, gBgComm, null, null);
callInExe = Comm.callInX2.bind(null, gBgComm, 'gExeComm', null);
})
.catch( caught => console.error('Failed to prepare for webext startup, caught:', caught) );
}
function shutdown(aData, aReason) {
if (aReason == APP_SHUTDOWN) return;
shutdownAndroid(); // if its not android it wont do anything
}
// start - mainworker stuff
function startupMainworker(aArg) {
var { path, initdata } = aArg;
gWkComm = new Comm.server.worker(path, initdata ? ()=>initdata : undefined, undefined, onMainworkerBeforeShutdown);
callInMainworker = Comm.callInX2.bind(null, gWkComm, null, null);
// its lazy started, meaning it wont actually start till first call
}
function onMainworkerBeforeShutdown() {
return new Promise(resolve => callInMainworker('onBeforeTerminate', undefined, aArg => resolve()) );
}
// end - mainworker stuff
// start - android stuff
var gBrowserAction; // object; keys[title, iconpath]
var gStartedupAndroid = false;
function startupAndroid(aArg) {
if (OS.Constants.Sys.Name != 'Android') return;
gStartedupAndroid = true;
gBrowserAction = aArg.browseraction;
windowListenerAndroid.register();
}
function shutdownAndroid() {
if (OS.Constants.Sys.Name != 'Android') return;
if (!gStartedupAndroid) return;
// Remove inserted menu entry
for (var androidmenu of gAndroidMenus) {
var { domwin, menuid } = androidmenu;
domwin.NativeWindow.menu.remove(menuid);
}
}
function onBrowserActionClicked() {
callInBackground('onBrowserActionClicked');
}
function addTab(aArg, aReportProgress, aComm) {
var { url } = aArg;
var win = Services.wm.getMostRecentWindow('navigator:browser');
win.BrowserApp.addTab(url);
}
var windowListenerAndroid = {
//DO NOT EDIT HERE
onOpenWindow: function(aXULWindow) {
// Wait for the window to finish loading
var aDOMWindow = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindow);
aDOMWindow.addEventListener('load', function () {
aDOMWindow.removeEventListener('load', arguments.callee, false);
windowListenerAndroid.loadIntoWindow(aDOMWindow);
}, false);
},
onCloseWindow: function(aXULWindow) {
if (windowListenerAndroid.windowClosed) {
var window = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindow);
windowListenerAndroid.windowClosed(window);
}
},
onWindowTitleChange: function(aXULWindow, aNewTitle) {},
register: function() {
// Load into any existing windows
var windows = Services.wm.getEnumerator(null);
while (windows.hasMoreElements()) {
var window = windows.getNext();
if (window.document.readyState == 'complete') { //on startup `window.document.readyState` is `uninitialized`
windowListenerAndroid.loadIntoWindow(window);
} else {
window.addEventListener('load', function () {
window.removeEventListener('load', arguments.callee, false);
windowListenerAndroid.loadIntoWindow(window);
}, false);
}
}
// Listen to new windows
Services.wm.addListener(windowListenerAndroid);
},
unregister: function() {
// Unload from any existing windows
var windows = Services.wm.getEnumerator(null);
while (windows.hasMoreElements()) {
var window = windows.getNext();
windowListenerAndroid.unloadFromWindow(window);
}
// Stop listening so future added windows dont get this attached
Services.wm.removeListener(windowListenerAndroid);
},
//END - DO NOT EDIT HERE
loadIntoWindow: function (aDOMWindow) {
if (!aDOMWindow) { return }
// desktop_android:insert_gui
if (OS.Constants.Sys.Name == 'Android') {
// // android:insert_gui
if (aDOMWindow.NativeWindow && aDOMWindow.NativeWindow.menu) {
var menuid = aDOMWindow.NativeWindow.menu.add({
name: gBrowserAction.title,
// icon: gBrowserAction.iconpath,
callback: onBrowserActionClicked
});
gAndroidMenus.push({
domwin: aDOMWindow,
menuid
});
}
}
},
unloadFromWindow: function (aDOMWindow) {
if (!aDOMWindow) { return }
},
windowClosed: function(aDOMWindow) {
// Remove from gAndroidMenus the entry for this aDOMWindow
if (OS.Constants.Sys.Name == 'Android') {
var l = gAndroidMenus.length;
for (var i=0; i<l; i++) {
var androidmenu = gAndroidMenus[i];
if (androidmenu.domwin == aDOMWindow) {
gAndroidMenus.splice(i, 1);
break;
}
}
}
}
};
// end - android stuff
// start - native messaging stuff
function getNativeMessagingInfo() {
// returns { os_sname, exe_path, exe_from, exe_name, exemanifest_path, exemanifest_from, exemanifest_json, winregistry_path }
// `winregistry_path` is undefined if not windows
// os_sname is win/mac/nix
// core.nativemessaging.manifest_json = { // this is setup in background.js
// 'name': 'profilist', // i use this as child entry for windows registry entry, so make sure this name is compatible with injection into windows registry link39191
// 'description': 'Platform helper for Profilist',
// 'path': undefined, // set below to `exe_path`,
// 'type': 'stdio',
// 'allowed_extensions': [ core.self.id ]
// };
var exe_name;
var sname = OS.Constants.Sys.Name.toLowerCase(); // stands for "simplified name". different from `mname`
if (sname.startsWith('win')) {
sname = 'win';
exe_name = core.nativemessaging.manifest_json.name + '.exe';
} else if (sname == 'darwin') {
sname = 'mac';
exe_name = core.nativemessaging.manifest_json.name;
} else {
sname = 'nix';
exe_name = core.nativemessaging.manifest_json.name;
}
var exe_path;
exe_path = OS.Path.join(OS.Constants.Path.userApplicationDataDir, 'extension-exes', exe_name);
var exe_from = OS.Constants.Path.userApplicationDataDir; // dir that exists for sure in subpath of `exe_path`. where to `makeDir` from for exe
// update core.nativemessaging.manifest_json
core.nativemessaging.manifest_json.path = exe_path;
core.nativemessaging.manifest_json.description += ' for ' + sname;
var exemanifest_path;
var exemanifest_from; // dir that exists for sure in subpath of `exemanifest_path`. where to `makeDir` from for exe
switch (sname) {
case 'win':
// exemanifest_path = OS.Path.join(core.path.storage, 'profilist.json');
// exemanifest_from = core.path.profileDir;
exemanifest_path = OS.Path.join(OS.Constants.Path.userApplicationDataDir, 'extension-exes', 'profilist.json');
exemanifest_from = OS.Constants.Path.userApplicationDataDir;
break;
case 'mac':
exemanifest_path = OS.Path.join(OS.Constants.Path.homeDir, 'Library', 'Application Support', 'Mozilla', 'NativeMessagingHosts', 'profilist.json');
exemanifest_from = OS.Path.join(OS.Constants.Path.homeDir, 'Library', 'Application Support');
break;
case 'nix':
exemanifest_path = OS.Path.join(OS.Constants.Path.homeDir, '.mozilla', 'native-messaging-hosts', 'profilist.json');
exemanifest_from = OS.Constants.Path.homeDir;
break;
}
var winregistry_path;
if (sname == 'win') {
winregistry_path = 'SOFTWARE\\Mozilla\\NativeMessagingHosts';
}
return { os_sname:sname, exe_path, exe_from, exe_name, exemanifest_path, exemanifest_from, exemanifest_json:core.nativemessaging.manifest_json, winregistry_path };
}
function installNativeMessaging(aArg) {
// it should already be there due to `sendCore`, but just to make it not reliant on globals
core.nativemessaging = aArg.nativemessaging;
core.path = aArg.path;
Services.prefs.setCharPref('[email protected]', core.nativemessaging.manifest_json.name);
var { exe_path, exe_from, exe_name, exemanifest_path, exemanifest_from, exemanifest_json, winregistry_path, os_sname } = getNativeMessagingInfo();
var promiseallarrmain = [];
// copy the exes
promiseallarrmain.push(new Promise( (resolve, reject) =>
OS.File.makeDir(OS.Path.dirname(exe_path), { from:exe_from })
.then( dirmade => {
var xhr = Cc['@mozilla.org/xmlextras/xmlhttprequest;1'].createInstance(Ci.nsIXMLHttpRequest);
console.log(core.path.chrome.exe + os_sname + '/' + exe_name);
xhr.open('GET', core.path.chrome.exe + os_sname + '/' + exe_name, false);
xhr.responseType = 'arraybuffer';
xhr.send();
// i dont use `writeThenDirMT` because ArrayBuffer's get neutred, so if first write fails, then the arrbuf is gone I think. it might not neuter on fail though.
// i actually i tested it on 092816 in "52.0a1 (2016-09-28) (64-bit)", and on fail, it does not neuter the arrbuf, only on success
writeThenDirMT(exe_path, new Uint8Array(xhr.response), exe_from, { encoding:undefined })
// OS.File.writeAtomic(exe_path, new Uint8Array(xhr.response), { encoding:undefined })
.then( copied => {
if (os_sname != 'win') {
OS.File.setPermissions(exe_path, { unixMode:0o4777 }) // makes it executable, tested on mac, not yet on nix
.then( resolve() )
.catch( osfileerr => reject(osfileerr) )
} else {
resolve();
}
})
.catch( osfileerr => reject(osfileerr) )
})
.catch( osfileerr => reject(osfileerr) )
));
// make sure exe manifest is in place
console.log('json stringify:', JSON.stringify(exemanifest_json));
promiseallarrmain.push(new Promise( (resolve, reject) =>
writeThenDirMT(exemanifest_path, JSON.stringify(exemanifest_json), exemanifest_from, { noOverwrite:true, encoding:'utf-8' })
.then( ok => resolve() )
.catch( osfileerr => osfileerr.becauseExists ? resolve() : reject(osfileerr) )
));
// if Windows then update registry
if (winregistry_path) {
var wrk = Cc['@mozilla.org/windows-registry-key;1'].createInstance(Ci.nsIWindowsRegKey);
wrk.create(wrk.ROOT_KEY_CURRENT_USER, winregistry_path + '\\' + exemanifest_json.name, wrk.ACCESS_WRITE); // link39191
wrk.writeStringValue('', exemanifest_path);
wrk.close();
// not ignoring errors during write, if it errors, startup fails
}
return new Promise( (resolve, reject) => {
Promise.all(promiseallarrmain)
.then(resolve())
.catch(err => reject(err))
});
}
function uninstallNativeMessaging() {
// if installed then pref is set
var exemanifest_name;
try {
exemanifest_name = Services.prefs.getCharPref('[email protected]');
} catch(ex) {
return Promise.reject('not installed');
}
Services.prefs.clearUserPref('[email protected]');
core.nativemessaging = { manifest_json:{name:exemanifest_name} };
var { exe_path, exe_from, exe_name, exemanifest_path, exemanifest_from, exemanifest_json, winregistry_path } = getNativeMessagingInfo();
var promiseallarrmain = [];
// delete exe
promiseallarrmain.push( OS.File.remove(exe_path, { ignorePermissions:true, ignoreAbsent:true }) ); // ignoreAbsent because maybe another profile already deleted it
// TODO: if `exe_path` parent dir is empty, remove it, because parent dir is my own created one of "extensions-exes"
// delete manifest
promiseallarrmain.push( OS.File.remove(exemanifest_path, { ignorePermissions:true, ignoreAbsent:true }) ); // ignoreAbsent for the hell of it
// if Windows then update registry
if (winregistry_path) {
var wrk = Cc['@mozilla.org/windows-registry-key;1'].createInstance(Ci.nsIWindowsRegKey);
try {
wrk.open(wrk.ROOT_KEY_CURRENT_USER, winregistry_path, wrk.ACCESS_WRITE);
wrk.removeChild(exemanifest_json.name); // link39191
} finally {
wrk.close();
}
// NOTE: i am ignoring errors that happen during uninstall from registry
}
return Promise.all(promiseallarrmain);
}
function cleanupNativeMessaging() {
// delete the exe parent dir, if it is empty. because this parent dir is only used by my addons
OS.File.removeEmptyDir(OS.Path.join(OS.Constants.Path.userApplicationDataDir, 'extension-exes'), { ignoreAbsent:true }).catch( err=>console.warn('This is totally acceptable, it means there is stuff left so should NOT cleanup. err:', err) );
}
// start - addon functions
function showSystemAlert(aArg) {
var { title, body } = aArg;
Services.prompt.alert(Services.wm.getMostRecentWindow('navigator:browser'), title, body);
}
function sendCore(aArg, aReportProgress, aComm) {
core = aArg.core;
}
function setApplyBackgroundUpdates(aNewApplyBackgroundUpdates) {
// 0 - off, 1 - respect global setting, 2 - on
AddonManager.getAddonByID(core.self.id, addon =>
addon.applyBackgroundUpdates = aNewApplyBackgroundUpdates
);
}
function getAddonInfo(aAddonId=core.self.id) {
var deferredmain_getaddoninfo = new Deferred();
AddonManager.getAddonByID(aAddonId, addon =>
deferredmain_getaddoninfo.resolve({
applyBackgroundUpdates: parseInt(addon.applyBackgroundUpdates) === 1 ? (AddonManager.autoUpdateDefault ? 2 : 0) : parseInt(addon.applyBackgroundUpdates),
updateDate: addon.updateDate.getTime()
})
);
return deferredmain_getaddoninfo.promise;
}
// start - common helper functions
function getNativeHandlePtrStr(aDOMWindow) {
var aDOMBaseWindow = aDOMWindow.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIDocShellTreeItem)
.treeOwner
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIBaseWindow);
return aDOMBaseWindow.nativeHandle;
}
// rev2 - https://gist.github.com/Noitidart/5257376b54935556173e8d13c2821f4e
function writeThenDirMT(aPlatPath, aContents, aDirFrom, options={}) {
// tries to writeAtomic
// if it fails due to dirs not existing, it creates the dir
// then writes again
// if fail again for whatever reason it rejects with `osfileerr`
// on success resolves with `true`
var default_options = {
encoding: 'utf-8',
noOverwrite: false
// tmpPath: aPlatPath + '.tmp'
};
options = Object.assign(default_options, options);
var writeTarget = () => OS.File.writeAtomic(aPlatPath, aContents, options);
return new Promise((resolvemain, rejectmain) =>
writeTarget().then( ()=>resolvemain() ).catch( osfileerr => {
if (osfileerr.becauseNoSuchFile) { // this happens when directories dont exist to it
OS.File.makeDir(OS.Path.dirname(aPlatPath), {from:aDirFrom}).then(
()=>writeTarget().then( ()=>resolvemain() ).catch( osfileerr=>rejectmain(osfileerr) )
// ).catch( osfileerr=>resolvemain(false) );
).catch( osfileerr=>rejectmain(osfileerr) );
} else {
rejectmain(osfileerr);
// resolvemain(false);
}
})
);
}