-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.js
87 lines (76 loc) · 1.87 KB
/
db.js
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import pg from "pg";
export async function getDb() {
const client = new pg.Client({
host: process.env.POSTGRES_HOST,
port: process.env.POSTGRES_PORT,
database: process.env.POSTGRES_DB,
user: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASSWORD,
});
await client.connect();
return client;
}
export async function countMessagesInQueue() {
try {
const db = await getDb();
db.query({
text: `SELECT COUNT(*) FROM queue`,
})
.then((res) => {
console.log("Messages in the queue:", res.rows[0].count);
})
.finally(() => {
db.end();
});
} catch (error) {
console.error("Error counting messages in the queue:", error);
}
}
export async function countMessagesInStore1() {
try {
const db = await getDb();
db.query({
text: `SELECT COUNT(*) FROM store1`,
})
.then((res) => {
console.log("Messages in store1:", res.rows[0].count);
})
.finally(() => {
db.end();
});
} catch (error) {
console.error("Error counting messages in store1:", error);
}
}
export async function countMessagesInStore2() {
try {
const db = await getDb();
db.query({
text: `SELECT COUNT(*) FROM store2`,
})
.then((res) => {
console.log("Messages in store2:", res.rows[0].count);
})
.finally(() => {
db.end();
});
} catch (error) {
console.error("Error counting messages in store2:", error);
}
}
export async function clearStore(storeNumber) {
try {
const db = await getDb();
db.query({
text: `DELETE FROM store` + storeNumber,
})
.then(() => {
console.log("Store" + storeNumber + " cleared successfully.");
})
.finally(() => {
db.end();
});
} catch (error) {
console.error("Error clearing store" + storeNumber + ":", error);
}
}