aboutsummaryrefslogtreecommitdiff
path: root/src/handler
diff options
context:
space:
mode:
authorLarsVomMars2020-07-30 20:16:54 +0200
committerLarsVomMars2020-07-30 20:16:54 +0200
commitf02c4054984fb8c12bfa4af9560a5b2be38810c0 (patch)
treed4519a92b739640e061847831d221e3e2488a83c /src/handler
parent86c68c3648c94ca9f66f3eb408973368bed28681 (diff)
Added views and server setup
Diffstat (limited to 'src/handler')
-rw-r--r--src/handler/admin.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/handler/admin.ts b/src/handler/admin.ts
new file mode 100644
index 0000000..a626e50
--- /dev/null
+++ b/src/handler/admin.ts
@@ -0,0 +1,12 @@
+import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
+import * as log from "https://deno.land/std/log/mod.ts";
+import { isAdmin } from "../util/user.ts";
+import { isSetup } from "../util/server.ts";
+
+export const render: HandlerFunc = async (c: Context) => {
+ if (await isAdmin(c))
+ return await c.render("./src/views/admin.ejs", { initial: false });
+ else if (!(await isSetup()))
+ return await c.render("./src/views/admin.ejs", { initial: true });
+ return c.redirect("/");
+}