Compare commits

..

No commits in common. "0600f13511a99dc20062c32ede048f444e2ea820" and "c04b6ffc1156504213b554cdaa304ce7a476fbef" have entirely different histories.

11 changed files with 48 additions and 122 deletions

View file

@ -6,7 +6,7 @@
"scripts": {
"build": "rm -rf ./dist && tsc -p .",
"start": "node ./dist/main.js",
"refresh": "node ./dist/scripts/refreshGuild.js",
"refresh": "node ./dist/scripts/updateGuild.js",
"prettier": "if prettier -v >/dev/null 2>&1; then prettier . --write; else npx prettier . --write; fi",
"test": "echo \"Error: no test specified\" && exit 1"
},

View file

@ -29,7 +29,7 @@ const commandsData = Object.values(commands).map(command =>
command.data.toJSON()
);
export const rest = new REST({ version: "9" }).setToken(BOT_TOKEN);
const rest = new REST({ version: "9" }).setToken(BOT_TOKEN);
export async function deployCommands({ guildId }: DeployCommandsProps) {
try {

View file

@ -30,7 +30,6 @@ import { dt } from "../main";
import { StoreMan } from "../storeman";
import getRandomColor from "../utils/getRandomColor";
import Logger from "../utils/Logger";
import { messageOpts } from "../constants";
const logger = new Logger("(/) confess");
@ -54,14 +53,14 @@ export async function execute(interaction: ChatInputCommandInteraction) {
// TODO: This all works as intended, but I'd like for it so be a reusable function
// instead because all of this is used in src/main.ts
const { id: guildId } = interaction.guild!;
const { id: userId, displayName: userName } = interaction.user;
const { id: userId } = interaction.user;
try {
// If the user is banned in this guild, don't let them post
if (dt.isBannedByUser(guildId, userId)) {
return interaction.reply({
content: "You are banned from confessions in this server!",
...messageOpts
ephemeral: true
});
}
@ -70,11 +69,11 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return interaction.reply({
content:
"The bot hasn't been set up yet! Ask the server admins to set it up.",
...messageOpts
ephemeral: true
});
}
const confessChannel = dt.getGuildInfo(guildId)!.settings.confessChannel;
const confessChannel = dt.getGuildInfo(guildId)?.settings.confessChannel;
const adminChannel = dt.getGuildInfo(guildId)?.settings.modChannel;
const messageContent = `"${interaction.options.getString("message")}"`;
@ -163,8 +162,8 @@ export async function execute(interaction: ChatInputCommandInteraction) {
dt.addConfession(
message,
messageId,
userName,
userId,
interaction.user.displayName,
interaction.user.id,
messageContent,
attachment
);
@ -173,24 +172,20 @@ export async function execute(interaction: ChatInputCommandInteraction) {
// If there are 2 or more confessions, remove the previous confession's button components
if (confessionsLength >= 2) {
(BotClient.channels.cache.get(confessChannel) as TextChannel).messages
await (
BotClient.channels.cache.get(confessChannel!) as TextChannel
).messages
.fetch(
dt.getGuildInfo(guildId)!.confessions[confessionsLength - 2].messageId
)
.then(message => {
message.edit({ components: [] });
})
.catch(err => {
logger.error(
"An error occured removing embeds from the previous message:",
err
);
});
}
return interaction.reply({
content: "Confession sent!",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("An error occured:", err);

View file

@ -27,7 +27,6 @@ import { dt } from "../main";
import { BotClient } from "../bot";
import getRandomColor from "../utils/getRandomColor";
import Logger from "../utils/Logger";
import { messageOpts } from "../constants";
const logger = new Logger("(/) confessdel");
@ -47,7 +46,7 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return interaction.reply({
content:
"The bot hasn't been set up yet! Ask the server admins to set it up.",
...messageOpts
ephemeral: true
});
}
@ -85,13 +84,13 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return interaction.reply({
content: "Confession removed.",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("A confession delete error occured:", err);
return interaction.reply({
content: "An error occured.",
...messageOpts
ephemeral: true
});
}
} else {
@ -100,18 +99,18 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return result
? interaction.reply({
content: "You are not allowed to remove this confession.",
...messageOpts
ephemeral: true
})
: interaction.reply({
content:
"Either the confession wasn't found or you may not be allowed to remove it.",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("A confession delete interaction occured:", err);
return interaction.reply({
content: "An error occured.",
...messageOpts
ephemeral: true
});
}
}

View file

@ -28,7 +28,6 @@ import {
import { dt } from "../main";
import Logger from "../utils/Logger";
import { BanReason } from "../storeman";
import { messageOpts } from "../constants";
const logger = new Logger("(/) confessban");
@ -72,17 +71,6 @@ export const data = new SlashCommandBuilder()
.setMaxLength(4)
.setRequired(true)
)
)
.addSubcommand(pardonuser =>
pardonuser
.setName("pardonuser")
.setDescription("Pardon a user from confessions")
.addUserOption(user =>
user
.setName("user")
.setDescription("The user to pardon")
.setRequired(true)
)
);
export async function execute(interaction: ChatInputCommandInteraction) {
@ -96,7 +84,7 @@ export async function execute(interaction: ChatInputCommandInteraction) {
try {
return interaction.reply({
content: "That user is already banned!",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("A ban interaction error occured:", err);
@ -109,11 +97,11 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return result
? interaction.reply({
content: "User was banned.",
...messageOpts
ephemeral: true
})
: interaction.reply({
content: "No confession with that ID was found.",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("A ban interaction error occured:", err);
@ -128,11 +116,11 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return result
? interaction.reply({
content: "User was banned.",
...messageOpts
ephemeral: true
})
: interaction.reply({
content: "How did we get here? (An error occured.)}",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("A banuser interaction error occured:", err);
@ -173,57 +161,36 @@ export async function execute(interaction: ChatInputCommandInteraction) {
try {
return interaction.reply({
content: determineContent(),
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("A banlist interaction error occured:", err);
return interaction.reply({
content: "A server-side error occurred when getting the ban list.",
...messageOpts
ephemeral: true
});
}
// /confessmod pardon <id>
} else if (interaction.options.getSubcommand() === "pardon") {
const result = dt.removeBanById(
guildId,
interaction.options.getString("id")!
);
const result = dt.removeBan(guildId, interaction.options.getString("id")!);
try {
return result
? interaction.reply({
content: "User was unbanned.",
...messageOpts
ephemeral: true
})
: interaction.reply({
content: "No confession with that ID was found.",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("An unban interaction error occured:", err);
}
} else if (interaction.options.getSubcommand() === "pardonuser") {
const { id: userId } = interaction.options.getUser("user")!;
const result = dt.removeBanByUser(guildId, userId);
try {
return result
? interaction.reply({
content: "User was unbanned.",
...messageOpts
})
: interaction.reply({
content: "That user is not banned from confessions.",
...messageOpts
});
} catch (err) {
logger.error("An unban user interaction error occured:", err);
}
}
return interaction.reply({
content: "Unknown error",
...messageOpts
ephemeral: true
});
}

View file

@ -29,7 +29,6 @@ import {
} from "discord.js";
import { dt } from "../main";
import Logger from "../utils/Logger";
import { messageOpts } from "../constants";
const logger = new Logger("(/) setup");
@ -45,7 +44,7 @@ export async function execute(interaction: CommandInteraction) {
if (dt.checkSetup(guildId)) {
return interaction.reply({
content: "This guild has already been set up!",
...messageOpts
ephemeral: true
});
}
@ -71,7 +70,7 @@ export async function execute(interaction: CommandInteraction) {
try {
const response = await interaction.reply({
content: `# Let's get started, ${username}!\nFirst, let's choose a channel for your confessions.`,
...messageOpts,
ephemeral: true,
components: [channelRow]
});
@ -102,7 +101,7 @@ export async function execute(interaction: CommandInteraction) {
const logResponse = await interaction.followUp({
content: "# Now, select a logging channel, for moderation purposes.",
...messageOpts,
ephemeral: true,
components: [logChannelRow, buttonRow]
});
@ -160,7 +159,7 @@ export async function execute(interaction: CommandInteraction) {
!skipped &&
interaction.followUp({
content: "No channel selected. Please try again.",
...messageOpts,
ephemeral: true,
components: []
});
});
@ -171,7 +170,7 @@ export async function execute(interaction: CommandInteraction) {
!collected.size &&
interaction.followUp({
content: "No channel selected. Try again.",
...messageOpts,
ephemeral: true,
components: []
});
});

View file

@ -23,7 +23,6 @@ import {
} from "discord.js";
import { deployCommands } from "../bot";
import Logger from "../utils/Logger";
import { messageOpts } from "../constants";
const logger = new Logger("(/) update");
const minutes = 5;
@ -40,7 +39,7 @@ export async function execute(interaction: ChatInputCommandInteraction) {
if (cooldownList.has(guildId)) {
return interaction.reply({
content: `You can only run the update command once every ${minutes} minutes.`,
...messageOpts
ephemeral: true
});
}
@ -59,6 +58,6 @@ export async function execute(interaction: ChatInputCommandInteraction) {
return interaction.reply({
content: "Commands refreshed.",
...messageOpts
ephemeral: true
});
}

View file

@ -1,3 +0,0 @@
export const messageOpts = {
ephemeral: true
};

View file

@ -31,7 +31,6 @@ import { StoreMan } from "./storeman";
import Logger from "./utils/Logger";
import getRandomColor from "./utils/getRandomColor";
import { submit } from "./modals";
import { messageOpts } from "./constants";
export const dt = new StoreMan(StoreMan.checkFile());
const logger = new Logger("Main");
@ -101,7 +100,7 @@ BotClient.on(Events.InteractionCreate, async interaction => {
dt.isBannedByUser(interaction.guild?.id!, interaction.user.id)
? interaction.reply({
content: "You are banned from confessions in this server!",
...messageOpts
ephemeral: true
})
: interaction.showModal(submit);
}
@ -122,7 +121,7 @@ BotClient.on(Events.InteractionCreate, async interaction => {
if (dt.isBannedByUser(interaction.guild?.id!, interaction.user.id)) {
return interaction.reply({
content: "You are banned from confessions in this server!",
...messageOpts
ephemeral: true
});
}
@ -130,7 +129,7 @@ BotClient.on(Events.InteractionCreate, async interaction => {
return interaction.reply({
content:
"The bot hasn't been set up yet! Ask the server admins to set it up.",
...messageOpts
ephemeral: true
});
}
@ -219,7 +218,7 @@ BotClient.on(Events.InteractionCreate, async interaction => {
return interaction.reply({
content: "Confession sent!",
...messageOpts
ephemeral: true
});
} catch (err) {
logger.error("An error occured:", err);

View file

@ -16,32 +16,22 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Events, Routes } from "discord.js";
import { BOT_ID, BotClient, deployCommands, rest } from "../bot";
import { Events } from "discord.js";
import { BotClient, deployCommands } from "../bot";
if (process.argv.length < 3 || !process.argv[2]) {
console.log("You need to specify the guild ID to refresh.");
process.exit(1);
}
const [, , guildId] = process.argv;
BotClient.on(Events.ClientReady, () => {
try {
rest
.put(Routes.applicationGuildCommands(BOT_ID, guildId), { body: [] })
.then(() => {
console.log("Deleted (/) commands.");
deployCommands({ guildId: guildId })
.then(() => {
console.log("Successfully reloaded (/) commands.");
BotClient.fetchGuildPreview(process.argv[2])
.then(({ id, name }) => {
deployCommands({ guildId: id });
console.log(`Updated (/) commands for "${name}".`);
process.exit(0);
})
.catch(err => {
console.log("An error occurred refreshing (/) commands:", err);
process.exit(1);
});
})
.catch(err => {
console.log("An error occured refreshing (/) commands:", err);
process.exit(1);

View file

@ -302,7 +302,7 @@ export class StoreMan {
}
// Attempts to pardon a user from a ban. If sucessfully completed, returns true, false if otherwise.
public removeBanById(guildId: string, confessionId: string): boolean {
public removeBan(guildId: string, confessionId: string): boolean {
for (const guild of this.data) {
if (guild.id === guildId) {
if (this.getConfession(guildId, confessionId)) {
@ -320,23 +320,4 @@ export class StoreMan {
return false;
}
public removeBanByUser(guildId: string, userId: string): boolean {
for (const guild of this.data) {
if (guild.id === guildId) {
for (const ban of guild.settings.bans) {
if (ban.method === BanReason.ByUser && ban.user === userId) {
guild.settings.bans = guild.settings.bans.filter(ban => {
return ban.user !== userId;
});
this.saveFile();
return true;
}
}
}
}
return false;
}
}