disable sync endpoint

This commit is contained in:
Enstrayed
2025-04-08 15:43:55 -07:00
parent 5d9698d2f5
commit d9f65d4347
2 changed files with 21 additions and 20 deletions

View File

@@ -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 = ""