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
|
//This is the background script. It is responsible for actually redirecting requests,
//as well as monitoring changes in the redirects and the disabled status and reacting to them.
function log(msg) {
if (log.enabled) {
console.log('REDIRECTOR: ' + msg);
}
}
log.enabled = false;
var isFirefox = false;
if (typeof chrome == 'undefined') {
console.log('Creating fake chrome...');
isFirefox = true;
var firefoxShim = require('./firefox/background-shim');
chrome = firefoxShim.chrome;
Redirect = firefoxShim.Redirect;
log = firefoxShim.log;
exports.onUnload = function (reason) {
log('Unloading (' + reason + '), removing listeners');
redirectEvent.removeListener(checkRedirects);
chrome.storage.onChanged.removeListener(monitorChanges);
chrome.storage.clearCache(); //<-Firefox specific
};
}
//Hopefully Firefox will fix this at some point and we can just use onBeforeRequest everywhere...
var redirectEvent = isFirefox ? chrome.webRequest.onBeforeSendHeaders : chrome.webRequest.onBeforeRequest;
//Redirects partitioned by request type, so we have to run through
//the minimum number of redirects for each request.
var partitionedRedirects = {};
//Cache of urls that have just been redirected to. They will not be redirected again, to
//stop recursive redirects, and endless redirect chains.
//Key is url, value is timestamp of redirect.
var ignoreNextRequest = {
};
//url => { timestamp:ms, count:1...n};
var justRedirected = {
};
var redirectThreshold = 3;
function setIcon(image) {
var data = {
path: {
19 : 'images/' + image + '-19.png',
38 : 'images/' + image + '-38.png'
}
};
chrome.browserAction.setIcon(data, function() {
var err = chrome.runtime.lastError;
if (err) {
//If not checked we will get unchecked errors in the background page console...
log('Error in SetIcon: ' + err.message);
}
});
}
//This is the actual function that gets called for each request and must
//decide whether or not we want to redirect.
function checkRedirects(details) {
//Oh Firefox, please fix your broken url matching soon...
if (isFirefox && !details.url.match(/^https?:\/\//)) {
log('Not http: ' + details.url);
return {};
}
//We only allow GET request to be redirected, don't want to accidentally redirect
//sensitive POST parameters
if (details.method != 'GET') {
return {};
}
log('Checking: ' + details.type + ': ' + details.url);
var list = partitionedRedirects[details.type];
if (!list) {
log('No list for type: ' + details.type);
return {};
}
var timestamp = ignoreNextRequest[details.url];
if (timestamp) {
log('Ignoring ' + details.url + ', was just redirected ' + (new Date().getTime()-timestamp) + 'ms ago');
delete ignoreNextRequest[details.url];
return {};
}
for (var i = 0; i < list.length; i++) {
var r = list[i];
var result = r.getMatch(details.url);
if (result.isMatch) {
//Check if we're stuck in a loop where we keep redirecting this, in that
//case ignore!
var data = justRedirected[details.url];
var threshold = 3000;
if(!data || ((new Date().getTime()-data.timestamp) > threshold)) { //Obsolete after 3 seconds
justRedirected[details.url] = { timestamp : new Date().getTime(), count: 1};
} else {
data.count++;
justRedirected[details.url] = data;
if (data.count >= redirectThreshold) {
log('Ignoring ' + details.url + ' because we have redirected it ' + data.count + ' times in the last ' + threshold + 'ms');
return {};
}
}
log('Redirecting ' + details.url + ' ===> ' + result.redirectTo + ', type: ' + details.type + ', pattern: ' + r.includePattern);
ignoreNextRequest[result.redirectTo] = new Date().getTime();
return { redirectUrl: result.redirectTo };
}
}
return {};
}
//Monitor changes in data, and setup everything again.
//This could probably be optimized to not do everything on every change
//but why bother?
function monitorChanges(changes, namespace) {
if (changes.disabled) {
updateIcon();
if (changes.disabled.newValue == true) {
log('Disabling Redirector, removing listener');
redirectEvent.removeListener(checkRedirects);
} else {
log('Enabling Redirector, setting up listener');
setUpRedirectListener();
}
}
if (changes.redirects) {
log('Redirects have changed, setting up listener again');
setUpRedirectListener();
}
}
chrome.storage.onChanged.addListener(monitorChanges);
//Creates a filter to pass to the listener so we don't have to run through
//all the redirects for all the request types we don't have any redirects for anyway.
function createFilter(redirects) {
var types = [];
for (var i = 0; i < redirects.length; i++) {
redirects[i].appliesTo.forEach(function(type) {
if (types.indexOf(type) == -1) {
types.push(type);
}
});
}
types.sort();
//FIXME: The Firefox implementation of the url matching is seriously broken still,
//so we can't filter by url on Firefox for now, have to cut non http urls out in checkRedirects.
return {
urls: isFirefox ? null : ["https://*/*", "http://*/*"],
types : types
};
}
function createPartitionedRedirects(redirects) {
var partitioned = {};
for (var i = 0; i < redirects.length; i++) {
var redirect = new Redirect(redirects[i]);
redirect.compile();
for (var j=0; j<redirect.appliesTo.length;j++) {
var requestType = redirect.appliesTo[j];
if (partitioned[requestType]) {
partitioned[requestType].push(redirect);
} else {
partitioned[requestType] = [redirect];
}
}
}
return partitioned;
}
//Sets up the listener, partitions the redirects, creates the appropriate filters etc.
function setUpRedirectListener() {
redirectEvent.removeListener(checkRedirects); //Unsubscribe first, in case there are changes...
chrome.storage.local.get({redirects:[]}, function(obj) {
var redirects = obj.redirects;
if (redirects.length == 0) {
log('No redirects defined, not setting up listener');
return;
}
partitionedRedirects = createPartitionedRedirects(redirects);
var filter = createFilter(redirects);
log('Setting filter for listener: ' + JSON.stringify(filter));
redirectEvent.addListener(checkRedirects, filter, ["blocking"]);
});
}
function updateIcon() {
chrome.storage.local.get({disabled:false}, function(obj) {
setIcon(obj.disabled ? 'icon-disabled' : 'icon-active');
});
}
//First time setup
updateIcon();
chrome.storage.local.get({disabled:false}, function(obj) {
if (!obj.disabled) {
setUpRedirectListener();
} else {
log('Redirector is disabled');
}
});
log('Redirector starting up...');
|