aboutsummaryrefslogtreecommitdiff
path: root/src/db/DBController.ts
blob: 2cfd1f20e0e4234f0a6cee1b952446710f7d7a48 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { Client } from "https://deno.land/x/mysql/mod.ts";
import { readFileStr } from "https://deno.land/std/fs/mod.ts";

export default class DBController {
    private client?: Client;

    async init() {
        this.client = await this.connect();
        try {
            const sql = await readFileStr("./src/db/tables.sql");
            const queries = sql.split(";");
            queries.pop();
            queries.forEach(async (query) => await this.execute(query));
            console.log("Tables created");
        } catch (e) {
            console.error("Could not create tables");
            throw e;
        } finally {
            this.client.close();
        }
    }

    async connect(): Promise<Client> {
        try {
            return await new Client().connect({
                hostname: Deno.env.get("DBHost"),
                username: Deno.env.get("DBUser"),
                db: Deno.env.get("DBName"),
                password: Deno.env.get("DBPassword"),
            });
        } catch (e) {
            console.error("Could not connect to database");
            throw e;
        }
    }

    async execute(query: string) {
        if (this.client) {
            try {
                return await this.client.execute(query);
            } catch (e) {
                throw e;
            }
        } else throw Error("Database isn't initialized yet!");
    }

    async execute_multiple(queries: string[]) {
        await this.client!.transaction(async (conn) => {
            queries.forEach(async (query) => {
                await conn.execute(query);
            });
        });
    }

    async close() {
        await this.client!.close();
    }
}