-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbackground.js
More file actions
325 lines (315 loc) · 10 KB
/
background.js
File metadata and controls
325 lines (315 loc) · 10 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
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
/* Copyright (C) 2023-2024 Diego Miguel Lozano <hello@diegomiguel.me>
*
* This program is free software: you can redistribute it and//or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* For license information on the libraries used, see LICENSE.
*/
import {
PreferencePrefix,
Defaults,
fetchSettings,
getBangKey,
} from "./utils.js";
// Support for Chromium.
if (typeof browser === "undefined") {
globalThis.browser = chrome;
}
(async () => {
await fetchSettings(false);
})();
browser.runtime.onStartup.addListener(async () => {
await fetchSettings(false);
});
let lastTriggerTime = new Date(0);
browser.webRequest.onBeforeRequest.addListener(
async (details) => {
const url = new URL(details.url);
// Only consider certain requests.
const include = [
"/search",
"duckduckgo.com/?",
"/dsearch", // Startpage add-on
"/web?", // swisscows & ask.com
"qwant.com/",
"perplexity_ask", // Perplexity AI
"https://www.qwant.com/?q=",
"/s", // Baidu
"/meta", // metaGer
"/serp", // dogpile
"/search.seznam.cz",
].some((value) => url.href.includes(value));
if (!include) {
return null;
}
// Skip requests for suggestions and requests not related to search.
const skip = [
"/ac",
"suggest",
"/autosuggest",
"/complete",
"/autocompleter",
"/autocomplete",
"/sugrec",
"/map",
"/maps",
"/favicon",
".js",
".css",
".svg",
".png",
".jpg",
".jpeg",
".woff2",
"/ia",
"/asset", // Kagi
"/static-assets", // DuckDuckGo
"/_next", // DuckDuckGo
"/dist", // DuckDuckGo
"/spice", // DuckDuckGo
"/xjs", // Google
"/async", // Google
"/searchbox", // Google
"/speech-api", // Google
"/httpservice", // Google
"/cdn", // StartPage
"/dplpxs", // StartPage
"/sxpra", // StartPage
"/afs", // StartPage
"/jst", // StartPage
"/atq", // StartPage
"/ep1", // StartPage
"/sa", // Bing
"/sbi", // Bing
"/auth", // Bing
"/exploremore", // Bing
"/svctrlpack", // Bing
"/sugg", // Yahoo!
"/beacon", // Yahoo!
"/static", // Ecosia
"/events", // Qwant
].some((path) => url.pathname.includes(path));
if (
skip ||
url.searchParams.get("mod") === "1" || // Baidu
url.searchParams.get("suggest") != null ||
url.searchParams.get("tbm") === "map" // Google Maps
) {
return null;
}
const currentTime = new Date();
// Ensure we only trigger the bang once.
if (currentTime - lastTriggerTime < 500) {
return null;
}
// Different search engines use different params for the query.
const params = ["q", "p", "query", "query_str", "text", "eingabe", "wd"];
let searchQuery = null;
for (const param of params) {
searchQuery = url.searchParams.get(param);
// Some search engines include the query in the request body.
if (!searchQuery) {
const form = details?.requestBody?.formData;
if (form != null && Object.hasOwn(form, param)) {
searchQuery = form[param][0];
} else if (details?.requestBody?.raw) {
const decodedBody = JSON.parse(
decodeURIComponent(
String.fromCharCode.apply(
null,
new Uint8Array(details.requestBody.raw[0].bytes),
),
),
);
if (Object.hasOwn(decodedBody, param)) {
searchQuery = decodedBody[param];
}
}
}
if (searchQuery != null) {
break;
}
}
if (!searchQuery) {
return null;
}
lastTriggerTime = new Date();
browser.storage.session.get(PreferencePrefix.BANG_SYMBOL).then(
function onGot(item) {
const bangSymbol =
item[PreferencePrefix.BANG_SYMBOL] ?? Defaults.BANG_SYMBOL;
let bang = null;
let query = null;
const searchTerms = searchQuery.split(" ");
if (searchTerms) {
const firstTerm = searchTerms[0].trim();
const lastTerm = searchTerms[searchTerms.length - 1].trim();
if (firstTerm.startsWith(bangSymbol)) {
bang = firstTerm.substring(bangSymbol.length);
query = searchTerms.slice(1).join(" ");
} else if (lastTerm.startsWith(bangSymbol)) {
bang = lastTerm.substring(bangSymbol.length);
query = searchTerms.slice(0, -1).join(" ");
}
}
if (bang) {
const bangKey = getBangKey(bang);
browser.storage.session.get(bangKey).then(
function onGot(item) {
// Any matches?
if (Object.hasOwn(item, bangKey)) {
browser.storage.session
.get(PreferencePrefix.INACTIVE_BANGS)
.then(
function onGot(inactiveBangs) {
if (
!(
item[bangKey].default &&
inactiveBangs[
PreferencePrefix.INACTIVE_BANGS
].includes(bang)
)
) {
const bangTargets = item[bangKey].targets;
let targetUrl;
bangTargets.forEach((target, index) => {
if (query.length === 0 && target.baseUrl != null) {
targetUrl = target.baseUrl;
} else {
if (target.urlEncodeQuery) {
query = encodeURIComponent(query);
}
targetUrl = new URL(
target.url.replace("{{{s}}}", query),
).toString();
}
// Open first target URL in current tab...
if (index === 0) {
updateTab(details.tabId, targetUrl);
} else {
// ...and the rest in new tabs.
browser.tabs.create({
url: targetUrl,
active: false,
});
}
});
}
},
function onError(error) {
// TODO: Handle error.
},
);
}
},
function onError(error) {
// TODO: Handle error.
},
);
}
},
function onError(error) {
// TODO: Handle error.
},
);
return null;
},
{
urls: ["<all_urls>"],
},
["requestBody"],
);
function updateTab(tabId, url) {
const updateProperties = { url };
if (tabId != null) {
browser.tabs.update(tabId, updateProperties);
} else {
browser.tabs.update(updateProperties);
}
}
browser.action.onClicked.addListener(() => {
browser.tabs.create({
url: browser.runtime.getURL("options/options.html?page=1"),
});
});
// Temporal function to migrate storage schema.
async function updateStorageSchema() {
const customBangs = await browser.storage.sync.get();
if (Object.keys(customBangs).length > 0) {
const processedBangs = Object.fromEntries(
Object.entries(customBangs).map(([bangKey, bang]) => {
if (
!bangKey.startsWith(PreferencePrefix.BANG) &&
!bangKey.startsWith(PreferencePrefix.BANG_SYMBOL) &&
!bangKey.startsWith(PreferencePrefix.BANG_PROVIDER) &&
!bangKey.startsWith(PreferencePrefix.INACTIVE_BANGS)
) {
bangKey = getBangKey(bang.bang);
}
// v1.0.0
if (bang.url != null && !Array.isArray(bang.url)) {
bang.targets = [
{
url: bang.url,
baseUrl: bang.openBaseUrl ? new URL(bang.url).origin : null,
urlEncodeQuery: bang.urlEncodeQuery,
},
];
delete bang.url;
delete bang.openBaseUrl;
delete bang.urlEncodeQuery;
}
// v2.0.0
if (bang.order != null) {
delete bang.order;
}
return [bangKey, bang];
}),
);
if (!Object.hasOwn(processedBangs, PreferencePrefix.BANG_SYMBOL)) {
processedBangs[PreferencePrefix.BANG_SYMBOL] = Defaults.BANG_SYMBOL;
}
if (!Object.hasOwn(processedBangs, PreferencePrefix.BANG_PROVIDER)) {
processedBangs[PreferencePrefix.BANG_PROVIDER] = Defaults.BANG_PROVIDER;
}
if (!Object.hasOwn(processedBangs, PreferencePrefix.INACTIVE_BANGS)) {
processedBangs[PreferencePrefix.INACTIVE_BANGS] = Defaults.INACTIVE_BANGS;
}
await browser.storage.sync.clear().then(
async function onCleared() {
await browser.storage.sync.set(processedBangs).then(
async function onSet() {
await fetchSettings(true);
},
async function onError(error) {
await browser.storage.sync.set(processedBangs); // Retry
await fetchSettings(true);
},
);
},
function onError(error) {
// TODO: Handle errors.
},
);
}
}
browser.runtime.onInstalled.addListener(async ({ reason, temporary }) => {
// if (temporary) return; // skip during development
switch (reason) {
case "update":
updateStorageSchema();
break;
default:
break;
}
});