diff --git a/liberals/authorization.js b/liberals/authorization.js
new file mode 100644
index 0000000..4ca6348
--- /dev/null
+++ b/liberals/authorization.js
@@ -0,0 +1,38 @@
+const { globalConfig } = require("../index.js")
+
+async function checkAuthorization(documentToUse,keyToCheck) {
+ return await fetch(`http://${globalConfig.couchdb.host}/apiauthkeys/${documentToUse}`, {
+ headers: {
+ "Authorization": `Basic ${btoa(globalConfig.couchdb.authorization)}`
+ }
+ }).then(fetchRes => {
+
+ if (fetchRes.status === 404) { // If document doesnt exist fail gracefully
+
+ console.log("ERROR: Failed to check authorization: Requested document returned 404")
+ return false
+
+ } else if (fetchRes.status === 401) { // If couchdb is reporting unauthorized fail gracefully
+
+ console.log("ERROR: Failed to check authorization: Database authorization is incorrect")
+ return false
+
+ } else {
+ return fetchRes.json().then(dbRes => { // Get response json and check it
+
+ if (dbRes["content"][keyToCheck.split("_")[0]] === keyToCheck.split("_")[1]) {
+ return true
+ } else {
+ return false
+ }
+
+ })
+ }
+
+ }).catch(error => {
+ console.log("ERROR: Failed to check authorization: " + error)
+ return false
+ })
+}
+
+module.exports = {checkAuthorization}
\ No newline at end of file
diff --git a/routes/blog.js b/routes/blog.js
index c1e6f22..b0415d7 100644
--- a/routes/blog.js
+++ b/routes/blog.js
@@ -7,19 +7,33 @@ app.get("/blogposts", (rreq, rres) => {
if (Date.now() < timeSinceLastQuery+10000) { // if it has been <10 seconds since last request
rres.set("Access-Control-Allow-Origin","*")
- rres.send(cachedResult) // send cached json
+
+ if (rreq.query.format === "html") { // if ?format=html then send HTML
+ rres.send(cachedResult.asHtml)
+ } else { // otherwise send json
+ rres.send(cachedResult.asJson)
+ }
+
} else {
timeSinceLastQuery = Date.now()
cachedResult = parseFiles()
rres.set("Access-Control-Allow-Origin","*")
- rres.send(cachedResult);
+
+ if (rreq.query.format === "html") { // if ?format=html then send HTML
+ rres.send(cachedResult.asHtml)
+ } else { // otherwise send json
+ rres.send(cachedResult.asJson)
+ }
}
})
function parseFiles() {
let files = fs.readdirSync(globalConfig.blog.postsDirectory)
- let parsedFiles = []
+ let result = {
+ asJson: [],
+ asHtml: ""
+ }
for (x in files) {
if (files[x].endsWith(".html") === false) { break } // If file/dir is not .html then ignore
@@ -29,12 +43,13 @@ function parseFiles() {
date = date.replace(/.{2}/g,"$&-").replace("-","").slice(0,-1) // Insert a dash every 2 characters, remove the first dash, remove the last character
- let name = files[x].slice(9).replace(/รท/g," ").replace(".html","") // Strip Date, replace seperator with space & remove file extension
+ let name = files[x].slice(9).replace(/-/g," ").replace(".html","") // Strip Date, replace seperator with space & remove file extension
- parsedFiles.push({ "date": date, "name": name, "path": `${globalConfig.blog.postsDirUrl}/${files[x]}`}) // Add metadata as JSON to array
+ result.asJson.unshift({ "date": date, "name": name, "path": `${globalConfig.blog.postsDirUrl}/${files[x]}`}) // Add to asJson array in the result
+ result.asHtml = `${date} ${name}`+result.asHtml
}
- return parsedFiles.reverse()
+ return result
}
module.exports = {app}
\ No newline at end of file
diff --git a/routes/cider.js b/routes/cider.js
index b309411..4960cea 100644
--- a/routes/cider.js
+++ b/routes/cider.js
@@ -2,87 +2,100 @@ const { app, db, globalConfig } = require("../index.js") // Get globals from ind
var timeSinceLastCiderQuery = Date.now()-2000;
var currentListening = {}
+var currentListeningHtml = ""
-app.get("/cider", (rreq,rres) => { // GET current listening from target
-
- if (Date.now() < timeSinceLastCiderQuery+2000) {
- rres.send(currentListening); // If it has been <2 seconds since the last request, return the cached result.
- } else {
- getCurrentListening(globalConfig.cider.targetHosts[0]).then(funcRes => {
- if (funcRes == 1) {
- rres.sendStatus(503) // If there was a problem getting the upstream JSON, return 503 Service Unavailable.
- } else {
- rres.set("Access-Control-Allow-Origin","*") // Required (I think?) because of CORS.
- currentListening = funcRes
- rres.send(funcRes)
- }
- })
- }
-
+app.get("/cider", (rreq,rres) => {
+ rres.set("Access-Control-Allow-Origin","*")
+ rres.send("Cider endpoint is temporarily unavailable.")
})
+// app.get("/cider", (rreq,rres) => { // GET current listening from target
-app.post("/cider", (rreq,rres) => { // POST stop listening on cider target
+// if (Date.now() < timeSinceLastCiderQuery+2000) {
+// rres.send(currentListening); // If it has been <2 seconds since the last request, return the cached result.
+// } else {
+// getCurrentListening(globalConfig.cider.targetHosts[0],"json").then(funcRes => {
+// if (funcRes == 1) {
+// rres.sendStatus(503) // If there was a problem getting the upstream JSON, return 503 Service Unavailable.
+// } else {
+// rres.set("Access-Control-Allow-Origin","*") // Required (I think?) because of CORS.
+// currentListening = funcRes
+// rres.send(funcRes)
+// }
+// })
+// }
- fetch(`http://${globalConfig.couchdb.host}/apiauthkeys/${globalConfig.cider.authKeysDoc}`, {
- headers: {
- "Authorization": `Basic ${btoa(globalConfig.couchdb.authorization)}`
- }
- }).then(dbRes => dbRes.json()).then(dbRes => {
+// })
- if (dbRes.status == 404) { // If document containing cider auth keys does not exist
- console.log(`ERROR: Could not find apiauthkeys/${globalConfig.mailjet.authKeysDoc}`)
- rres.sendStatus(500) // Refuse request
- } else {
- if (dbRes["content"][rreq.get("Authorization").split("_")[0]] === rreq.get("Authorization").split("_")[1]) {
+// app.post("/cider", (rreq,rres) => { // POST stop listening on cider target
- fetch(`http://${globalConfig.cider.targetHosts[0]}/stop`).then(fres => { // send GET /stop to cider target
- if (fres.status == 204) {
- console.log(`${rreq.get("cf-connecting-ip")} POST /cider returned 200 KEY:${rreq.get("Authorization")}`)
- rres.sendStatus(200) // if that works then 200
- } else {
- rres.sendStatus(500) // otherwise lol
- }
- }).catch(ferror => {
- rres.sendStatus(503) // and if a problem happens its probably cause cider target is unavailable
- })
+// fetch(`http://${globalConfig.couchdb.host}/apiauthkeys/${globalConfig.cider.authKeysDoc}`, {
+// headers: {
+// "Authorization": `Basic ${btoa(globalConfig.couchdb.authorization)}`
+// }
+// }).then(dbRes => dbRes.json()).then(dbRes => {
- } else {
- console.log(`${rreq.get("cf-connecting-ip")} POST /cider returned 401`) // log ip of unauthorized requests
- rres.sendStatus(401) // received auth key was not in database
- }
- }
- })
+// if (dbRes.status == 404) { // If document containing cider auth keys does not exist
+// console.log(`ERROR: Could not find apiauthkeys/${globalConfig.mailjet.authKeysDoc}`)
+// rres.sendStatus(500) // Refuse request
+// } else {
+// if (dbRes["content"][rreq.get("Authorization").split("_")[0]] === rreq.get("Authorization").split("_")[1]) {
-})
+// fetch(`http://${globalConfig.cider.targetHosts[0]}/stop`).then(fres => { // send GET /stop to cider target
+// if (fres.status == 204) {
+// console.log(`${rreq.get("cf-connecting-ip")} POST /cider returned 200 KEY:${rreq.get("Authorization")}`)
+// rres.sendStatus(200) // if that works then 200
+// } else {
+// rres.sendStatus(500) // otherwise lol
+// }
+// }).catch(ferror => {
+// rres.sendStatus(503) // and if a problem happens its probably cause cider target is unavailable
+// })
+
+// } else {
+// console.log(`${rreq.get("cf-connecting-ip")} POST /cider returned 401`) // log ip of unauthorized requests
+// rres.sendStatus(401) // received auth key was not in database
+// }
+// }
+// })
+
+// })
// 2024-04-10: Retrieves currentPlayingSong JSON from specified Cider host and
-// returns JSON containing the useful bits if successful, returning 1 if not.
-async function getCurrentListening(host) { // Host should be hostname/ip & port only.
- timeSinceLastCiderQuery = Date.now(); // Save last time function was run, used to indicate when the cache needs refreshed.
- return await fetch(`http://${host}/currentPlayingSong`).then(fetchRes => {
- if (fetchRes.status == 502) {
- return 1 // If the upstream server returns 502 (Bad Gateway) then internally return 1, indicating error.
- } else {
- return fetchRes.json().then(jsonRes => {
- if (jsonRes.info.name == undefined) {
- return 1 // If Cider is running but not playing a song this check prevents an undefined variable error.
- } else {
- return {
- "songName": jsonRes.info.name,
- "artistName": jsonRes.info.artistName,
- "albumName": jsonRes.info.albumName,
- "songLinkUrl": jsonRes.info.url.songLink,
- "endtimeEpochInMs": jsonRes.info.endTime,
- "artworkUrl": jsonRes.info.artwork.url.replace("{w}", jsonRes.info.artwork.width).replace("{h}", jsonRes.info.artwork.height)
- }
- }
- })
- }
- }).catch(fetchError => {
- console.error("Error fetch()ing upstream Cider host: "+fetchError)
- return 1 // If something else happens then log it and return 1, indicating error.
- })
-}
+// returns JSON/HTML containing the useful bits if successful, returning 1 if not.
+
+// async function getCurrentListening(host,contentType) { // Host should be hostname/ip & port only.
+// timeSinceLastCiderQuery = Date.now(); // Save last time function was run, used to indicate when the cache needs refreshed.
+// return await fetch(`http://${host}/currentPlayingSong`).then(fetchRes => {
+// if (fetchRes.status == 502) {
+// return 1 // If the upstream server returns 502 (Bad Gateway) then internally return 1, indicating error.
+// } else {
+// return fetchRes.json().then(jsonRes => {
+// if (jsonRes.info.name == undefined) {
+// return 1 // If Cider is running but not playing a song this check prevents an undefined variable error.
+// } else {
+// if (contentType === "json") {
+// return {
+// "songName": jsonRes.info.name,
+// "artistName": jsonRes.info.artistName,
+// "albumName": jsonRes.info.albumName,
+// "songLinkUrl": jsonRes.info.url.songLink,
+// "endtimeEpochInMs": jsonRes.info.endTime,
+// "artworkUrl": jsonRes.info.artwork.url.replace("{w}", jsonRes.info.artwork.width).replace("{h}", jsonRes.info.artwork.height)
+// }
+// } else if (contentType === "html") {
+// return `
I'm listening to
from ${jsonRes.info.albumName}
song.link