131 lines
4.8 KiB
JavaScript
131 lines
4.8 KiB
JavaScript
'use strict';
|
|
|
|
const Buffer = require('node:buffer').Buffer;
|
|
const https = require('node:https');
|
|
const { setTimeout } = require('node:timers');
|
|
const FormData = require('form-data');
|
|
const fetch = require('node-fetch');
|
|
|
|
let agent = null;
|
|
|
|
class APIRequest {
|
|
constructor(rest, method, path, options) {
|
|
this.rest = rest;
|
|
this.client = rest.client;
|
|
this.method = method;
|
|
this.route = options.route;
|
|
this.options = options;
|
|
this.retries = 0;
|
|
|
|
let queryString = '';
|
|
if (options.query) {
|
|
const query = Object.entries(options.query)
|
|
.filter(([, value]) => value !== null && typeof value !== 'undefined')
|
|
.flatMap(([key, value]) => (Array.isArray(value) ? value.map(v => [key, v]) : [[key, value]]));
|
|
queryString = new URLSearchParams(query).toString();
|
|
}
|
|
this.path = `${path}${queryString && `?${queryString}`}`;
|
|
}
|
|
|
|
make(captchaKey = undefined, captchaRqtoken = undefined) {
|
|
if (agent === null) {
|
|
if (typeof this.client.options.proxy === 'string' && this.client.options.proxy.length > 0) {
|
|
const proxy = require('proxy-agent');
|
|
agent = new proxy(this.client.options.proxy);
|
|
} else {
|
|
agent = new https.Agent({ ...this.client.options.http.agent, keepAlive: true });
|
|
}
|
|
}
|
|
|
|
const API =
|
|
this.options.versioned === false
|
|
? this.client.options.http.api
|
|
: `${this.client.options.http.api}/v${this.client.options.http.version}`;
|
|
const url = API + this.path;
|
|
|
|
const chromeVersion = this.client.options.ws.properties.browser_version.split('.')[0];
|
|
|
|
let headers = {
|
|
...this.client.options.http.headers,
|
|
Accept: '*/*',
|
|
'Accept-Language': 'en-US,en;q=0.9',
|
|
'Sec-Ch-Ua': `"Not?A_Brand";v="8", "Chromium";v="${chromeVersion}", "Google Chrome";v="${chromeVersion}"`,
|
|
'Sec-Ch-Ua-Mobile': '?0',
|
|
'Sec-Ch-Ua-Platform': 'Windows',
|
|
'Sec-Fetch-Dest': 'empty',
|
|
'Sec-Fetch-Mode': 'cors',
|
|
'Sec-Fetch-Site': 'same-origin',
|
|
'X-Debug-Options': 'bugReporterEnabled',
|
|
'X-Super-Properties': `${Buffer.from(
|
|
this.client.options.jsonTransformer({
|
|
...this.client.options.ws.properties,
|
|
browser_user_agent: this.client.options.http.headers['User-Agent'],
|
|
}),
|
|
'ascii',
|
|
).toString('base64')}`,
|
|
'X-Discord-Locale': 'en-US',
|
|
'User-Agent': this.client.options.http.headers['User-Agent'],
|
|
Origin: 'https://discord.com',
|
|
Connection: 'keep-alive',
|
|
};
|
|
|
|
if (this.options.auth !== false) headers.Authorization = this.rest.getAuth();
|
|
if (this.options.reason) headers['X-Audit-Log-Reason'] = encodeURIComponent(this.options.reason);
|
|
if (this.options.headers) headers = Object.assign(headers, this.options.headers);
|
|
if (this.options.webhook === true) {
|
|
headers = {
|
|
'User-Agent': this.client.options.http.headers['User-Agent'],
|
|
};
|
|
}
|
|
|
|
let body;
|
|
if (this.options.files?.length) {
|
|
body = new FormData();
|
|
for (const [index, file] of this.options.files.entries()) {
|
|
if (file?.file) body.append(file.key ?? `files[${index}]`, file.file, file.name);
|
|
}
|
|
if (typeof this.options.data !== 'undefined') {
|
|
if (this.options.dontUsePayloadJSON) {
|
|
for (const [key, value] of Object.entries(this.options.data)) body.append(key, value);
|
|
} else {
|
|
body.append('payload_json', JSON.stringify(this.options.data));
|
|
}
|
|
} else if (typeof this.options.body !== 'undefined') {
|
|
if (this.options.dontUsePayloadJSON) {
|
|
for (const [key, value] of Object.entries(this.options.body)) body.append(key, value);
|
|
} else {
|
|
body.append('payload_json', JSON.stringify(this.options.body));
|
|
}
|
|
}
|
|
headers = Object.assign(headers, body.getHeaders());
|
|
// eslint-disable-next-line eqeqeq
|
|
} else if (this.options.data != null) {
|
|
body = this.options.data ? JSON.stringify(this.options.data) : undefined;
|
|
headers['Content-Type'] = 'application/json';
|
|
} else if (this.options.body != null) {
|
|
body = new FormData();
|
|
body.append('payload_json', JSON.stringify(this.options.body));
|
|
headers = Object.assign(headers, body.getHeaders());
|
|
}
|
|
|
|
if (headers['Content-Type'] === 'application/json' && captchaKey && typeof captchaKey == 'string') {
|
|
body = JSON.parse(body || '{}');
|
|
body.captcha_key = captchaKey;
|
|
if (captchaRqtoken) body.captcha_rqtoken = captchaRqtoken;
|
|
body = JSON.stringify(body);
|
|
}
|
|
|
|
const controller = new AbortController();
|
|
const timeout = setTimeout(() => controller.abort(), this.client.options.restRequestTimeout).unref();
|
|
return fetch(url, {
|
|
method: this.method,
|
|
headers,
|
|
agent,
|
|
body,
|
|
signal: controller.signal,
|
|
}).finally(() => clearTimeout(timeout));
|
|
}
|
|
}
|
|
|
|
module.exports = APIRequest;
|