mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 03:18:17 +00:00
135 lines
5.1 KiB
TypeScript
135 lines
5.1 KiB
TypeScript
import { RestManager } from "../bot.ts";
|
|
import { DiscordHTTPResponseCodes } from "../types/codes/http_response_codes.ts";
|
|
|
|
export async function processGlobalQueue(rest: RestManager) {
|
|
// IF QUEUE IS EMPTY EXIT
|
|
if (!rest.globalQueue.length) return;
|
|
// IF QUEUE IS ALREADY RUNNING EXIT
|
|
if (rest.globalQueueProcessing) return;
|
|
|
|
// SET AS TRUE SO OTHER QUEUES DON'T START
|
|
rest.globalQueueProcessing = true;
|
|
|
|
while (rest.globalQueue.length) {
|
|
// IF THE BOT IS GLOBALLY RATELIMITED TRY AGAIN
|
|
if (rest.globallyRateLimited) {
|
|
setTimeout(() => {
|
|
rest.debug(`[REST - processGlobalQueue] Globally rate limited, running setTimeout.`);
|
|
rest.processGlobalQueue(rest);
|
|
}, 1000);
|
|
|
|
// BREAK WHILE LOOP
|
|
break;
|
|
}
|
|
|
|
const request = rest.globalQueue[0];
|
|
|
|
try {
|
|
// CUSTOM HANDLER FOR USER TO LOG OR WHATEVER WHENEVER A FETCH IS MADE
|
|
rest.debug(`[REST - fetching] ${JSON.stringify(request.payload)}`);
|
|
|
|
const response = await fetch(request.urlToUse, rest.createRequestBody(rest, request));
|
|
rest.debug(`[REST - fetched] ${JSON.stringify(request.payload)}`);
|
|
|
|
const bucketIdFromHeaders = rest.processRequestHeaders(rest, request.basicURL, response.headers);
|
|
// SET THE BUCKET Id IF IT WAS PRESENT
|
|
if (bucketIdFromHeaders) {
|
|
request.payload.bucketId = bucketIdFromHeaders;
|
|
}
|
|
|
|
if (response.status < 200 || response.status >= 400) {
|
|
rest.debug(
|
|
`[REST - httpError] Payload: ${JSON.stringify(request.payload)} | Response: ${JSON.stringify(response)}`
|
|
);
|
|
|
|
let error = "REQUEST_UNKNOWN_ERROR";
|
|
switch (response.status) {
|
|
case DiscordHTTPResponseCodes.BadRequest:
|
|
error = "The request was improperly formatted, or the server couldn't understand it.";
|
|
break;
|
|
case DiscordHTTPResponseCodes.Unauthorized:
|
|
error = "The Authorization header was missing or invalid.";
|
|
break;
|
|
case DiscordHTTPResponseCodes.Forbidden:
|
|
error = "The Authorization token you passed did not have permission to the resource.";
|
|
break;
|
|
case DiscordHTTPResponseCodes.NotFound:
|
|
error = "The resource at the location specified doesn't exist.";
|
|
break;
|
|
case DiscordHTTPResponseCodes.MethodNotAllowed:
|
|
error = "The HTTP method used is not valid for the location specified.";
|
|
break;
|
|
case DiscordHTTPResponseCodes.GatewayUnavailable:
|
|
error = "There was not a gateway available to process your request. Wait a bit and retry.";
|
|
break;
|
|
}
|
|
|
|
// If NOT rate limited remove from queue
|
|
if (response.status !== 429) {
|
|
request.request.reject(new Error(`[${response.status}] ${error}`));
|
|
rest.globalQueue.shift();
|
|
} else {
|
|
if (request.payload.retryCount++ >= rest.maxRetryCount) {
|
|
rest.debug(`[REST - RetriesMaxed] ${JSON.stringify(request.payload)}`);
|
|
request.request.reject(
|
|
new Error(`[${response.status}] The request was rate limited and it maxed out the retries limit.`)
|
|
);
|
|
// REMOVE ITEM FROM QUEUE TO PREVENT RETRY
|
|
rest.globalQueue.shift();
|
|
continue;
|
|
}
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
// SOMETIMES DISCORD RETURNS AN EMPTY 204 RESPONSE THAT CAN'T BE MADE TO JSON
|
|
if (response.status === 204) {
|
|
rest.debug(`[REST - FetchSuccess] ${JSON.stringify(request.payload)}`);
|
|
// REMOVE FROM QUEUE
|
|
rest.globalQueue.shift();
|
|
request.request.respond({ status: 204 });
|
|
} else {
|
|
// CONVERT THE RESPONSE TO JSON
|
|
const json = await response.json();
|
|
// IF THE RESPONSE WAS RATE LIMITED, HANDLE ACCORDINGLY
|
|
// if (json.retry_after || json.message === "You are being rate limited.") {
|
|
// // IF IT HAS MAXED RETRIES SOMETHING SERIOUSLY WRONG. CANCEL OUT.
|
|
// if (request.payload.retryCount >= rest.maxRetryCount) {
|
|
// rest.eventHandlers.retriesMaxed(request.payload);
|
|
// request.request.respond({
|
|
// status: 200,
|
|
// body: JSON.stringify({
|
|
// error: "The request was rate limited and it maxed out the retries limit.",
|
|
// }),
|
|
// });
|
|
// // REMOVE ITEM FROM QUEUE TO PREVENT RETRY
|
|
// rest.globalQueue.shift();
|
|
// continue;
|
|
// }
|
|
|
|
// // SINCE IT WAS RATELIMITE, RETRY AGAIN
|
|
// continue;
|
|
// }
|
|
|
|
rest.debug(`[REST - fetchSuccess] ${JSON.stringify(request.payload)}`);
|
|
// REMOVE FROM QUEUE
|
|
rest.globalQueue.shift();
|
|
request.request.respond({
|
|
status: 200,
|
|
body: JSON.stringify(json),
|
|
});
|
|
}
|
|
} catch (error) {
|
|
// SOMETHING WENT WRONG, LOG AND RESPOND WITH ERROR
|
|
rest.debug(`[REST - fetchFailed] Payload: ${JSON.stringify(request.payload)} | Error: ${error}`);
|
|
request.request.reject(error);
|
|
// REMOVE FROM QUEUE
|
|
rest.globalQueue.shift();
|
|
}
|
|
}
|
|
|
|
// ALLOW OTHER QUEUES TO START WHEN NEW REQUEST IS MADE
|
|
rest.globalQueueProcessing = false;
|
|
}
|