diff options
author | LarsVomMars | 2020-07-30 20:16:54 +0200 |
---|---|---|
committer | LarsVomMars | 2020-07-30 20:16:54 +0200 |
commit | f02c4054984fb8c12bfa4af9560a5b2be38810c0 (patch) | |
tree | d4519a92b739640e061847831d221e3e2488a83c /src/main.ts | |
parent | 86c68c3648c94ca9f66f3eb408973368bed28681 (diff) |
Added views and server setup
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/src/main.ts b/src/main.ts index 99f605c..bf5309c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,11 +3,13 @@ import { Application } from "https://deno.land/x/abc@master/mod.ts"; import type { Context } from "https://deno.land/x/abc@master/mod.ts"; import { renderFile } from "https://deno.land/x/dejs/mod.ts"; import * as groups from "./groups/index.ts"; +import * as log from "https://deno.land/std/log/mod.ts"; import { handlePath } from "./handler/fileView.ts"; +import { render as renderAdmin } from "./handler/admin.ts"; import DBController from "./db/DBController.ts"; +import { getCurrentUser } from "./util/user.ts"; -// Ugly solution -(async () => await new DBController().init())(); +new DBController().init().then(); const port = parseInt(Deno.env.get("PORT") || "8080"); const app = new Application(); @@ -18,16 +20,19 @@ app.renderer = { }, }; -app.static("/public/", "./src/public/"); // Manage static files -app.get("/", async (c: Context) => await c.render("./src/views/index.html")); // Render index on / +app.static("/", "./src/public/"); +app.get("/", async (c: Context) => await c.render("./src/views/index.ejs", { + files: undefined, + user: getCurrentUser(c) +})); app.get("/files/*", handlePath); app.get("/files/", handlePath); +app.get("/admin/", renderAdmin); + // Load groups dynamically -// deno-lint-ignore ban-ts-comment -// @ts-ignore -for (let groupName in groups) groups[groupName](app.group(groupName)); +for (const groupName in groups) (groups as { [key: string]: Function })[groupName](app.group(groupName)); app.start({ port }); -console.log(`Server listening on http://localhost:${port}`); +log.info(`Server listening on http://localhost:${port}`); |