forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession-history.js
More file actions
193 lines (162 loc) · 4.07 KB
/
Copy pathsession-history.js
File metadata and controls
193 lines (162 loc) · 4.07 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
'use strict';
var BrowserSession = function BrowserSession()
{
this.timer;
this.tabCount = 0;
this.startTime = (new Date()).getTime();
this.lastSave = this.startTime;
this.updateInterval = 15;
this.windows = [];
this.onUpdate = function () {};
};
BrowserSession.prototype.update = function update()
{
// Prepare session information
browser.windows.getAll({
populate: true,
windowTypes: ['normal']
})
.then(function (windows) {
var sessions = [];
var tabCount = 0;
for (let mozWindow of windows)
{
if (mozWindow.incognito == false)
{
var tabs = [];
// Add window tabs
for (var i in mozWindow.tabs)
{
var tab = mozWindow.tabs[i];
var sessionTab = {
title: tab.title,
url: tab.url,
pinned: tab.pinned,
};
tabCount++;
tabs[tab.index] = sessionTab;
}
sessions.push(tabs);
}
}
// Update internal storage
this.lastSave = (new Date()).getTime();
this.tabCount = tabCount;
this.windows = sessions;
this.onUpdate();
// console.log(this);
}.bind(this));
};
BrowserSession.prototype.start = function start()
{
if (this.timer == undefined) {
// console.log('Session auto-save: start');
this.timer = setInterval(this.update.bind(this), this.updateInterval * 1000);
this.update();
}
};
BrowserSession.prototype.stop = function stop()
{
if (this.timer != undefined) {
// console.log('Session auto-save: stop');
clearInterval(this.timer);
this.timer = undefined;
}
};
BrowserSession.prototype.resetInterval = function resetInterval(updateInterval)
{
this.updateInterval = updateInterval;
if (this.timer != undefined) {
// console.log('Session auto-save: reset interval');
this.stop();
this.start();
}
};
(function SessionAutoSave()
{
// ------------------------------------------------------------------------
// Init
var activeSession = new BrowserSession();
var sessions = [];
var sessionsKey = 'history.sessions';
var config = {
key: 'history.config',
enabled: true,
interval: 15,
savingSlots: 10,
expireTimeHours: 48, // hours
};
browser.storage.local.get(config.key).then(function (obj) {
if (Object.keys(obj).length === 0 && obj.constructor === Object)
{
browser.storage.local.set({
[config.key] : config
}).then(init);
}
else
{
config = obj[config.key];
init();
}
});
var init = function init()
{
browser.storage.local.get(sessionsKey).then(function (obj) {
if (obj[sessionsKey]) {
sessions = obj[sessionsKey];
}
updateStorage();
activeSession.resetInterval(config.interval);
activeSession.onUpdate = updateTrackedSession;
updateState();
browser.storage.onChanged.addListener(function onChange(object) {
if (object[config.key]) {
config = object[config.key].newValue;
activeSession.resetInterval(config.interval);
config.enabled ? activeSession.start() : activeSession.stop();
}
if (object[sessionsKey]) {
sessions = object[sessionsKey].newValue;
}
});
});
};
// ------------------------------------------------------------------------
// Events
var updateTrackedSession = function updateTrackedSession()
{
sessions[sessions.length ? (sessions.length - 1) : 0] = {
tabCount: activeSession.tabCount,
startDate: activeSession.startTime,
lastSave: activeSession.lastSave,
windows: activeSession.windows,
active: true,
};
browser.storage.local.set({ [sessionsKey] : sessions});
};
var updateStorage = function updateStorage()
{
var expireTime = new Date(new Date() - config.expireTimeHours * 3600 * 1000);
var list = [];
// compact free space and delete expired sessions
sessions.forEach(function (session) {
if (session && session.tabCount) {
delete session.active;
if (config.expireTimeHours > 0)
{
if (session.lastSave < expireTime) {
return;
}
}
list.push(session);
}
});
// get session list
sessions = list.slice(-(config.savingSlots - 1));
sessions[list.length] = undefined;
};
var updateState = function updateState()
{
config.enabled ? activeSession.start() : activeSession.stop();
};
})();