115 lines
3.1 KiB
JavaScript
115 lines
3.1 KiB
JavaScript
|
"use strict";
|
||
|
(() => {
|
||
|
var exports = {};
|
||
|
exports.id = 3204;
|
||
|
exports.ids = [3204];
|
||
|
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");
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ 1017:
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
module.exports = require("path");
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ 6807:
|
||
|
/***/ ((__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__);
|
||
|
// @ts-check
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Imports
|
||
|
* ------------------------------------------------------------------------------
|
||
|
*/ /** ********************* Node Core Imports */ const fs = __webpack_require__(7147);
|
||
|
////////////////////////////////////////
|
||
|
////////////////////////////////////////
|
||
|
////////////////////////////////////////
|
||
|
/** ********************* Functions and Other API Imports */ ////////////////////////////////////////
|
||
|
////////////////////////////////////////
|
||
|
////////////////////////////////////////
|
||
|
/**
|
||
|
* API handler
|
||
|
* ------------------------------------------------------------------------------
|
||
|
* @type {import("next").NextApiHandler}
|
||
|
*/ async function handler(req, res) {
|
||
|
if (req.method === "GET") {
|
||
|
/** ********************* Reset Cookie Value */ const user = await _functions_backend_userAuth__WEBPACK_IMPORTED_MODULE_0___default()(req, res);
|
||
|
if (user) {
|
||
|
console.log(user.csrf_k);
|
||
|
try {
|
||
|
const allowedAuthKeysPath = process.env.DSQL_USER_LOGIN_KEYS_PATH;
|
||
|
const allowedAuthKeyPath = `${allowedAuthKeysPath}/${user.csrf_k}`;
|
||
|
fs.unlinkSync(allowedAuthKeyPath);
|
||
|
} catch (/** @type {any} */ error) {
|
||
|
console.log(`Logout API error: ${error.message}`);
|
||
|
}
|
||
|
}
|
||
|
res.setHeader("Set-Cookie", [
|
||
|
`datasquirelAuthKey=null;samesite=strict;path=/;HttpOnly=true;Secure:true`,
|
||
|
]);
|
||
|
/** ********************* Send Response */ res.json({
|
||
|
msg: "Logged Out"
|
||
|
});
|
||
|
} else {
|
||
|
return res.json({
|
||
|
msg: "Logout Error"
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/***/ })
|
||
|
|
||
|
};
|
||
|
;
|
||
|
|
||
|
// 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, [5425,2224,6825], () => (__webpack_exec__(6807)));
|
||
|
module.exports = __webpack_exports__;
|
||
|
|
||
|
})();
|