aboutsummaryrefslogtreecommitdiff
path: root/src/db/DBController.ts
blob: 0b212e7f61f70b311ae49aa6dc0137f9ce62bb48 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { Client } from "https://deno.land/x/mysql/mod.ts";
import * as log from "https://deno.land/std/log/mod.ts";

export default class DBController {
    private client?: Client;

    async init() {
        await this.connect();
        try {
            const sql = await Deno.readTextFile("./src/db/tables.sql");
            const queries = sql.split(";");
            queries.pop();
            for (const query of queries) await this.execute(query);
            log.info("Tables created");
        } catch (e) {
            log.error("Could not create tables");
            throw e;
        }
    }

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

    async query(query: string, params?: (boolean | number | string)[]) {
        if (!this.client) await this.connect();

        try {
            return await this.client!.query(query, params);
        } catch (e) {
            throw e;
        }
    }

    async execute(query: string, params?: (boolean | number | string)[]) {
        if (!this.client) await this.connect();

        try {
            return await this.client!.execute(query, params);
        } catch (e) {
            throw e;
        }
    }

    async execute_multiple(queries: ((boolean | number | string)[] | string)[][]) {
        if (!this.client) await this.connect();

        try {
            await this.client!.transaction(async (conn) => {
                for (const query of queries) await conn.execute(query[0] as string, query[1] as string[]); // ez
            });
        } catch (e) {
            throw e;
        }
    }

    async close() {
        if (!this.client) throw Error("Database isn't initialized yet!");

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