-
Notifications
You must be signed in to change notification settings - Fork 2
/
background.js
229 lines (220 loc) · 6.84 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
/* Copyright (C) 2023-2024 Diego Miguel Lozano <[email protected]>
*
* 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);
});
browser.webRequest.onBeforeRequest.addListener(
async (details) => {
const url = new URL(details.url);
// Only consider certain requests.
const include = [
"/search",
"duckduckgo.com/",
"/web", // swisscows & ask.com
"qwant.com/",
"/entry/should-show-feedback", // perplexity
"/s", // Baidu
"/meta", // metaGer
"/serp", // dogpile
"/search.seznam.cz",
"leta.mullvad.net/",
].some((value) => url.href.includes(value));
if (!include) {
return null;
}
// Skip requests for suggestions.
const skip =
[
"/ac",
"suggest",
"/autosuggest",
"/complete",
"/autocompleter",
"/autocomplete",
"/sugrec",
].some((path) => url.pathname.includes(path)) ||
url.searchParams.get("mod") === "1"; // hack for Baidu
if (skip) {
return null;
}
// Different search engines use different params for the query.
const params = ["q", "p", "query", "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;
}
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)) {
const bangInfo = item[bangKey];
let targetUrl;
if (query.length === 0 && bangInfo.openBaseUrl) {
targetUrl = new URL(bangInfo.url).origin;
} else {
if (bangInfo.urlEncodeQuery) {
query = encodeURIComponent(query);
}
targetUrl = new URL(bangInfo.url.replace("{{{s}}}", query));
}
updateTab(details.tabId, targetUrl.toString());
}
},
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"),
});
});
// Temporal function to migrate storage schema.
async function updateStorageSchema() {
const customBangs = await browser.storage.sync.get();
if (Object.keys(customBangs).length > 0) {
const sortedBangs = Object.fromEntries(
Object.entries(customBangs)
.sort(([, a], [, b]) => a.order - b.order)
.map(([bangKey, bang], index) => {
if (
!bangKey.startsWith(PreferencePrefix.BANG) &&
!bangKey.startsWith(PreferencePrefix.BANG_SYMBOL) &&
!bangKey.startsWith(PreferencePrefix.SEARCH_ENGINE)
) {
bangKey = getBangKey(bang.bang);
}
if (
!bangKey.startsWith(PreferencePrefix.BANG_SYMBOL) &&
!bangKey.startsWith(PreferencePrefix.SEARCH_ENGINE)
) {
bang.order = index;
}
return [bangKey, bang];
}),
);
if (!Object.hasOwn(customBangs, PreferencePrefix.BANG_SYMBOL)) {
customBangs[PreferencePrefix.BANG_SYMBOL] = "!";
}
await browser.storage.sync.clear().then(
async function onCleared() {
await browser.storage.sync.set(sortedBangs).then(
async function onSet() {
await fetchSettings(true);
},
async function onError(error) {
await browser.storage.sync.set(sortedBangs); // 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;
}
});