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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 256 - (hide annotations)
Mon Jul 29 17:29:14 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 3321 byte(s)
refactor(snippets): create an embed parser utility function
1 rakin 255 import { APIEmbed } from "discord-api-types/v9";
2     import { MessageEmbedOptions } from "discord.js";
3 rakin 51 import { readFile, writeFile } from "fs";
4     import path from "path";
5     import DiscordClient from "../client/Client";
6 rakin 255 import MessageEmbed from "../client/MessageEmbed";
7 rakin 226 import Service from "../utils/structures/Service";
8 rakin 256 import { deleteFile, parseEmbedsInString } from "../utils/util";
9 rakin 51
10     export type Snippet = {
11     name: string;
12     content: string;
13 rakin 255 files: string[],
14     embeds?: MessageEmbed[]
15 rakin 51 };
16    
17     export type SnippetContainer = {
18     [guildID: string]: Snippet[];
19     };
20    
21 rakin 226 export default class SnippetManager extends Service {
22 rakin 51 snippets: SnippetContainer = {};
23    
24     constructor(client: DiscordClient) {
25 rakin 226 super(client);
26 rakin 51 this.load();
27     }
28    
29     load() {
30     readFile(path.resolve(__dirname, '../..', 'config/snippets.json'), (err, data) => {
31     if (err) {
32     console.log(err);
33     }
34    
35     this.snippets = JSON.parse(data.toString());
36     });
37     }
38    
39     write() {
40     writeFile(path.resolve(__dirname, '../..', 'config/snippets.json'), JSON.stringify(this.snippets), () => null);
41     }
42    
43     set(guildID: string, name: string, content: string, files: string[] = []): void {
44 rakin 256 if (!this.snippets[guildID]) {
45     this.snippets[guildID] = [];
46     }
47    
48 rakin 51 this.snippets[guildID].push({
49     name,
50     content,
51     files
52     });
53     }
54    
55     get(guildID: string, name: string): Snippet | null {
56 rakin 244 if (!this.snippets[guildID]) {
57     return null;
58     }
59    
60 rakin 51 for (const s of this.snippets[guildID]) {
61     if (s.name === name) {
62     return s;
63     }
64     }
65    
66     return null;
67     }
68 rakin 255
69     getParsed(guildID: string, name: string): Snippet | null {
70     const snippet = this.get(guildID, name);
71 rakin 51
72 rakin 255 if (!snippet) {
73     return null;
74     }
75    
76 rakin 256 return this.parseEmbeds(snippet) ?? snippet;
77 rakin 255 }
78    
79 rakin 256 parseEmbeds(snippet: Snippet) {
80     try {
81     const { embeds, content } = parseEmbedsInString(snippet.content);
82 rakin 255
83 rakin 256 console.log(content);
84 rakin 255
85 rakin 256 return <Snippet> {
86     ...snippet,
87     content,
88     embeds,
89     };
90 rakin 255 }
91 rakin 256 catch (e) {
92     console.log(e);
93     }
94 rakin 255 }
95    
96 rakin 51 async delete(guildID: string, name: string): Promise<void> {
97     for (const i in this.snippets[guildID]) {
98     if (this.snippets[guildID][i].name === name) {
99     for await (const file of this.snippets[guildID][i].files) {
100     try {
101     await deleteFile(path.resolve(__dirname, '../../storage', file));
102     }
103     catch (e) {
104     console.log(e);
105     }
106     }
107    
108     await this.snippets[guildID].splice(parseInt(i), 1);
109    
110     return;
111     }
112     }
113     }
114    
115     async deleteData(guildID: string, name: string): Promise<void> {
116     for (const i in this.snippets[guildID]) {
117     if (this.snippets[guildID][i].name === name) {
118     await this.snippets[guildID].splice(parseInt(i), 1);
119     return;
120     }
121     }
122     }
123     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26