nitter/src/routes/preferences.nim

52 lines
1.2 KiB
Nim

# SPDX-License-Identifier: AGPL-3.0-only
import strutils, uri, os, re, algorithm
import jester
import router_utils
import ".."/[types]
import ../views/[general, preferences]
export preferences
let reTitleize = re"(?<![A-z])([a-z])"
proc titleize(str: string): string =
result = str
var idx = 0
while idx != -1:
idx = str.find(reTitleize, start = idx)
if idx != -1:
result[idx] = str[idx].toUpperAscii
idx.inc
proc findThemes*(dir: string): seq[string] =
for kind, path in walkDir(dir / "css" / "themes"):
let theme = path.splitFile.name
result.add theme.replace("_", " ").titleize
sort(result)
proc createPrefRouter*(cfg: Config) =
router preferences:
get "/settings":
let
prefs = cookiePrefs()
html = renderPreferences(prefs, refPath(), findThemes(cfg.staticDir))
resp renderMain(html, request, cfg, prefs, "Preferences")
get "/settings/@i?":
redirect("/settings")
post "/saveprefs":
genUpdatePrefs()
redirect(refPath())
post "/resetprefs":
genResetPrefs()
redirect("/settings?referer=" & encodeUrl(refPath()))
post "/enablehls":
savePref("hlsPlayback", "on", request)
redirect(refPath())