-
Notifications
You must be signed in to change notification settings - Fork 3
/
script.js
133 lines (90 loc) · 3.39 KB
/
script.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
console.log("Started Script");
extractHostname = (url) => {
let hostname = url.indexOf("//") > -1 ? url.split('/')[2] : url.split('/')[0];
// find & remove port number
hostname = hostname.split(':')[0];
// find & remove "?"
hostname = hostname.split('?')[0];
return hostname;
};
// this function is storing in db
setByteLengthPerOrigin = (_dbname, origin, byteLength) => {
const stats = localStorage.getItem(_dbname);
const statsJson = null === stats ? {} : JSON.parse(stats);
let bytePerOrigin = undefined === statsJson[origin] ? 0 : parseInt(statsJson[origin]);
statsJson[origin] = bytePerOrigin + byteLength;
localStorage.setItem(_dbname, JSON.stringify(statsJson));
};
isChrome = () => {
console.log(typeof(browser));
return (typeof(browser) === 'undefined');
};
headersReceivedListener = (requestDetails) => {
date = new Date()
localStorage.setItem("now", date.getMinutes())
if (isChrome()) {
const origin = extractHostname(!requestDetails.initiator ? requestDetails.url : requestDetails.initiator);
const responseHeadersContentLength = requestDetails.responseHeaders.find(element => element.name.toLowerCase() === "content-length");
const contentLength = undefined === responseHeadersContentLength ? {value: 0}
: responseHeadersContentLength;
const requestSize = parseInt(contentLength.value, 10);
setByteLengthPerOrigin('stats', origin, requestSize);
localStorage.setItem("myEmissionHistory", JSON.stringify([localStorage.stats]))
return {};
}
currentMinute = date.getMinutes();
let filter = browser.webRequest.filterResponseData(requestDetails.requestId);
filter.ondata = event => {
const origin = extractHostname(!requestDetails.originUrl ? requestDetails.url : requestDetails.originUrl);
setByteLengthPerOrigin(origin, event.data.byteLength);
filter.write(event.data);
};
filter.onstop = () => {
filter.disconnect();
};
return {};
};
setBrowserIcon = (type) => {
chrome.browserAction.setIcon({path: `icons/icon-${type}-48.png`});
};
addOneMinute = () => {
let duration = localStorage.getItem('duration');
duration = null === duration ? 1 : 1 * duration + 1;
localStorage.setItem('duration', duration);
};
addOneHour = () => {
// At every three minute append stats to myEmissionHistory
stats = JSON.parse(localStorage.getItem("stats"));
emissionHistory = (localStorage.getItem("myEmissionHistory"))
emissionHistory.push(stats);
localStorage.setItem('stats', JSON.stringify({}))
localStorage.setItem("myEmissionHistory", (emissionHistory))
}
let addOneMinuteInterval, addOneHourInterval;
handleMessage = (request) => {
console.log("started");
if ('start' === request.action) {
setBrowserIcon('on');
chrome.webRequest.onHeadersReceived.addListener(
headersReceivedListener,
{urls: ['<all_urls>']},
['responseHeaders']
);
if (!addOneMinuteInterval) {
addOneMinuteInterval = setInterval(addOneMinute, 60000);
}
if (!addOneHourInterval){
addOneHourInterval = setInterval(addOneHour, 10000);
}
return;
}
if ('stop' === request.action) {
setBrowserIcon('off');
chrome.webRequest.onHeadersReceived.removeListener(headersReceivedListener);
if (addOneMinuteInterval) {
clearInterval(addOneMinuteInterval);
addOneMinuteInterval = null;
}
}
};
chrome.runtime.onMessage.addListener(handleMessage);