forked from sindresorhus/electron-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
212 lines (175 loc) · 5.56 KB
/
index.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
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
'use strict';
const path = require('path');
const {app, BrowserWindow, shell, dialog} = require('electron');
const unusedFilename = require('unused-filename');
const pupa = require('pupa');
const extName = require('ext-name');
const getFilenameFromMime = (name, mime) => {
const extensions = extName.mime(mime);
if (extensions.length !== 1) {
return name;
}
return `${name}.${extensions[0].ext}`;
};
const majorElectronVersion = () => {
const version = process.versions.electron.split('.');
return Number.parseInt(version[0], 10);
};
const getWindowFromBrowserView = webContents => {
for (const currentWindow of BrowserWindow.getAllWindows()) {
for (const currentBrowserView of currentWindow.getBrowserViews()) {
if (currentBrowserView.webContents.id === webContents.id) {
return currentWindow;
}
}
}
};
const getWindowFromWebContents = webContents => {
let window_;
const webContentsType = webContents.getType();
switch (webContentsType) {
case 'webview':
window_ = BrowserWindow.fromWebContents(webContents.hostWebContents);
break;
case 'browserView':
window_ = getWindowFromBrowserView(webContents);
break;
default:
window_ = BrowserWindow.fromWebContents(webContents);
break;
}
return window_;
};
function registerListener(session, options, callback = () => {}) {
const downloadItems = new Set();
let receivedBytes = 0;
let completedBytes = 0;
let totalBytes = 0;
const activeDownloadItems = () => downloadItems.size;
const progressDownloadItems = () => receivedBytes / totalBytes;
options = {
showBadge: true,
...options
};
const listener = (event, item, webContents) => {
downloadItems.add(item);
totalBytes += item.getTotalBytes();
const window_ = majorElectronVersion() >= 12 ? BrowserWindow.fromWebContents(webContents) : getWindowFromWebContents(webContents);
if (options.directory && !path.isAbsolute(options.directory)) {
throw new Error('The `directory` option must be an absolute path');
}
const directory = options.directory || app.getPath('downloads');
let filePath;
if (options.filename) {
filePath = path.join(directory, options.filename);
} else {
const filename = item.getFilename();
const name = path.extname(filename) ? filename : getFilenameFromMime(filename, item.getMimeType());
filePath = options.overwrite ? path.join(directory, name) : unusedFilename.sync(path.join(directory, name));
}
const errorMessage = options.errorMessage || 'The download of {filename} was interrupted';
if (options.saveAs) {
item.setSaveDialogOptions({...options.saveOptions, defaultPath: filePath});
} else {
item.setSavePath(filePath);
}
if (typeof options.onStarted === 'function') {
options.onStarted(item);
}
item.on('updated', () => {
receivedBytes = completedBytes;
for (const item of downloadItems) {
receivedBytes += item.getReceivedBytes();
}
if (options.showBadge && ['darwin', 'linux'].includes(process.platform)) {
app.badgeCount = activeDownloadItems();
}
if (!window_.isDestroyed()) {
window_.setProgressBar(progressDownloadItems());
}
if (typeof options.onProgress === 'function') {
const itemTransferredBytes = item.getReceivedBytes();
const itemTotalBytes = item.getTotalBytes();
options.onProgress({
percent: itemTotalBytes ? itemTransferredBytes / itemTotalBytes : 0,
transferredBytes: itemTransferredBytes,
totalBytes: itemTotalBytes
});
}
if (typeof options.onTotalProgress === 'function') {
options.onTotalProgress({
percent: progressDownloadItems(),
transferredBytes: receivedBytes,
totalBytes
});
}
});
item.on('done', (event, state) => {
completedBytes += item.getTotalBytes();
downloadItems.delete(item);
if (options.showBadge && ['darwin', 'linux'].includes(process.platform)) {
app.badgeCount = activeDownloadItems();
}
if (!window_.isDestroyed() && !activeDownloadItems()) {
window_.setProgressBar(-1);
receivedBytes = 0;
completedBytes = 0;
totalBytes = 0;
}
if (options.unregisterWhenDone) {
session.removeListener('will-download', listener);
}
// eslint-disable-next-line unicorn/prefer-switch
if (state === 'cancelled') {
if (typeof options.onCancel === 'function') {
options.onCancel(item);
}
} else if (state === 'interrupted') {
const message = pupa(errorMessage, {filename: path.basename(filePath)});
callback(new Error(message));
} else if (state === 'completed') {
if (process.platform === 'darwin') {
app.dock.downloadFinished(filePath);
}
if (options.openFolderWhenDone) {
shell.showItemInFolder(item.getSavePath());
}
if (typeof options.onCompleted === 'function') {
options.onCompleted({
fileName: item.getFilename(),
path: item.getSavePath(),
fileSize: item.getReceivedBytes(),
mimeType: item.getMimeType(),
url: item.getURL()
});
}
callback(null, item);
}
});
};
session.on('will-download', listener);
}
module.exports = (options = {}) => {
app.on('session-created', session => {
registerListener(session, options, (error, _) => {
if (error) {
const errorTitle = options.errorTitle || 'Download Error';
dialog.showErrorBox(errorTitle, error.message);
}
});
});
};
module.exports.download = (window_, url, options) => new Promise((resolve, reject) => {
options = {
...options,
unregisterWhenDone: true
};
registerListener(window_.webContents.session, options, (error, item) => {
if (error) {
reject(error);
} else {
resolve(item);
}
});
window_.webContents.downloadURL(url);
});