1 |
import { readFile, writeFile } from "fs"; |
2 |
import path from "path"; |
3 |
import DiscordClient from "../client/Client"; |
4 |
import Service from "../utils/structures/Service"; |
5 |
import { deleteFile } from "../utils/util"; |
6 |
|
7 |
export type Snippet = { |
8 |
name: string; |
9 |
content: string; |
10 |
files: string[] |
11 |
}; |
12 |
|
13 |
export type SnippetContainer = { |
14 |
[guildID: string]: Snippet[]; |
15 |
}; |
16 |
|
17 |
export default class SnippetManager extends Service { |
18 |
snippets: SnippetContainer = {}; |
19 |
|
20 |
constructor(client: DiscordClient) { |
21 |
super(client); |
22 |
this.load(); |
23 |
} |
24 |
|
25 |
load() { |
26 |
readFile(path.resolve(__dirname, '../..', 'config/snippets.json'), (err, data) => { |
27 |
if (err) { |
28 |
console.log(err); |
29 |
} |
30 |
|
31 |
this.snippets = JSON.parse(data.toString()); |
32 |
}); |
33 |
} |
34 |
|
35 |
write() { |
36 |
writeFile(path.resolve(__dirname, '../..', 'config/snippets.json'), JSON.stringify(this.snippets), () => null); |
37 |
} |
38 |
|
39 |
set(guildID: string, name: string, content: string, files: string[] = []): void { |
40 |
this.snippets[guildID].push({ |
41 |
name, |
42 |
content, |
43 |
files |
44 |
}); |
45 |
} |
46 |
|
47 |
get(guildID: string, name: string): Snippet | null { |
48 |
for (const s of this.snippets[guildID]) { |
49 |
if (s.name === name) { |
50 |
return s; |
51 |
} |
52 |
} |
53 |
|
54 |
return null; |
55 |
} |
56 |
|
57 |
async delete(guildID: string, name: string): Promise<void> { |
58 |
for (const i in this.snippets[guildID]) { |
59 |
if (this.snippets[guildID][i].name === name) { |
60 |
for await (const file of this.snippets[guildID][i].files) { |
61 |
try { |
62 |
await deleteFile(path.resolve(__dirname, '../../storage', file)); |
63 |
} |
64 |
catch (e) { |
65 |
console.log(e); |
66 |
} |
67 |
} |
68 |
|
69 |
await this.snippets[guildID].splice(parseInt(i), 1); |
70 |
|
71 |
return; |
72 |
} |
73 |
} |
74 |
} |
75 |
|
76 |
async deleteData(guildID: string, name: string): Promise<void> { |
77 |
for (const i in this.snippets[guildID]) { |
78 |
if (this.snippets[guildID][i].name === name) { |
79 |
await this.snippets[guildID].splice(parseInt(i), 1); |
80 |
return; |
81 |
} |
82 |
} |
83 |
} |
84 |
} |