diff --git a/disabled/old.js b/disabled/old.js new file mode 100644 index 0000000..00f92f2 --- /dev/null +++ b/disabled/old.js @@ -0,0 +1,21 @@ +// This file contains old code not used anymore + +app.post("/api/sync", (rreq,rres) => { + checkToken(rreq.query.auth,"fpupdate").then(checkResponse => { + if (checkResponse === true) { + if (rreq.headers["x-github-event"] == "ping") { + rres.sendStatus(200) + } else if (rreq.headers["x-github-event"] == "push") { + execSync("git pull") + logRequest(rres,rreq,200,"Ran git pull, exiting to restart...") + rres.sendStatus(200) + process.exit(0) + } else { + logRequest(rres,rreq,400) + rres.sendStatus(400) + } + } else { + rres.sendStatus(401) + } + }) +}) \ No newline at end of file diff --git a/routes/frontpage.js b/routes/frontpage.js index 2ef1fad..a91402e 100644 --- a/routes/frontpage.js +++ b/routes/frontpage.js @@ -43,26 +43,6 @@ app.get("/urltoolbox", (rreq,rres) => { rres.send("Under construction") }) -app.post("/api/sync", (rreq,rres) => { - checkToken(rreq.query.auth,"fpupdate").then(checkResponse => { - if (checkResponse === true) { - if (rreq.headers["x-github-event"] == "ping") { - rres.sendStatus(200) - } else if (rreq.headers["x-github-event"] == "push") { - execSync("git pull") - logRequest(rres,rreq,200,"Ran git pull, exiting to restart...") - rres.sendStatus(200) - process.exit(0) - } else { - logRequest(rres,rreq,400) - rres.sendStatus(400) - } - } else { - rres.sendStatus(401) - } - }) -}) - function parseFiles() { let files = fs.readdirSync(process.cwd()+"/website/posts") let result = ""