Merge branch 'warnings'

This commit is contained in:
Tarrgon
2025-05-29 09:42:30 -04:00
13 changed files with 280 additions and 20 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ async function dumpPhrases(interaction: ChatInputCommandInteraction) {
}
async function addPhrase(interaction: ChatInputCommandInteraction, phrase: string, group: SubcommandGroup) {
await Database.addTicketPhrase(group == 'admin' ? 'admin' : interaction.user.id, phrase);
await Database.putTicketPhrase(group == 'admin' ? 'admin' : interaction.user.id, phrase);
interaction.reply(`Phrases matching "${phrase}" will now alert ${group == 'admin' ? 'admins' : 'you'}.`);
}
+6 -4
View File
@@ -65,12 +65,14 @@ export default {
.setRequired(false)
),
handler: async function (client: Client, interaction: ChatInputCommandInteraction) {
await interaction.deferReply({ flags: [MessageFlags.Ephemeral] });
let response = '';
const settings = await Database.getGuildSettings(interaction.guildId!);
if (!settings) {
await Database.addGuild(interaction.guildId!);
await Database.putGuild(interaction.guildId!);
}
const generalChannel = interaction.options.getChannel('general-channel');
@@ -132,7 +134,7 @@ export default {
const addCategory = interaction.options.getChannel('add-staff-category');
if (addCategory) {
if (addCategory.type == ChannelType.GuildCategory) {
await Database.addGuildStaffCategory(interaction.guildId!, addCategory.id);
await Database.putGuildStaffCategory(interaction.guildId!, addCategory.id);
response += `Added ${addCategory.toString()} as a staff category.\n`;
} else {
@@ -153,8 +155,8 @@ export default {
}
}
if (response.length == 0) return interaction.reply({ content: 'No settings provided.', flags: [MessageFlags.Ephemeral] });
if (response.length == 0) return interaction.editReply({ content: 'No settings provided.' });
interaction.reply({ content: response, flags: [MessageFlags.Ephemeral] });
interaction.editReply({ content: response });
}
};
+116
View File
@@ -0,0 +1,116 @@
import { ApplicationCommandOptionType, ApplicationIntegrationType, AutocompleteInteraction, ChatInputCommandInteraction, Client, GuildBasedChannel, InteractionContextType, MessageFlags, PermissionFlagsBits, SlashCommandBuilder } from 'discord.js';
import { Database } from '../shared/Database';
import { channelIsInStaffCategory, getE621User } from '../utils';
import { config } from '../config';
import { getWarningMessage } from '../utils/warning-utils';
export default {
name: 'warnings',
data: new SlashCommandBuilder()
.setName('warnings')
.setDescription('Add, view, or remove user warnings.')
.setIntegrationTypes(ApplicationIntegrationType.GuildInstall)
.setContexts(InteractionContextType.Guild)
.setDefaultMemberPermissions(PermissionFlagsBits.BanMembers)
.addSubcommand(subcommand =>
subcommand
.setName('add')
.setDescription('Add warnings to a user.')
.addUserOption(option =>
option
.setName('user')
.setDescription('The user to add a warning to.')
.setRequired(true)
)
.addStringOption(option =>
option
.setName('reason')
.setDescription('The reason for the warning.')
.setRequired(true)
)
)
.addSubcommand(subcommand =>
subcommand
.setName('remove')
.setDescription('Remove warnings from a user.')
.addUserOption(option =>
option
.setName('user')
.setDescription('The user to remove a warning from.')
.setRequired(true)
)
.addIntegerOption(option =>
option
.setName('warning')
.setDescription('The warning to remove.')
.setRequired(true)
.setAutocomplete(true)
)
)
.addSubcommand(subcommand =>
subcommand
.setName('list')
.setDescription("List a user's warnings")
.addUserOption(option =>
option
.setName('user')
.setDescription('The user to list the warnings of.')
.setRequired(true)
)
),
handler: async function (client: Client, interaction: ChatInputCommandInteraction) {
const subcommand = interaction.options.getSubcommand(true);
const user = interaction.options.getUser('user', true);
const isStaffChannel = await channelIsInStaffCategory(interaction.channel as GuildBasedChannel);
if (isStaffChannel) await interaction.deferReply();
else await interaction.deferReply({ flags: [MessageFlags.Ephemeral] });
if (subcommand == 'add') {
const reason = interaction.options.getString('reason', true);
await Database.putWarning(user.id, reason, interaction.user.id);
if (isStaffChannel) interaction.editReply('Added warning.');
else interaction.editReply({ content: 'Added warning.' });
} else if (subcommand == 'remove') {
const warningId = interaction.options.getInteger('warning', true);
if (await Database.removeWarning(warningId)) {
if (isStaffChannel) interaction.editReply('Removed warning.');
else interaction.editReply({ content: 'Removed warning.' });
} else {
if (isStaffChannel) interaction.editReply('Warning not found.');
else interaction.editReply({ content: 'Warning not found.' });
}
} else if (subcommand == 'list') {
const warningMessage = await getWarningMessage(user.id, 1);
if (!warningMessage) return interaction.editReply(`No warnings found for <@${user.id}>`);
interaction.editReply(warningMessage);
}
},
autoComplete: async function (client: Client, interaction: AutocompleteInteraction) {
const user = interaction.options.get('user');
if (!user || user.type != ApplicationCommandOptionType.User) return interaction.respond([]);
const userId = user.value as string;
const value = interaction.options.getFocused().toLowerCase();
const warnings = await Database.getWarnings(userId);
const toRespond = warnings.filter(w => !value ? true : w.reason.toLowerCase().includes(value));
if (toRespond.length > 25) toRespond.length = 25;
interaction.respond(toRespond.map((w) => {
return {
name: w.reason.substring(0, 50),
value: w.id
};
}));
}
};