blob: b306ecc09950d72a901b6f747d3566603f729111 [file] [log] [blame]
pineafan708692b2022-07-24 22:16:22 +01001import convertCurlyBracketString from '../utils/convertCurlyBracketString.js'
2import singleNotify from '../utils/singleNotify.js';
3import client from '../utils/client.js';
4
5interface PropSchema { enabled: boolean, name: string }
6
7export async function callback(_, member) {
pineafan708692b2022-07-24 22:16:22 +01008 let guild = await client.guilds.fetch(member.guild.id)
9 let config = await client.database.guilds.read(guild.id);
10 Object.entries(config.getKey("stats")).forEach(async ([channel, props]) => {
11 if ((props as PropSchema).enabled) {
12 let string = (props as PropSchema).name
13 if (!string) return
14 string = await convertCurlyBracketString(string, member.id, member.displayName, guild.name, guild.members)
15 let fetchedChannel;
16 try {
17 fetchedChannel = await guild.channels.fetch(channel)
18 } catch (e) { fetchedChannel = null }
19 if (!fetchedChannel) {
pineafane23c4ec2022-07-27 21:56:27 +010020 let deleted = config.getKey("stats")[channel]
21 console.log(`stats.${channel}`)
22 console.log(guild.id)
23 await client.database.guilds.write(guild.id, null, `stats.${channel}`)
pineafan708692b2022-07-24 22:16:22 +010024 return singleNotify(
25 "statsChannelDeleted",
26 guild.id,
pineafane23c4ec2022-07-27 21:56:27 +010027 "One or more of your stats channels have been deleted. Please use `/settings stats` if you wish to add the channel again.\n" +
28 `The channels name was: ${deleted.name}`,
pineafan708692b2022-07-24 22:16:22 +010029 "Critical"
30 )
31 }
32 try {
pineafane23c4ec2022-07-27 21:56:27 +010033 await fetchedChannel.setName(string.slice(0, 100))
pineafan708692b2022-07-24 22:16:22 +010034 } catch (e) {
35 console.error(e)
36 }
37 }
38 });
39}