TravBot-v3/src/commands/system/admin.ts

327 lines
17 KiB
TypeScript
Raw Normal View History

import {Command, NamedCommand, botHasPermission, getPermissionLevel, getPermissionName, CHANNEL_TYPE} from "../../core";
import {clean} from "../../lib";
import {Config, Storage} from "../../structures";
2021-04-08 11:37:49 +00:00
import {Permissions, TextChannel, User} from "discord.js";
2021-03-31 07:00:03 +00:00
import {logs} from "../../modules/globals";
2020-12-15 01:44:28 +00:00
function getLogBuffer(type: string) {
return {
files: [
{
attachment: Buffer.alloc(logs[type].length, logs[type]),
name: `${Date.now()}.${type}.log`
}
]
};
}
const activities = ["playing", "listening", "streaming", "watching"];
const statuses = ["online", "idle", "dnd", "invisible"];
export default new NamedCommand({
2020-12-15 01:44:28 +00:00
description:
"An all-in-one command to do admin stuff. You need to be either an admin of the server or one of the bot's mechanics to use this command.",
async run({message, channel, guild, author, member, client, args}) {
const permLevel = getPermissionLevel(author, member);
return channel.send(`${author}, your permission level is \`${getPermissionName(permLevel)}\` (${permLevel}).`);
2020-12-15 01:44:28 +00:00
},
subcommands: {
set: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Set different per-guild settings for the bot.",
run: "You have to specify the option you want to set.",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.ADMIN,
channelType: CHANNEL_TYPE.GUILD,
2020-12-15 01:44:28 +00:00
subcommands: {
prefix: new NamedCommand({
2020-12-15 07:56:09 +00:00
description: "Set a custom prefix for your guild. Removes your custom prefix if none is provided.",
2021-04-08 11:37:49 +00:00
usage: "(<prefix>) (<@bot>)",
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).prefix = null;
2020-12-15 01:44:28 +00:00
Storage.save();
channel.send(
2020-12-15 01:44:28 +00:00
`The custom prefix for this guild has been removed. My prefix is now back to \`${Config.prefix}\`.`
);
},
any: new Command({
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).prefix = args[0];
2020-12-15 01:44:28 +00:00
Storage.save();
channel.send(`The custom prefix for this guild is now \`${args[0]}\`.`);
2021-04-08 11:37:49 +00:00
},
user: new Command({
description: "Specifies the bot in case of conflicting prefixes.",
async run({message, channel, guild, author, member, client, args}) {
if ((args[1] as User).id === client.user!.id) {
Storage.getGuild(guild!.id).prefix = args[0];
Storage.save();
channel.send(`The custom prefix for this guild is now \`${args[0]}\`.`);
}
}
})
2020-12-15 01:44:28 +00:00
})
}),
welcome: new NamedCommand({
description: "Configure your server's welcome settings for the bot.",
usage: "type/channel <...>",
run: "You need to specify which part to modify, `type`/`channel`.",
subcommands: {
type: new NamedCommand({
description:
"Sets how welcome messages are displayed for your server. Removes welcome messages if unspecified.",
usage: "`none`/`text`/`graphical`",
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).welcomeType = "none";
Storage.save();
channel.send("Set this server's welcome type to `none`.");
},
// I should probably make this a bit more dynamic... Oh well.
subcommands: {
text: new NamedCommand({
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).welcomeType = "text";
Storage.save();
channel.send("Set this server's welcome type to `text`.");
}
}),
graphical: new NamedCommand({
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).welcomeType = "graphical";
Storage.save();
channel.send("Set this server's welcome type to `graphical`.");
}
})
}
}),
channel: new NamedCommand({
description: "Sets the welcome channel for your server. Type `#` to reference the channel.",
usage: "(<channel mention>)",
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).welcomeChannel = channel.id;
Storage.save();
channel.send(`Successfully set ${channel} as the welcome channel for this server.`);
},
id: "channel",
channel: new Command({
async run({message, channel, guild, author, member, client, args}) {
const result = args[0] as TextChannel;
Storage.getGuild(guild!.id).welcomeChannel = result.id;
Storage.save();
channel.send(`Successfully set this server's welcome channel to ${result}.`);
}
})
}),
message: new NamedCommand({
description:
"Sets a custom welcome message for your server. Use `%user%` as the placeholder for the user.",
usage: "(<message>)",
async run({message, channel, guild, author, member, client, args}) {
Storage.getGuild(guild!.id).welcomeMessage = null;
Storage.save();
channel.send("Reset your server's welcome message to the default.");
},
any: new Command({
async run({message, channel, guild, author, member, client, args}) {
const newMessage = args.join(" ");
Storage.getGuild(guild!.id).welcomeMessage = newMessage;
Storage.save();
channel.send(`Set your server's welcome message to \`${newMessage}\`.`);
}
})
})
}
}),
stream: new NamedCommand({
description: "Set a channel to send stream notifications. Type `#` to reference the channel.",
usage: "(<channel mention>)",
async run({message, channel, guild, author, member, client, args}) {
const targetGuild = Storage.getGuild(guild!.id);
if (targetGuild.streamingChannel) {
targetGuild.streamingChannel = null;
channel.send("Removed your server's stream notifications channel.");
} else {
targetGuild.streamingChannel = channel.id;
channel.send(`Set your server's stream notifications channel to ${channel}.`);
}
Storage.save();
},
id: "channel",
channel: new Command({
async run({message, channel, guild, author, member, client, args}) {
const result = args[0] as TextChannel;
Storage.getGuild(guild!.id).streamingChannel = result.id;
Storage.save();
channel.send(`Successfully set this server's stream notifications channel to ${result}.`);
}
})
2020-12-15 01:44:28 +00:00
})
}
}),
diag: new NamedCommand({
2020-12-15 07:56:09 +00:00
description: 'Requests a debug log with the "info" verbosity level.',
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_SUPPORT,
async run({message, channel, guild, author, member, client, args}) {
channel.send(getLogBuffer("info"));
2020-12-15 01:44:28 +00:00
},
any: new Command({
2020-12-15 07:56:09 +00:00
description: `Select a verbosity to listen to. Available levels: \`[${Object.keys(logs).join(", ")}]\``,
async run({message, channel, guild, author, member, client, args}) {
const type = args[0];
2020-12-15 01:44:28 +00:00
if (type in logs) channel.send(getLogBuffer(type));
2020-12-15 01:44:28 +00:00
else
channel.send(
2020-12-15 01:44:28 +00:00
`Couldn't find a verbosity level named \`${type}\`! The available types are \`[${Object.keys(
logs
).join(", ")}]\`.`
);
}
})
}),
status: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Changes the bot's status.",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_SUPPORT,
async run({message, channel, guild, author, member, client, args}) {
channel.send("Setting status to `online`...");
2020-12-15 01:44:28 +00:00
},
any: new Command({
2020-12-15 07:56:09 +00:00
description: `Select a status to set to. Available statuses: \`[${statuses.join(", ")}]\`.`,
async run({message, channel, guild, author, member, client, args}) {
if (!statuses.includes(args[0])) {
return channel.send("That status doesn't exist!");
} else {
client.user?.setStatus(args[0]);
return channel.send(`Setting status to \`${args[0]}\`...`);
2020-12-15 01:44:28 +00:00
}
}
})
}),
purge: new NamedCommand({
2021-03-30 23:14:15 +00:00
description: "Purges the bot's own messages.",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_SUPPORT,
channelType: CHANNEL_TYPE.GUILD,
async run({message, channel, guild, author, member, client, args}) {
2021-03-30 23:14:15 +00:00
// It's probably better to go through the bot's own messages instead of calling bulkDelete which requires MANAGE_MESSAGES.
if (botHasPermission(guild, Permissions.FLAGS.MANAGE_MESSAGES)) {
message.delete();
const msgs = await channel.messages.fetch({
2021-03-30 23:14:15 +00:00
limit: 100
});
const travMessages = msgs.filter((m) => m.author.id === client.user?.id);
2020-12-15 01:44:28 +00:00
await channel.send(`Found ${travMessages.size} messages to delete.`).then((m) =>
2021-03-30 23:14:15 +00:00
m.delete({
timeout: 5000
})
);
await (channel as TextChannel).bulkDelete(travMessages);
2021-03-30 23:14:15 +00:00
} else {
channel.send(
2021-03-30 23:14:15 +00:00
"This command must be executed in a guild where I have the `MANAGE_MESSAGES` permission."
);
}
2020-12-15 01:44:28 +00:00
}
}),
clear: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Clears a given amount of messages.",
usage: "<amount>",
channelType: CHANNEL_TYPE.GUILD,
2020-12-15 01:44:28 +00:00
run: "A number was not provided.",
number: new Command({
description: "Amount of messages to delete.",
async run({message, channel, guild, author, member, client, args}) {
message.delete();
const fetched = await channel.messages.fetch({
limit: args[0]
2020-12-15 01:44:28 +00:00
});
return await (channel as TextChannel).bulkDelete(fetched);
2020-12-15 01:44:28 +00:00
}
})
}),
eval: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Evaluate code.",
usage: "<code>",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_OWNER,
// You have to bring everything into scope to use them. AFAIK, there isn't a more maintainable way to do this, but at least TS will let you know if anything gets removed.
async run({message, channel, guild, author, member, client, args}) {
2020-12-15 01:44:28 +00:00
try {
const code = args.join(" ");
2020-12-15 01:44:28 +00:00
let evaled = eval(code);
2020-12-15 07:56:09 +00:00
if (typeof evaled !== "string") evaled = require("util").inspect(evaled);
channel.send(clean(evaled), {code: "js", split: true});
2020-12-15 01:44:28 +00:00
} catch (err) {
channel.send(clean(err), {code: "js", split: true});
2020-12-15 01:44:28 +00:00
}
}
}),
nick: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Change the bot's nickname.",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_SUPPORT,
channelType: CHANNEL_TYPE.GUILD,
async run({message, channel, guild, author, member, client, args}) {
const nickName = args.join(" ");
await guild!.me?.setNickname(nickName);
if (botHasPermission(guild, Permissions.FLAGS.MANAGE_MESSAGES)) message.delete({timeout: 5000});
channel.send(`Nickname set to \`${nickName}\``).then((m) => m.delete({timeout: 5000}));
2020-12-15 01:44:28 +00:00
}
}),
guilds: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Shows a list of all guilds the bot is a member of.",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_SUPPORT,
async run({message, channel, guild, author, member, client, args}) {
const guildList = client.guilds.cache.array().map((e) => e.name);
channel.send(guildList, {split: true});
2020-12-15 01:44:28 +00:00
}
}),
activity: new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Set the activity of the bot.",
2021-03-30 10:54:52 +00:00
permission: PERMISSIONS.BOT_SUPPORT,
2020-12-15 01:44:28 +00:00
usage: "<type> <string>",
async run({message, channel, guild, author, member, client, args}) {
client.user?.setActivity(".help", {
2020-12-15 01:44:28 +00:00
type: "LISTENING"
});
channel.send("Activity set to default.");
2020-12-15 01:44:28 +00:00
},
any: new Command({
2020-12-15 07:56:09 +00:00
description: `Select an activity type to set. Available levels: \`[${activities.join(", ")}]\``,
async run({message, channel, guild, author, member, client, args}) {
const type = args[0];
2020-12-15 01:44:28 +00:00
if (activities.includes(type)) {
client.user?.setActivity(args.slice(1).join(" "), {
type: args[0].toUpperCase()
2020-12-15 01:44:28 +00:00
});
channel.send(`Set activity to \`${args[0].toUpperCase()}\` \`${args.slice(1).join(" ")}\`.`);
2020-12-15 01:44:28 +00:00
} else
channel.send(
2020-12-15 01:44:28 +00:00
`Couldn't find an activity type named \`${type}\`! The available types are \`[${activities.join(
", "
)}]\`.`
);
}
})
}),
syslog: new NamedCommand({
description: "Sets up the current channel to receive system logs.",
permission: PERMISSIONS.BOT_ADMIN,
channelType: CHANNEL_TYPE.GUILD,
async run({message, channel, guild, author, member, client, args}) {
Config.systemLogsChannel = channel.id;
Config.save();
channel.send(`Successfully set ${channel} as the system logs channel.`);
},
channel: new Command({
async run({message, channel, guild, author, member, client, args}) {
const targetChannel = args[0] as TextChannel;
Config.systemLogsChannel = targetChannel.id;
Config.save();
channel.send(`Successfully set ${targetChannel} as the system logs channel.`);
}
})
2020-12-15 01:44:28 +00:00
})
}
});