-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
420 lines (350 loc) · 11.7 KB
/
background.js
File metadata and controls
420 lines (350 loc) · 11.7 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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
var previousURL = '';
var capped = true; // The log is 'capped' when the last entry has its end time set
var lastFocusEvent = 0; // amount of times since the last time
var previousTabID;
var isDebug = false;
var lostFocusEventTriggered = false;
var checkGeneralFocus = true;
var lostFocusByTime = false;
var timeFocusLoggedOnce = false;
var uncapFromWindowChange = false;
// Boonkganged for easier logging
var bkg = chrome.extension.getBackgroundPage().console;
chrome.runtime.onInstalled.addListener(function() {
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
chrome.declarativeContent.onPageChanged.addRules([{
conditions: [new chrome.declarativeContent.PageStateMatcher({})],
actions: [new chrome.declarativeContent.ShowPageAction()]
}]);
});
// Initialize value of debug
chrome.storage.local.set({
isDebug: isDebug
}, function() {
bkg.log('Debug mode: ' + isDebug);
});
});
setInterval(function() {
chrome.windows.getCurrent(function(innerWindow) {
// If it really changed, cap the log
var isFocused = false;
try {
isFocused = innerWindow.focused;
} catch (err) {
isFocused = false;
if (chrome.runtime.lastError) {
debugWarn("Whoops.. " + chrome.runtime.lastError.message);
} else {
// do nothing
}
}
if (checkGeneralFocus) {
if (!isFocused) {
cap(false);
if (!lostFocusByTime) {
lostFocusByTime = true;
if (!timeFocusLoggedOnce) {
bkg.log('Lost focus by time');
timeFocusLoggedOnce = true;
}
previousURL = '';
}
} else {
if (isFocused && lostFocusByTime) {
if (timeFocusLoggedOnce) {
timeFocusLoggedOnce = false;
bkg.log('Regained focus by time');
}
// bkg.log('Regained focus by time')
// bkg.log('Regained focus by time');
handlePageChange();
lostFocusByTime = false;
} else {
debugLog('False lost focus by time');
uncapFromWindowChange = false;
}
}
}
});
}, 100);
// Called when tab is changed
chrome.tabs.onActivated.addListener(function(activeInfo) {
debugLog('Chrome activated function called');
// bkg.log(activeInfo);
chrome.tabs.getSelected(null, function(tab) {
checkGeneralFocus = false;
if ((tab.url != previousURL && !lostFocusEventTriggered)) {
// debugLog('Tab change detected.');
lostFocusByTime = false;
if (!uncapFromWindowChange) {
// debugLog('Value of tab capped: ' + capped);
debugLog('Tab URL has changed, so it is known that the page changed.');
handlePageChange();
lostFocusEventTriggered = false;
} else {
uncapFromWindowChange = false;
debugLog('Overlapped tab activated and window change blocked.')
}
} else if (lostFocusEventTriggered) {
lostFocusEventTriggered = false;
debugLog('Simultaneous focus change and tab change detected. Only acting upon focus change');
} else {
debugLog('Nothing should happen');
}
checkGeneralFocus = true;
previousURL = tab.url;
});
});
// Called when tab is updated
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
checkGeneralFocus = false;
// bkg.log('Tab update detected');
// bkg.log('URL of updated tab: ' + changeInfo.url);
if (previousURL == '') {
previousURL = changeInfo.url;
} else if (changeInfo.url != previousURL) {
if (lostFocusEventTriggered) {
lostFocusEventTriggered = false;
debugLog('Simultaneous focus change and tab change detected. Only acting upon focus change')
} else {
debugLog('Chrome updated function called');
handlePageChange();
lostFocusByTime = false;
}
} else {
debugLog('Identical URL detected; no action taking place');
}
checkGeneralFocus = true;
});
// Called when focus changes
chrome.windows.onFocusChanged.addListener(function(window) {
chrome.tabs.getSelected(null, function(tab) {
var isDevTools;
try {
isDevTools = tab.url.includes('devtools');
} catch (err) {
isDevTools = false;
if (chrome.runtime.lastError) {
debugWarn("Whoops.. " + chrome.runtime.lastError.message);
}
}
checkGeneralFocus = false;
var currentTime;
if (lastFocusEvent == 0) {
lastFocusEvent = Date.now();
} else {
currentTime = Date.now();
if ((currentTime - lastFocusEvent) <= 500) {
debugLog('Duplicated focus event blocked. Disregard this message');
} else if (isDevTools) {
debugLog('Devtools focus event blocked. Disregard this message.')
} else {
// It thinks through the event that the window has changed. It's not always right so...
if ((window == chrome.windows.WINDOW_ID_NONE)) {
wait(100);
// Double checks to see whether the window really changed
chrome.windows.getCurrent(function(innerWindow) {
// If it really changed, cap the log
var isFocused;
try {
isFocused = innerWindow.focused;
} catch (err) {
innerWindow = false;
if (chrome.runtime.lastError) {
console.warn("Whoops.. " + chrome.runtime.lastError.message);
}
}
if (!isFocused) {
bkg.log('Window lost focus');
lostFocusEventTriggered = true;
cap(false);
lostFocusByTime = false;
// Otherwise, don't cap the log
} else {
debugLog("False focus change event.");
}
});
// Presumably, then, the focus has in fact been regained
} else {
lostFocusByTime = false;
bkg.log('Window gained focus');
// If the focus has been regained while the log is capped
if (!capped) {
// Uncap the log
debugLog('The log is currently uncapped, so it will be incremented.')
handlePageChange();
} else {
if (tab.url == previousURL) {
debugLog('False alarm. The tab thingy will handle this.')
} else {
debugLog('The log is currently capped, so it will be uncapped.')
handlePageChange();
uncapFromWindowChange = true;
}
}
lostFocusEventTriggered = false;
}
lastFocusEvent = Date.now();
}
}
checkGeneralFocus = true;
});
});
// General page change call
function handlePageChange() {
chrome.tabs.getSelected(null, function(tab) {
if (chrome.runtime.lastError) {
debugWarn("Whoops.. " + chrome.runtime.lastError.message);
} else {
if (previousURL == '') {
previousURL = tablink;
}
debugLog('Page handler called.');
var tablink = cleanURL(tab.url);
if (tablink.includes('devtools')) {
debugLog('devtools handling blocked.')
} else {
if (previousURL != tablink) {
previousURL = tablink;
var currentTime = Date.now();
// If the previous entry is capped, then uncap
if (capped) {
chrome.storage.local.get({
log: []
}, function(result) {
var logArray = result.log;
uncap();
// bkg.log('Log time initialized to ' + previousLogTime);
var toStore = new DataEntry(tablink, currentTime);
logArray[logArray.length] = toStore;
chrome.storage.local.set({
log: logArray
}, function() {
bkg.log('Log from uncapping')
bkg.log(logArray);
});
});
// If the previous entry is uncapped, then increment
} else if (!capped) {
chrome.storage.local.get({
log: []
}, function(result) {
var logArray = result.log;
uncapFromWindowChange = false;
// Update information
bkg.log('Incrementing entry. Log will increase in size by one.');
// Add next entry
var toStore = new DataEntry(tablink, currentTime);
logArray[logArray.length] = toStore;
// Modify previous entry
var previousEntry = logArray[logArray.length - 2];
incrementData(previousEntry, currentTime);
// Update and log results
chrome.storage.local.set({
log: logArray
}, function() {
bkg.log('Log from incrementation: ');
bkg.log(logArray);
});
});
} else {
debugLog('False tab switch caught. Previous URL is ' + previousURL + ' and current url is ' + tablink);
}
}
}
}
});
}
///////////////////////////////////////////////////////////////////////////////////////////////
// Utilities
///////////////////////////////////////////////////////////////////////////////////////////////
// Returns time since the creation of the environment
function timeFromStart() {
return Date.now(); //- environmentCreateTime;
}
function cap(isIncrement) {
chrome.storage.local.get({
log: []
}, function(result) {
var logArray = result.log;
previousURL = '';
if (!capped) {
capped = true;
uncapFromWindowChange = false;
if (isIncrement) {
bkg.log("Log incrementing. Log will increase in size by 1.");
} else {
bkg.log("Log capping. Log will stay the same length.");
}
var currentTime = timeFromStart();
var previousEntry = logArray[logArray.length - 1];
incrementData(previousEntry, currentTime);
chrome.storage.local.set({
log: logArray
}, function() {
bkg.log('Log after being capped: ');
bkg.log(logArray);
});
}
});
}
function uncap() {
if (capped) {
capped = false
bkg.log("Log uncapping. Log will increase in size by one.");
}
}
function cleanURL(url) {
var counter = 0;
var startSearchIndex = 0;
var beginTrim;
while (counter < 3) {
startSearchIndex = url.indexOf('/', startSearchIndex) + 1;
counter++;
// Locate the index of the first character after the http:// or whatever
if (counter == 2) {
beginTrim = startSearchIndex;
}
}
return url.substring(beginTrim, startSearchIndex - 1);
}
function debugWarn(toLog) {
chrome.storage.local.get({
isDebug
}, function(result) {
if (result.isDebug) {
bkg.warn('[DEBUG]: ' + toLog);
// bkg.log('^proper isDebug log');;
// } else {
// bkg.log(result.isDebug);
}
});
}
function wait(time) {
var initialTime = Date.now();
while (Date.now() - initialTime < time) {
// Do nothing
}
debugLog('Waited for ' + time + ' ms.')
}
function timeConverter(UNIX_timestamp) {
var a = new Date(UNIX_timestamp * 1000);
var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
var year = a.getFullYear();
var month = months[a.getMonth()];
var date = a.getDate();
var hour = a.getHours();
var min = a.getMinutes();
var sec = a.getSeconds();
var time = date + ' ' + month + ' ' + year + ' ' + hour + ':' + min + ':' + sec;
return time;
}
function incrementData(dataObject, rawEndTime) {
dataObject.time.rawEndTime = rawEndTime;
dataObject.time.rawDuration = dataObject.time.rawEndTime - dataObject.time.rawStartTime;
dataObject.duration = msToPrettyString(dataObject.time.rawDuration);
}