aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 16:51:55 +0200
committerMarvin Borner2020-07-18 16:51:55 +0200
commit34a3f2f132791ad33e6a6b59371bb6f029436ab4 (patch)
tree463bf8c68ce9b36085b1cd83179e367f09d645fb /src
parent47f66e980761ad1218f51c7f51e51dd550bf0b35 (diff)
Tests and abc fix using Lars' branch
Diffstat (limited to 'src')
m---------src/abc0
-rw-r--r--src/db/DBController.ts16
-rw-r--r--src/db/user.ts3
-rw-r--r--src/groups/user.ts5
-rw-r--r--src/handler/user.ts3
-rw-r--r--src/main.ts6
6 files changed, 21 insertions, 12 deletions
diff --git a/src/abc b/src/abc
new file mode 160000
+Subproject adba5f857e1f2a53bfffba1aa184c6d2ca5c48e
diff --git a/src/db/DBController.ts b/src/db/DBController.ts
index 2cfd1f2..c01d7b4 100644
--- a/src/db/DBController.ts
+++ b/src/db/DBController.ts
@@ -34,10 +34,10 @@ export default class DBController {
}
}
- async execute(query: string) {
+ async execute(query: string, params?: string[]) {
if (this.client) {
try {
- return await this.client.execute(query);
+ return await this.client.execute(query, params);
} catch (e) {
throw e;
}
@@ -45,11 +45,15 @@ export default class DBController {
}
async execute_multiple(queries: string[]) {
- await this.client!.transaction(async (conn) => {
- queries.forEach(async (query) => {
- await conn.execute(query);
+ try {
+ return await this.client!.transaction(async (conn) => {
+ queries.forEach(async (query) => {
+ await conn.execute(query);
+ });
});
- });
+ } catch (e) {
+ throw e;
+ }
}
async close() {
diff --git a/src/db/user.ts b/src/db/user.ts
index c245b5f..1e20564 100644
--- a/src/db/user.ts
+++ b/src/db/user.ts
@@ -1,6 +1,7 @@
import DBController from "./DBController.ts";
-class User extends DBController {
+class User {
+ createUser() {}
}
export default new User();
diff --git a/src/groups/user.ts b/src/groups/user.ts
index ae6d2ad..59cda82 100644
--- a/src/groups/user.ts
+++ b/src/groups/user.ts
@@ -1,6 +1,7 @@
-import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts";
+// import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts";
+import type { Group, Context } from "../abc/mod.ts";
import * as handlers from "../handler/user.ts";
export default function (g: Group) {
- g.get("/:name", handlers.index);
+ g.get("/:name", handlers.index);
}
diff --git a/src/handler/user.ts b/src/handler/user.ts
index 33b96a2..78db609 100644
--- a/src/handler/user.ts
+++ b/src/handler/user.ts
@@ -1,4 +1,5 @@
-import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/mod.ts";
+// import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/mod.ts";
+import type { HandlerFunc, Context } from "../abc/mod.ts";
import db from "../db/user.ts";
export const index: HandlerFunc = async (c: Context) => c.params.name;
diff --git a/src/main.ts b/src/main.ts
index 3eded62..9b16126 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,6 +1,8 @@
import "https://deno.land/x/dotenv/load.ts";
-import { Application } from "https://deno.land/x/abc@v1/mod.ts";
-import type { Context } from "https://deno.land/x/abc@v1/mod.ts";
+// import { Application } from "https://deno.land/x/abc@v1/mod.ts";
+// import type { Context } from "https://deno.land/x/abc@v1/mod.ts";
+import { Application } from "./abc/mod.ts";
+import type { Context } from "./abc/mod.ts";
import { renderFile } from "https://deno.land/x/dejs/mod.ts";
import * as groups from "./groups/index.ts";
import DBController from "./db/DBController.ts";