2022-02-27 03:07:39 +01:00
|
|
|
import * as fs from 'node:fs';
|
|
|
|
import * as stream from 'node:stream';
|
|
|
|
import * as util from 'node:util';
|
2021-09-03 14:00:44 +02:00
|
|
|
import got, * as Got from 'got';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { httpAgent, httpsAgent, StatusError } from './fetch.js';
|
|
|
|
import config from '@/config/index.js';
|
|
|
|
import chalk from 'chalk';
|
|
|
|
import Logger from '@/services/logger.js';
|
2022-03-12 11:23:57 +01:00
|
|
|
import IPCIDR from 'ip-cidr';
|
2022-02-27 03:07:39 +01:00
|
|
|
import PrivateIp from 'private-ip';
|
2019-03-20 20:50:44 +01:00
|
|
|
|
2020-04-11 11:28:40 +02:00
|
|
|
const pipeline = util.promisify(stream.pipeline);
|
|
|
|
|
2021-12-10 10:24:26 +01:00
|
|
|
export async function downloadUrl(url: string, path: string): Promise<void> {
|
2019-06-30 20:25:31 +02:00
|
|
|
const logger = new Logger('download');
|
2019-03-20 20:50:44 +01:00
|
|
|
|
2020-04-09 16:42:23 +02:00
|
|
|
logger.info(`Downloading ${chalk.cyan(url)} ...`);
|
|
|
|
|
2021-09-03 14:00:44 +02:00
|
|
|
const timeout = 30 * 1000;
|
|
|
|
const operationTimeout = 60 * 1000;
|
2021-09-04 13:33:14 +02:00
|
|
|
const maxSize = config.maxFileSize || 262144000;
|
2021-09-03 14:00:44 +02:00
|
|
|
|
|
|
|
const req = got.stream(url, {
|
2020-04-09 16:42:23 +02:00
|
|
|
headers: {
|
2021-12-09 15:58:30 +01:00
|
|
|
'User-Agent': config.userAgent,
|
2020-04-09 16:42:23 +02:00
|
|
|
},
|
2021-09-03 14:00:44 +02:00
|
|
|
timeout: {
|
|
|
|
lookup: timeout,
|
|
|
|
connect: timeout,
|
|
|
|
secureConnect: timeout,
|
|
|
|
socket: timeout, // read timeout
|
|
|
|
response: timeout,
|
|
|
|
send: timeout,
|
|
|
|
request: operationTimeout, // whole operation timeout
|
|
|
|
},
|
|
|
|
agent: {
|
|
|
|
http: httpAgent,
|
|
|
|
https: httpsAgent,
|
|
|
|
},
|
2021-10-16 10:16:24 +02:00
|
|
|
http2: false, // default
|
2022-02-03 13:09:15 +01:00
|
|
|
retry: {
|
|
|
|
limit: 0,
|
|
|
|
},
|
2021-09-03 14:00:44 +02:00
|
|
|
}).on('response', (res: Got.Response) => {
|
|
|
|
if ((process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'test') && !config.proxy && res.ip) {
|
|
|
|
if (isPrivateIp(res.ip)) {
|
|
|
|
logger.warn(`Blocked address: ${res.ip}`);
|
|
|
|
req.destroy();
|
|
|
|
}
|
|
|
|
}
|
2021-09-04 13:33:14 +02:00
|
|
|
|
|
|
|
const contentLength = res.headers['content-length'];
|
|
|
|
if (contentLength != null) {
|
|
|
|
const size = Number(contentLength);
|
|
|
|
if (size > maxSize) {
|
|
|
|
logger.warn(`maxSize exceeded (${size} > ${maxSize}) on response`);
|
|
|
|
req.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).on('downloadProgress', (progress: Got.Progress) => {
|
|
|
|
if (progress.transferred > maxSize) {
|
|
|
|
logger.warn(`maxSize exceeded (${progress.transferred} > ${maxSize}) on downloadProgress`);
|
|
|
|
req.destroy();
|
|
|
|
}
|
2020-04-09 16:42:23 +02:00
|
|
|
});
|
2019-03-20 20:50:44 +01:00
|
|
|
|
2021-10-16 10:16:24 +02:00
|
|
|
try {
|
|
|
|
await pipeline(req, fs.createWriteStream(path));
|
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof Got.HTTPError) {
|
|
|
|
throw new StatusError(`${e.response.statusCode} ${e.response.statusMessage}`, e.response.statusCode, e.response.statusMessage);
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2019-03-20 20:50:44 +01:00
|
|
|
|
2020-04-11 11:28:40 +02:00
|
|
|
logger.succ(`Download finished: ${chalk.cyan(url)}`);
|
2019-03-20 20:50:44 +01:00
|
|
|
}
|
2021-09-03 14:00:44 +02:00
|
|
|
|
2022-02-03 13:09:15 +01:00
|
|
|
function isPrivateIp(ip: string): boolean {
|
2021-09-03 14:00:44 +02:00
|
|
|
for (const net of config.allowedPrivateNetworks || []) {
|
|
|
|
const cidr = new IPCIDR(net);
|
|
|
|
if (cidr.contains(ip)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return PrivateIp(ip);
|
|
|
|
}
|