2019-03-20 14:50:44 -05:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as request from 'request';
|
|
|
|
import config from '../config';
|
|
|
|
import chalk from 'chalk';
|
|
|
|
import Logger from '../services/logger';
|
|
|
|
|
|
|
|
export async function downloadUrl(url: string, path: string) {
|
2019-06-30 13:25:31 -05:00
|
|
|
const logger = new Logger('download');
|
2019-03-20 14:50:44 -05:00
|
|
|
|
|
|
|
await new Promise((res, rej) => {
|
|
|
|
logger.info(`Downloading ${chalk.cyan(url)} ...`);
|
|
|
|
|
|
|
|
const writable = fs.createWriteStream(path);
|
|
|
|
|
|
|
|
writable.on('finish', () => {
|
|
|
|
logger.succ(`Download finished: ${chalk.cyan(url)}`);
|
|
|
|
res();
|
|
|
|
});
|
|
|
|
|
|
|
|
writable.on('error', error => {
|
|
|
|
logger.error(`Download failed: ${chalk.cyan(url)}: ${error}`, {
|
|
|
|
url: url,
|
|
|
|
e: error
|
|
|
|
});
|
|
|
|
rej(error);
|
|
|
|
});
|
|
|
|
|
|
|
|
const req = request({
|
2019-06-18 01:19:19 -05:00
|
|
|
url: new URL(url).href, // https://github.com/syuilo/misskey/issues/2637
|
2019-03-20 14:50:44 -05:00
|
|
|
proxy: config.proxy,
|
|
|
|
timeout: 10 * 1000,
|
|
|
|
headers: {
|
|
|
|
'User-Agent': config.userAgent
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
req.pipe(writable);
|
|
|
|
|
|
|
|
req.on('response', response => {
|
|
|
|
if (response.statusCode !== 200) {
|
|
|
|
logger.error(`Got ${response.statusCode} (${url})`);
|
|
|
|
writable.close();
|
|
|
|
rej(response.statusCode);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('error', error => {
|
|
|
|
logger.error(`Failed to start download: ${chalk.cyan(url)}: ${error}`, {
|
|
|
|
url: url,
|
|
|
|
e: error
|
|
|
|
});
|
|
|
|
writable.close();
|
|
|
|
rej(error);
|
|
|
|
});
|
|
|
|
|
|
|
|
logger.succ(`Downloaded to: ${path}`);
|
|
|
|
});
|
|
|
|
}
|