-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
1183 lines (1003 loc) · 38.5 KB
/
Copy pathbackground.js
File metadata and controls
1183 lines (1003 loc) · 38.5 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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
// Utils
// ---------------------------------------------
const debug = false;
function log(...message) {
if (debug) {
console.log(...message);
}
}
function warn(...message) {
if (debug) {
console.warn(...message);
}
}
// Extension options
// ---------------------------------------------
// Get and set default value for each checkbox option.
const extensionOptions = {
btDlAllFolder: true,
btDlFolder: false,
};
for (const key in extensionOptions) {
chrome.storage.local.get(key, (res) => {
if (res.hasOwnProperty(key)) {
extensionOptions[key] = res[key];
}
});
}
// Download
// ---------------------------------------------
const activeDownloadIds = new Set();
const filenameToDownloadInfo = new Map();
let pendingDownloads = 0;
let remainingLinksUI = 0;
let activeBatchTabUUID = '';
let activeBatchTabId = '';
let activeMessage = {};
function randomChars() {
const CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345678901';
// Generate a random 32-bit unsigned integer.
const r = (Math.random() * 0x100000000) >>> 0;
// Extract 6 bits (values 0-63) four times using fast bitwise operations.
return CHARS[r & 63] + CHARS[(r >>> 6) & 63] + CHARS[(r >>> 12) & 63] + CHARS[(r >>> 18) & 63];
}
function getDownloadInfoByFilename(downloadItem) {
const filePath = downloadItem.filename.replace(/\\/g, '/');
const filename = filePath.substring(filePath.lastIndexOf('/') + 1);
if (filenameToDownloadInfo.has(filename)) {
return { filename, ...filenameToDownloadInfo.get(filename) };
} else {
warn(`Filename '${filename}' cannot be found in:`, [...filenameToDownloadInfo.entries()]);
}
}
chrome.downloads.onCreated.addListener((downloadItem) => {
// Download started.
log(`File download started(${activeDownloadIds.size}):`, downloadItem);
activeDownloadIds.add(downloadItem.id);
const downloadInfo = getDownloadInfoByFilename(downloadItem);
if (!downloadInfo) {
// All downloads that were not initiated by extension.
warn('Unknown download item:', downloadItem);
return;
}
if (downloadInfo.tabId) {
// Close download tab, it's no longer needed.
try {
chrome.tabs.remove(downloadInfo.tabId, () => {
log('Tab closed:', downloadInfo.tabId);
});
} catch (e) {
log('Tab hase been already closed:', downloadInfo.tabId);
}
}
});
chrome.downloads.onChanged.addListener((downloadDelta) => {
if (
downloadDelta.state &&
(downloadDelta.state.current === 'complete' || downloadDelta.state.current === 'interrupted')
) {
// Download finished successfully.
// - or -
// Download was insterrupted by user or another reason. It may be resumable.
chrome.downloads.search({ id: downloadDelta.id }, async (downloadItems) => {
log('Download items:', downloadItems);
if (downloadDelta.state.current === 'complete') {
log(`File download finished(${activeDownloadIds.size}):`, downloadDelta.id);
// Only completed downloads are subtracted from remaining links in app UI.
remainingLinksUI--;
} else {
log(`File download interrupted(${activeDownloadIds.size}):`, downloadDelta.id);
}
// Whether download was completed or interrupted, it is no longer active.
activeDownloadIds.delete(downloadDelta.id);
if (!downloadItems || !downloadItems[0]) {
// Unexpected situation.
log(`Download delta (${downloadDelta.id}) has not download item.`);
removeHeadersAll();
return;
}
// Get download info by downloadItem. Required to:
// - Auto-uncheck selected item in app UI.
// - Remove headers for non-native downloads.
// - Revoke blob URLs from memory.
const downloadInfo = getDownloadInfoByFilename(downloadItems[0]);
let finalUrlIndex = '';
if (!downloadInfo) {
// All downloads that were not initiated by extension.
warn('Unknown download item:', downloadItems[0]);
return;
}
if (downloadInfo) {
// Set finalUrlIndex of downloaded file for UI.
finalUrlIndex = downloadInfo.isSingle ? '' : downloadInfo.linkIndex;
if (downloadInfo.headerInfoArr?.length) {
for (const headerInfo of downloadInfo.headerInfoArr) {
// Remove custom req/res HTTP headers for non-native downloads.
removeHeaders(headerInfo.UUID);
}
}
if (downloadInfo.blobUrl) {
URL.revokeObjectURL(downloadInfo.blobUrl);
log('Blob URL revoked.');
}
filenameToDownloadInfo.delete(downloadInfo.filename);
}
log('Final URL index:', finalUrlIndex);
if (activeBatchTabId && activeBatchTabUUID) {
// Notify app to update UI.
chrome.tabs.sendMessage(activeBatchTabId, {
event: 'DOWNLOAD_PROGRESS',
target: 'app',
tabUUID: activeBatchTabUUID,
remainingLinks: remainingLinksUI,
finalUrlIndex,
isDownloaded: downloadDelta.state.current === 'complete',
});
}
if (activeBatchTabUUID && activeMessage.links?.length) {
pendingDownloads++;
// Download next link.
setTimeout(async () => {
// Only trigger if the batch wasn't cancelled during the delay.
if (activeBatchTabUUID && activeMessage.links?.length) {
await downloadLinks(activeMessage, 1);
}
pendingDownloads = Math.max(0, pendingDownloads - 1);
checkDownloadCompletion();
}, 1000);
} else if (activeBatchTabUUID && activeMessage.links?.length === 0) {
// All links have been sent to download queue, but downloading may still be in progress.
log('All files have been sent to queue.');
activeMessage = {};
}
checkDownloadCompletion();
});
}
});
function checkDownloadCompletion() {
if (!activeDownloadIds.size && !activeMessage.links?.length && !pendingDownloads) {
log('All files have been downloaded.');
filenameToDownloadInfo.clear();
activeBatchTabUUID = '';
activeBatchTabId = '';
// Ensures HTTP headers are removed for interrupted downloads.
removeHeadersAll();
}
}
function normalizeFilename(name, ext, unique = false) {
const normalizedFileName = name.replace(/[\/\(\)]/g, '-');
const normalizedFileExt = ext.replace(/[\/\(\)\.]/g, '');
if (unique) {
return normalizedFileName + '_' + randomChars() + '.' + normalizedFileExt;
}
for (const [key, val] of filenameToDownloadInfo) {
if (key === `${normalizedFileName}.${normalizedFileExt}`) {
// Add random chars to filename when same file is already downloading.
return normalizedFileName + '_' + randomChars() + '.' + normalizedFileExt;
}
}
return normalizedFileName + '.' + normalizedFileExt;
}
function normalizeFolder(folder) {
return folder.replace(/[\(\)]/g, '-');
}
async function downloadLinks(message, maxConcurrentDownloads = 3) {
const links = message.links;
if (!links) {
// Batch download have been interrupted by user.
return;
}
if (!links.length) {
// All links have been downloaded.
return;
}
if (links[links.length - 1].url === 'exceeded') {
// User can't download more links.
return;
}
// Is it a single download?
const isSingle = message.event === 'START_DOWNLOAD';
// Should we create a download folder?
const createFolder = (isSingle && extensionOptions.btDlFolder) || (!isSingle && extensionOptions.btDlAllFolder);
// Are all downloads native or not?
// Download cannot be native if we need to set custom HTTP headers for download.
let isNativeDownload = true;
const headerObjArr = [];
if (message.extActions && message.extActions.headers) {
if (message.extActions.headers.download && message.extActions.headers.download.length) {
isNativeDownload = false;
for (const index in message.extActions.headers.download) {
decodeCookies(message.extActions.headers.download[index]);
headerObjArr.push(message.extActions.headers.download[index]);
}
} else if (message.extActions.headers.both && message.extActions.headers.both.length) {
isNativeDownload = false;
for (const index in message.extActions.headers.both) {
decodeCookies(message.extActions.headers.both[index]);
headerObjArr.push(message.extActions.headers.both[index]);
}
}
}
// Download using tab.
if (!isNativeDownload) {
log('Non-native download.');
// Find any Locoloader tab and init download from it.
chrome.tabs.query(
{
active: true,
currentWindow: true,
url: ['https://www.locoloader.com/*', 'https://www.locoloader.test/*'],
},
async (tabs) => {
// Did we find any Locoloader tab?
if (!tabs[0]) {
log('No Locoloader tab found.');
return;
}
// Get and remove link from links array.
const linkData = links.pop();
const link = linkData.link;
const linkIndex = linkData.index;
// Download
let url = link.link_url;
if (link.download === 'raw') {
// Raw files live in memory, so there is no need to set custom headers to download them.
// Localoader uses raw files only for custom M3U8 files.
// Filename
let filename = normalizeFilename(link.file_name, link.file_ext);
if (createFolder && message.folder) {
filename = normalizeFolder(message.folder) + '_' + filename;
}
// Convert raw URL to Blob so Firefox can download it.
url = `data:application/octet-stream;base64,${link.link_raw}`;
const response = await fetch(url);
const blob = await response.blob();
url = URL.createObjectURL(blob);
// Save download info.
const downloadInfo = {
linkIndex,
isSingle,
blobUrl: url,
};
filenameToDownloadInfo.set(filename, downloadInfo);
log('Saved:', filename, downloadInfo);
// Init download.
const downloadId = await chrome.downloads.download({
url,
filename,
saveAs: false,
conflictAction: 'overwrite',
});
if (downloadId) {
activeDownloadIds.add(downloadId);
}
}
if (link.download === 'url') {
// Filename
let filename = normalizeFilename(link.file_name, link.file_ext, true);
if (createFolder && message.folder) {
filename = normalizeFolder(message.folder) + '_' + filename;
}
// Create empty download tab.
const tab = await chrome.tabs.create({ active: false });
// Set headers only to download tab.
headerObjArr.push({
action: {
type: 'modifyHeaders',
responseHeaders: [
{
header: 'content-disposition',
operation: 'set',
value: 'attachment; filename=' + filename,
},
],
},
condition: {
tabIds: [tab.id],
resourceTypes: ['main_frame', 'media'],
},
});
const headerInfoArr = [];
for (const headerObj of headerObjArr) {
headerObj.condition['tabIds'] = [tab.id];
const headerInfo = await setHeaders(headerObj.action, headerObj.condition);
if (headerInfo) {
headerInfoArr.push(headerInfo);
}
}
// Save download info.
const downloadInfo = {
linkIndex,
isSingle,
headerInfoArr,
tabId: tab.id,
};
filenameToDownloadInfo.set(filename, downloadInfo);
log('Saved:', filename, downloadInfo);
// Init download.
await chrome.tabs.update(tab.id, {
url,
active: false,
});
}
},
);
}
// Download using native download function.
if (isNativeDownload) {
log('Native download.');
// Init max concurrent downloads.
while (links.length > 0 && maxConcurrentDownloads) {
// Decrease number of concurrent downloads.
maxConcurrentDownloads--;
// Get and remove link from reversed links array.
const linkData = links.pop();
const link = linkData.link;
const linkIndex = linkData.index;
// URL
let url = link.link_url;
if (link.download === 'raw') {
url = `data:application/octet-stream;base64,${link.link_raw}`;
// Convert data URL to Blob so Firefox can download it.
const response = await fetch(url);
const blob = await response.blob();
url = URL.createObjectURL(blob);
}
// Filename
let filename = normalizeFilename(link.file_name, link.file_ext);
// Save download info.
const downloadInfo = {
linkIndex,
isSingle,
blobUrl: link.download === 'raw' ? url : '',
};
filenameToDownloadInfo.set(filename, downloadInfo);
log('Saved:', filename, downloadInfo);
// Add folder to filename.
if (createFolder && message.folder) {
filename = normalizeFolder(message.folder) + '/' + filename;
}
// Download
const downloadId = await chrome.downloads.download({
url,
filename,
saveAs: false,
conflictAction: 'overwrite',
});
if (downloadId) {
activeDownloadIds.add(downloadId);
}
}
}
}
chrome.tabs.onRemoved.addListener((tabId) => {
if (tabId === activeBatchTabId) {
log('Batch tab closed prematurely. Stop any further downloads.');
activeBatchTabUUID = '';
activeBatchTabId = '';
activeMessage = {};
}
});
// Open pre-configured tab with fetcher.js.
// ---------------------------------------------
function openTab(message) {
return new Promise(async (resolve) => {
const defaultResponse = [
{
result: {
event: 'PRE_EXTRACTION',
target: 'app',
tabUUID: message.tabUUID,
url: message.url,
headers: {},
html: '',
dom: '',
actions: {
err: [],
result: [],
},
xhr: [],
windowURL: message.windowURL,
},
},
];
// Open tab.
const tab = await chrome.tabs.create({ active: false });
// Set headers only to tab.
log('Received headers:', message.headers);
const headerInfoArr = [];
for (const headerObj of message.headers) {
headerObj.condition['tabIds'] = [tab.id];
const headerInfo = await setHeaders(headerObj.action, headerObj.condition);
if (headerInfo) {
headerInfoArr.push(headerInfo);
}
}
// Remove tab headers.
function cleanupHeaders(headerInfoArr) {
for (const headerInfo of headerInfoArr) {
removeHeaders(headerInfo.UUID);
}
}
// Set final tab URL.
await chrome.tabs.update(tab.id, { url: message.url, active: false });
// Wait for tab to complete URL update.
const waitForLoad = new Promise((resolve) => {
let timeoutId;
// Listen for successful updates.
function updateListener(tabId, changeInfo, currentTab) {
if (tabId === tab.id && changeInfo.status === 'complete') {
if (currentTab.url && currentTab.url !== 'about:blank' && currentTab.url !== 'about:newtab') {
cleanup();
resolve(true);
log(`Tab ${tab.id} loading complete.`);
}
}
}
// Listen for premature closures.
function closeListener(closedTabId) {
if (closedTabId === tab.id) {
cleanup();
resolve(false);
log(`Tab ${tab.id} closed prematurely.`);
}
}
// Centralized cleanup to prevent memory leaks.
function cleanup() {
chrome.tabs.onUpdated.removeListener(updateListener);
chrome.tabs.onRemoved.removeListener(closeListener);
if (timeoutId) {
clearTimeout(timeoutId);
}
}
chrome.tabs.onUpdated.addListener(updateListener);
chrome.tabs.onRemoved.addListener(closeListener);
// Failsafe: In case it finished loading before listeners attached.
chrome.tabs.get(tab.id, (currentTab) => {
if (
currentTab.status === 'complete' &&
currentTab.url &&
currentTab.url !== 'about:blank' &&
currentTab.url !== 'about:newtab'
) {
cleanup();
resolve(true);
log(`Tab ${tab.id} finished loading before listeners attached.`);
}
});
// Ultimate failsafe: Timeout after 120 seconds to prevent infinite hanging.
timeoutId = setTimeout(() => {
cleanup();
resolve(false);
log(`Timeout: Tab ${tab.id} took too long to load.`);
}, 120000);
});
if (!(await waitForLoad)) {
cleanupHeaders(headerInfoArr);
return resolve(defaultResponse);
}
let injectionResult;
// Monkeypatch console.clear().
injectionResult = await ensureExecuteScript({
world: 'MAIN',
target: { tabId: tab.id },
func: () => {
console.clear = () => { };
},
});
if (!injectionResult) {
log(`Injecting monkeypatch failed.`);
cleanupHeaders(headerInfoArr);
return resolve(defaultResponse);
}
// Configuration for fetcher.js.
injectionResult = await ensureExecuteScript({
world: 'MAIN',
target: { tabId: tab.id },
func: (message) => {
document.LLPage = message;
},
args: [message],
});
if (!injectionResult) {
log(`Injecting message failed.`);
cleanupHeaders(headerInfoArr);
return resolve(defaultResponse);
}
// Configuration for fetcher.js.
if (message.actions.script) {
// Avoid path traversal attack using base folder URL.
const baseFolderUrl = browser.runtime.getURL('extractors/');
const scriptUrl = new URL(`${message.actions.script}.js`, baseFolderUrl).href;
log('Script to fetch:', scriptUrl);
// Read script.
const response = await fetch(scriptUrl);
if (response?.ok) {
log('Script successfuly fetched.');
const scriptContent = await response.text();
// Add script to fetcher.js.
injectionResult = await ensureExecuteScript({
world: 'MAIN',
target: { tabId: tab.id },
func: (scriptContent) => {
document.LLScript = scriptContent;
},
args: [scriptContent],
});
if (!injectionResult) {
log(`Injecting script failed.`);
cleanupHeaders(headerInfoArr);
return resolve(defaultResponse);
}
}
}
// Run fetcher.js.
const result = await ensureExecuteScript({
world: 'MAIN',
target: { tabId: tab.id },
files: ['fetcher.js'],
});
log('Tab in background.js received result from fetcher.js:', result);
// Remove tab headers.
cleanupHeaders(headerInfoArr);
try {
// Close tab.
await chrome.tabs.remove(tab.id);
} catch (err) {
// Tab has been closed prematurely.
return resolve(defaultResponse);
}
// If response contains reFetch attribute, it means that page should be re-fetched.
if (result && result[0].result.reFetch) {
setTimeout(async () => {
// Only re-fetch once.
message['doNotReFetch'] = true;
// Re-open, re-fetch and return result from fetcher.js.
resolve(await openTab(message));
}, 2000);
} else {
// Return result from fetcher.js.
resolve(result);
}
});
}
async function ensureExecuteScript(scriptOptions, maxRetries = 5, delayMs = 50) {
let lastError;
for (let i = 0; i < maxRetries; i++) {
try {
return await chrome.scripting.executeScript(scriptOptions);
} catch (error) {
lastError = error;
await new Promise((resolve) => setTimeout(resolve, delayMs));
}
}
log(`Script injection failed after ${maxRetries} attempts. Last error: ${lastError.message}`);
return false;
}
// Listening to message
// ---------------------------------------------
async function isActiveTabPrivate() {
const allowed = await browser.extension.isAllowedIncognitoAccess();
if (!allowed) {
// Extension is not allowed to run in incognito mode.
return false;
}
// Get last focused window.
const win = await browser.windows.getLastFocused();
// Get tab matching last focused window.
const [tab] = await browser.tabs.query({ active: true, windowId: win.id });
if (!tab) {
// No tab is open.
return false;
}
return !!tab.incognito;
}
chrome.runtime.onMessage.addListener(async (message, sender) => {
log('Background.js received message from content script:', message);
log('Sender:', sender);
log('Runtime ID:', chrome.runtime.id);
// Allow only trusted messages.
if (
sender.origin !== 'https://www.locoloader.com' &&
sender.origin !== 'https://www.locoloader.test' &&
sender.id !== chrome.runtime.id
) {
return true;
}
// Accept only message addressed to extension.
if (message.target !== 'ext') {
return true;
}
if (message.event === 'UPDATE_OPTIONS') {
extensionOptions[message.optionName] = message.optionVal;
return true;
}
if (message.event === 'START_DOWNLOAD') {
if (activeBatchTabUUID) {
chrome.tabs.sendMessage(sender.tab.id, {
event: 'ERROR_ALREADY_DOWNLOADING',
target: 'app',
tabUUID: activeBatchTabUUID,
});
return true;
}
downloadLinks(message);
return true;
}
if (message.event === 'START_BATCH_DOWNLOAD') {
if (activeBatchTabUUID) {
chrome.tabs.sendMessage(sender.tab.id, {
event: 'ERROR_ALREADY_DOWNLOADING',
target: 'app',
tabUUID: activeBatchTabUUID,
});
return true;
}
activeBatchTabId = sender.tab.id;
activeBatchTabUUID = message.tabUUID;
remainingLinksUI = message.links.length;
activeMessage = message;
log('Active tabUUID:', activeBatchTabUUID);
log('Active tabId:', activeBatchTabId);
downloadLinks(activeMessage);
return true;
}
if (message.event === 'STOP_BATCH_DOWNLOAD') {
// Stop current downloads.
activeDownloadIds.forEach((id) => chrome.downloads.cancel(id));
if (activeBatchTabUUID) {
chrome.tabs.sendMessage(sender.tab.id, {
event: 'DOWNLOAD_PROGRESS',
target: 'app',
tabUUID: activeBatchTabUUID,
remainingLinks: remainingLinksUI,
finalUrlIndex: '',
});
}
activeBatchTabUUID = '';
activeBatchTabId = '';
activeMessage = {};
return true;
}
if (message.event === 'PREVIEW') {
// Determine preview tab URL.
let tabUrl = message.previewURL;
if (
message.player === 'true' ||
(message.extActions && message.extActions.playerPreview) ||
message.linkType === 'raw'
) {
// Use player.html for preview instead of native player.
const previewId = 'preview_' + crypto.randomUUID();
tabUrl = chrome.runtime.getURL(`player.html?data=${message.linkType}&previewId=${previewId}`);
chrome.storage.session.set({ [previewId]: message.previewURL });
}
// Set preview link headers retrieved from extension actions.
const headerObjArr = [];
if (message.extActions && message.extActions.headers) {
if (message.extActions.headers.preview && message.extActions.headers.preview.length) {
for (const index in message.extActions.headers.preview) {
decodeCookies(message.extActions.headers.preview[index]);
headerObjArr.push(message.extActions.headers.preview[index]);
}
} else if (message.extActions.headers.both && message.extActions.headers.both.length) {
for (const index in message.extActions.headers.both) {
decodeCookies(message.extActions.headers.both[index]);
headerObjArr.push(message.extActions.headers.both[index]);
}
}
}
// Create empty preview tab.
const tab = await chrome.tabs.create({ active: false });
// Set headers only to preview tab.
const headerInfoArr = [];
for (const headerObj of headerObjArr) {
headerObj.condition['tabIds'] = [tab.id];
const headerInfo = await setHeaders(headerObj.action, headerObj.condition);
if (headerInfo) {
headerInfoArr.push(headerInfo);
}
}
const closeTabListener = (tabId) => {
if (tabId === tab.id) {
// Remove declarativeNetRequest session rules (remove preview link headers).
for (const headerInfo of headerInfoArr) {
removeHeaders(headerInfo.UUID);
}
chrome.tabs.onRemoved.removeListener(closeTabListener);
log('Preview tab closed id:', tabId);
}
};
chrome.tabs.onRemoved.addListener(closeTabListener);
// Update preview tab.
await chrome.tabs.update(tab.id, { url: tabUrl, active: true });
return true;
}
// Workaround for missing "incognito": "split" option.
const isPrivate = await isActiveTabPrivate();
if (isPrivate && message.type === 'ext-fetch') {
message.type = 'ext-tab';
message['headers'] = {};
message['actions'] = [];
message['xhr'] = [];
}
if (message.type === 'ext-fetch') {
// Default response.
const pageObj = {
event: 'PRE_EXTRACTION',
target: 'app',
tabUUID: message.tabUUID,
url: message.url,
headers: {},
html: '',
};
// Set request headers...
let requestHeaders = [];
// ...other HTTP headers
if (message.fetchOptions.headers && Object.keys(message.fetchOptions.headers)) {
for (const [key, val] of Object.entries(message.fetchOptions.headers)) {
requestHeaders.push({
header: key,
operation: 'set',
value: val,
});
}
}
// ...referer
if (message.fetchOptions.referrer) {
requestHeaders.push({
header: 'Referer',
operation: 'set',
value: message.fetchOptions.referrer,
});
}
// ...referer policy
if (message.fetchOptions.referrerPolicy) {
requestHeaders.push({
header: 'Referrer-Policy',
operation: 'set',
value: message.fetchOptions.referrerPolicy,
});
}
// ...set headers
let headerInfo = {};
if (requestHeaders.length) {
headerInfo = await setHeaders(
{
type: 'modifyHeaders',
requestHeaders,
},
{
resourceTypes: ['xmlhttprequest'],
urlFilter: `|${message.url}|`,
},
);
}
let fetchResponse = null;
try {
// Send request.
fetchResponse = await fetch(message.url, message.fetchOptions ? message.fetchOptions : {});
} catch (e) { }
// Remove request headers.
if (typeof headerInfo.UUID !== 'undefined') {
removeHeaders(headerInfo.UUID);
}
if (!fetchResponse) {
chrome.tabs.sendMessage(sender.tab.id, pageObj);
return;
}
// ...get page HTML
pageObj.html = await fetchResponse.text();
// ...get page HTTP headers
pageObj.headers = Object.fromEntries(fetchResponse.headers.entries());
// Send response.
chrome.tabs.sendMessage(sender.tab.id, pageObj);
}
if (message.type === 'ext-tab') {
const pageObj = await openTab(message);
log('Pre-extraction data:', pageObj);
// Response.
chrome.tabs.sendMessage(
sender.tab.id,
pageObj
? pageObj[0]?.result
: { event: 'PRE_EXTRACTION', target: 'app', tabUUID: message.tabUUID, html: '' },
);
}
// Mandatory: Keeps message channel open for async response.
return true;
});
// HTTP request / response modifications
// ---------------------------------------------
// Decode HTTP request cookie header value.
function decodeCookies(headersObj) {
if (headersObj.action && headersObj.action.requestHeaders) {
for (const key in headersObj.action.requestHeaders) {
if (headersObj.action.requestHeaders[key].header === 'cookie') {
headersObj.action.requestHeaders[key].value = decodeURIComponent(
headersObj.action.requestHeaders[key].value,
);
}
}
}
}
// Initial HTTP headers state.
let headerCount = 0;
let headerHash = {};
// Fast and good enough hashing function to generate HTTP header UUID.
function hash(string) {
let hash = 0,
i,
chr;
if (string.length === 0) {
return hash;
}
for (i = 0; i < string.length; i++) {
chr = string.charCodeAt(i);
hash = (hash << 5) - hash + chr;
hash |= 0;
}
return hash;
}
// Set declarativeNetRequest HTTP headers.
async function setHeaders(action, condition) {
if (!action || !condition) {
// Cannot update session rules without both action and condition.
return;
}