Implement guards for Supabase-dependent commands, refine error handling, and introduce feed synchronization capabilities. Replit-Commit-Author: Agent Replit-Commit-Session-Id: e72fc1b7-94bd-4d6c-801f-cbac2fae245c Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Event-Id: 48ccfc2d-e27b-4e3b-b0d2-25bdb3ece9c8 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/e72fc1b7-94bd-4d6c-801f-cbac2fae245c/NXjYRWJ Replit-Helium-Checkpoint-Created: true
83 lines
2.6 KiB
JavaScript
83 lines
2.6 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
||
|
||
module.exports = {
|
||
data: new SlashCommandBuilder()
|
||
.setName("unlink")
|
||
.setDescription("Unlink your Discord account from AeThex"),
|
||
|
||
async execute(interaction, supabase) {
|
||
await interaction.deferReply({ ephemeral: true });
|
||
|
||
if (!supabase) {
|
||
const embed = new EmbedBuilder()
|
||
.setColor(0xff6b6b)
|
||
.setTitle("⚠️ Feature Unavailable")
|
||
.setDescription("Account unlinking is not configured. Contact an administrator.");
|
||
return await interaction.editReply({ embeds: [embed] });
|
||
}
|
||
|
||
try {
|
||
const { data: link } = await supabase
|
||
.from("discord_links")
|
||
.select("*")
|
||
.eq("discord_id", interaction.user.id)
|
||
.single();
|
||
|
||
if (!link) {
|
||
const embed = new EmbedBuilder()
|
||
.setColor(0xff6b6b)
|
||
.setTitle("ℹ️ Not Linked")
|
||
.setDescription("Your Discord account is not linked to AeThex.");
|
||
|
||
return await interaction.editReply({ embeds: [embed] });
|
||
}
|
||
|
||
// Delete the link
|
||
await supabase
|
||
.from("discord_links")
|
||
.delete()
|
||
.eq("discord_id", interaction.user.id);
|
||
|
||
// Remove Discord roles from user
|
||
const guild = interaction.guild;
|
||
const member = await guild.members.fetch(interaction.user.id);
|
||
|
||
// Find and remove all AeThex-related roles
|
||
const rolesToRemove = member.roles.cache.filter(
|
||
(role) =>
|
||
role.name.includes("Labs") ||
|
||
role.name.includes("GameForge") ||
|
||
role.name.includes("Corp") ||
|
||
role.name.includes("Foundation") ||
|
||
role.name.includes("Dev-Link") ||
|
||
role.name.includes("Premium") ||
|
||
role.name.includes("Creator"),
|
||
);
|
||
|
||
for (const [, role] of rolesToRemove) {
|
||
try {
|
||
await member.roles.remove(role);
|
||
} catch (e) {
|
||
console.warn(`Could not remove role ${role.name}`);
|
||
}
|
||
}
|
||
|
||
const embed = new EmbedBuilder()
|
||
.setColor(0x00ff00)
|
||
.setTitle("✅ Account Unlinked")
|
||
.setDescription(
|
||
"Your Discord account has been unlinked from AeThex.\nAll associated roles have been removed.",
|
||
);
|
||
|
||
await interaction.editReply({ embeds: [embed] });
|
||
} catch (error) {
|
||
console.error("Unlink command error:", error);
|
||
const embed = new EmbedBuilder()
|
||
.setColor(0xff0000)
|
||
.setTitle("❌ Error")
|
||
.setDescription("Failed to unlink account. Please try again.");
|
||
|
||
await interaction.editReply({ embeds: [embed] });
|
||
}
|
||
},
|
||
};
|