summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2021-09-03 21:00:44 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-09-03 21:13:06 +0900
commite1a8b158e04ad567d92d8daf3cc0898ee18f1a2e (patch)
tree436c3a15daed01189abdc0c08f21ac9e71fc034e /src/misc
parentUpdate CONTRIBUTING.md (diff)
downloadsharkey-e1a8b158e04ad567d92d8daf3cc0898ee18f1a2e.tar.gz
sharkey-e1a8b158e04ad567d92d8daf3cc0898ee18f1a2e.tar.bz2
sharkey-e1a8b158e04ad567d92d8daf3cc0898ee18f1a2e.zip
Tune download (#2)
* s2-2 * allowedPrivateNetworks * style * Proxyの間にあると誤解しそうなのでconfigの記述順を変更 * Fix error handler
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/download-url.ts67
1 files changed, 49 insertions, 18 deletions
diff --git a/src/misc/download-url.ts b/src/misc/download-url.ts
index 43e061c715..463fb555bb 100644
--- a/src/misc/download-url.ts
+++ b/src/misc/download-url.ts
@@ -1,13 +1,13 @@
import * as fs from 'fs';
import * as stream from 'stream';
import * as util from 'util';
-import { URL } from 'url';
-import fetch from 'node-fetch';
-import { getAgentByUrl } from './fetch';
-import { AbortController } from 'abort-controller';
+import got, * as Got from 'got';
+import { httpAgent, httpsAgent } from './fetch';
import config from '@/config/index';
import * as chalk from 'chalk';
import Logger from '@/services/logger';
+import * as IPCIDR from 'ip-cidr';
+const PrivateIp = require('private-ip');
const pipeline = util.promisify(stream.pipeline);
@@ -15,26 +15,57 @@ export async function downloadUrl(url: string, path: string) {
const logger = new Logger('download');
logger.info(`Downloading ${chalk.cyan(url)} ...`);
- const controller = new AbortController();
- setTimeout(() => {
- controller.abort();
- }, 60 * 1000);
- const response = await fetch(new URL(url).href, {
+ const timeout = 30 * 1000;
+ const operationTimeout = 60 * 1000;
+
+ const req = got.stream(url, {
headers: {
'User-Agent': config.userAgent
},
- timeout: 10 * 1000,
- signal: controller.signal,
- agent: getAgentByUrl,
+ 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,
+ },
+ retry: 0,
+ }).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();
+ }
+ }
+ }).on('error', (e: any) => {
+ if (e.name === 'HTTPError') {
+ const statusCode = e.response?.statusCode;
+ const statusMessage = e.response?.statusMessage;
+ e.name = `StatusError`;
+ e.statusCode = statusCode;
+ e.message = `${statusCode} ${statusMessage}`;
+ }
});
- if (!response.ok) {
- logger.error(`Got ${response.status} (${url})`);
- throw response.status;
- }
-
- await pipeline(response.body, fs.createWriteStream(path));
+ await pipeline(req, fs.createWriteStream(path));
logger.succ(`Download finished: ${chalk.cyan(url)}`);
}
+
+function isPrivateIp(ip: string) {
+ for (const net of config.allowedPrivateNetworks || []) {
+ const cidr = new IPCIDR(net);
+ if (cidr.contains(ip)) {
+ return false;
+ }
+ }
+
+ return PrivateIp(ip);
+}