-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase.ts
More file actions
410 lines (318 loc) · 10.3 KB
/
database.ts
File metadata and controls
410 lines (318 loc) · 10.3 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import type { dbDiscordTable, dbYouTube } from "../types/database";
import path from "path";
import { Database } from "bun:sqlite";
const db = new Database(path.resolve(process.cwd(), "db.sqlite3"));
// #region Init Tables
export async function initTables(): Promise<boolean> {
const createYouTubeTable = `
CREATE TABLE IF NOT EXISTS youtube (
youtube_channel_id TEXT PRIMARY KEY,
latest_video_id TEXT UNIQUE
);
`;
const createDiscordTable = `
CREATE TABLE IF NOT EXISTS discord (
guild_id TEXT,
guild_channel_id TEXT NOT NULL,
guild_platform TEXT NOT NULL,
platform_user_id TEXT NOT NULL,
guild_ping_role TEXT
);
`;
const createTwitchTable = `
CREATE TABLE IF NOT EXISTS twitch (
twitch_channel_id TEXT PRIMARY KEY,
is_live BOOLEAN
);
`;
const createBotInfoTable = `
CREATE TABLE IF NOT EXISTS bot_info (
total_servers INTEGER NOT NULL DEFAULT 1,
total_members INTEGER NOT NULL DEFAULT 1
);
`;
try {
db.run(createYouTubeTable);
console.log("YouTube table created");
db.run(createDiscordTable);
console.log("Discord table created");
db.run(createTwitchTable);
console.log("Twitch table created");
db.run(createBotInfoTable);
console.log("Bot Info table created");
return true;
} catch (err) {
console.error("Error creating tables:", err);
return false;
}
}
// #endregion
// #region YouTube
// These two functions are for checking/adding a new channel to the youtube table
export async function checkIfChannelIsAlreadyTracked(channelId: string) {
const query = `SELECT * FROM youtube WHERE youtube_channel_id = ?`;
try {
const statement = db.prepare(query);
const result = statement.all(channelId);
return result.length > 0;
} catch (err) {
console.error("Error checking if channel is already tracked:", err);
throw err;
}
}
export async function addNewChannelToTrack(channelId: string) {
console.log("Adding channel to track:", channelId);
const res = await fetch(
`https://youtube.googleapis.com/youtube/v3/playlists?part=snippet&id=${channelId.replace("UC", "UU")}&key=${process.env.YOUTUBE_API_KEY}`,
);
if (!res.ok) {
return false;
}
const data = await res.json();
const videoId =
data.items?.[0]?.snippet?.thumbnails?.default?.url?.split("/")[4] ||
null;
const query = `INSERT INTO youtube (youtube_channel_id, latest_video_id) VALUES (?, ?)`;
try {
const statement = db.prepare(query);
statement.run(channelId, videoId);
return true;
} catch (err) {
console.error("Error adding channel to track:", err);
return false;
}
}
export async function checkIfGuildIsTrackingChannelAlready(
channelId: string,
guild_id: string,
) {
const query = `SELECT * FROM discord WHERE platform_user_id = ? AND guild_id = ?`;
try {
const statement = db.prepare(query);
const result = statement.all(channelId, guild_id);
return result.length > 0;
} catch (err) {
console.error(
"Error checking if guild is tracking channel already:",
err,
);
throw err;
}
}
export async function addNewGuildToTrackChannel(
guild_id: string,
channelId: string,
guild_channel_id: string,
guild_ping_role: string | null,
) {
const query = `INSERT INTO discord (guild_id, platform_user_id, guild_channel_id, guild_ping_role, guild_platform) VALUES (?, ?, ?, ?, 'youtube')`;
try {
const statement = db.prepare(query);
statement.run(guild_id, channelId, guild_channel_id, guild_ping_role);
return true;
} catch (err) {
console.error("Error adding guild to track channel:", err);
return false;
}
}
export async function getAllChannelsToTrack() {
const query = `SELECT * FROM youtube`;
try {
const statement = db.prepare(query);
const results = statement.all() as dbYouTube[];
return results;
} catch (err) {
console.error("Error getting all channels to track:", err);
throw err;
}
}
export async function getGuildsTrackingChannel(channelId: string) {
const query = `SELECT * FROM discord WHERE platform_user_id = ?`;
try {
const statement = db.prepare(query);
const results = statement.all(channelId);
return results;
} catch (err) {
console.error("Error getting guilds tracking channel:", err);
throw err;
}
}
export async function updateVideoId(channelId: string, videoId: string) {
const query = `UPDATE youtube SET latest_video_id = ? WHERE youtube_channel_id = ?`;
try {
const statement = db.prepare(query);
statement.run(videoId, channelId);
return true;
} catch (err) {
console.error("Error updating video ID:", err);
return false;
}
}
export async function stopGuildTrackingChannel(
guild_id: string,
channelId: string,
) {
const query = `DELETE FROM discord WHERE guild_id = ? AND platform_user_id = ?`;
try {
const statement = db.prepare(query);
statement.run(guild_id, channelId);
return true;
} catch (err) {
console.error("Error stopping guild tracking channel:", err);
return false;
}
}
// #endregion
// #region Twitch
export async function twitchGetAllChannelsToTrack() {
const query = `SELECT * FROM twitch`;
try {
const statement = db.prepare(query);
const results = statement.all();
return results;
} catch (err) {
console.error("Error getting all Twitch channels to track:", err);
throw err;
}
}
export async function twitchCheckIfChannelIsAlreadyTracked(channelId: string) {
const query = `SELECT * FROM twitch WHERE twitch_channel_id = ?`;
try {
const statement = db.prepare(query);
const result = statement.all(channelId);
return result.length > 0;
} catch (err) {
console.error(
"Error checking if Twitch channel is already tracked:",
err,
);
throw err;
}
}
export async function twitchCheckIfGuildIsTrackingChannelAlready(
channelId: string,
guild_id: string,
) {
const query = `SELECT * FROM discord WHERE platform_user_id = ? AND guild_id = ?`;
try {
const statement = db.prepare(query);
const result = statement.all(channelId, guild_id);
return result.length > 0;
} catch (err) {
console.error(
"Error checking if guild is tracking Twitch channel already:",
err,
);
throw err;
}
}
export async function twitchAddNewChannelToTrack(
channelId: string,
isLive: boolean,
) {
const query = `INSERT INTO twitch (twitch_channel_id, is_live) VALUES (?, ?)`;
try {
const statement = db.prepare(query);
statement.run(channelId, isLive);
return true;
} catch (err) {
console.error("Error adding Twitch channel to track:", err);
return false;
}
}
export async function twitchAddNewGuildToTrackChannel(
guild_id: string,
channelId: string,
guild_channel_id: string,
guild_ping_role: string | null,
) {
const query = `INSERT INTO discord (guild_id, platform_user_id, guild_channel_id, guild_ping_role, guild_platform) VALUES (?, ?, ?, ?, 'twitch')`;
try {
const statement = db.prepare(query);
statement.run(guild_id, channelId, guild_channel_id, guild_ping_role);
return true;
} catch (err) {
console.error("Error adding guild to track Twitch channel:", err);
return false;
}
}
export async function twitchGetGuildsTrackingChannel(channelId: string) {
const query = `SELECT * FROM discord WHERE platform_user_id = ?`;
try {
const statement = db.prepare(query);
const results = statement.all(channelId);
return results;
} catch (err) {
console.error("Error getting guilds tracking Twitch channel:", err);
throw err;
}
}
export async function twitchUpdateIsLive(channelId: string, isLive: boolean) {
const query = `UPDATE twitch SET is_live = ? WHERE twitch_channel_id = ?`;
try {
const statement = db.prepare(query);
statement.run(isLive, channelId);
return true;
} catch (err) {
console.error("Error updating is live:", err);
return false;
}
}
export async function twitchStopGuildTrackingChannel(
guild_id: string,
channelId: string,
) {
const query = `DELETE FROM discord WHERE guild_id = ? AND platform_user_id = ?`;
try {
const statement = db.prepare(query);
statement.run(guild_id, channelId);
return true;
} catch (err) {
console.error("Error stopping guild tracking Twitch channel:", err);
return false;
}
}
// #endregion
// #region Bot Info
export async function getBotInfo() {
const query = `SELECT * FROM bot_info`;
try {
const statement = db.prepare(query);
const result = statement.get();
return result;
} catch (err) {
console.error("Error getting bot info:", err);
throw err;
}
}
export async function updateBotInfo(
total_servers: number,
total_members: number,
) {
console.log("Updating bot info:", total_servers, total_members);
const query = `UPDATE bot_info SET total_servers = ?, total_members = ?`;
try {
const statement = db.prepare(query);
statement.run(total_servers, total_members);
return true;
} catch (err) {
console.error("Error updating bot info:", err);
return false;
}
}
// #endregion
// #region i have no idea what im doing here
export async function getAllTrackedInGuild(
guild_id: string,
): Promise<dbDiscordTable[]> {
const query = `SELECT * FROM discord WHERE guild_id = ?`;
try {
const statement = db.prepare(query);
const results = statement.all(guild_id);
return results as dbDiscordTable[];
} catch (err) {
console.error("Error getting all tracked in guild:", err);
throw err;
}
}
// #endregion