/** * ============================================================================== * Imports * ============================================================================== */ const https = require("https"); /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** * ============================================================================== * Main Function * ============================================================================== * @param {String} key - API Key * @param {String} database - Database Name * @param {String | Object} query - 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", identifierColumnName: "id", identifierValue: 1, condition: "WHERE likes > 2" } */ module.exports = async function ({ key, query, database }) { /** * Make https request * * @description make a request to datasquirel.com */ const httpResponse = await new Promise((resolve, reject) => { const reqPayload = JSON.stringify({ query, database, }); const httpsRequest = https.request( { method: "POST", headers: { "Content-Type": "application/json", "Content-Length": reqPayload.length, Authorization: key, }, port: 443, hostname: "datasquirel.com", path: `/api/query/post`, }, /** * Callback Function * * @description https request callback */ (response) => { var str = ""; response.on("data", function (chunk) { str += chunk; }); response.on("end", function () { resolve(JSON.parse(str)); }); response.on("error", (err) => { reject(err); }); } ); httpsRequest.write(reqPayload); httpsRequest.end(); }); /** ********************************************** */ /** ********************************************** */ /** ********************************************** */ return httpResponse; }; /** ********************************************** */ /** ********************************************** */ /** ********************************************** */