-
-
Notifications
You must be signed in to change notification settings - Fork 147
/
background.ts
369 lines (348 loc) · 13.7 KB
/
background.ts
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
/**
* Browser extensions have multiple processes. This is the entry point for the
* [background process](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Anatomy_of_a_WebExtension#Background_scripts).
* Our background process has multiple tasks:
* - Keep track of per-tab values with its setTabValue/getTabValue functions
* - Set the [browserActions](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/browserAction)'s icon.
* - Keep track of error messages/warnings that should are displayed in the
* browserAction.
* - Update settings when the user changes their vimrc.
* - Start new neovim instances when asked by a content script.
* - Provide an RPC mechanism that enables calling background APIs from the
* browserAction/content script.
*
* The background process mostly acts as a slave for the browserAction and
* content scripts. It rarely acts on its own.
*/
import { getGlobalConf, mergeWithDefaults } from "./utils/configuration";
import { getIconImageData, IconKind } from "./utils/utils";
export let preloadedInstance: Promise<any>;
type tabId = number;
type tabStorage = {
disabled: boolean,
};
// We can't use the sessions.setTabValue/getTabValue apis firefox has because
// chrome doesn't support them. Instead, we create a map of tabid => {} kept in
// the background. This has the disadvantage of not surviving browser restarts,
// but's it's cross platform.
const tabValues = new Map<tabId, tabStorage>();
function setTabValue(tabid: tabId, item: keyof tabStorage, value: any) {
let obj = tabValues.get(tabid);
if (obj === undefined) {
obj = { "disabled": false };
tabValues.set(tabid, obj);
}
obj[item] = value;
}
function getTabValue(tabid: tabId, item: keyof tabStorage) {
const obj = tabValues.get(tabid);
if (obj === undefined) {
return undefined;
}
return obj[item];
}
async function updateIcon(tabid?: number) {
let name: IconKind = "normal";
if (tabid === undefined) {
const tab = (await browser.tabs.query({ active: true, currentWindow: true }))[0];
if (tab === undefined) {
console.warn("Current tab is undefined - failing to updateIcon()");
return;
}
tabid = tab.id;
}
if (getTabValue(tabid, "disabled") === true) {
name = "disabled";
} else if (error !== "") {
name = "error";
} else if (warning !== "") {
name = "notification";
}
return getIconImageData(name).then((imageData: any) => browser.browserAction.setIcon({ imageData }));
}
// Os is win/mac/linux/androis/cros. We only use it to add information to error
// messages on windows.
let os = "";
browser.runtime.getPlatformInfo().then((plat: any) => os = plat.os);
// Last error message
let error = "";
// Simple getter for easy RPC calls. Can't be tested as requires opening
// browserAction.
/* istanbul ignore next */
function getError() {
return error;
}
function registerErrors(nvim: any, reject: any) {
error = "";
const timeout = setTimeout(() => {
nvim.timedOut = true;
error = "Neovim is not responding.";
updateIcon();
nvim.disconnect();
reject(error);
}, 10000);
nvim.onDisconnect.addListener(async (p: any) => {
clearTimeout(timeout);
updateIcon();
// Unfortunately this error handling can't be tested as it requires
// side-effects on the OS.
/* istanbul ignore next */
if (p.error) {
const errstr = p.error.toString();
if (errstr.match(/no such native application/i)) {
error = "Native manifest not found. Please run `:call firenvim#install(0)` in neovim.";
} else if (errstr.match(/an unexpected error occurred/i)) {
error = "The script supposed to start neovim couldn't be found."
+ " Please run `:call firenvim#install(0)` in neovim";
if (os === "win") {
error += " or try running the scripts in %LOCALAPPDATA%\\firenvim\\";
}
error += ".";
} else if (errstr.match(/Native application tried to send a message of/)) {
error = "Unexpected output. Run `nvim --headless` and ensure it prints nothing.";
} else {
error = errstr;
}
updateIcon();
reject(p.error);
} else if (!nvim.replied && !nvim.timedOut) {
error = "Neovim died without answering.";
updateIcon();
reject(error);
}
});
return timeout;
}
// Last warning message
let warning = "";
/* istanbul ignore next */
function getWarning() {
return warning;
}
let nvimPluginVersion = "";
async function checkVersion(nvimVersion: string) {
nvimPluginVersion = nvimVersion;
const manifest = browser.runtime.getManifest();
warning = "";
// Can't be tested as it would require side effects on the OS.
/* istanbul ignore next */
if (manifest.version !== nvimVersion) {
warning = `Neovim plugin version (${nvimVersion}) and browser addon `
+ `version (${manifest.version}) do not match.`;
}
updateIcon();
}
function warnUnexpectedMessages(messages: string[]) {
if (messages === undefined || !Array.isArray(messages) || messages.length < 1) {
return;
}
warning = messages.join("\n");
updateIcon();
}
// Function called in order to fill out default settings. Called from updateSettings.
function applySettings(settings: any) {
return browser.storage.local.set(mergeWithDefaults(os, settings) as any);
}
function updateSettings() {
const tmp = preloadedInstance;
preloadedInstance = createNewInstance();
tmp.then(nvim => nvim.kill());
// It's ok to return the preloadedInstance as a promise because
// settings are only applied when the preloadedInstance has returned a
// port+settings object anyway.
return preloadedInstance;
}
function createNewInstance() {
return new Promise((resolve, reject) => {
const random = new Uint32Array(8);
window.crypto.getRandomValues(random);
const password = Array.from(random).join("");
const nvim = browser.runtime.connectNative("firenvim");
const errorTimeout = registerErrors(nvim, reject);
nvim.onMessage.addListener((resp: any) => {
(nvim as any).replied = true;
clearTimeout(errorTimeout);
checkVersion(resp.version);
warnUnexpectedMessages(resp.messages);
applySettings(resp.settings).finally(() => {
resolve({
kill: () => nvim.disconnect(),
password,
port: resp.port,
});
});
});
nvim.postMessage({
newInstance: true,
password,
});
});
}
// Creating this first instance serves two purposes: make creating new neovim
// frames fast and also initialize settings the first time Firenvim is enabled
// in a browser.
preloadedInstance = createNewInstance();
async function toggleDisabled() {
const tab = (await browser.tabs.query({ active: true, currentWindow: true }))[0];
if (tab === undefined) {
console.warn("Current tab is undefined - failing to toggleDisabled()");
return;
}
const tabid = tab.id;
const disabled = !getTabValue(tabid, "disabled");
setTabValue(tabid, "disabled", disabled);
updateIcon(tabid);
return browser.tabs.sendMessage(tabid, { args: [disabled], funcName: ["setDisabled"] });
}
async function acceptCommand (command: string) {
const tab = (await browser.tabs.query({ active: true, currentWindow: true }))[0];
let p;
switch (command) {
case "nvimify":
p = browser.tabs.sendMessage(
tab.id,
{ args: [], funcName: ["forceNvimify"] },
);
break;
case "send_C-n":
p = browser.tabs.sendMessage(
tab.id,
{ args: ["<C-n>"], funcName: ["sendKey"] },
);
if (getGlobalConf()["<C-n>"] === "default") {
p = p.catch(() => browser.windows.create());
}
break;
case "send_C-t":
p = browser.tabs.sendMessage(
tab.id,
{ args: ["<C-t>"], funcName: ["sendKey"] },
);
if (getGlobalConf()["<C-t>"] === "default") {
p = p.catch(() => browser.tabs.create({ "windowId": tab.windowId }));
}
break;
case "send_C-w":
p = browser.tabs.sendMessage(
tab.id,
{ args: ["<C-w>"], funcName: ["sendKey"] },
);
if (getGlobalConf()["<C-w>"] === "default") {
p = p.catch(() => browser.tabs.remove(tab.id));
}
break;
case "send_CS-n":
p = browser.tabs.sendMessage(
tab.id,
{ args: ["<CS-n>"], funcName: ["sendKey"] },
);
if (getGlobalConf()["<CS-n>"] === "default") {
p = p.catch(() => browser.windows.create({ "incognito": true }));
}
break;
case "send_CS-t":
// <CS-t> can't be emulated without the sessions API.
p = browser.tabs.sendMessage(
tab.id,
{ args: ["<CS-t>"], funcName: ["sendKey"] },
);
break;
case "send_CS-w":
p = browser.tabs.sendMessage(
tab.id,
{ args: ["<CS-w>"], funcName: ["sendKey"] },
);
if (getGlobalConf()["<CS-w>"] === "default") {
p = p.catch(() => browser.windows.remove(tab.windowId));
}
break;
case "toggle_firenvim":
p = toggleDisabled();
break;
}
return p;
}
Object.assign(window, {
acceptCommand,
// We need to stick the browser polyfill in `window` if we want the `exec`
// call to be able to find it on Chrome
browser,
closeOwnTab: (sender: any) => browser.tabs.remove(sender.tab.id),
exec: (_: any, args: any) => args.funcName.reduce((acc: any, cur: string) => acc[cur], window)(...(args.args)),
getError,
getNeovimInstance: () => {
const result = preloadedInstance;
preloadedInstance = createNewInstance();
// Destructuring result to remove kill() from it
return result.then(({ password, port }) => ({ password, port }));
},
getNvimPluginVersion: () => nvimPluginVersion,
getOwnFrameId: (sender: any) => sender.frameId,
getTab: (sender: any) => sender.tab,
getTabValue: (sender: any, args: any) => getTabValue(sender.tab.id, args[0]),
getTabValueFor: (_: any, args: any) => getTabValue(args[0], args[1]),
getWarning,
messageFrame: (sender: any, args: any) => browser.tabs.sendMessage(sender.tab.id,
args.message,
{ frameId: args.frameId }),
messagePage: (sender: any, args: any) => browser.tabs.sendMessage(sender.tab.id,
args),
publishFrameId: (sender: any) => {
browser.tabs.sendMessage(sender.tab.id, {
args: [sender.frameId],
funcName: ["registerNewFrameId"],
});
return sender.frameId;
},
setTabValue: (sender: any, args: any) => setTabValue(sender.tab.id, args[0], args[1]),
toggleDisabled: () => toggleDisabled(),
updateSettings: () => updateSettings(),
openTroubleshootingGuide: () => browser.tabs.create({ active: true, url: "https://github.com/glacambre/firenvim/blob/master/TROUBLESHOOTING.md" }),
} as any);
browser.runtime.onMessage.addListener(async (request: any, sender: any, _sendResponse: any) => {
const fn = request.funcName.reduce((acc: any, cur: string) => acc[cur], window);
// Can't be tested as there's no way to force an incorrect content request.
/* istanbul ignore next */
if (!fn) {
throw new Error(`Error: unhandled content request: ${JSON.stringify(request)}.`);
}
return fn(sender, request.args !== undefined ? request.args : []);
});
browser.tabs.onActivated.addListener(tab => {
updateIcon(tab.tabId);
});
browser.windows.onFocusChanged.addListener(async (windowId: number) => {
const tabs = await browser.tabs.query({ active: true, windowId });
if (tabs.length >= 1) {
updateIcon(tabs[0].id);
}
});
updateIcon();
browser.commands.onCommand.addListener(acceptCommand);
browser.runtime.onMessageExternal.addListener(async (request: any, sender: any, _sendResponse: any) => {
const resp = await acceptCommand(request.command);
_sendResponse(resp);
});
async function updateIfPossible() {
const tabs = await browser.tabs.query({});
const messages = tabs.map(tab => browser
.tabs
.sendMessage(tab.id,
{
args: [],
funcName: ["getActiveInstanceCount"],
},
{ frameId: 0 })
.catch(() => 0));
const instances = await (Promise.all(messages));
// Can't be covered as reload() would destroy websockets and thus coverage
// data.
/* istanbul ignore next */
if (instances.find(n => n > 0) === undefined) {
browser.runtime.reload();
} else {
setTimeout(updateIfPossible, 1000 * 60 * 10);
}
}
(window as any).updateIfPossible = updateIfPossible;
browser.runtime.onUpdateAvailable.addListener(updateIfPossible);