-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
284 lines (203 loc) · 6.39 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
function updateBookmark(info) {
let res = info.res;
let code = res.statusCode;
let explanation;
let action;
switch (info.reason) {
case 'canonical':
explanation = 'the canonical link for this page is different.';
action = 'update';
break;
case 'https':
explanation = 'the page has redirected to an HTTPS page.';
action = 'update';
break;
case 'moved':
let duration = (code == 301) || (code == 308) ? 'permanently' : 'temporarily';
explanation = `the page has moved ${duration} (${res.statusLine}).`;
action = 'update';
break;
case 'inacessible':
explanation = res.statusLine === undefined
? `the host cannot be reached (${res.error})`
: `the page is inaccessible (${res.statusLine}).`;
action = 'remove';
break;
}
if (explanation === undefined) {
console.warn( `unhandled reason ${info.reason}` );
return;
}
var actor = function(info) {
return (notification_id) => {
return (id) => {
if (id == notification_id) {
if (info.reason == 'inacessible') {
var promise = browser.bookmarks.remove( info.bookmark.id );
promise.then( () => {
console.log('removed bookmark');
});
}
else if (info.url) {
var promise = browser.bookmarks.update( info.bookmark.id, { url: info.url } );
promise.then( () => {
console.log('updated bookmark');
});
}
else {
console.warn( 'no url to update' );
}
browser.notifications.clear(id);
}
}
};
}(info);
var notifying = browser.notifications.create(
{
"type": "basic",
"iconUrl": browser.extension.getURL("icons/link.svg"),
"title": `Bookmark for ${info.bookmark.title}`,
"message": `There is a bookmark linking to the page ${info.bookmark.url}, but ${explanation}\n\nClick to ${action} the bookmark.`
}
);
notifying.then( (notification_id) => {
browser.notifications.onClicked.addListener(
actor(notification_id)
);
});
}
function checkBookmark(res, info) {
let code = res.statusCode;
let bookmark = info.bookmark;
function getHeader(fn) {
var index = res.responseHeaders.findIndex(fn);
if (index >= 0) {
return res.responseHeaders[index].value.split( /;\s+/ );
}
else {
return null;
}
}
function isContentType(element) {
return element.name.toLowerCase() == 'content-type';
}
function isCanonicalLink(element) {
return (element.name.toLowerCase() == 'link') &&
(element.value.match( /;\s+rel=\"canonical\"/ ));
}
function isLocation(element) {
return element.name.toLowerCase() == 'location';
}
if (code === undefined) {
updateBookmark({
bookmark: bookmark,
url: null,
res: res,
reason: 'inacessible'
});
}
else if (code == 200) {
var canonical = getHeader(isCanonicalLink);
if (canonical) {
canonical = canonical[0].substring(1,canonical.length-2);
if (canonical != res.url) {
updateBookmark({
bookmark: bookmark,
url: canonical,
res: res,
reason: 'canonical'
});
}
}
else {
var type = getHeader(isContentType)[0];
if (type == 'text/html') {
function getCanonical(message, sender) {
canonical = message.canonical;
browser.runtime.onMessage.removeListener(getCanonical);
if (canonical && (canonical != res.url)) {
updateBookmark({
bookmark: bookmark,
url: canonical,
res: res,
reason: 'canonical'
});
}
}
browser.runtime.onMessage.addListener(getCanonical);
browser.tabs.executeScript({
file: "canonical.js"
});
}
}
}
else if ((code >= 301) && (code <= 399)) {
var location = getHeader(isLocation);
var moved = location[0].split('://');
var orig = bookmark.url.split('://');
var reason = ((moved[1] == orig[1]) && (moved[0] == 'https'))
? 'https'
: 'moved';
updateBookmark({
bookmark: bookmark,
url: location[0],
res: res,
reason: reason
});
}
else if ((code >= 400) || (code <= 499)) {
updateBookmark({
bookmark: bookmark,
url: null,
res: res,
reason: 'inacessible'
});
}
}
function getBookmark(res) {
let parts = res.url.split('://');
if (!parts[0].match( /^https?/ )) {
return null;
}
let schemes = [ 'http', 'https' ];
let info;
schemes.forEach( (scheme) => {
let url = scheme + '://' + parts[1];
if (info === undefined) {
var promise = browser.bookmarks.search({ url: url });
promise.then((bookmarks) => {
if (bookmarks.length) {
info = {
bookmark: bookmarks[0],
same: scheme == parts[0],
url: url
};
checkBookmark(res, info);
}
});
}
});
}
function responseHandler(res) {
if (res.tabId < 0) {
return;
}
getBookmark( res );
}
let filter = {
urls: [
"<all_urls>"
],
types: [
"main_frame"
]
};
browser.webRequest.onHeadersReceived.addListener(
responseHandler,
filter,
[ "responseHeaders" ]
);
browser.webRequest.onErrorOccurred.addListener(
responseHandler,
filter
);