1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-30 05:01:00 -04:00
Daggerbot-TS/src/commands/suggest.ts

103 lines
6.1 KiB
TypeScript
Raw Normal View History

2023-05-23 01:14:17 -04:00
import Discord from 'discord.js';
2023-04-14 06:47:58 -04:00
import TClient,{WClient} from '../client.js';
2023-02-26 23:31:16 -05:00
export default {
async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
const replyInDM = interaction.options.getString('message');
const suggestionIDReply = interaction.options.getString('id');
const suggestionID = (Math.random() + 1).toString(36).substring(5);
const userid = (await client.suggestion._content.findById(suggestionIDReply))?.user._id;
2023-04-24 06:10:11 -04:00
const theirIdea = (await client.suggestion._content.findById(suggestionIDReply))?.idea;
2023-02-26 23:31:16 -05:00
const timeFormatting = client.moment().format('DD/MM/YY h:mm A');
const stateChanged = 'Suggestion state has been successfully updated and DM is sent.';
({
your: async()=>{
const wclient = new WClient;
const suggestionText = interaction.options.getString('suggestion');
const suggestionImage = interaction.options.getAttachment('image');
const notifEmbed = new client.embed()
.setColor(client.config.embedColor)
.setTitle(`Suggestion ID: ${suggestionID}`)
.setAuthor({name: interaction.user.username, iconURL: interaction.user.avatarURL({size: 256})})
2023-02-26 23:31:16 -05:00
.setFooter({text: `Timestamp: ${timeFormatting}`})
.setDescription([
'> **Suggestion:**',
suggestionText
].join('\n'));
if (suggestionImage) notifEmbed.setImage(suggestionImage.url);
wclient.send({embeds: [notifEmbed], username: `${client.user.username} Notification`, avatarURL: client.user.avatarURL({size: 256})}
).catch(e=>{
console.log(e.message);
interaction.reply({content: 'Failed to send suggestion, try again later.', ephemeral: true})
})
await client.suggestion._content.create({_id: suggestionID, idea: suggestionText, user: {_id: interaction.user.id, tag: interaction.user.username}, state: 'Pending'});
2023-02-26 23:31:16 -05:00
interaction.reply({content: `Suggestion sent, here is your suggestion ID to take note of it: \`${suggestionID}\``, ephemeral: true})
},
approve: async()=>{
2023-04-24 06:10:11 -04:00
if (client.config.mainServer.id === interaction.guildId) {
if (!interaction.member.roles.cache.has(client.config.mainServer.roles.bottech)) return client.youNeedRole(interaction, 'bottech');
}
if ((await client.suggestion._content.findById(suggestionIDReply)).state === 'Rejected') return interaction.reply({content: 'This suggestion\'s state is locked and cannot be modified.', ephemeral: true});
2023-02-26 23:31:16 -05:00
(await client.users.fetch(userid)).send({embeds: [new client.embed()
.setColor(client.config.embedColorGreen)
.setAuthor({name: interaction.user.username, iconURL: interaction.user.avatarURL({size: 256})})
2023-02-26 23:31:16 -05:00
.setTitle('Your suggestion has been approved.')
.setDescription(`> **Your suggestion:**\n${theirIdea}\n> **Their message:**\n${replyInDM.length === null ? '*No message from them.*' : replyInDM}`)
2023-02-26 23:31:16 -05:00
.setFooter({text: `Timestamp: ${timeFormatting} | Suggestion ID: ${suggestionIDReply}`})
]});
await client.suggestion._content.findByIdAndUpdate(suggestionIDReply, {state: 'Approved'});
return interaction.reply({embeds:[new client.embed().setColor(client.config.embedColorGreen).setTitle(`Suggestion approved | ${suggestionIDReply}`).setDescription(stateChanged)]});
},
reject: async()=>{
2023-04-24 06:10:11 -04:00
if (client.config.mainServer.id === interaction.guildId) {
if (!interaction.member.roles.cache.has(client.config.mainServer.roles.bottech)) return client.youNeedRole(interaction, 'bottech');
}
if ((await client.suggestion._content.findById(suggestionIDReply)).state === 'Approved') return interaction.reply({content: 'This suggestion\'s state is locked and cannot be modified.', ephemeral: true});
2023-02-26 23:31:16 -05:00
(await client.users.fetch(userid)).send({embeds: [new client.embed()
.setColor(client.config.embedColorRed)
.setAuthor({name: interaction.user.username, iconURL: interaction.user.avatarURL({size: 256})})
2023-02-26 23:31:16 -05:00
.setTitle('Your suggestion has been rejected.')
.setDescription(`> **Your suggestion:**\n${theirIdea}\n> **Their message:**\n${replyInDM.length === null ? '*No message from them.*' : replyInDM}`)
2023-02-26 23:31:16 -05:00
.setFooter({text: `Timestamp: ${timeFormatting} | Suggestion ID: ${suggestionIDReply}`})
]});
await client.suggestion._content.findByIdAndUpdate(suggestionIDReply, {state: 'Rejected'});
return interaction.reply({embeds:[new client.embed().setColor(client.config.embedColorRed).setTitle(`Suggestion rejected | ${suggestionIDReply}`).setDescription(stateChanged)]});
2023-03-05 05:04:10 -05:00
}
2023-02-26 23:31:16 -05:00
} as any)[interaction.options.getSubcommand()]();
},
2023-05-23 01:14:17 -04:00
data: new Discord.SlashCommandBuilder()
2023-02-26 23:31:16 -05:00
.setName('suggest')
.setDescription('Want to suggest ideas/thoughts to bot techs? Suggest it here')
2023-05-23 01:14:17 -04:00
.addSubcommand(x=>x
2023-02-26 23:31:16 -05:00
.setName('your')
.setDescription('What do you want to suggest?')
2023-05-23 01:14:17 -04:00
.addStringOption(x=>x
2023-02-26 23:31:16 -05:00
.setName('suggestion')
.setDescription('Suggest something to bot techs. (You will be DM\'d by bot if your idea was approved/rejected)')
.setMaxLength(1024)
.setRequired(true))
2023-05-23 01:14:17 -04:00
.addAttachmentOption(x=>x
2023-02-26 23:31:16 -05:00
.setName('image')
.setDescription('If your idea seems complicated or prefer to show what your idea may look like then attach the image.')))
2023-05-23 01:14:17 -04:00
.addSubcommand(x=>x
2023-02-26 23:31:16 -05:00
.setName('approve')
.setDescription('[Bot Tech] Approve the suggestion sent by the user')
2023-05-23 01:14:17 -04:00
.addStringOption(x=>x
2023-02-26 23:31:16 -05:00
.setName('id')
.setDescription('User\'s suggestion ID')
.setRequired(true))
2023-05-23 01:14:17 -04:00
.addStringOption(x=>x
2023-02-26 23:31:16 -05:00
.setName('message')
.setDescription('(Optional) Include a message with your approval')
2023-02-26 23:31:16 -05:00
.setMaxLength(256)))
2023-05-23 01:14:17 -04:00
.addSubcommand(x=>x
2023-02-26 23:31:16 -05:00
.setName('reject')
.setDescription('[Bot Tech] Reject the suggestion sent by the user')
2023-05-23 01:14:17 -04:00
.addStringOption(x=>x
2023-02-26 23:31:16 -05:00
.setName('id')
.setDescription('User\'s suggestion ID')
.setRequired(true))
2023-05-23 01:14:17 -04:00
.addStringOption(x=>x
2023-02-26 23:31:16 -05:00
.setName('message')
.setDescription('(Optional) Include a message with your rejection')
2023-02-26 23:31:16 -05:00
.setMaxLength(256)))
}