mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
57 lines
2 KiB
TypeScript
57 lines
2 KiB
TypeScript
import { ApiPermissions } from "@shared/apiPermissions";
|
|
import { TextChannel } from "discord.js";
|
|
import { commandTypeHelpers as ct } from "../../../commandTypes";
|
|
import { isStaffPreFilter, sendErrorMessage, sendSuccessMessage } from "../../../pluginUtils";
|
|
import { DBDateFormat, isSnowflake } from "../../../utils";
|
|
import { botControlCmd } from "../types";
|
|
import moment from "moment-timezone";
|
|
|
|
export const AllowServerCmd = botControlCmd({
|
|
trigger: ["allow_server", "allowserver", "add_server", "addserver"],
|
|
permission: null,
|
|
config: {
|
|
preFilters: [isStaffPreFilter],
|
|
},
|
|
|
|
signature: {
|
|
guildId: ct.string(),
|
|
userId: ct.string({ required: false }),
|
|
},
|
|
|
|
async run({ pluginData, message: msg, args }) {
|
|
const existing = await pluginData.state.allowedGuilds.find(args.guildId);
|
|
if (existing) {
|
|
sendErrorMessage(pluginData, msg.channel as TextChannel, "Server is already allowed!");
|
|
return;
|
|
}
|
|
|
|
if (!isSnowflake(args.guildId)) {
|
|
sendErrorMessage(pluginData, msg.channel as TextChannel, "Invalid server ID!");
|
|
return;
|
|
}
|
|
|
|
if (args.userId && !isSnowflake(args.userId)) {
|
|
sendErrorMessage(pluginData, msg.channel as TextChannel, "Invalid user ID!");
|
|
return;
|
|
}
|
|
|
|
await pluginData.state.allowedGuilds.add(args.guildId);
|
|
await pluginData.state.configs.saveNewRevision(`guild-${args.guildId}`, "plugins: {}", msg.author.id);
|
|
|
|
if (args.userId) {
|
|
await pluginData.state.apiPermissionAssignments.addUser(args.guildId, args.userId, [ApiPermissions.ManageAccess]);
|
|
}
|
|
|
|
if (args.userId !== msg.author.id) {
|
|
// Add temporary access to user who added server
|
|
await pluginData.state.apiPermissionAssignments.addUser(
|
|
args.guildId,
|
|
msg.author.id,
|
|
[ApiPermissions.ManageAccess],
|
|
moment.utc().add(1, "hour").format(DBDateFormat),
|
|
);
|
|
}
|
|
|
|
sendSuccessMessage(pluginData, msg.channel as TextChannel, "Server is now allowed to use Zeppelin!");
|
|
},
|
|
});
|