Also deleted login-auth from docker compose, but not the folder (we can later work on this again).
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
// static variables and imports
|
|
import express from "express";
|
|
import {
|
|
loginUser,
|
|
createUser,
|
|
updateUser,
|
|
deleteUser,
|
|
getAllUsers,
|
|
} from "../shared/database.js";
|
|
import dotenv from "dotenv";
|
|
import path from "path";
|
|
import axios from "axios";
|
|
import { fileURLToPath } from "url";
|
|
const app = express();
|
|
dotenv.config();
|
|
const port = 4001;
|
|
|
|
app.use(express.json());
|
|
app.use(express.static("public"));
|
|
|
|
app.use(express.urlencoded({ extended: true }));
|
|
app.set("view engine", "ejs");
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Server is running on http://localhost:${port}`);
|
|
});
|
|
|
|
// -- here comes the main code --
|
|
app.get("/", (req, res) => {
|
|
res.render("index.ejs", { error: null });
|
|
});
|
|
|
|
app.post("/login", async (req, res) => {
|
|
const { username, password } = req.body;
|
|
loginUser(username, password).then((result) => {
|
|
if (result.success === true) {
|
|
res.render("userView.ejs");
|
|
} else {
|
|
res.render("index.ejs", { error: result.message });
|
|
}
|
|
});
|
|
});
|
|
|
|
// error handling code
|
|
app.use((err, req, res, next) => {
|
|
// Log the error stack and send a generic error response
|
|
console.error(err.stack);
|
|
res.status(500).send("Something broke!");
|
|
});
|