"use strict"; (() => { var exports = {}; exports.id = 2747; exports.ids = [2747]; exports.modules = { /***/ 2261: /***/ ((module) => { module.exports = require("serverless-mysql"); /***/ }), /***/ 4300: /***/ ((module) => { module.exports = require("buffer"); /***/ }), /***/ 6113: /***/ ((module) => { module.exports = require("crypto"); /***/ }), /***/ 7147: /***/ ((module) => { module.exports = require("fs"); /***/ }), /***/ 3685: /***/ ((module) => { module.exports = require("http"); /***/ }), /***/ 3284: /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ handler) /* harmony export */ }); /* harmony import */ var _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6825); /* harmony import */ var _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _functions_backend_serverError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(2163); /* harmony import */ var _functions_backend_serverError__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_functions_backend_serverError__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _package_shared_utils_backend_global_db_DB_HANDLER__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(2224); /* harmony import */ var _package_shared_utils_backend_global_db_DB_HANDLER__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_package_shared_utils_backend_global_db_DB_HANDLER__WEBPACK_IMPORTED_MODULE_2__); // @ts-check const fs = __webpack_require__(7147); //////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** * API handler * ============================================================================== * @type {import("next").NextApiHandler} */ async function handler(req, res) { /** * Check method * * @description Check request method and return if invalid */ if (req.method !== "GET") return res.json({ user: null, msg: "Registration Failed!" }); /** * User Auth * * @description User Auth */ const user = await _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_0___default()(req, res); if (!user) { return res.json({ success: false, msg: "Unauthorized" }); } /** * Validate Form * * @description Check if request body is valid */ // const { dbSlug, dbOwnerId, delegatedUserId } = req.query; const dbSlug = req.query.dbSlug; const dbOwnerId = req.query.dbOwnerId; const delegatedUserId = req.query.delegatedUserId; /** * Validate Form * * @description Check if request body is valid */ try { const targetDbData = await _package_shared_utils_backend_global_db_DB_HANDLER__WEBPACK_IMPORTED_MODULE_2___default()(`SELECT id FROM user_databases WHERE user_id=? AND db_slug=?`, [ dbOwnerId, dbSlug ]); if (!targetDbData || !targetDbData[0]) return res.json({ success: false, msg: "Database not found" }); const tables = await _package_shared_utils_backend_global_db_DB_HANDLER__WEBPACK_IMPORTED_MODULE_2___default()(`SELECT table_name,table_slug FROM user_database_tables WHERE user_id=? AND db_id=?`, [ dbOwnerId, targetDbData[0].id ]); const accessed_tables = await _package_shared_utils_backend_global_db_DB_HANDLER__WEBPACK_IMPORTED_MODULE_2___default()(`SELECT \`database\`,\`table\` FROM delegated_user_tables WHERE root_user_id=? AND delegated_user_id=?`, [ dbOwnerId, delegatedUserId ]); //////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// res.json({ success: true, tables: tables, accessed_tables: accessed_tables }); //////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// } catch (/** @type {any} */ error) { _functions_backend_serverError__WEBPACK_IMPORTED_MODULE_1___default()({ component: "/api/getDatabaseTables/main-catch-error", message: error.message, user: user }); res.json({ success: false }); } //////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// } /***/ }) }; ; // load runtime var __webpack_require__ = require("../../webpack-api-runtime.js"); __webpack_require__.C(exports); var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) var __webpack_exports__ = __webpack_require__.X(0, [2224,2163,6825], () => (__webpack_exec__(3284))); module.exports = __webpack_exports__; })();