1 |
const { default: axios } = require('axios'); |
2 |
const { readFile, writeFile } = require('fs'); |
3 |
const path = require('path'); |
4 |
const fs = require('fs'); |
5 |
const { download } = require('../commands/cat'); |
6 |
|
7 |
class SnippetManager { |
8 |
constructor() { |
9 |
this.snippets = []; |
10 |
this.load(); |
11 |
} |
12 |
|
13 |
load() { |
14 |
readFile("config/snippets.json", (err, data) => { |
15 |
if (err) { |
16 |
console.log(err); |
17 |
} |
18 |
|
19 |
this.snippets = JSON.parse(data); |
20 |
}); |
21 |
} |
22 |
|
23 |
find(guild, name) { |
24 |
return this.snippets[guild].find(s => s.name === name); |
25 |
} |
26 |
|
27 |
update() { |
28 |
writeFile("config/snippets.json", JSON.stringify(this.snippets), () => {}); |
29 |
} |
30 |
|
31 |
async create(guild, name, content, files) { |
32 |
if (this.find(guild, name) !== undefined) |
33 |
return false; |
34 |
|
35 |
const fileList = []; |
36 |
|
37 |
for (const i in files) { |
38 |
fileList[i] = Math.round((Math.random() * 10000000)) + "_" + files[i].name; |
39 |
await download(files[i].proxyURL, path.join(__dirname, '..', 'storage', fileList[i])); |
40 |
} |
41 |
|
42 |
await this.snippets[guild].push({name, content, files: fileList}); |
43 |
await this.update(); |
44 |
|
45 |
return true; |
46 |
} |
47 |
|
48 |
delete(guild, name) { |
49 |
for (let i in this.snippets[guild]) { |
50 |
if (this.snippets[guild][i].name === name) { |
51 |
|
52 |
this.snippets[guild][i].files?.forEach(f => { |
53 |
fs.rmSync(path.resolve(__dirname, '..', 'storage', f)); |
54 |
}); |
55 |
|
56 |
this.snippets[guild].splice(i, 1); |
57 |
this.update(); |
58 |
return true; |
59 |
} |
60 |
} |
61 |
|
62 |
return false; |
63 |
} |
64 |
} |
65 |
|
66 |
module.exports = SnippetManager; |