datasquirel/users/add-user.js

91 lines
3.0 KiB
JavaScript
Raw Normal View History

2023-05-06 11:14:09 +00:00
/**
* ==============================================================================
* Imports
* ==============================================================================
*/
const https = require("https");
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/**
* ==============================================================================
* Main Function
* ==============================================================================
* @param {String} key - API Key
* @param {String} database - Target Database
* @param {String | Object} payload - SQL query String or Request Object. Eg. {
action: "insert | update | delete",
data: {
user_id: user.id,
user_first_name: user.first_name,
user_last_name: user.last_name,
},
table: "posts",
}
*/
module.exports = async function ({ key, payload, database }) {
/**
* 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",
"Content-Length": reqPayload.length,
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;
};
/** ********************************************** */
/** ********************************************** */
/** ********************************************** */