Introduces a new server mode configuration system (Federation/Standalone) with associated command changes, dynamic status rotation for the bot, and adds new commands and features. Replit-Commit-Author: Agent Replit-Commit-Session-Id: aed2e46d-25bb-4b73-81a1-bb9e8437c261 Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Event-Id: b08e6ba5-7498-4b9f-b1c9-7dc11b362ddd Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/aed2e46d-25bb-4b73-81a1-bb9e8437c261/R9PkDi8 Replit-Helium-Checkpoint-Created: true
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
|
|
const { getServerMode, getEmbedColor, EMBED_COLORS } = require('../utils/modeHelper');
|
|
|
|
const repCooldowns = new Map();
|
|
const REP_COOLDOWN = 12 * 60 * 60 * 1000;
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('rep')
|
|
.setDescription('Give a reputation point to someone')
|
|
.addUserOption(option =>
|
|
option.setName('user')
|
|
.setDescription('The user to give rep to')
|
|
.setRequired(true)
|
|
)
|
|
.addStringOption(option =>
|
|
option.setName('reason')
|
|
.setDescription('Why are you giving them rep?')
|
|
.setRequired(false)
|
|
.setMaxLength(200)
|
|
),
|
|
|
|
async execute(interaction, supabase, client) {
|
|
const targetUser = interaction.options.getUser('user');
|
|
const reason = interaction.options.getString('reason');
|
|
const userId = interaction.user.id;
|
|
const guildId = interaction.guildId;
|
|
const mode = await getServerMode(supabase, interaction.guildId);
|
|
|
|
if (targetUser.id === userId) {
|
|
return interaction.reply({
|
|
content: "You can't give rep to yourself!",
|
|
ephemeral: true
|
|
});
|
|
}
|
|
|
|
if (targetUser.bot) {
|
|
return interaction.reply({
|
|
content: "You can't give rep to bots!",
|
|
ephemeral: true
|
|
});
|
|
}
|
|
|
|
const cooldownKey = `${guildId}-${userId}`;
|
|
const lastRep = repCooldowns.get(cooldownKey);
|
|
if (lastRep && Date.now() - lastRep < REP_COOLDOWN) {
|
|
const remaining = REP_COOLDOWN - (Date.now() - lastRep);
|
|
const hours = Math.floor(remaining / (60 * 60 * 1000));
|
|
const minutes = Math.floor((remaining % (60 * 60 * 1000)) / (60 * 1000));
|
|
return interaction.reply({
|
|
content: `You can give rep again in ${hours}h ${minutes}m.`,
|
|
ephemeral: true
|
|
});
|
|
}
|
|
|
|
repCooldowns.set(cooldownKey, Date.now());
|
|
|
|
if (supabase) {
|
|
try {
|
|
await supabase.from('reputation').insert({
|
|
guild_id: guildId,
|
|
giver_id: userId,
|
|
receiver_id: targetUser.id,
|
|
reason: reason,
|
|
created_at: new Date().toISOString()
|
|
});
|
|
} catch (e) {}
|
|
}
|
|
|
|
const embed = new EmbedBuilder()
|
|
.setColor(EMBED_COLORS.success)
|
|
.setTitle('⭐ Reputation Given!')
|
|
.setDescription(`${interaction.user} gave a rep point to ${targetUser}!`)
|
|
.setThumbnail(targetUser.displayAvatarURL({ size: 128 }))
|
|
.setTimestamp();
|
|
|
|
if (reason) {
|
|
embed.addFields({ name: '💬 Reason', value: reason });
|
|
}
|
|
|
|
await interaction.reply({ embeds: [embed] });
|
|
},
|
|
};
|