dsql-admin/dsql-app/.local_dist/server/pages/api/importDatabaseSchema.js
Benjamin Toby 748ff55092 Bug Fixes
2024-11-05 15:18:40 +01:00

178 lines
5.8 KiB
JavaScript

"use strict";
(() => {
var exports = {};
exports.id = 2289;
exports.ids = [2289];
exports.modules = {
/***/ 2261:
/***/ ((module) => {
module.exports = require("serverless-mysql");
/***/ }),
/***/ 4300:
/***/ ((module) => {
module.exports = require("buffer");
/***/ }),
/***/ 2081:
/***/ ((module) => {
module.exports = require("child_process");
/***/ }),
/***/ 6113:
/***/ ((module) => {
module.exports = require("crypto");
/***/ }),
/***/ 7147:
/***/ ((module) => {
module.exports = require("fs");
/***/ }),
/***/ 3685:
/***/ ((module) => {
module.exports = require("http");
/***/ }),
/***/ 2037:
/***/ ((module) => {
module.exports = require("os");
/***/ }),
/***/ 1017:
/***/ ((module) => {
module.exports = require("path");
/***/ }),
/***/ 6779:
/***/ ((__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_serverError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2163);
/* harmony import */ var _functions_backend_serverError__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_functions_backend_serverError__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6825);
/* harmony import */ var _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_1__);
// @ts-check
/**
* ==============================================================================
* Imports
* ==============================================================================
*/ const fs = __webpack_require__(7147);
const path = __webpack_require__(1017);
const os = __webpack_require__(2037);
const { execSync } = __webpack_require__(2081);
/** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /**
* API handler
* ==============================================================================
* @type {import("next").NextApiHandler}
*/ async function handler(req, res) {
/**
* Check method
*
* @description Check request method and return if invalid
*/ if (req.method !== "POST") return res.json({
msg: "Failed!"
});
/**
* User auth
*
* @description Authenticate user
*/ const user = await _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_1___default()(req, res, true);
if (!user) {
return res.json({
success: false,
msg: "Unauthorized"
});
}
/**
* User auth
*
* @description Authenticate user
*/ const sanitizedReqBody = req.body;
/** @type { {database:import("@/package-shared/types").DSQL_MYSQL_user_databases_Type, fileBase64: string} } */ const { database , fileBase64 } = sanitizedReqBody;
if (!database?.db_full_name?.match(/datasquirel_user_.*/)) {
res.json({
success: false,
msg: "Unauthorized"
});
}
/**
* Send Response
*
* @description Send a boolean response
*/ try {
/**
* Create new user folder and file
*
* @description Create new user folder and file
*/ const dbSchemaJSON = Buffer.from(fileBase64, "base64").toString("utf-8");
/** @type {import("@/package-shared/types").DSQL_DatabaseSchemaType} */ const dbSchema = JSON.parse(dbSchemaJSON);
const schemaPath = path.resolve(String(process.env.DSQL_USER_DB_SCHEMA_PATH), `user-${user.id}/main.json`);
if (!fs.existsSync(schemaPath)) {
return res.end();
}
/** @type {import("@/package-shared/types").DSQL_DatabaseSchemaType[]} */ const schemaData = JSON.parse(fs.readFileSync(schemaPath, "utf-8"));
const targetSchema = schemaData.find((schema)=>schema.dbFullName == database.db_full_name);
if (!targetSchema) throw new Error("Database not found!");
targetSchema.tables = dbSchema.tables;
fs.writeFileSync(schemaPath, JSON.stringify(schemaData), "utf-8");
const shellUpdatePath = path.join(process.cwd(), "/shell");
const dbShellUpdate = execSync(`node createDbFromSchema.js --user ${user.id} --database ${database.db_full_name}`, {
cwd: shellUpdatePath
});
res.json({
success: true
});
////////////////////////////////////////
} catch (/** @type {any} */ error) {
////////////////////////////////////////
console.log("JSON import ERROR =>", error.message);
_functions_backend_serverError__WEBPACK_IMPORTED_MODULE_0___default()({
component: "/api/importDatabase/catch-error",
message: error.message,
user: user
});
res.json({
success: false,
msg: "Import Failed!"
});
////////////////////////////////////////
}
}
/***/ })
};
;
// 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__(6779)));
module.exports = __webpack_exports__;
})();