-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
442 lines (383 loc) · 11 KB
/
Copy pathbackground.js
File metadata and controls
442 lines (383 loc) · 11 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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
// Queue management
let operationQueue = [];
let isProcessing = false;
// Synchronization interval (in milliseconds)
const SYNC_INTERVAL = 10000; // 1 minute
// Sync and recreate alarms periodically
setInterval(syncAlarms, SYNC_INTERVAL);
// Chrome event listeners
chrome.runtime.onInstalled.addListener(() => {
syncAlarms().catch((error) => {
handleError("Error during installation:", error);
});
});
chrome.runtime.onStartup.addListener(() => {
checkAndReschedulePassedAlarms().catch((error) => {
handleError("Error during startup:", error);
});
});
chrome.alarms.onAlarm.addListener((alarm) => {
enqueueOperation(() => handleAlarm(alarm)).catch((error) => {
handleError("Error in alarm listener:", error);
});
});
// Listen for messages from popup
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
switch (request.action) {
case "getAlarms":
getAlarms()
.then((alarms) => sendResponse(alarms))
.catch(() => sendResponse([]));
break;
case "scheduleURL":
scheduleURL(request.alarm)
.then(() => sendResponse({ success: true }))
.catch(() => sendResponse({ success: false }));
break;
case "deleteURL":
deleteURL(request.alarm)
.then(() => sendResponse({ success: true }))
.catch(() => sendResponse({ success: false }));
break;
case "editURL":
editURL(request.alarm)
.then(() => sendResponse({ success: true }))
.catch(() => sendResponse({ success: false }));
break;
case "toggleURL":
toggleURL(request.id)
.then(() => sendResponse({ success: true }))
.catch(() => sendResponse({ success: false }));
break;
}
return true;
});
// Helper function to add operation to queue and process
async function enqueueOperation(operation) {
return new Promise((resolve, reject) => {
operationQueue.push({
operation,
resolve,
reject,
});
processQueue();
});
}
// Process queue
async function processQueue() {
if (isProcessing || operationQueue.length === 0) {
return;
}
isProcessing = true;
while (operationQueue.length > 0) {
const { operation, resolve, reject } = operationQueue[0];
try {
const result = await operation();
resolve(result);
} catch (error) {
reject(error);
} finally {
operationQueue.shift(); // Remove the processed operation
}
}
isProcessing = false;
}
// Helper function for chrome.alarms.clear
function clearChromeAlarm(alarmId) {
return new Promise((resolve, reject) => {
chrome.alarms.clear(alarmId, () => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve();
}
});
});
}
// Helper function for chrome.alarms.create
function createChromeAlarm(alarmId, alarmInfo) {
return new Promise((resolve, reject) => {
chrome.alarms.create(alarmId, alarmInfo, () => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve();
}
});
});
}
// Helper function to get all existing alarms with chrome.alarms.getAll
function getAllLocalChromeAlarms() {
return new Promise((resolve, reject) => {
chrome.alarms.getAll((alarms) => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve(alarms);
}
});
});
}
// Helper function for chrome.storage.local.sync.get
function getChromeStorageData(key) {
return new Promise((resolve, reject) => {
chrome.storage.sync.get(key, (result) => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve(result);
}
});
});
}
// Helper function for chrome.storage.local.sync.sety
function setChromeStorageData(data) {
return new Promise((resolve, reject) => {
chrome.storage.sync.set(data, () => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve();
}
});
});
}
// Core operations
async function createAlarmCore(url) {
await clearChromeAlarm(url.id);
const alarmTime = new Date(url.time).getTime();
await createChromeAlarm(url.id, { when: alarmTime });
}
async function deleteAlarmCore(url) {
await clearChromeAlarm(url.id);
}
async function updateAlarms(alarms) {
await setChromeStorageData({ alarms });
}
async function getAlarms() {
const result = await getChromeStorageData(["alarms"]);
const alarms = result.alarms || [];
return alarms;
}
async function scheduleURL(url) {
try {
await createAlarmCore(url);
const alarms = await getAlarms();
const index = alarms.findIndex((a) => a.id === url.id);
if (index !== -1) {
alarms[index] = url;
} else {
alarms.push(url);
}
await updateAlarms(alarms);
refreshPopup();
} catch (error) {
handleError("Error creating alarm", error);
}
}
async function deleteURL(URLToBeDeleted) {
try {
// Delete alarm from Chrome
await deleteAlarmCore(URLToBeDeleted);
// Delete alarm from storage
const alarms = await getAlarms();
const updatedAlarms = alarms.filter((a) => a.id !== URLToBeDeleted.id);
await updateAlarms(updatedAlarms);
refreshPopup();
} catch (error) {
handleError("Error deleting alarm:", error);
}
}
async function editURL(updatedURL) {
try {
const alarms = await getAlarms();
const index = alarms.findIndex((alarm) => alarm.id === updatedURL.id);
if (index !== -1) {
const oldAlarm = alarms[index];
await deleteURL(oldAlarm);
alarms[index] = updatedURL;
await scheduleURL(updatedURL);
} else {
throw new Error("Alarm not found for editing");
}
} catch (error) {
handleError("Error editing alarm:", error);
}
}
async function handleAlarm(triggeredAlarm) {
try {
const alarms = await getAlarms();
const alarm = alarms.find((a) => a.id === triggeredAlarm.name);
if (alarm) {
if (alarm.isActive) {
await createChromeTabWithURL(alarm.url);
if (alarm.frequency === "once") {
const updatedAlarms = alarms.filter((a) => a.id !== alarm.id);
await deleteAlarmCore(alarm);
await updateAlarms(updatedAlarms);
} else {
updateNextAlarmTime(alarm);
}
} else {
updateNextAlarmTime(alarm);
}
}
refreshPopup();
} catch (error) {
handleError("Error handling alarm:", error);
}
}
async function toggleURL(id) {
try {
const alarms = await getAlarms();
const alarm = alarms.find((a) => a.id === id);
if (alarm) {
// Toggle active
alarm.isActive = !alarm.isActive;
// Update alarms
await deleteAlarmCore(alarm);
await createAlarmCore(alarm);
await updateAlarms(alarms);
refreshPopup();
}
} catch (error) {
handleError("Error toggling alarm:", error);
}
}
async function updateNextAlarmTime(alarm) {
try {
const now = new Date();
const alarmTime = new Date(alarm.time);
let newTime = new Date(alarmTime);
while (newTime <= now) {
newTime = getNextAlarmTime(newTime, alarm.frequency);
}
const updatedURL = { ...alarm, time: newTime.toISOString() };
await deleteAlarmCore(alarm);
await createAlarmCore(updatedURL);
const alarms = await getAlarms();
const index = alarms.findIndex((a) => a.id === alarm.id);
if (index !== -1) {
alarms[index] = updatedURL;
await updateAlarms(alarms);
}
refreshPopup();
} catch (error) {
handleError("Error updating alarm:", error);
}
}
// Reschedule alarms that have passed
async function checkAndReschedulePassedAlarms() {
try {
const alarms = await getAlarms();
for (const alarm of alarms) {
if (isScheduledTimePassed(alarm.time)) {
await enqueueOperation(() => handleAlarm({ alarm }));
}
}
} catch (error) {
handleError("Error checking and rescheduling alarms:", error);
}
}
async function syncAlarms() {
console.log("Syncing");
try {
const globalAlarms = await getAlarms();
console.log("Global: ", globalAlarms);
// Get all existing alarms in the current local browser
const localAlarms = await getAllLocalChromeAlarms();
console.log("Local: ", localAlarms);
// Map local alarms for quick lookup
const localAlarmMap = new Map(localAlarms.map((a) => [a.name, a]));
// Recreate alarms that are missing locally or is outdated
for (const globalAlarm of globalAlarms) {
const localAlarm = localAlarmMap.get(globalAlarm.id);
if (!localAlarm || isLocalAlarmOutdated(localAlarm, globalAlarm)) {
if (localAlarm) {
await deleteAlarmCore(localAlarm);
}
await createAlarmCore(globalAlarm);
}
}
// Cleanup extra local alarms that don't exist in sync storage
for (const alarm of localAlarms) {
if (!globalAlarms.some((a) => a.id === alarm.name)) {
await deleteAlarmCore(alarm);
}
}
} catch (error) {
handleError("Error syncing alarm record:", error);
}
}
function isScheduledTimePassed(scheduledTime) {
const now = new Date();
const scheduled = new Date(scheduledTime);
return scheduled <= now;
}
function isLocalAlarmOutdated(localAlarm, globalAlarm) {
const localTime = localAlarm.scheduledTime;
const globalTime = new Date(globalAlarm.time).getTime();
// Check if times differ.
return localTime !== globalTime;
}
function getNextAlarmTime(currentTime, frequency) {
const next = new Date(currentTime);
switch (frequency) {
case "once":
return new Date(next.getTime() + 60000); //Update by 1 min as precaution to prevent infinite loops
case "1min":
return new Date(next.getTime() + 60000);
case "5min":
return new Date(next.getTime() + 300000);
case "10min":
return new Date(next.getTime() + 600000);
case "15min":
return new Date(next.getTime() + 900000);
case "30min":
return new Date(next.getTime() + 1800000);
case "hourly":
return new Date(next.setHours(next.getHours() + 1));
case "daily":
return new Date(next.setDate(next.getDate() + 1));
case "weekly":
return new Date(next.setDate(next.getDate() + 7));
case "biweekly":
return new Date(next.setDate(next.getDate() + 14));
case "monthly":
return new Date(next.setMonth(next.getMonth() + 1));
case "yearly":
return new Date(next.setFullYear(next.getFullYear() + 1));
default:
return next;
}
}
function createChromeTabWithURL(url) {
return new Promise((resolve, reject) => {
chrome.tabs.create({ url }, (tab) => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve(tab);
}
});
});
}
// Utility function for refreshing popup. Refresh attempts is generally going to throw error due to popup not being open for refresh. Can just ignore as non critical
async function refreshPopup() {
try {
await new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ action: "refreshPopup" }, (response) => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve(response);
}
});
});
} catch (error) {
return;
}
}
function handleError(message, error) {
//console.error(message, error);
}