-
Notifications
You must be signed in to change notification settings - Fork 45
/
background.js
449 lines (370 loc) · 13.7 KB
/
background.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
/* global psl */
/* global url */
/* global util */
const OPTION_MODE = "mode";
const OPTION_MODE_OFF = "off";
const OPTION_MODE_NO_SKIP_URLS_LIST = "blacklist";
const OPTION_MODE_SKIP_URLS_LIST = "whitelist";
const OPTION_NO_SKIP_PARAMETERS_LIST = "no-skip-parameters-list";
const OPTION_NO_SKIP_URLS_LIST = "blacklist";
const OPTION_SKIP_URLS_LIST = "whitelist";
const OPTION_SYNC_LISTS_ENABLED = "syncListsEnabled";
const OPTION_NOTIFICATION_POPUP_ENABLED = "notificationPopupEnabled";
const OPTION_NOTIFICATION_DURATION = "notificationDuration";
const OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN = "skipRedirectsToSameDomain";
const LIST_OPTIONS = [
OPTION_NO_SKIP_PARAMETERS_LIST,
OPTION_NO_SKIP_URLS_LIST,
OPTION_SKIP_URLS_LIST,
];
const TOOLBAR_CONTEXT_MENU_ID = "copy-last-source-url";
const LINK_CONTEXT_MENU_ID = "copy-target-url";
const NOTIFICATION_ID = "notify-skip";
const ICON = "icon.svg";
const ICON_OFF = "icon-off.svg";
const ICON_NO_SKIP_URLS_LIST = "icon-no-skip-urls-list.svg";
const ICON_SKIP_URLS_LIST = "icon-skip-urls-list.svg";
const MAX_NOTIFICATION_URL_LENGTH = 100;
const DEFAULT_NO_SKIP_PARAMETERS_LIST = [
"from",
"ref",
"ref_url",
"referer",
"referrer",
"source",
];
const DEFAULT_NO_SKIP_URLS_LIST = [
"/abp",
"/account",
"/adfs",
"/auth",
"/cookie",
"/download",
"/eid-client",
"/login",
"/logoff",
"/logon",
"/logout",
"/oauth",
"/openid",
"/pay",
"/preference",
"/profile",
"/register",
"/saml",
"/signin",
"/signoff",
"/signon",
"/signout",
"/signup",
"/sso",
"/subscribe",
"/unauthenticated",
"/verification",
];
let currentMode = undefined;
let noSkipParametersList = [];
let noSkipUrlsList = [];
let skipUrlsList = [];
let lastSourceURL = undefined;
let notificationPopupEnabled = undefined;
let notificationDuration = undefined;
let skipRedirectsToSameDomain = false;
let syncLists = false;
let notificationTimeout = undefined;
browser.storage.local.get([
OPTION_MODE,
OPTION_NOTIFICATION_DURATION,
OPTION_NOTIFICATION_POPUP_ENABLED,
OPTION_NO_SKIP_PARAMETERS_LIST,
OPTION_NO_SKIP_URLS_LIST,
OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN,
OPTION_SKIP_URLS_LIST,
OPTION_SYNC_LISTS_ENABLED,
])
.then(
(result) => {
if (result[OPTION_NO_SKIP_PARAMETERS_LIST] === undefined) {
browser.storage.local.set({[OPTION_NO_SKIP_PARAMETERS_LIST]: DEFAULT_NO_SKIP_PARAMETERS_LIST});
} else {
updateNoSkipParametersList(result[OPTION_NO_SKIP_PARAMETERS_LIST]);
}
if (result[OPTION_NO_SKIP_URLS_LIST] === undefined) {
browser.storage.local.set({[OPTION_NO_SKIP_URLS_LIST]: DEFAULT_NO_SKIP_URLS_LIST});
} else {
updateNoSkipUrlsList(result[OPTION_NO_SKIP_URLS_LIST]);
}
if (result[OPTION_SKIP_URLS_LIST] === undefined) {
browser.storage.local.set({[OPTION_SKIP_URLS_LIST]: []});
} else {
updateSkipUrlsList(result[OPTION_SKIP_URLS_LIST]);
}
if (result[OPTION_MODE] === undefined) {
browser.storage.local.set({[OPTION_MODE]: OPTION_MODE_NO_SKIP_URLS_LIST});
currentMode = OPTION_MODE_NO_SKIP_URLS_LIST;
} else {
currentMode = result[OPTION_MODE];
}
if (currentMode === OPTION_MODE_OFF) {
disableSkipping();
} else {
enableSkipping();
}
if (result[OPTION_NOTIFICATION_POPUP_ENABLED] === undefined) {
browser.storage.local.set({[OPTION_NOTIFICATION_POPUP_ENABLED]: true});
} else {
notificationPopupEnabled = result[OPTION_NOTIFICATION_POPUP_ENABLED];
}
if (result[OPTION_NOTIFICATION_DURATION] === undefined) {
browser.storage.local.set({[OPTION_NOTIFICATION_DURATION]: 3});
} else {
notificationDuration = result[OPTION_NOTIFICATION_DURATION];
}
if (result[OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN] === undefined) {
browser.storage.local.set({[OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN]: false});
} else {
skipRedirectsToSameDomain = result[OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN];
}
if (result[OPTION_SYNC_LISTS_ENABLED] === undefined) {
browser.storage.local.set({[OPTION_SYNC_LISTS_ENABLED]: false});
} else {
syncLists = result[OPTION_SYNC_LISTS_ENABLED];
}
}
);
browser.storage.onChanged.addListener(
(changes, areaName) => {
let initTriggered = false;
if (changes[OPTION_SYNC_LISTS_ENABLED]) {
const previousValue = syncLists;
const newValue = changes[OPTION_SYNC_LISTS_ENABLED].newValue;
syncLists = newValue;
if (previousValue !== newValue && syncLists) {
initTriggered = true;
initSyncLists();
}
}
if (changes[OPTION_NO_SKIP_PARAMETERS_LIST]) {
updateNoSkipParametersList(changes[OPTION_NO_SKIP_PARAMETERS_LIST].newValue);
if (!initTriggered){
maybeSyncList(areaName, OPTION_NO_SKIP_PARAMETERS_LIST, noSkipParametersList);
}
}
if (changes[OPTION_NO_SKIP_URLS_LIST]) {
updateNoSkipUrlsList(changes[OPTION_NO_SKIP_URLS_LIST].newValue);
if (!initTriggered){
maybeSyncList(areaName, OPTION_NO_SKIP_URLS_LIST, noSkipUrlsList);
}
}
if (changes[OPTION_SKIP_URLS_LIST]) {
updateSkipUrlsList(changes[OPTION_SKIP_URLS_LIST].newValue);
if (!initTriggered){
maybeSyncList(areaName, OPTION_SKIP_URLS_LIST, skipUrlsList);
}
}
if (changes[OPTION_MODE]) {
currentMode = changes[OPTION_MODE].newValue;
}
if (currentMode === OPTION_MODE_OFF) {
disableSkipping();
} else {
enableSkipping();
}
if (changes[OPTION_NOTIFICATION_POPUP_ENABLED]) {
notificationPopupEnabled = changes[OPTION_NOTIFICATION_POPUP_ENABLED].newValue;
}
if (changes[OPTION_NOTIFICATION_DURATION]) {
notificationDuration = changes[OPTION_NOTIFICATION_DURATION].newValue;
}
if (changes[OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN]) {
skipRedirectsToSameDomain = changes[OPTION_SKIP_REDIRECTS_TO_SAME_DOMAIN].newValue;
}
}
);
browser.contextMenus?.create({
id: TOOLBAR_CONTEXT_MENU_ID,
title: browser.i18n.getMessage("contextMenuToolbarLabel"),
contexts: ["browser_action"],
enabled: false,
});
browser.contextMenus?.onClicked.addListener(
(info, _tab) => {
if (info.menuItemId === TOOLBAR_CONTEXT_MENU_ID) {
copyToClipboard(lastSourceURL);
}
}
);
browser.contextMenus?.create({
id: LINK_CONTEXT_MENU_ID,
title: browser.i18n.getMessage("contextMenuLinkLabel"),
contexts: ["link"],
enabled: true,
});
browser.contextMenus?.onClicked.addListener(
(info, _tab) => {
if (info.menuItemId === LINK_CONTEXT_MENU_ID) {
const redirectTarget = url.getRedirectTarget(info.linkUrl, noSkipUrlsList, noSkipParametersList);
copyToClipboard(redirectTarget);
}
}
);
function copyToClipboard(text) {
chainPromises([
() => { return browser.tabs.executeScript({code: "typeof copyToClipboard === 'function';"}); },
(results) => { return injectScriptIfNecessary(results && results[0]); },
() => { return browser.tabs.executeScript({code: `copyToClipboard("${text}")`}); },
]);
}
function injectScriptIfNecessary(isCopyFunctionDefined) {
if (!isCopyFunctionDefined) {
return browser.tabs.executeScript({file: "clipboard-helper.js"});
}
}
function updateNoSkipParametersList(newNoSkipParametersList) {
noSkipParametersList = newNoSkipParametersList.filter(Boolean);
}
function updateNoSkipUrlsList(newNoSkipUrlsList) {
noSkipUrlsList = newNoSkipUrlsList.filter(Boolean);
}
function updateSkipUrlsList(newSkipUrlsList) {
skipUrlsList = newSkipUrlsList.filter(Boolean);
}
function initSyncLists() {
Promise.all([
browser.storage.local.get(LIST_OPTIONS),
browser.storage.sync.get(LIST_OPTIONS),
])
.then(
([localResult, remoteResult]) => {
LIST_OPTIONS.forEach((optionName) => {
const localValue = localResult[optionName];
const remoteValue = remoteResult[optionName];
const newValue = util.mergeList(localValue, remoteValue);
if (JSON.stringify(localValue) != JSON.stringify(newValue)) {
browser.storage.local.set({[optionName]: newValue});
}
if (JSON.stringify(remoteValue) != JSON.stringify(newValue)) {
browser.storage.sync.set({[optionName]: newValue});
}
});
}
);
}
function maybeSyncList(changedArea, optionName, optionValue) {
if (!syncLists) {
return;
}
const toAreaName = changedArea === "local" ? "sync" : "local";
const toArea = browser.storage[toAreaName];
toArea.get([optionName]).then(
(result) => {
const targetValue = result[optionName];
if (JSON.stringify(targetValue) !== JSON.stringify(optionValue)){
toArea.set({[optionName]: optionValue});
}
}
);
}
function enableSkipping() {
browser.webRequest.onBeforeRequest.removeListener(maybeRedirect);
if (currentMode === OPTION_MODE_NO_SKIP_URLS_LIST) {
browser.webRequest.onBeforeRequest.addListener(
maybeRedirect,
{urls: ["<all_urls>"], types: ["main_frame"]},
["blocking"]
);
browser.browserAction.setIcon({path: ICON_NO_SKIP_URLS_LIST});
} else if (currentMode === OPTION_MODE_SKIP_URLS_LIST) {
if (skipUrlsList.length > 0) {
browser.webRequest.onBeforeRequest.addListener(
maybeRedirect,
{urls: skipUrlsList, types: ["main_frame"]},
["blocking"]
);
}
browser.browserAction.setIcon({path: ICON_SKIP_URLS_LIST});
}
browser.browserAction.setBadgeBackgroundColor({color: "red"});
browser.browserAction.setTitle({title: browser.i18n.getMessage("browserActionLabelOn")});
}
function disableSkipping() {
browser.webRequest.onBeforeRequest.removeListener(maybeRedirect);
browser.browserAction.setIcon({path: ICON_OFF});
browser.browserAction.setTitle({title: browser.i18n.getMessage("browserActionLabelOff")});
}
function maybeRedirect(requestDetails) {
if (requestDetails.tabId === -1 || requestDetails.method !== "GET") {
return;
}
const parameterExceptions = noSkipParametersList;
let urlExceptions = [];
if (currentMode === OPTION_MODE_NO_SKIP_URLS_LIST) {
urlExceptions = noSkipUrlsList;
}
const redirectTarget = url.getRedirectTarget(requestDetails.url, urlExceptions, parameterExceptions);
if (redirectTarget === requestDetails.url) {
return;
}
if (currentMode === OPTION_MODE_NO_SKIP_URLS_LIST && !skipRedirectsToSameDomain) {
const sourceHostname = getHostname(requestDetails.url);
const targetHostname = getHostname(redirectTarget);
const sourceDomain = psl.getDomain(sourceHostname);
const targetDomain = psl.getDomain(targetHostname);
if (sourceDomain === targetDomain) {
return;
}
}
prepareToolbarContextMenu(requestDetails.url);
notifySkip(requestDetails.url, redirectTarget);
return {
redirectUrl: redirectTarget,
};
}
function prepareToolbarContextMenu(from) {
if (lastSourceURL === undefined) {
browser.contextMenus?.update(TOOLBAR_CONTEXT_MENU_ID, {enabled: true});
}
lastSourceURL = from;
}
function notifySkip(from, to) {
if (notificationTimeout) {
clearNotifications();
}
const notificationMessage = browser.i18n.getMessage("redirectSkippedNotificationMessage", [cleanUrl(from), cleanUrl(to)]);
const toolbarButtonTitle = browser.i18n.getMessage("browserActionLabelOnSkipped", [from, to]);
if (notificationPopupEnabled) {
browser.notifications.create(NOTIFICATION_ID, {
type: "basic",
iconUrl: browser.extension.getURL(ICON),
title: browser.i18n.getMessage("redirectSkippedNotificationTitle"),
message: notificationMessage,
});
}
browser.browserAction.setBadgeText({text: browser.i18n.getMessage("redirectSkippedBrowserActionBadge")});
browser.browserAction.setTitle({title: toolbarButtonTitle});
notificationTimeout = setTimeout(clearNotifications, 1000 * notificationDuration);
}
function clearNotifications() {
clearTimeout(notificationTimeout);
notificationTimeout = undefined;
browser.notifications.clear(NOTIFICATION_ID);
browser.browserAction.setBadgeText({text: ""});
}
function cleanUrl(string) {
if (string.length > MAX_NOTIFICATION_URL_LENGTH) {
string = string.substring(0, MAX_NOTIFICATION_URL_LENGTH - 3) + "...";
}
return string.replace(/&/g, "&");
}
function getHostname(url) {
const a = document.createElement("a");
a.href = url;
return a.hostname;
}
function chainPromises(functions) {
let promise = Promise.resolve();
for (const function_ of functions) {
promise = promise.then(function_);
}
return promise.catch((error) => { console.warn(error.message); });
}