-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
221 lines (180 loc) · 5.35 KB
/
background.js
File metadata and controls
221 lines (180 loc) · 5.35 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
const DEFAULT_CONFIG = {
patterns: [],
timeoutMessage: "Time's up. Get back to what matters.",
defaultDurationMinutes: 20
};
const SESSION_KEY = "activeSessionsByTab";
const CONFIG_KEY = "settings";
async function getConfig() {
const data = await browser.storage.local.get(CONFIG_KEY);
return {
...DEFAULT_CONFIG,
...(data[CONFIG_KEY] || {})
};
}
function getOrigin(url) {
try {
return new URL(url).origin;
} catch (err) {
return "";
}
}
function matchesPattern(url, rawPattern) {
if (!rawPattern || !rawPattern.trim()) {
return false;
}
const pattern = rawPattern.trim();
if (pattern.toLowerCase().startsWith("regex:")) {
const regexBody = pattern.slice("regex:".length).trim();
try {
return new RegExp(regexBody).test(url);
} catch (err) {
return false;
}
}
try {
const escaped = pattern.replace(/[.+^${}()|[\\]\\]/g, "\\$&").replace(/\*/g, ".*");
const regex = new RegExp(`^${escaped}$`);
return regex.test(url);
} catch (err) {
return false;
}
}
function isConfiguredUrl(url, config) {
if (!url || !config.patterns.length) {
return false;
}
return config.patterns.some((pattern) => matchesPattern(url, pattern));
}
async function getSessions() {
const data = await browser.storage.local.get(SESSION_KEY);
return data[SESSION_KEY] || {};
}
async function saveSessions(sessions) {
await browser.storage.local.set({ [SESSION_KEY]: sessions });
}
async function createSession(tabId, url, durationSeconds) {
const sessions = await getSessions();
const expiresAt = Date.now() + durationSeconds * 1000;
sessions[String(tabId)] = {
url,
origin: getOrigin(url),
expiresAt
};
await saveSessions(sessions);
await browser.alarms.create(`timer-${tabId}`, {
when: expiresAt
});
return expiresAt;
}
async function clearSession(tabId) {
const sessions = await getSessions();
delete sessions[String(tabId)];
await saveSessions(sessions);
await browser.alarms.clear(`timer-${tabId}`);
}
async function getSession(tabId) {
const sessions = await getSessions();
return sessions[String(tabId)] || null;
}
async function ensureSessionValidity(tabId) {
const session = await getSession(tabId);
if (!session) {
return null;
}
if (session.expiresAt <= Date.now()) {
await clearSession(tabId);
return null;
}
return session;
}
async function handleAlarm(alarm) {
if (!alarm.name.startsWith("timer-")) {
return;
}
const tabId = Number(alarm.name.replace("timer-", ""));
if (Number.isNaN(tabId)) {
return;
}
const session = await getSession(tabId);
if (!session) {
return;
}
const config = await getConfig();
try {
const tab = await browser.tabs.get(tabId);
if (!tab || !tab.url || !isConfiguredUrl(tab.url, config)) {
await clearSession(tabId);
return;
}
const tabOrigin = getOrigin(tab.url);
if (!tabOrigin || (session.origin && tabOrigin !== session.origin)) {
await clearSession(tabId);
return;
}
const messageParam = encodeURIComponent(config.timeoutMessage || DEFAULT_CONFIG.timeoutMessage);
const redirectUrl = browser.runtime.getURL(`timeout.html?message=${messageParam}`);
await browser.tabs.update(tabId, { url: redirectUrl });
} catch (err) {
// Tab may not exist anymore.
} finally {
await clearSession(tabId);
}
}
browser.runtime.onInstalled.addListener(async () => {
const data = await browser.storage.local.get(CONFIG_KEY);
if (!data[CONFIG_KEY]) {
await browser.storage.local.set({ [CONFIG_KEY]: DEFAULT_CONFIG });
}
});
const toolbarAction = browser.browserAction || browser.action;
if (toolbarAction?.onClicked) {
toolbarAction.onClicked.addListener(() => {
browser.runtime.openOptionsPage();
});
}
browser.runtime.onMessage.addListener(async (message, sender) => {
if (!sender.tab || typeof sender.tab.id !== "number") {
return null;
}
const tabId = sender.tab.id;
if (message?.type === "PAGE_LOADED") {
const config = await getConfig();
const url = message.url || sender.tab.url || "";
const enforced = isConfiguredUrl(url, config);
let session = await ensureSessionValidity(tabId);
if (session && session.origin && session.origin !== getOrigin(url)) {
await clearSession(tabId);
session = null;
}
return {
enforced,
hasActiveSession: Boolean(session),
remainingMs: session ? Math.max(session.expiresAt - Date.now(), 0) : 0,
defaultDurationMinutes: config.defaultDurationMinutes,
timeoutMessage: config.timeoutMessage
};
}
if (message?.type === "START_TIMER") {
const config = await getConfig();
const url = message.url || sender.tab.url || "";
if (!isConfiguredUrl(url, config)) {
return { ok: false, error: "URL is not configured for timer enforcement." };
}
const durationSeconds = Number(message.durationSeconds);
if (!Number.isFinite(durationSeconds) || durationSeconds <= 0) {
return { ok: false, error: "Invalid timer duration." };
}
const expiresAt = await createSession(tabId, url, durationSeconds);
return { ok: true, expiresAt };
}
if (message?.type === "CLEAR_TIMER") {
await clearSession(tabId);
return { ok: true };
}
return null;
});
browser.tabs.onRemoved.addListener(async (tabId) => {
await clearSession(tabId);
});
browser.alarms.onAlarm.addListener(handleAlarm);