aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
blob: bf5309cd5690cc2907efa589ba2a4dbd2797d61c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import "https://deno.land/x/dotenv/load.ts";
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";

new DBController().init().then();

const port = parseInt(Deno.env.get("PORT") || "8080");
const app = new Application();

app.renderer = {
    render<T>(name: string, data: T): Promise<Deno.Reader> {
        return renderFile(name, data);
    },
};

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
for (const groupName in groups) (groups as { [key: string]: Function })[groupName](app.group(groupName));

app.start({ port });
log.info(`Server listening on http://localhost:${port}`);