forked from adblockplus/adblockpluschrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscriptionLink.postload.js
103 lines (91 loc) · 2.61 KB
/
subscriptionLink.postload.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
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-present eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus 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 Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
"use strict";
if (document instanceof HTMLDocument)
{
document.addEventListener("click", event =>
{
// Ignore right-clicks
if (event.button == 2)
return;
// Ignore simulated clicks.
if (event.isTrusted == false)
return;
// Search the link associated with the click
let link = event.target;
while (!(link instanceof HTMLAnchorElement))
{
link = link.parentNode;
if (!link)
return;
}
let queryString = null;
if (link.protocol == "http:" || link.protocol == "https:")
{
if (link.host == "subscribe.adblockplus.org" && link.pathname == "/")
queryString = link.search.substr(1);
}
else
{
// Firefox 51 doesn't seem to populate the "search" property for
// links with non-standard URL schemes so we need to extract the query
// string manually.
let match = /^abp:\/*subscribe\/*\?(.*)/i.exec(link.href);
if (match)
queryString = match[1];
}
if (!queryString)
return;
// This is our link - make sure the browser doesn't handle it
event.preventDefault();
event.stopPropagation();
// Decode URL parameters
let title = null;
let url = null;
for (let param of queryString.split("&"))
{
let parts = param.split("=", 2);
if (parts.length != 2 || !/\S/.test(parts[1]))
continue;
switch (parts[0])
{
case "title":
title = decodeURIComponent(parts[1]);
break;
case "location":
url = decodeURIComponent(parts[1]);
break;
}
}
if (!url)
return;
// Default title to the URL
if (!title)
title = url;
// Trim spaces in title and URL
title = title.trim();
url = url.trim();
if (!/^(https?|ftp):/.test(url))
return;
browser.runtime.sendMessage({
type: "subscriptions.add",
title,
url,
confirm: true
});
}, true);
}