nitter/src/routes/preferences.nim

41 lines
996 B
Nim
Raw Permalink Normal View History

2021-12-27 02:37:38 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
2022-01-10 16:18:10 +01:00
import strutils, uri, os, algorithm
2019-09-06 02:42:35 +02:00
import jester
import router_utils
2022-01-10 16:18:10 +01:00
import ".."/[types, formatters]
2019-09-06 02:42:35 +02:00
import ../views/[general, preferences]
export preferences
2019-10-23 11:48:08 +02:00
proc findThemes*(dir: string): seq[string] =
for kind, path in walkDir(dir / "css" / "themes"):
2019-10-27 11:24:09 +01:00
let theme = path.splitFile.name
result.add theme.replace("_", " ").titleize
2019-10-23 12:46:52 +02:00
sort(result)
2019-10-23 11:48:08 +02:00
2019-09-06 02:42:35 +02:00
proc createPrefRouter*(cfg: Config) =
router preferences:
get "/settings":
2020-06-09 16:45:21 +02:00
let
prefs = cookiePrefs()
html = renderPreferences(prefs, refPath(), findThemes(cfg.staticDir))
resp renderMain(html, request, cfg, prefs, "Preferences")
2019-09-06 02:42:35 +02:00
get "/settings/@i?":
redirect("/settings")
2019-09-06 02:42:35 +02:00
post "/saveprefs":
genUpdatePrefs()
redirect(refPath())
post "/resetprefs":
genResetPrefs()
redirect("/settings?referer=" & encodeUrl(refPath()))
2019-09-06 02:42:35 +02:00
post "/enablehls":
savePref("hlsPlayback", "on", request)
2019-09-06 02:42:35 +02:00
redirect(refPath())