2020-04-09 16:42:23 +02:00
|
|
|
import * as http from 'http';
|
|
|
|
import * as https from 'https';
|
2021-08-16 10:44:43 +02:00
|
|
|
import CacheableLookup from 'cacheable-lookup';
|
2021-10-16 10:16:24 +02:00
|
|
|
import fetch from 'node-fetch';
|
2021-08-16 10:44:43 +02:00
|
|
|
import { HttpProxyAgent, HttpsProxyAgent } from 'hpagent';
|
2022-02-27 03:07:39 +01:00
|
|
|
import config from '@/config/index.js';
|
|
|
|
import { URL } from 'node:url';
|
2020-04-09 16:42:23 +02:00
|
|
|
|
2021-10-16 10:16:24 +02:00
|
|
|
export async function getJson(url: string, accept = 'application/json, */*', timeout = 10000, headers?: Record<string, string>) {
|
|
|
|
const res = await getResponse({
|
|
|
|
url,
|
|
|
|
method: 'GET',
|
2020-04-09 16:42:23 +02:00
|
|
|
headers: Object.assign({
|
|
|
|
'User-Agent': config.userAgent,
|
2021-12-09 15:58:30 +01:00
|
|
|
Accept: accept,
|
2020-04-09 16:42:23 +02:00
|
|
|
}, headers || {}),
|
2021-12-09 15:58:30 +01:00
|
|
|
timeout,
|
2020-04-09 16:42:23 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return await res.json();
|
|
|
|
}
|
|
|
|
|
2021-10-16 10:16:24 +02:00
|
|
|
export async function getHtml(url: string, accept = 'text/html, */*', timeout = 10000, headers?: Record<string, string>) {
|
|
|
|
const res = await getResponse({
|
|
|
|
url,
|
|
|
|
method: 'GET',
|
2020-07-26 04:04:07 +02:00
|
|
|
headers: Object.assign({
|
|
|
|
'User-Agent': config.userAgent,
|
2021-12-09 15:58:30 +01:00
|
|
|
Accept: accept,
|
2020-07-26 04:04:07 +02:00
|
|
|
}, headers || {}),
|
2021-12-09 15:58:30 +01:00
|
|
|
timeout,
|
2021-10-16 10:16:24 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return await res.text();
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getResponse(args: { url: string, method: string, body?: string, headers: Record<string, string>, timeout?: number, size?: number }) {
|
|
|
|
const timeout = args?.timeout || 10 * 1000;
|
|
|
|
|
|
|
|
const controller = new AbortController();
|
|
|
|
setTimeout(() => {
|
|
|
|
controller.abort();
|
|
|
|
}, timeout * 6);
|
|
|
|
|
|
|
|
const res = await fetch(args.url, {
|
|
|
|
method: args.method,
|
|
|
|
headers: args.headers,
|
|
|
|
body: args.body,
|
2020-07-26 04:04:07 +02:00
|
|
|
timeout,
|
2021-10-16 10:16:24 +02:00
|
|
|
size: args?.size || 10 * 1024 * 1024,
|
2020-07-26 04:04:07 +02:00
|
|
|
agent: getAgentByUrl,
|
2021-10-16 10:16:24 +02:00
|
|
|
signal: controller.signal,
|
2020-07-26 04:04:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!res.ok) {
|
2021-10-16 10:16:24 +02:00
|
|
|
throw new StatusError(`${res.status} ${res.statusText}`, res.status, res.statusText);
|
2020-07-26 04:04:07 +02:00
|
|
|
}
|
|
|
|
|
2021-10-16 10:16:24 +02:00
|
|
|
return res;
|
2020-07-26 04:04:07 +02:00
|
|
|
}
|
|
|
|
|
2021-08-16 10:44:43 +02:00
|
|
|
const cache = new CacheableLookup({
|
|
|
|
maxTtl: 3600, // 1hours
|
|
|
|
errorTtl: 30, // 30secs
|
|
|
|
lookup: false, // nativeのdns.lookupにfallbackしない
|
|
|
|
});
|
|
|
|
|
2020-04-12 13:32:34 +02:00
|
|
|
/**
|
|
|
|
* Get http non-proxy agent
|
|
|
|
*/
|
|
|
|
const _http = new http.Agent({
|
|
|
|
keepAlive: true,
|
|
|
|
keepAliveMsecs: 30 * 1000,
|
2021-05-19 09:11:47 +02:00
|
|
|
lookup: cache.lookup,
|
|
|
|
} as http.AgentOptions);
|
2020-04-12 13:32:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get https non-proxy agent
|
|
|
|
*/
|
|
|
|
const _https = new https.Agent({
|
|
|
|
keepAlive: true,
|
|
|
|
keepAliveMsecs: 30 * 1000,
|
|
|
|
lookup: cache.lookup,
|
2021-08-16 10:44:43 +02:00
|
|
|
} as https.AgentOptions);
|
|
|
|
|
|
|
|
const maxSockets = Math.max(256, config.deliverJobConcurrency || 128);
|
2020-04-12 13:32:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get http proxy or non-proxy agent
|
|
|
|
*/
|
2020-04-09 16:42:23 +02:00
|
|
|
export const httpAgent = config.proxy
|
2021-08-16 10:44:43 +02:00
|
|
|
? new HttpProxyAgent({
|
|
|
|
keepAlive: true,
|
|
|
|
keepAliveMsecs: 30 * 1000,
|
|
|
|
maxSockets,
|
|
|
|
maxFreeSockets: 256,
|
|
|
|
scheduling: 'lifo',
|
2021-12-09 15:58:30 +01:00
|
|
|
proxy: config.proxy,
|
2021-08-16 10:44:43 +02:00
|
|
|
})
|
2020-04-12 13:32:34 +02:00
|
|
|
: _http;
|
2020-04-09 16:42:23 +02:00
|
|
|
|
2020-04-12 13:32:34 +02:00
|
|
|
/**
|
|
|
|
* Get https proxy or non-proxy agent
|
|
|
|
*/
|
2020-04-09 16:42:23 +02:00
|
|
|
export const httpsAgent = config.proxy
|
2021-08-16 10:44:43 +02:00
|
|
|
? new HttpsProxyAgent({
|
|
|
|
keepAlive: true,
|
|
|
|
keepAliveMsecs: 30 * 1000,
|
|
|
|
maxSockets,
|
|
|
|
maxFreeSockets: 256,
|
|
|
|
scheduling: 'lifo',
|
2021-12-09 15:58:30 +01:00
|
|
|
proxy: config.proxy,
|
2021-08-16 10:44:43 +02:00
|
|
|
})
|
2020-04-12 13:32:34 +02:00
|
|
|
: _https;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get agent by URL
|
|
|
|
* @param url URL
|
|
|
|
* @param bypassProxy Allways bypass proxy
|
|
|
|
*/
|
|
|
|
export function getAgentByUrl(url: URL, bypassProxy = false) {
|
|
|
|
if (bypassProxy || (config.proxyBypassHosts || []).includes(url.hostname)) {
|
2022-04-03 08:33:22 +02:00
|
|
|
return url.protocol === 'http:' ? _http : _https;
|
2020-04-12 13:32:34 +02:00
|
|
|
} else {
|
2022-04-03 08:33:22 +02:00
|
|
|
return url.protocol === 'http:' ? httpAgent : httpsAgent;
|
2020-04-12 13:32:34 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-16 10:16:24 +02:00
|
|
|
|
|
|
|
export class StatusError extends Error {
|
|
|
|
public statusCode: number;
|
|
|
|
public statusMessage?: string;
|
|
|
|
public isClientError: boolean;
|
|
|
|
|
|
|
|
constructor(message: string, statusCode: number, statusMessage?: string) {
|
|
|
|
super(message);
|
|
|
|
this.name = 'StatusError';
|
|
|
|
this.statusCode = statusCode;
|
|
|
|
this.statusMessage = statusMessage;
|
|
|
|
this.isClientError = typeof this.statusCode === 'number' && this.statusCode >= 400 && this.statusCode < 500;
|
|
|
|
}
|
|
|
|
}
|