-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.ts
244 lines (223 loc) · 7.42 KB
/
config.ts
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
import * as app from "#app"
import guilds, { Guild } from "#tables/guild.ts"
export default new app.Command({
name: "config",
description: "Display guild configs",
guildOwnerOnly: true,
channelType: "guild",
flags: [
{
name: "raw",
description: "Get data as json",
flag: "r",
aliases: ["json"],
},
],
async run(message) {
const config = await app.getGuild(message.guild, {
forceExists: true,
forceFetch: true,
})
const specialProps: app.EmbedBuilder[] = []
await message.channel.send({
embeds: [
new app.EmbedBuilder()
.setAuthor({
name: `${message.guild.name} | Configs`,
iconURL: message.guild.iconURL() ?? undefined,
})
.setDescription(
message.args.raw
? await app.code.stringify({
lang: "json",
content: JSON.stringify(config, null, 2),
})
: (
await Promise.all(
Object.entries(config)
.filter(([key]) => !key.startsWith("_"))
.map(async ([key, value]) => {
let entity: any
if (value === null) entity = "`null`"
else if (key.includes("channel_id"))
entity = `<#${value}>`
else if (key.includes("role_id"))
entity = `<@&${value}>`
else if (/(user|member)_id/.test(key))
entity = `<@${value}>`
else if (key.includes("emoji_id"))
entity = message.client.emojis.cache.get(value)
else if (
value.split("\n").length > 1 ||
(app.isJSON(value) &&
!/^\d+$/.test(value) &&
value.length > 50)
) {
const isJSON = app.isJSON(value)
specialProps.push(
new app.EmbedBuilder().setTitle(key).setDescription(
await app.code.stringify({
lang: isJSON ? "json" : undefined,
format: isJSON ? { printWidth: 62 } : undefined,
content: value,
}),
),
)
return null
} else entity = `"${value}"`
return `**${key}** = ${entity}`
}),
)
)
.filter((line) => line !== null)
.join("\n"),
),
],
})
if (specialProps.length > 0)
return message.channel.send({ embeds: specialProps })
},
subs: [
new app.Command({
name: "overwrite",
aliases: ["ow", "new"],
channelType: "guild",
description: "Overwrite guild config",
guildOwnerOnly: true,
rest: {
name: "config",
description: "New guild config",
required: true,
all: true,
},
async run(message) {
const config = JSON.parse(message.args.config)
await guilds.query.delete().where("id", message.guild.id)
await guilds.query.insert({ ...config, id: message.guild.id })
return message.channel.send(
`${app.emote(message, "CheckMark")} Successfully overwritten config. `,
)
},
}),
new app.Command({
name: "merge",
aliases: ["mix"],
channelType: "guild",
description: "Overwrite guild config",
guildOwnerOnly: true,
rest: {
name: "config",
description: "New guild config",
required: true,
all: true,
},
async run(message) {
const config = JSON.parse(message.args.config)
delete config._id
await guilds.query
.insert({ ...config, id: message.guild.id })
.onConflict("id")
.merge()
return message.channel.send(
`${app.emote(message, "CheckMark")} Successfully merged values. `,
)
},
}),
new app.Command({
name: "set",
channelType: "guild",
guildOwnerOnly: true,
description: "Set guild config property",
rest: {
name: "value",
required: true,
description: "The value of edited property",
},
positional: [
{
name: "name",
required: true,
type: "string",
description: "The name of edited property",
},
],
async run(message) {
if (message.args.name === "id" || message.args.name === "_id")
return message.channel.send(
`${app.emote(message, "Cross")} You can't edit the guild id!`,
)
await guilds.query
.insert({
id: message.guild.id,
[message.args.name]: message.rest.trim(),
})
.onConflict("id")
.merge([message.args.name as keyof Guild])
return message.channel.send(
`${app.emote(message, "CheckMark")} Successfully updated \`${
message.args.name
}\` value. `,
)
},
}),
new app.Command({
name: "get",
channelType: "guild",
guildOwnerOnly: true,
description: "Get guild config value",
positional: [
{
name: "name",
required: true,
type: "string",
description: "The name of edited property",
},
],
async run(message) {
const config = await app.getGuild(message.guild)
if (!config)
return message.channel.send({
embeds: [
new app.EmbedBuilder()
.setColor("Blurple")
.setTitle(`${message.guild.name} - ${message.args.name}`)
.setDescription(await app.code.stringify({ content: "null" })),
],
})
const value = config[message.args.name as keyof Guild] ?? "null"
let json: object | null = null
try {
if (!/^\d+$/.test(String(value))) json = JSON.parse(String(value))
} catch {}
return message.channel.send({
embeds: [
new app.EmbedBuilder()
.setColor("Blurple")
.setTitle(`${message.guild.name} - ${message.args.name}`)
.setDescription(
await app.code.stringify({
content:
json !== null
? JSON.stringify(json, null, 2)
: String(value),
lang: json !== null ? "json" : undefined,
}),
),
],
})
},
}),
new app.Command({
name: "reset",
channelType: "guild",
description: "Reset guild config",
guildOwnerOnly: true,
async run(message) {
await guilds.query.delete().where("id", message.guild.id)
return message.channel.send(
`${app.emote(message, "CheckMark")} Successfully reset guild config.`,
)
},
}),
],
})