mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-13 01:51:40 +00:00
refactor: network
This commit is contained in:
parent
8d401e6ca3
commit
697eb887cf
1 changed files with 21 additions and 14 deletions
|
@ -1,13 +1,12 @@
|
||||||
import { Dispatcher, request, Agent, setGlobalDispatcher } from "undici";
|
import { Dispatcher, request, Agent } from "undici";
|
||||||
import pLimit from "p-limit";
|
import pLimit from "p-limit";
|
||||||
import { userAgent } from "./config.js";
|
import { userAgent } from "./config.js";
|
||||||
|
|
||||||
setGlobalDispatcher(
|
const dispatcher = new Agent({
|
||||||
new Agent({
|
pipelining: 0,
|
||||||
pipelining: 0,
|
bodyTimeout: 15 * 60 * 1000,
|
||||||
bodyTimeout: 15 * 60 * 1000,
|
maxRedirections: 20,
|
||||||
})
|
});
|
||||||
);
|
|
||||||
|
|
||||||
export class StatusCodeError extends Error {
|
export class StatusCodeError extends Error {
|
||||||
/**
|
/**
|
||||||
|
@ -82,19 +81,27 @@ async function _customRequestWithLimits(url) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* genera los headers para hacer un pedido dependiendo de la url
|
||||||
* @param {URL} url
|
* @param {URL} url
|
||||||
*/
|
*/
|
||||||
async function _customRequest(url) {
|
function getHeaders(url) {
|
||||||
// sharepoint no le gusta compartir a bots lol
|
// sharepoint no le gusta compartir a bots lol
|
||||||
const spoofUserAgent = url.host.endsWith("sharepoint.com");
|
const spoofUserAgent = url.host.endsWith("sharepoint.com");
|
||||||
|
|
||||||
|
return {
|
||||||
|
"User-Agent": spoofUserAgent
|
||||||
|
? "Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0"
|
||||||
|
: userAgent,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {URL} url
|
||||||
|
*/
|
||||||
|
async function _customRequest(url) {
|
||||||
const res = await request(url.toString(), {
|
const res = await request(url.toString(), {
|
||||||
maxRedirections: 20,
|
headers: getHeaders(url),
|
||||||
headers: {
|
dispatcher,
|
||||||
"User-Agent": spoofUserAgent
|
|
||||||
? "Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0"
|
|
||||||
: userAgent,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
if (res.statusCode >= 300 && res.statusCode <= 399)
|
if (res.statusCode >= 300 && res.statusCode <= 399)
|
||||||
throw new TooManyRedirectsError();
|
throw new TooManyRedirectsError();
|
||||||
|
|
Loading…
Reference in a new issue