datasquirel/package-shared/functions/backend/httpsRequest.ts

118 lines
3.4 KiB
TypeScript
Raw Normal View History

2025-01-10 19:10:28 +00:00
import https from "https";
import http from "http";
import { URL } from "url";
type Param = {
scheme?: string;
url?: string;
method?: string;
hostname?: string;
path?: string;
port?: number | string;
headers?: object;
body?: object;
};
2023-09-21 14:00:04 +00:00
/**
2025-01-10 19:10:28 +00:00
* # Make Https Request
2023-09-21 14:00:04 +00:00
*/
2025-01-10 19:10:28 +00:00
export default function httpsRequest({
2024-12-06 10:31:24 +00:00
url,
method,
hostname,
path,
headers,
body,
port,
scheme,
2025-01-10 19:10:28 +00:00
}: Param) {
2023-09-21 14:00:04 +00:00
const reqPayloadString = body ? JSON.stringify(body) : null;
2024-12-06 10:31:24 +00:00
const PARSED_URL = url ? new URL(url) : null;
2023-09-21 16:51:08 +00:00
2023-09-21 14:00:04 +00:00
////////////////////////////////////////////////
////////////////////////////////////////////////
////////////////////////////////////////////////
2024-11-13 13:13:10 +00:00
/** @type {any} */
2025-01-10 19:10:28 +00:00
let requestOptions: any = {
2024-12-06 10:31:24 +00:00
method: method || "GET",
hostname: PARSED_URL ? PARSED_URL.hostname : hostname,
port: scheme?.match(/https/i)
? 443
: PARSED_URL
? PARSED_URL.protocol?.match(/https/i)
? 443
: PARSED_URL.port
: port
? Number(port)
: 80,
2023-09-21 14:00:04 +00:00
headers: {},
};
if (path) requestOptions.path = path;
2024-12-06 10:31:24 +00:00
// if (href) requestOptions.href = href;
2023-09-21 14:00:04 +00:00
if (headers) requestOptions.headers = headers;
if (body) {
requestOptions.headers["Content-Type"] = "application/json";
2024-12-06 10:31:24 +00:00
requestOptions.headers["Content-Length"] = reqPayloadString
? Buffer.from(reqPayloadString).length
: undefined;
2023-09-21 14:00:04 +00:00
}
////////////////////////////////////////////////
////////////////////////////////////////////////
////////////////////////////////////////////////
return new Promise((res, rej) => {
2024-12-06 10:31:24 +00:00
const httpsRequest = (
scheme?.match(/https/i)
? https
: PARSED_URL?.protocol?.match(/https/i)
? https
: http
).request(
2023-09-21 14:00:04 +00:00
/* ====== Request Options object ====== */
2024-12-06 10:31:24 +00:00
requestOptions,
2023-09-21 14:00:04 +00:00
////////////////////////////////////////////////
////////////////////////////////////////////////
////////////////////////////////////////////////
/* ====== Callback function ====== */
(response) => {
var str = "";
// ## another chunk of data has been received, so append it to `str`
response.on("data", function (chunk) {
str += chunk;
});
// ## the whole response has been received, so we just print it out here
response.on("end", function () {
res(str);
});
response.on("error", (error) => {
console.log("HTTP response error =>", error.message);
2024-12-06 10:31:24 +00:00
rej(`HTTP response error =>, ${error.message}`);
});
response.on("close", () => {
console.log("HTTP(S) Response Closed Successfully");
2023-09-21 14:00:04 +00:00
});
}
);
if (body) httpsRequest.write(reqPayloadString);
httpsRequest.on("error", (error) => {
2024-12-06 10:31:24 +00:00
console.log("HTTPS request ERROR =>", error.message);
rej(`HTTP request error =>, ${error.message}`);
2023-09-21 14:00:04 +00:00
});
httpsRequest.end();
});
2025-01-10 19:10:28 +00:00
}