forked from uku/Unblock-Youku
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.js
More file actions
97 lines (83 loc) · 2.92 KB
/
Copy pathheader.js
File metadata and controls
97 lines (83 loc) · 2.92 KB
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
/*
* Copyright (C) 2012 - 2014 Bo Zhu http://zhuzhu.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*global chrome: false, unblock_youku: false */
/*global ga_report_error: false */
"use strict";
function header_modifier(details) {
console.log('modify headers of ' + details.url);
details.requestHeaders.push({
name: 'X-Forwarded-For',
value: unblock_youku.ip_addr
}, {
name: 'Client-IP',
value: unblock_youku.ip_addr
});
return {requestHeaders: details.requestHeaders};
}
function setup_header() {
if (!chrome.webRequest.onBeforeSendHeaders.hasListener(header_modifier)) {
chrome.webRequest.onBeforeSendHeaders.addListener(
header_modifier,
{
urls: unblock_youku.normal_url_list
},
['requestHeaders', 'blocking']
);
console.log('header_modifier is set');
} else {
var err_msg = 'header_modifer is already there!';
console.error(err_msg);
ga_report_error('Unexpected Error', err_msg);
}
}
function clear_header() {
if (chrome.webRequest.onBeforeSendHeaders.hasListener(header_modifier)) {
chrome.webRequest.onBeforeSendHeaders.removeListener(header_modifier);
console.log('header_modifier is removed');
} else {
var err_msg = 'header_modifier is not there!';
console.error(err_msg);
ga_report_error('Unexpected Error', err_msg);
}
}
// extra sites to handle
function extra_header_modifier(details) {
details.requestHeaders.push({
name: 'X-Forwarded-For',
value: unblock_youku.ip_addr
}, {
name: 'Client-IP',
value: unblock_youku.ip_addr
});
return {requestHeaders: details.requestHeaders};
}
function setup_extra_header() {
if (!chrome.webRequest.onBeforeSendHeaders.hasListener(extra_header_modifier)) {
chrome.webRequest.onBeforeSendHeaders.addListener(
extra_header_modifier,
{
urls: unblock_youku.header_extra_url_list
},
['requestHeaders', 'blocking']
);
console.log('extra_header_modifier is set');
} else {
var err_msg = 'extra_header_modifer is already there!';
console.error(err_msg);
ga_report_error('Unexpected Error', err_msg);
}
}