// @ts-check /** * Imports */ const https = require("https"); const http = require("http"); const path = require("path"); const fs = require("fs"); /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** * @typedef {Object} PostReturn * @property {boolean} success - Did the function run successfully? * @property {*} [payload] - The Y Coordinate * @property {string} [error] - The Y Coordinate */ /** * # Update API Schema From Local DB * * @async * * @returns { Promise } - Return Object */ async function updateApiSchemaFromLocalDb() { try { /** * Initialize */ const dbSchemaPath = path.resolve(process.cwd(), "dsql.schema.json"); const key = process.env.DSQL_KEY || ""; const dbSchema = JSON.parse(fs.readFileSync(dbSchemaPath, "utf8")); const scheme = process.env.DSQL_HTTP_SCHEME; const localHost = process.env.DSQL_LOCAL_HOST; const localHostPort = process.env.DSQL_LOCAL_HOST_PORT; /** * Make https request * * @description make a request to datasquirel.com */ const httpResponse = await new Promise((resolve, reject) => { const reqPayloadString = JSON.stringify({ schema: dbSchema, }).replace(/\n|\r|\n\r/gm, ""); try { JSON.parse(reqPayloadString); } catch (error) { console.log(error); console.log(reqPayloadString); return { success: false, payload: null, error: "Query object is invalid. Please Check query data values", }; } const reqPayload = reqPayloadString; const httpsRequest = ( scheme?.match(/^http$/i) ? http : https ).request( { method: "POST", headers: { "Content-Type": "application/json", "Content-Length": Buffer.from(reqPayload).length, Authorization: key, }, port: localHostPort || 443, hostname: localHost || "datasquirel.com", path: `/api/query/update-schema-from-single-database`, }, /** * Callback Function * * @description https request callback */ (response) => { var str = ""; response.on("data", function (chunk) { str += chunk; }); response.on("end", function () { try { resolve(JSON.parse(str)); } catch (error) { console.log(error); console.log("Fetched Payload =>", str); resolve({ success: false, payload: null, error: error, }); } }); response.on("error", (err) => { resolve({ success: false, payload: null, error: err.message, }); }); } ); httpsRequest.write(reqPayload); httpsRequest.on("error", (error) => { console.log("HTTPS request ERROR =>", error); }); httpsRequest.end(); }); /** ********************************************** */ /** ********************************************** */ /** ********************************************** */ return httpResponse; } catch (/** @type {*} */ error) { return { success: false, payload: null, error: error.message, }; } } /** ********************************************** */ /** ********************************************** */ /** ********************************************** */ module.exports = updateApiSchemaFromLocalDb;