Settings can now save

This commit is contained in:
Cadence Ember
2020-05-05 03:06:07 +12:00
parent 120faae576
commit e93b68abbe
5 changed files with 124 additions and 5 deletions

55
src/site/api/settings.js Normal file
View File

@@ -0,0 +1,55 @@
const constants = require("../../lib/constants")
const {render, redirect} = require("pinski/plugins")
const crypto = require("crypto")
const db = require("../../lib/db")
module.exports = [
{
route: "/settings", methods: ["GET"], code: async ({url}) => {
const saved = url.searchParams.has("saved")
return render(200, "pug/settings.pug", {saved})
}
},
{
route: "/settings", methods: ["POST"], upload: true, code: async ({body}) => {
const params = new URLSearchParams(body.toString())
const prepared = {}
for (const setting of constants.user_settings) {
let valueOrDefault
if (params.has(setting.name) && params.get(setting.name) !== "") {
valueOrDefault = params.get(setting.name)
} else if (setting.replaceEmptyWithDefault) {
valueOrDefault = setting.default
} else {
valueOrDefault = ""
}
let valueCorrectType
if (setting.boolean) {
valueCorrectType = +(valueOrDefault !== "")
} else {
valueCorrectType = valueOrDefault
}
prepared[setting.name] = valueCorrectType
}
const checkPrepared = db.prepare("SELECT token FROM UserSettings WHERE token = ?")
do {
prepared.token = crypto.randomBytes(16).toString("hex")
} while (checkPrepared.get(prepared.token))
prepared.created = Date.now()
db.prepare(
"INSERT INTO UserSettings (token, created, language, show_comments, link_hashtags, spa, theme, caption_side, display_alt)"
+" VALUES (@token, @created, @language, @show_comments, @link_hashtags, @spa, @theme, @caption_side, @display_alt)"
).run(prepared)
const expires = new Date(Date.now() + 4000*24*60*60*1000).toUTCString()
return {
statusCode: 303,
headers: {
"Location": "/settings?saved=1",
"Set-Cookie": `settings=${prepared.token}; Path=/; Expires=${expires}; SameSite=Strict`
},
contentType: "text/html",
content: "Redirecting..."
}
}
}
]

View File

@@ -1,3 +1,5 @@
//- Needs saved
mixin form-component(id, description)
.field-row
label.description(for=id)= description
@@ -33,8 +35,12 @@ html
title Settings | Bibliogram
include includes/head
body.settings-page
if saved
.status-notice Saved.
script.
history.replaceState(null, "", "/settings")
main.settings
form(action="/settings" method="post")
form(action="/settings" method="post" enctype="application/x-www-form-urlencoded")
h1 Settings
+fieldset("Features")

View File

@@ -636,15 +636,23 @@ body
.settings-page
background-color: #fff4e8
padding: 0px 10px 50px
a, a:visited
color: $main-theme-link-color
.settings
padding: 0px 10px 50px
max-width: 600px
margin: 0 auto
.status-notice
padding: 15px
font-size: 24px
line-height: 1
text-align: center
background-color: #0b420b
color: #fff
.action-container
margin-top: 20px
display: flex