2022-02-23 21:55:13 +01:00
|
|
|
const express = require("express");
|
|
|
|
const fs = require("fs");
|
|
|
|
const bodyParser = require("body-parser");
|
|
|
|
|
|
|
|
const app = express();
|
|
|
|
|
|
|
|
app.use(express.static("static"));
|
|
|
|
app.use(express.static("node_modules"));
|
|
|
|
|
|
|
|
app.use(bodyParser.json());
|
|
|
|
app.use(
|
|
|
|
bodyParser.urlencoded({
|
|
|
|
// to support URL-encoded bodies
|
|
|
|
extended: true,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
currentState = {
|
|
|
|
mode: "clock",
|
2022-02-24 19:11:13 +01:00
|
|
|
countdownGoal: new Date().getTime(),
|
|
|
|
changed: true,
|
|
|
|
showMilliSeconds: true,
|
|
|
|
defaultFullScreen: true
|
2022-02-23 21:55:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
app.get("/", function (req, res) {
|
|
|
|
const data = fs.readFileSync("templates/adminPanel.html", "utf8");
|
|
|
|
res.send(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
app.post("/", function (req, res) {
|
|
|
|
console.log(req.body);
|
|
|
|
currentState.mode = req.body.mode;
|
2022-02-23 22:17:12 +01:00
|
|
|
currentState.countdownGoal = req.body.countdownGoal;
|
2022-02-23 21:55:13 +01:00
|
|
|
res.send("OK");
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get("/timer", function (req, res) {
|
|
|
|
const data = fs.readFileSync("templates/timerPage.html", "utf8");
|
|
|
|
res.send(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get("/api/v1/data", function (req, res) {
|
|
|
|
res.json(currentState);
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get("/api/v1/set/mode", function (req, res) {
|
|
|
|
currentState.mode = req.query.mode;
|
|
|
|
res.json({ status: "ok" });
|
|
|
|
});
|
|
|
|
|
2022-02-24 19:11:13 +01:00
|
|
|
app.get("/api/v1/set/showMillis", function (req, res) {
|
|
|
|
currentState.showMilliSeconds = (req.query.show === 'true');
|
|
|
|
res.json({ status: "ok" });
|
|
|
|
});
|
|
|
|
|
2022-02-23 22:17:12 +01:00
|
|
|
app.get("/api/v1/set/timerGoal", function (req, res) {
|
2022-02-24 19:11:13 +01:00
|
|
|
currentState.countdownGoal = new Date(parseInt(req.query.time)).getTime();
|
2022-02-23 21:55:13 +01:00
|
|
|
res.json({ status: "ok" });
|
|
|
|
});
|
|
|
|
|
2022-02-24 19:11:13 +01:00
|
|
|
app.get("/api/v1/set/addMillisToTimer", function (req, res) {
|
|
|
|
console.log(req.query.time)
|
|
|
|
currentState.countdownGoal = new Date().getTime() + parseInt(req.query.time)
|
|
|
|
res.json({ status: "ok" });
|
|
|
|
});
|
2022-02-23 21:55:13 +01:00
|
|
|
|
2022-02-23 22:17:12 +01:00
|
|
|
app.listen(3005);
|