-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
519 lines (442 loc) · 14.3 KB
/
sw.js
File metadata and controls
519 lines (442 loc) · 14.3 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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
const tabControllers = new Map();
let offscreenCreated = false;
let popupIsOpen = false;
function formatErrorMessage(error) {
if (error instanceof Error && error.message) {
return error.message;
}
return String(error);
}
// Função de sanitização para prevenir XSS
function sanitizeString(input) {
if (typeof input !== 'string') {
return '';
}
return input
.replaceAll(/[<>'"&]/g, function (match) {
return {
'<': '<',
'>': '>',
'"': '"',
"'": ''',
'&': '&'
}[match];
})
.trim()
.substring(0, 500); // Limita tamanho para prevenir overflow
}
chrome.runtime.onStartup.addListener(restoreControllerState);
chrome.runtime.onInstalled.addListener(async () => {
await restoreControllerState();
await cleanupOldDomains();
});
// Limpar domínios não acessados há mais de 30 dias
const DOMAIN_MAX_AGE_DAYS = 30;
async function cleanupOldDomains() {
try {
const storage = await chrome.storage.local.get(null);
const now = Date.now();
const maxAgeMs = DOMAIN_MAX_AGE_DAYS * 24 * 60 * 60 * 1000;
const keysToRemove = [];
for (const [key, value] of Object.entries(storage)) {
if (key.startsWith('domain_')) {
// Se o valor é um objeto com lastAccessed, verificar idade
if (typeof value === 'object' && value.lastAccessed) {
if (now - value.lastAccessed > maxAgeMs) {
keysToRemove.push(key);
}
} else if (typeof value === 'number') {
// Se é valor legado (número apenas), migrar para novo formato
await chrome.storage.local.set({
[key]: { gain: value, lastAccessed: now }
});
}
}
}
if (keysToRemove.length > 0) {
await chrome.storage.local.remove(keysToRemove);
console.log(`Cleanup: removidos ${keysToRemove.length} domínios antigos`);
}
} catch (error) {
console.error('Erro ao limpar domínios antigos:', error);
}
}
chrome.tabs.onUpdated.addListener((_tabId, changeInfo, _tab) => {
if (changeInfo.audible !== undefined && popupIsOpen) {
notifyPopupTabsUpdated();
}
});
chrome.tabs.onRemoved.addListener(async (tabId, _removeInfo) => {
if (tabControllers.has(tabId)) {
// Parar processamento de áudio no offscreen
chrome.runtime.sendMessage({
action: 'stopProcessing',
tabId
}).catch(() => { });
tabControllers.delete(tabId);
await saveControllerState();
}
if (popupIsOpen) {
notifyPopupTabsUpdated();
}
});
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
const { action } = message;
const handlers = {
'startVolumeControl': () => handleStartVolumeControl(message.tabId, sendResponse),
'stopVolumeControl': () => handleStopVolumeControl(message.tabId, sendResponse),
'setVolume': () => handleSetVolume(message.tabId, message.volume, sendResponse),
'muteTab': () => handleMuteTab(message.tabId, message.muted, sendResponse),
'getAudibleTabs': () => handleGetAudibleTabs(sendResponse),
'getControlledTabs': () => handleGetControlledTabs(sendResponse),
'getDomainGain': () => handleGetDomainGain(message.domain, sendResponse),
'saveDomainGain': () => handleSaveDomainGain(message.domain, message.gain, sendResponse),
'popupOpened': () => handlePopupOpened(sendResponse),
'popupClosed': () => handlePopupClosed(sendResponse)
};
if (handlers[action]) {
handlers[action]();
return true;
}
});
async function handleStartVolumeControl(tabId, sendResponse) {
try {
// Se já está sendo controlada, apenas retorna sucesso com as configurações atuais
if (tabControllers.has(tabId)) {
const controller = tabControllers.get(tabId);
sendResponse({
success: true,
domain: controller.domain,
defaultGain: controller.currentGain
});
return;
}
const tab = await chrome.tabs.get(tabId);
if (!tab.audible) {
sendResponse({ success: false, error: 'Aba não está reproduzindo áudio' });
return;
}
await ensureOffscreenCreated();
// Verificar se o offscreen já tem um processador para esta aba
// Se sim, apenas reutilizar em vez de criar novo stream
let processResult;
try {
processResult = await chrome.runtime.sendMessage({
action: 'checkProcessor',
tabId
});
} catch (error) {
console.debug(`Falha ao consultar processador existente da aba ${tabId}: ${formatErrorMessage(error)}`);
processResult = { exists: false };
}
const domain = new URL(tab.url).hostname;
const domainGain = await getDomainGainFromStorage(domain);
if (processResult?.exists) {
// Reutilizar processador existente
await chrome.runtime.sendMessage({
action: 'setGain',
tabId,
gain: domainGain || 100
});
} else {
// Criar novo processador
const mediaStreamId = await chrome.tabCapture.getMediaStreamId({
targetTabId: tabId
});
await chrome.tabs.update(tabId, { muted: true });
await chrome.runtime.sendMessage({
action: 'processAudio',
tabId,
mediaStreamId,
gain: domainGain || 100
});
}
tabControllers.set(tabId, {
domain,
originalMuted: tab.mutedInfo.muted,
currentGain: domainGain || 100,
isMuted: false
});
await saveControllerState();
sendResponse({
success: true,
domain,
defaultGain: domainGain || 100
});
} catch (error) {
// Se o erro é de stream ativo, tentar reconectar
if (error.message?.includes('active stream')) {
try {
const tab = await chrome.tabs.get(tabId);
const domain = new URL(tab.url).hostname;
const domainGain = await getDomainGainFromStorage(domain);
tabControllers.set(tabId, {
domain,
originalMuted: tab.mutedInfo.muted,
currentGain: domainGain || 100,
isMuted: false
});
await saveControllerState();
sendResponse({
success: true,
domain,
defaultGain: domainGain || 100
});
return;
} catch (_e) {
console.debug('Fallback de reconexão falhou:', _e.message);
}
}
sendResponse({ success: false, error: error.message });
}
}
async function handleStopVolumeControl(tabId, sendResponse) {
try {
const controller = tabControllers.get(tabId);
if (!controller) {
sendResponse({ success: false, error: 'Aba não está sendo controlada' });
return;
}
await chrome.runtime.sendMessage({
action: 'stopProcessing',
tabId
});
await chrome.tabs.update(tabId, { muted: controller.originalMuted });
tabControllers.delete(tabId);
await saveControllerState();
sendResponse({ success: true });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function handleSetVolume(tabId, volume, sendResponse) {
try {
const controller = tabControllers.get(tabId);
if (!controller) {
sendResponse({ success: false, error: 'Aba não está sendo controlada' });
return;
}
// Validação de volume - usar Number.isNaN para aceitar 0 corretamente
const parsed = Number.parseInt(volume, 10);
const validVolume = Math.max(0, Math.min(600, Number.isNaN(parsed) ? 100 : parsed));
await chrome.runtime.sendMessage({
action: 'setGain',
tabId,
gain: validVolume
});
controller.currentGain = validVolume;
sendResponse({ success: true });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function handleMuteTab(tabId, muted, sendResponse) {
try {
const controller = tabControllers.get(tabId);
if (!controller) {
sendResponse({ success: false, error: 'Aba não está sendo controlada' });
return;
}
await chrome.runtime.sendMessage({
action: 'setMute',
tabId,
muted
});
controller.isMuted = muted;
sendResponse({ success: true });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function handleGetAudibleTabs(sendResponse) {
try {
const tabs = await chrome.tabs.query({ audible: true });
const audibleTabs = tabs.map(tab => {
// Validação e sanitização de URL
let domain = '';
try {
const url = new URL(tab.url);
domain = url.hostname;
} catch (error) {
console.debug(`URL inválida para a aba ${tab.id}: ${formatErrorMessage(error)}`);
domain = 'unknown';
}
return {
id: tab.id,
title: sanitizeString(tab.title || 'Sem título'),
url: tab.url,
domain: sanitizeString(domain),
controlled: tabControllers.has(tab.id)
};
});
sendResponse({ success: true, tabs: audibleTabs });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function handleGetControlledTabs(sendResponse) {
try {
const controlledTabs = [];
for (const [tabId, controller] of tabControllers.entries()) {
try {
const tab = await chrome.tabs.get(tabId);
controlledTabs.push({
id: tabId,
title: sanitizeString(tab.title || 'Sem título'),
domain: sanitizeString(controller.domain),
currentGain: controller.currentGain,
isMuted: controller.isMuted
});
} catch (error) {
console.debug(`Aba controlada ${tabId} não está mais disponível: ${formatErrorMessage(error)}`);
tabControllers.delete(tabId);
}
}
sendResponse({ success: true, tabs: controlledTabs });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function handleGetDomainGain(domain, sendResponse) {
try {
const sanitizedDomain = sanitizeString(domain);
if (!sanitizedDomain || sanitizedDomain.length < 3) {
sendResponse({ success: true, gain: 100 });
return;
}
const gain = await getDomainGainFromStorage(sanitizedDomain);
sendResponse({ success: true, gain: gain || 100 });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function handleSaveDomainGain(domain, gain, sendResponse) {
try {
// Validação de entrada - usar Number.isNaN para aceitar 0 corretamente
const sanitizedDomain = sanitizeString(domain);
const parsedGain = Number.parseInt(gain, 10);
const validGain = Math.max(0, Math.min(600, Number.isNaN(parsedGain) ? 100 : parsedGain));
if (!sanitizedDomain || sanitizedDomain.length < 3) {
sendResponse({ success: false, error: 'Domínio inválido' });
return;
}
// Salvar com timestamp de último acesso para cleanup futuro
await chrome.storage.local.set({
[`domain_${sanitizedDomain}`]: {
gain: validGain,
lastAccessed: Date.now()
}
});
sendResponse({ success: true });
} catch (error) {
sendResponse({ success: false, error: error.message });
}
}
async function ensureOffscreenCreated() {
if (offscreenCreated) {
return;
}
try {
await chrome.offscreen.createDocument({
url: 'offscreen.html',
reasons: ['USER_MEDIA'],
justification: 'Processamento de áudio para controle de volume'
});
offscreenCreated = true;
} catch (error) {
if (error.message.includes('Only a single offscreen')) {
offscreenCreated = true;
} else {
throw error;
}
}
}
async function getDomainGainFromStorage(domain) {
const result = await chrome.storage.local.get([`domain_${domain}`]);
const value = result[`domain_${domain}`];
// Suporte a formato legado (número) e novo formato (objeto com gain/lastAccessed)
if (typeof value === 'object' && value !== null) {
return value.gain;
}
return value; // formato legado ou undefined
}
// Funções para gerenciar estado do popup
function handlePopupOpened(sendResponse) {
popupIsOpen = true;
sendResponse({ success: true });
}
function handlePopupClosed(sendResponse) {
popupIsOpen = false;
if (sendResponse) {
sendResponse({ success: true });
}
}
// Notificar popup sobre mudanças nas abas
function notifyPopupTabsUpdated() {
if (popupIsOpen) {
chrome.runtime.sendMessage({ action: 'tabsUpdated' }).catch(() => {
// Popup pode ter fechado, atualizar estado
popupIsOpen = false;
});
}
}
async function saveControllerState() {
try {
const controllersObj = {};
for (const [tabId, controller] of tabControllers) {
controllersObj[tabId] = controller;
}
await chrome.storage.local.set({
tabControllers: controllersObj
});
} catch (error) {
console.error('Erro ao salvar estado dos controladores:', error);
}
}
async function restoreControllerState() {
try {
const result = await chrome.storage.local.get(['tabControllers']);
if (result.tabControllers) {
const storedControllers = Object.entries(result.tabControllers)
.map(([tabId, controller]) => {
const validTabId = Number.parseInt(tabId, 10);
if (Number.isNaN(validTabId)) {
console.log(`ID de aba inválido no estado salvo: ${tabId}`);
return null;
}
return { tabId: validTabId, controller };
})
.filter(Boolean);
const restorableTabs = (await Promise.all(storedControllers.map(async ({ tabId, controller }) => {
try {
const tab = await chrome.tabs.get(tabId);
if (tab?.audible) {
return { tabId, controller };
}
} catch (error) {
console.log(`Aba ${tabId} não existe mais, removendo do estado: ${formatErrorMessage(error)}`);
}
return null;
}))).filter(Boolean);
if (restorableTabs.length > 0) {
await ensureOffscreenCreated();
await Promise.all(restorableTabs.map(async ({ tabId, controller }) => {
tabControllers.set(tabId, controller);
try {
await chrome.runtime.sendMessage({
action: 'restoreAudio',
tabId,
gain: controller.currentGain
});
} catch (error) {
console.debug(`Falha ao restaurar áudio da aba ${tabId}: ${formatErrorMessage(error)}`);
tabControllers.delete(tabId);
}
}));
}
await saveControllerState();
}
} catch (error) {
console.error('Erro ao restaurar estado dos controladores:', error);
}
}