mirror of
https://api.glitch.com/git/presence-button
synced 2024-11-05 08:17:32 +00:00
🏥🎈 Checkpoint
./server.js:933874/1067
This commit is contained in:
parent
752427dec7
commit
7721c072ad
21
server.js
21
server.js
@ -1,3 +1,5 @@
|
|||||||
|
var fuzIsOpen = false;
|
||||||
|
|
||||||
const express = require("express");
|
const express = require("express");
|
||||||
const app = express();
|
const app = express();
|
||||||
|
|
||||||
@ -5,13 +7,24 @@ const app = express();
|
|||||||
app.use(express.static("public"));
|
app.use(express.static("public"));
|
||||||
|
|
||||||
// http://expressjs.com/en/starter/basic-routing.html
|
// http://expressjs.com/en/starter/basic-routing.html
|
||||||
app.get("/", function(request, response) {
|
app.get("/", (req, res) => {
|
||||||
response.sendFile(__dirname + "/views/index.html");
|
res.sendFile(__dirname + "/views/index.html");
|
||||||
});
|
});
|
||||||
|
|
||||||
// http://expressjs.com/en/starter/basic-routing.html
|
// http://expressjs.com/en/starter/basic-routing.html
|
||||||
app.get("/img", function(request, response) {
|
app.get("/img", (req, res) => {
|
||||||
response.sendFile(__dirname + "/views/index.html");
|
res.sendFile(__dirname + "/views/index.html");
|
||||||
|
});
|
||||||
|
|
||||||
|
// http://expressjs.com/en/starter/basic-routing.html
|
||||||
|
app.get("/status", (req, res) => {
|
||||||
|
if (req.query.password !== process.env.PASSWORD) {
|
||||||
|
return res.sendStatus(401);
|
||||||
|
}
|
||||||
|
if (req.query.fuzisopen === "1") {
|
||||||
|
fuzIsOpen = true;
|
||||||
|
}
|
||||||
|
res.sendStatus(200);
|
||||||
});
|
});
|
||||||
|
|
||||||
const listener = app.listen(process.env.PORT, function() {
|
const listener = app.listen(process.env.PORT, function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user