-
Notifications
You must be signed in to change notification settings - Fork 43
/
options.js
304 lines (260 loc) · 10.7 KB
/
options.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
var WhiteList_Button = document.getElementById("WhiteList_Submit_Button");
var Whitelist_Enter = document.getElementById("whiteListDomain");
var Domain = document.getElementById("whiteListDomain");
var Display_whiteList_Domains = document.getElementById("whiteList_domains");
var Erase_Button = document.getElementById("WhiteList_Erase_Button");
var whiteList_domains_table = document.getElementById("whiteList_domains_table");
var divider = document.querySelector(".divider");
var whiteListedTitle = document.querySelector(".whitelisted-title");
var whiteList_Memory = new Set();
var whiteList_RuleIds = new Map(); // maps { domain -> id }
async function addWhiteList() {
if(Domain.value==undefined || Domain.value=="") {
alert("Enter a valid domain value to add to whitelist!");
return;
}
var regex = new RegExp("^((?!-)[A-Za-z0-9-]{1,63}(?<!-)\\.)+[A-Za-z]{2,6}$");
if(!regex.test(Domain.value)) {
alert("Enter a valid domain value to add to whitelist!");
return;
}
// Update whiteList_Memory with domains already exisitng in the local storage
const result = await chrome.storage.local.get(['rules_count','user_whitelist']);
if(result.user_whitelist && result.user_whitelist.length!=0) {
whiteList_Memory = new Set([...whiteList_Memory, ...result.user_whitelist]);
console.log("Values already exists");
} else {
console.log("Values doesn't exists");
}
// no action needed if domain exists in whiteList_Memory
if(whiteList_Memory.has(Domain.value)) {
alert("domain exists in whitelist!!");
return;
}
// alert user if there's no space for new rule and exit
if(
whiteList_Memory.size + result.rules_count
>= chrome.declarativeNetRequest.MAX_NUMBER_OF_DYNAMIC_RULES
) {
console.log("dNr Error: Ruleset Limit overflow");
alert("max rule capacity exceeded, delete unused rules before adding more")
return;
}
// add domain entered by the user into the whitelist
whiteList_Memory.add(Domain.value);
console.log("user whitelist: ", whiteList_Memory);
// Add decleartiveNetRequest rules beyond the rules already present by default in the extension
var id = result.rules_count;
var protectionRulesArr = [];
whiteList_Memory.forEach((domain) => {
id = id + 1;
// save domain's rule id
whiteList_RuleIds.set(domain, id);
// add rule
protectionRulesArr.push(createRule(id, true, domain));
});
console.log("protection rule generated: ", protectionRulesArr);
console.log("whitelist {domain, ruleId}: ", whiteList_RuleIds);
await chrome.declarativeNetRequest.updateDynamicRules({
addRules: protectionRulesArr,
removeRuleIds: [...whiteList_RuleIds.values()], // extract ids for the rules
},
);
// Assuming all whitelist entries is re-generated when
// entry is added, we don't need to access whiteList_RuleIds
// while updating it on storage.local
await chrome.storage.local.set({
"whiteList_RuleIds": [...whiteList_RuleIds.entries()],
"user_whitelist": [...whiteList_Memory]
});
chrome.declarativeNetRequest.getDynamicRules((rules) => showModifiedRules(
"after adding: ", rules
));
// Display all whitelisted domains
displayWhiteListTable();
// clear the input field
Domain.value = "";
}
// Disable the whitelisting for the domains
async function removeWhiteList(){
const result = await chrome.storage.local.get(['whiteList_RuleIds', 'rules_count']);
// whitelist is empty
if(!result.whiteList_RuleIds || result.whiteList_RuleIds.length==0) {
alert("Add domains to whitelist before removing!");
return;
}
whiteList_RuleIds = new Map([...result.whiteList_RuleIds]);
console.log("removeWhiteList: ", whiteList_RuleIds);
// update rules
let removeRuleIds = [...whiteList_RuleIds.values()]
console.log("Ids to remove", removeRuleIds);
await chrome.declarativeNetRequest.updateDynamicRules({ removeRuleIds: removeRuleIds });
// Reset whilelist
await chrome.storage.local.remove(["user_whitelist", "whiteList_RuleIds"]);
whiteList_Memory.clear();
whiteList_RuleIds.clear();
setTimeout(() => alert("Whitelist Removed!"), 500);
chrome.declarativeNetRequest.getDynamicRules((rules)=> showModifiedRules("after removing all: ", rules));
// hide table from the page
whiteList_domains_table.style.display = "none";
divider.style.display = "none";
whiteListedTitle.style.display = "none";
Erase_Button.style.display = "none";
}
async function restore_options() {
displayWhiteListTable();
chrome.declarativeNetRequest.getDynamicRules((rules)=> showModifiedRules("restored: ", rules));
}
function genWhiteListTabEnt(website) {
return (
"<tr class='whitelist-ent'> \
<td colspan='8'>" + website + "</td> \
<td> \
<button class='whitelist-ent-del-btn btn-2' data-wl-ent='" + website + "'> \
<img src='assets/cross.svg'> \
</button> \
</td> \
</tr>"
);
}
async function displayWhiteListTable() {
const data = await chrome.storage.local.get(["user_whitelist"]);
if (!data.user_whitelist || data.user_whitelist.length==0) {
whiteList_domains_table.style.display = "none";
divider.style.display = "none";
whiteListedTitle.style.display = "none";
Erase_Button.style.display = "none";
return;
}
var tds = "";
data.user_whitelist.forEach(website => {
tds += genWhiteListTabEnt(website);
});
Display_whiteList_Domains.innerHTML = tds;
// add event listeners to facilitate deletion
let delBtns = document.querySelectorAll(".whitelist-ent-del-btn");
delBtns.forEach((node) =>
node.addEventListener("click", (e) => handleWhiteListEntDeletion(e))
);
whiteList_domains_table.style.display = "block";
divider.style.display = "block";
whiteListedTitle.style.display = "block";
Erase_Button.style.display = "block";
}
async function handleWhiteListEntDeletion(e) {
const domain = e.currentTarget.dataset.wlEnt;
// retrieve whiteList rule-ids from the storage and merge with existing ones
let result = await chrome.storage.local.get(["whiteList_RuleIds", "user_whitelist"]);
if(result.whiteList_RuleIds) {
whiteList_RuleIds = new Map([...whiteList_RuleIds, ...result.whiteList_RuleIds]);
}
if(result.user_whitelist) {
whiteList_Memory = new Set([...whiteList_Memory, ...result.user_whitelist]);
}
const ruleId = domain && whiteList_RuleIds.get(domain);
if(ruleId==undefined) {
console.error("no rule id found for: ", domain);
return;
}
await chrome.declarativeNetRequest.updateDynamicRules({ removeRuleIds: [ruleId] });
// update whiteList_Memory and storage.local
whiteList_Memory.delete(domain);
whiteList_RuleIds.delete(domain);
// wait until saved before reading/displaying whitelist to the user
if (whiteList_Memory.size) {
await chrome.storage.local.set({
"user_whitelist": [...whiteList_Memory],
"whiteList_RuleIds": [...whiteList_RuleIds]
});
// display remaining WhiteList entries
displayWhiteListTable();
} else {
// no whitelist entry to save
await chrome.storage.local.remove(["user_whitelist", "whiteList_RuleIds"]);
whiteList_domains_table.style.display = "none";
divider.style.display = "none";
whiteListedTitle.style.display = "none";
Erase_Button.style.display = "none";
}
chrome.declarativeNetRequest.getDynamicRules((rules)=> showModifiedRules("after deleting one: ", rules));
}
// IIFE to setup resetModal
(function() {
let modal = document.querySelector("#reset-modal");
let modalContainer = document.querySelector(".modal-container");
if(!modal) {
console.log("failed to get modal");
return;
}
modalContainer.addEventListener("click", (e) => {
// only react when clicked on the whitespace around modal
if (e.eventPhase!==e.AT_TARGET) return;
modalContainer.style.visibility = "hidden";
modal.style.scale = 0;
e.stopPropagation();
}, { capture: true });
let confirmBtn = document.querySelector("#reset-modal #confirm-btn");
let cancelBtn = document.querySelector("#reset-modal #cancel-btn");
cancelBtn.addEventListener("click", () => {
modalContainer.style.visibility = "hidden";
modal.style.scale = 0;
});
confirmBtn.addEventListener("click", async () => {
modalContainer.style.visibility = "hidden";
modal.style.scale = 0;
let reply = await chrome.runtime.sendMessage({ revertRules: true });
if(reply.res!=="done") {
console.error("could not reset rules: ", reply.res);
return;
}
// Reset whilelist
await chrome.storage.local.remove(["user_whitelist", "whiteList_RuleIds"]);
whiteList_Memory.clear();
whiteList_RuleIds.clear();
displayWhiteListTable();
});
})();
function handleReset() {
let modal = document.querySelector("#reset-modal");
let modalContainer = document.querySelector(".modal-container");
if(!modal) return;
modalContainer.style.visibility = "visible";
modal.style.scale = 1;
}
let resetBtn = document.querySelector("#reset-btn");
resetBtn.addEventListener("click", (e) => handleReset(e));
/**
*
* @param id rule's id
* @param allow if set to true, creates 'allow' rule else 'block' rule
* @param domain url for the domain
* @returns output rule based on the args
*/
function createRule(id, allow, domain) {
return ({
id: id,
priority: 2,
action: allow
? { type: "allow" }
: { type: "redirect", redirect: { extensionPath: "/block.html" }},
condition: {
urlFilter: "||" + domain + "^",
resourceTypes: ["main_frame","sub_frame"]
}
})
}
document.addEventListener('DOMContentLoaded', restore_options);
WhiteList_Button.addEventListener("click", addWhiteList);
Whitelist_Enter.addEventListener("keypress", function(event) {
// If the user presses the "Enter" key on the keyboard
if (event.key === "Enter") {
addWhiteList();
}
});
Erase_Button.addEventListener("click", removeWhiteList);
function showModifiedRules(msg, rules) {
console.log(msg);
let modRules = rules.filter((rule)=> rule.priority==2);
console.log("white listed: ", modRules.filter((rule)=> rule.action.type=="allow").map(rule=>rule.condition.urlFilter));
console.log("blocked: ", modRules.filter((rule)=> rule.action.type=="redirect").map(rule=>rule.condition.urlFilter));
}