mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 03:02:22 +01:00
Renamed backend into auth_backend and added server_browser_backend implementation to replace Supabase.
This commit is contained in:
75
auth_backend/index.js
Normal file
75
auth_backend/index.js
Normal file
@@ -0,0 +1,75 @@
|
||||
const Express = require("express");
|
||||
const express = Express();
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const cookieParser = require("cookie-parser");
|
||||
|
||||
const audit = require('express-requests-logger')
|
||||
express.use(audit({
|
||||
request: {
|
||||
maxBodyLength: 150
|
||||
},
|
||||
response: {
|
||||
maxBodyLength: 150
|
||||
}
|
||||
}));
|
||||
|
||||
express.use(Express.json());
|
||||
express.use(Express.urlencoded({ extended: true }));
|
||||
express.use(Express.static('public'));
|
||||
express.use(cookieParser());
|
||||
|
||||
express.use(require("./structure/party.js"));
|
||||
express.use(require("./structure/discovery.js"))
|
||||
express.use(require("./structure/privacy.js"));
|
||||
express.use(require("./structure/timeline.js"));
|
||||
express.use(require("./structure/user.js"));
|
||||
express.use(require("./structure/contentpages.js"));
|
||||
express.use(require("./structure/friends.js"));
|
||||
express.use(require("./structure/main.js"));
|
||||
express.use(require("./structure/storefront.js"));
|
||||
express.use(require("./structure/version.js"));
|
||||
express.use(require("./structure/lightswitch.js"));
|
||||
express.use(require("./structure/affiliate.js"));
|
||||
express.use(require("./structure/matchmaking.js"));
|
||||
express.use(require("./structure/cloudstorage.js"));
|
||||
express.use(require("./structure/mcp.js"));
|
||||
|
||||
const port = 3551;
|
||||
express.listen(port, () => {
|
||||
console.log("LawinServer started listening on port", port);
|
||||
|
||||
require("./structure/xmpp.js");
|
||||
}).on("error", (err) => {
|
||||
if (err.code == "EADDRINUSE") console.log(`\x1b[31mERROR\x1b[0m: Port ${port} is already in use!`);
|
||||
else throw err;
|
||||
|
||||
process.exit(0);
|
||||
});
|
||||
|
||||
try {
|
||||
if (!fs.existsSync(path.join(process.env.LOCALAPPDATA, "LawinServer"))) fs.mkdirSync(path.join(process.env.LOCALAPPDATA, "LawinServer"));
|
||||
} catch (err) {
|
||||
// fallback
|
||||
if (!fs.existsSync(path.join(__dirname, "ClientSettings"))) fs.mkdirSync(path.join(__dirname, "ClientSettings"));
|
||||
}
|
||||
|
||||
// if endpoint not found, return this error
|
||||
express.use((req, res, next) => {
|
||||
var XEpicErrorName = "errors.com.lawinserver.common.not_found";
|
||||
var XEpicErrorCode = 1004;
|
||||
|
||||
res.set({
|
||||
'X-Epic-Error-Name': XEpicErrorName,
|
||||
'X-Epic-Error-Code': XEpicErrorCode
|
||||
});
|
||||
|
||||
res.status(404);
|
||||
res.json({
|
||||
"errorCode": XEpicErrorName,
|
||||
"errorMessage": "Sorry the resource you were trying to find could not be found",
|
||||
"numericErrorCode": XEpicErrorCode,
|
||||
"originatingService": "any",
|
||||
"intent": "prod"
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user