2023-05-06 11:14:09 +00:00
|
|
|
/**
|
|
|
|
* ==============================================================================
|
|
|
|
* Imports
|
|
|
|
* ==============================================================================
|
|
|
|
*/
|
|
|
|
const https = require("https");
|
|
|
|
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
|
2023-05-18 11:43:52 +00:00
|
|
|
/**
|
2023-05-18 11:51:11 +00:00
|
|
|
* @typedef {object} FunctionReturn
|
2023-05-18 11:43:52 +00:00
|
|
|
* @property {boolean} success - Did the function run successfully?
|
|
|
|
* @property {(Object[]|string)} [payload=[]] - Payload
|
|
|
|
*/
|
|
|
|
|
2023-05-06 11:14:09 +00:00
|
|
|
/**
|
|
|
|
* ==============================================================================
|
|
|
|
* Main Function
|
|
|
|
* ==============================================================================
|
2023-05-18 11:43:52 +00:00
|
|
|
* @async
|
|
|
|
*
|
|
|
|
* @param {{
|
|
|
|
* key: string,
|
|
|
|
* database: string
|
2023-05-23 11:16:10 +00:00
|
|
|
* payload: {
|
|
|
|
* first_name: string,
|
|
|
|
* last_name: string,
|
2023-05-23 11:26:06 +00:00
|
|
|
* username: string,
|
2023-05-23 11:16:10 +00:00
|
|
|
* email: string,
|
|
|
|
* password: string,
|
|
|
|
* },
|
2023-05-18 11:43:52 +00:00
|
|
|
* }}
|
|
|
|
*
|
2023-05-22 07:51:33 +00:00
|
|
|
* @returns { Promise<FunctionReturn> }
|
2023-05-06 11:14:09 +00:00
|
|
|
*/
|
2023-07-07 19:13:13 +00:00
|
|
|
async function addUser({ key, payload, database }) {
|
2023-05-06 11:14:09 +00:00
|
|
|
/**
|
|
|
|
* Make https request
|
|
|
|
*
|
|
|
|
* @description make a request to datasquirel.com
|
|
|
|
*/
|
|
|
|
const httpResponse = await new Promise((resolve, reject) => {
|
2023-05-06 12:18:44 +00:00
|
|
|
const reqPayload = JSON.stringify({
|
|
|
|
payload,
|
|
|
|
database,
|
|
|
|
});
|
|
|
|
|
|
|
|
const httpsRequest = https.request(
|
|
|
|
{
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
2023-05-22 10:52:27 +00:00
|
|
|
"Content-Length": Buffer.from(reqPayload).length,
|
2023-05-06 12:18:44 +00:00
|
|
|
Authorization: key,
|
2023-05-06 11:14:09 +00:00
|
|
|
},
|
2023-05-06 12:18:44 +00:00
|
|
|
port: 443,
|
|
|
|
hostname: "datasquirel.com",
|
|
|
|
path: `/api/user/add-user`,
|
|
|
|
},
|
2023-05-06 11:14:09 +00:00
|
|
|
|
2023-05-06 12:18:44 +00:00
|
|
|
/**
|
|
|
|
* Callback Function
|
|
|
|
*
|
|
|
|
* @description https request callback
|
|
|
|
*/
|
|
|
|
(response) => {
|
|
|
|
var str = "";
|
2023-05-06 11:14:09 +00:00
|
|
|
|
2023-05-06 12:18:44 +00:00
|
|
|
response.on("data", function (chunk) {
|
|
|
|
str += chunk;
|
|
|
|
});
|
2023-05-06 11:14:09 +00:00
|
|
|
|
2023-05-06 12:18:44 +00:00
|
|
|
response.on("end", function () {
|
|
|
|
resolve(JSON.parse(str));
|
|
|
|
});
|
2023-05-06 11:14:09 +00:00
|
|
|
|
2023-05-06 12:18:44 +00:00
|
|
|
response.on("error", (err) => {
|
|
|
|
reject(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
httpsRequest.write(reqPayload);
|
|
|
|
httpsRequest.end();
|
2023-05-06 11:14:09 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/** ********************************************** */
|
|
|
|
/** ********************************************** */
|
|
|
|
/** ********************************************** */
|
|
|
|
|
|
|
|
return httpResponse;
|
2023-07-07 19:13:13 +00:00
|
|
|
}
|
2023-05-06 11:14:09 +00:00
|
|
|
|
|
|
|
/** ********************************************** */
|
|
|
|
/** ********************************************** */
|
|
|
|
/** ********************************************** */
|
2023-07-07 19:13:13 +00:00
|
|
|
|
|
|
|
module.exports = addUser;
|