/[sudobot]/trunk/src/services/SnippetManager.ts
ViewVC logotype

Annotation of /trunk/src/services/SnippetManager.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 51 - (hide annotations)
Mon Jul 29 17:28:23 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 2295 byte(s)
Release version 2.0
1 rakin 51 import { readFile, writeFile } from "fs";
2     import path from "path";
3     import DiscordClient from "../client/Client";
4     import { deleteFile } from "../utils/util";
5    
6     export type Snippet = {
7     name: string;
8     content: string;
9     files: string[]
10     };
11    
12     export type SnippetContainer = {
13     [guildID: string]: Snippet[];
14     };
15    
16     export default class SnippetManager {
17     snippets: SnippetContainer = {};
18     client: DiscordClient;
19    
20     constructor(client: DiscordClient) {
21     this.client = 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     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26