mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2024-11-03 01:10:08 -07:00
103 lines
2.8 KiB
JavaScript
103 lines
2.8 KiB
JavaScript
import path from "path";
|
|
import * as url from "url";
|
|
import express from "express";
|
|
import logger from "morgan";
|
|
import compression from "compression";
|
|
import bearerToken from "express-bearer-token";
|
|
import helmet from "helmet";
|
|
import { Cron } from "croner";
|
|
|
|
import { db } from "./utils/db.js";
|
|
import { initAdmin } from "./utils/init-admin.js";
|
|
import { pingAll } from "./utils/ping.js";
|
|
|
|
import authRoutes from "./routes/auth.js";
|
|
import networkRoutes from "./routes/network.js";
|
|
import memberRoutes from "./routes/member.js";
|
|
import controllerRoutes from "./routes/controller.js";
|
|
|
|
const app = express();
|
|
const __dirname = url.fileURLToPath(new URL(".", import.meta.url));
|
|
|
|
app.use(logger("dev"));
|
|
app.use(express.json());
|
|
app.use(express.urlencoded({ extended: false }));
|
|
if (process.env.ZU_DISABLE_AUTH !== "true") {
|
|
app.use(
|
|
bearerToken({
|
|
headerKey: "token",
|
|
})
|
|
);
|
|
}
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
console.debug = function () {};
|
|
}
|
|
|
|
if (
|
|
process.env.NODE_ENV === "production" &&
|
|
process.env.ZU_SECURE_HEADERS !== "false"
|
|
) {
|
|
// @ts-ignore
|
|
app.use(helmet());
|
|
}
|
|
|
|
if (
|
|
process.env.NODE_ENV === "production" &&
|
|
process.env.ZU_SERVE_FRONTEND !== "false"
|
|
) {
|
|
app.use(compression());
|
|
app.use(
|
|
["/app", "/app/*"],
|
|
express.static(path.join(__dirname, "..", "frontend", "build"))
|
|
);
|
|
app.use(
|
|
["/locales", "/locales/*"],
|
|
express.static(path.join(__dirname, "..", "frontend", "build", "locales"))
|
|
);
|
|
app.get(["/app/network/*"], function (req, res) {
|
|
res.sendFile(path.join(__dirname, "..", "frontend", "build", "index.html"));
|
|
});
|
|
app.get("/", function (req, res) {
|
|
res.redirect("/app");
|
|
});
|
|
}
|
|
|
|
initAdmin().then(function (admin) {
|
|
db.defaults({ users: [admin], networks: [] }).write();
|
|
});
|
|
|
|
if (process.env.ZU_LAST_SEEN_FETCH !== "false") {
|
|
let schedule = process.env.ZU_LAST_SEEN_SCHEDULE || "*/5 * * * *";
|
|
Cron(schedule, () => {
|
|
console.debug("Running scheduled job");
|
|
const networks = db.get("networks").value();
|
|
networks.forEach(async (network) => {
|
|
console.debug("Processing network " + network.id);
|
|
await pingAll(network);
|
|
});
|
|
});
|
|
}
|
|
|
|
const routerAPI = express.Router();
|
|
const routerController = express.Router();
|
|
|
|
routerAPI.use("/network", networkRoutes);
|
|
routerAPI.use("/network/:nwid/member", memberRoutes);
|
|
routerController.use("", controllerRoutes);
|
|
|
|
app.use("/auth", authRoutes);
|
|
app.use("/api", routerAPI); // offical SaaS API compatible
|
|
app.use("/controller", routerController); // other controller-specific routes
|
|
|
|
// error handlers
|
|
app.get("*", async function (req, res) {
|
|
res.status(404).json({ error: "404 Not found" });
|
|
});
|
|
app.use(function (err, req, res, next) {
|
|
console.error(err.stack);
|
|
res.status(500).json({ error: "500 Internal server error" });
|
|
});
|
|
|
|
export default app;
|