-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackground.js
79 lines (69 loc) · 1.6 KB
/
background.js
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
chrome.runtime.onMessage.addListener(handleMessage);
function handleMessage(msg) {
switch (msg.type) {
case 'login': {
login(msg.url, msg.username, msg.password);
break;
}
case 'download': {
download(msg.url);
break;
}
}
}
function download(url) {
chrome.storage.local.get(['data']).then((result) => {
if (result.data === undefined) {
return;
}
var formData = new FormData();
formData.append('url', url);
if (url.includes('youtube.com') || url.includes('youtu.be')) {
formData.append('type', 'ytdl');
formData.append('options[extension]', 'webm');
} else {
formData.append('type', 'aria2');
}
var requestOptions = {
method: 'POST',
redirect: 'follow',
headers: {
Authorization: 'Basic ' + result.data.token,
},
body: formData,
credentials: 'omit',
};
fetch(result.data.server + 'apps/ncdownloader/api/v1/download', requestOptions).catch(
(error) => console.log('error', error)
);
});
}
function login(url, username, password) {
if (url.charAt(url.length - 1) != '/') {
url += '/';
}
chrome.permissions.request(
{
origins: [url],
},
(granted) => {
if (granted) {
console.log('granted');
chrome.storage.local.set({ data: {server: url, token: btoa(username + ":" + password)} });
chrome.runtime.sendMessage({
type: 'loggedin',
});
}
}
);
}
chrome.runtime.onInstalled.addListener( () => {
chrome.contextMenus.create({
id: 'ncdl',
title: 'Send to NCDownloader',
contexts: ['link'],
});
});
chrome.contextMenus.onClicked.addListener( ( data, tab ) => {
download(data.linkUrl);
} );