use of net.kodehawa.mantarobot.db.entities.DBGuild in project MantaroBot by Mantaro.
the class AudioLoader method playlistLoaded.
@Override
public void playlistLoaded(AudioPlaylist playlist) {
if (playlist.isSearchResult()) {
if (!skipSelection)
onSearch(playlist);
else
loadSingle(playlist.getTracks().get(0), false);
return;
}
try {
int i = 0;
for (AudioTrack track : playlist.getTracks()) {
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (guildData.getMusicQueueSizeLimit() != null) {
if (i < guildData.getMusicQueueSizeLimit()) {
loadSingle(track, true);
} else {
event.getChannel().sendMessage(String.format(":warning: The queue you added had more than %d songs, so we added songs until this limit and ignored the rest.", guildData.getMusicQueueSizeLimit())).queue();
break;
}
} else {
if (i > MAX_QUEUE_LENGTH && !dbGuild.isPremium()) {
event.getChannel().sendMessage(":warning: The queue you added had more than " + MAX_QUEUE_LENGTH + " songs, so we added songs until this limit and ignored the rest.").queue();
// stop adding songs
break;
} else {
loadSingle(track, true);
}
}
i++;
}
event.getChannel().sendMessage(String.format("%sAdded **%d songs** to queue on playlist: **%s** *(%s)*", EmoteReference.CORRECT, i, playlist.getName(), Utils.getDurationMinutes(playlist.getTracks().stream().mapToLong(temp -> temp.getInfo().length).sum()))).queue();
} catch (Exception e) {
SentryHelper.captureExceptionContext("Cannot load playlist. I guess something broke pretty hard. Please check", e, this.getClass(), "Music Loader");
}
}
use of net.kodehawa.mantarobot.db.entities.DBGuild in project MantaroBot by Mantaro.
the class MantaroListener method onUserLeave.
private void onUserLeave(GuildMemberLeaveEvent event) {
DBGuild dbg = MantaroData.db().getGuild(event.getGuild());
GuildData data = dbg.getData();
try {
String hour = df.format(new Date(System.currentTimeMillis()));
if (event.getMember().getUser().isBot() && data.isIgnoreBotsWelcomeMessage()) {
return;
}
String logChannel = MantaroData.db().getGuild(event.getGuild()).getData().getGuildLogChannel();
if (logChannel != null) {
TextChannel tc = event.getGuild().getTextChannelById(logChannel);
if (tc != null && tc.canTalk()) {
tc.sendMessage(String.format("`[%s]` \uD83D\uDCE3 `%s#%s` just left `%s` `(User #%d)`", hour, event.getMember().getEffectiveName(), event.getMember().getUser().getDiscriminator(), event.getGuild().getName(), event.getGuild().getMembers().size())).queue();
}
logTotal++;
}
} catch (Exception e) {
SentryHelper.captureExceptionContext("Failed to process leave message!", e, MantaroListener.class, "Join Handler");
}
try {
String leaveChannel = data.getLogJoinLeaveChannel() == null ? data.getLogLeaveChannel() : data.getLogJoinLeaveChannel();
String leaveMessage = data.getLeaveMessage();
sendJoinLeaveMessage(event, leaveMessage, leaveChannel);
MantaroBot.getInstance().getStatsClient().increment("leave_messages");
} catch (Exception e) {
SentryHelper.captureExceptionContext("Failed to send leave message!", e, MantaroListener.class, "Join Handler");
}
}
use of net.kodehawa.mantarobot.db.entities.DBGuild in project MantaroBot by Mantaro.
the class MantaroListener method onMessage.
private void onMessage(GuildMessageReceivedEvent event) {
if (event.getAuthor().isFake())
return;
// Moderation features
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
// link protection
if (guildData.isLinkProtection() && !guildData.getLinkProtectionAllowedChannels().contains(event.getChannel().getId()) && !guildData.getLinkProtectionAllowedUsers().contains(event.getAuthor().getId())) {
if (event.getMember() != null && !event.getMember().hasPermission(Permission.ADMINISTRATOR) && !event.getMember().hasPermission(Permission.MANAGE_SERVER) && hasInvite(event.getJDA(), event.getGuild(), event.getMessage().getContentRaw())) {
Member bot = event.getGuild().getSelfMember();
MantaroBot.getInstance().getStatsClient().increment("links_blocked");
if (bot.hasPermission(event.getChannel(), Permission.MESSAGE_MANAGE) || bot.hasPermission(Permission.ADMINISTRATOR)) {
User author = event.getAuthor();
// Ignore myself.
if (event.getAuthor().getId().equals(event.getJDA().getSelfUser().getId())) {
return;
}
// Ignore log channel.
if (guildData.getGuildLogChannel() != null && event.getChannel().getId().equals(guildData.getGuildLogChannel())) {
return;
}
// Yes, I know the check previously done is redundant, but in case someone decides to change the law of nature, it should do .
event.getMessage().delete().queue();
event.getChannel().sendMessage(EmoteReference.ERROR + "**You cannot advertise here.** Deleted invite link sent by **" + author.getName() + "#" + author.getDiscriminator() + "**.").queue();
} else {
event.getChannel().sendMessage(EmoteReference.ERROR + "I cannot remove the invite link because I don't have permission to delete messages!").queue();
}
}
}
}
use of net.kodehawa.mantarobot.db.entities.DBGuild in project MantaroBot by Mantaro.
the class CommandOptions method onRegister.
@Subscribe
public void onRegister(OptionRegistryEvent e) {
// region disallow
registerOption("server:command:disallow", "Command disallow", "Disallows a command from being triggered at all. Use the command name\n" + "**Example:** `~>opts server command disallow 8ball`", "Disallows a command from being triggered at all.", (event, args) -> {
if (args.length == 0) {
onHelp(event);
return;
}
String commandName = args[0];
if (DefaultCommandProcessor.REGISTRY.commands().get(commandName) == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "No command called " + commandName).queue();
return;
}
if (commandName.equals("opts") || commandName.equals("help")) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You cannot disable the options or the help command.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
guildData.getDisabledCommands().add(commandName);
event.getChannel().sendMessage(EmoteReference.MEGA + "Disabled " + commandName + " on this server.").queue();
dbGuild.saveAsync();
});
// endregion
// region allow
registerOption("server:command:allow", "Command allow", "Allows a command from being triggered. Use the command name\n" + "**Example:** `~>opts server command allow 8ball`", "Allows a command from being triggered.", (event, args) -> {
if (args.length == 0) {
onHelp(event);
return;
}
String commandName = args[0];
if (DefaultCommandProcessor.REGISTRY.commands().get(commandName) == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "No command called " + commandName).queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
guildData.getDisabledCommands().remove(commandName);
event.getChannel().sendMessage(EmoteReference.MEGA + "Enabled " + commandName + " on this server.").queue();
dbGuild.saveAsync();
});
// endregion
// region specific
registerOption("server:command:specific:disallow", "Specific command disallow", "Disallows a command from being triggered at all in a specific channel. Use the channel **name** and command name\n" + "**Example:** `~>opts server command specific disallow general 8ball`", "Disallows a command from being triggered at all in a specific channel.", (event, args) -> {
if (args.length == 0) {
onHelp(event);
return;
}
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify the channel name and the command to disallow!").queue();
return;
}
String channelName = args[0];
String commandName = args[1];
if (DefaultCommandProcessor.REGISTRY.commands().get(commandName) == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "No command called " + commandName).queue();
return;
}
if (commandName.equals("opts") || commandName.equals("help")) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You cannot disable the options or the help command.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
TextChannel channel = Utils.findChannel(event, channelName);
if (channel == null)
return;
String id = channel.getId();
guildData.getChannelSpecificDisabledCommands().computeIfAbsent(id, k -> new ArrayList<>());
guildData.getChannelSpecificDisabledCommands().get(id).add(commandName);
event.getChannel().sendMessage(EmoteReference.MEGA + "Disabled " + commandName + " on channel #" + channel.getName() + ".").queue();
dbGuild.saveAsync();
});
registerOption("server:command:specific:allow", "Specific command allow", "Re-allows a command from being triggered in a specific channel. Use the channel **name** and command name\n" + "**Example:** `~>opts server command specific allow general 8ball`", "Re-allows a command from being triggered in a specific channel.", ((event, args) -> {
if (args.length == 0) {
onHelp(event);
return;
}
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify the channel name and the command to disallow!").queue();
return;
}
String channelName = args[0];
String commandName = args[1];
if (DefaultCommandProcessor.REGISTRY.commands().get(commandName) == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "No command called " + commandName).queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
TextChannel channel = Utils.findChannel(event, channelName);
if (channel == null)
return;
String id = channel.getId();
guildData.getChannelSpecificDisabledCommands().computeIfAbsent(id, k -> new ArrayList<>());
guildData.getChannelSpecificDisabledCommands().get(id).remove(commandName);
event.getChannel().sendMessage(EmoteReference.MEGA + "Enabled " + commandName + " on channel #" + channel.getName() + ".").queue();
dbGuild.saveAsync();
}));
// endregion
// region channel
// region disallow
registerOption("server:channel:disallow", "Channel disallow", "Disallows a channel from commands. Use the channel **name**\n" + "**Example:** `~>opts server channel disallow general`", "Disallows a channel from commands.", (event, args) -> {
if (args.length == 0) {
onHelp(event);
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (args[0].equals("*")) {
Set<String> allChannelsMinusCurrent = event.getGuild().getTextChannels().stream().filter(textChannel -> textChannel.getId().equals(event.getChannel().getId())).map(ISnowflake::getId).collect(Collectors.toSet());
guildData.getDisabledChannels().addAll(allChannelsMinusCurrent);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Disallowed all channels except the current one. " + "You can start allowing channels one by one again with `opts server channel allow` from **this** channel. " + "You can disallow this channel later if you so desire.").queue();
return;
}
if ((guildData.getDisabledChannels().size() + 1) >= event.getGuild().getTextChannels().size()) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You cannot disable more channels since the bot wouldn't be able to talk otherwise :<").queue();
return;
}
Consumer<TextChannel> consumer = textChannel -> {
guildData.getDisabledChannels().add(textChannel.getId());
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.OK + "Channel " + textChannel.getAsMention() + " will not longer listen to commands").queue();
};
TextChannel channel = Utils.findChannelSelect(event, args[0], consumer);
if (channel != null) {
consumer.accept(channel);
}
});
// endregion
// region allow
registerOption("server:channel:allow", "Channel allow", "Allows a channel from commands. Use the channel **name**\n" + "**Example:** `~>opts server channel allow general`", "Re-allows a channel from commands.", (event, args) -> {
if (args.length == 0) {
onHelp(event);
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (args[0].equals("*")) {
guildData.getDisabledChannels().clear();
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "All channels are allowed now.").queue();
return;
}
Consumer<TextChannel> consumer = textChannel -> {
guildData.getDisabledChannels().remove(textChannel.getId());
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.OK + "Channel " + textChannel.getAsMention() + " will now listen to commands").queue();
};
TextChannel channel = Utils.findChannelSelect(event, args[0], consumer);
if (channel != null) {
consumer.accept(channel);
}
});
// endregion
// endregion
// region category
registerOption("category:disable", "Disable categories", "Disables a specified category.\n" + "If a non-valid category it's specified, it will display a list of valid categories\n" + "You need the category name, for example ` ~>opts category disable Action`", "Disables a specified category", (event, args) -> {
if (args.length == 0) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify a category to disable.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
Category toDisable = Category.lookupFromString(args[0]);
if (toDisable == null) {
AtomicInteger at = new AtomicInteger();
event.getChannel().sendMessage(EmoteReference.ERROR + "You entered a invalid category. A list of valid categories to disable (case-insensitive) will be shown below" + "```md\n" + Category.getAllNames().stream().map(name -> "#" + at.incrementAndGet() + ". " + name).collect(Collectors.joining("\n")) + "```").queue();
return;
}
if (guildData.getDisabledCategories().contains(toDisable)) {
event.getChannel().sendMessage(EmoteReference.WARNING + "This category is already disabled.").queue();
return;
}
if (toDisable.toString().equals("Moderation")) {
event.getChannel().sendMessage(EmoteReference.WARNING + "You cannot disable moderation since it contains this command.").queue();
return;
}
guildData.getDisabledCategories().add(toDisable);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Disabled category `" + toDisable.toString() + "`").queue();
});
registerOption("category:enable", "Enable categories", "Enables a specified category.\n" + "If a non-valid category it's specified, it will display a list of valid categories\n" + "You need the category name, for example ` ~>opts category enable Action`", "Enables a specified category", (event, args) -> {
if (args.length == 0) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify a category to disable.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
Category toEnable = Category.lookupFromString(args[0]);
if (toEnable == null) {
AtomicInteger at = new AtomicInteger();
event.getChannel().sendMessage(EmoteReference.ERROR + "You entered a invalid category. A list of valid categories to disable (case-insensitive) will be shown below" + "```md\n" + Category.getAllNames().stream().map(name -> "#" + at.incrementAndGet() + ". " + name).collect(Collectors.joining("\n")) + "```").queue();
return;
}
guildData.getDisabledCategories().remove(toEnable);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Enabled category `" + toEnable.toString() + "`").queue();
});
// region specific
registerOption("category:specific:disable", "Disable categories on a specific channel", "Disables a specified category on a specific channel.\n" + "If a non-valid category it's specified, it will display a list of valid categories\n" + "You need the category name and the channel name, for example ` ~>opts category specific disable Action general`", "Disables a specified category", (event, args) -> {
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify a category to disable and the channel where.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
Category toDisable = Category.lookupFromString(args[0]);
String channelName = args[1];
Consumer<TextChannel> consumer = selectedChannel -> {
if (toDisable == null) {
AtomicInteger at = new AtomicInteger();
event.getChannel().sendMessage(EmoteReference.ERROR + "You entered a invalid category. A list of valid categories to disable (case-insensitive) will be shown below" + "```md\n" + Category.getAllNames().stream().map(name -> "#" + at.incrementAndGet() + ". " + name).collect(Collectors.joining("\n")) + "```").queue();
return;
}
guildData.getChannelSpecificDisabledCategories().computeIfAbsent(selectedChannel.getId(), uwu -> new ArrayList<>());
if (guildData.getChannelSpecificDisabledCategories().get(selectedChannel.getId()).contains(toDisable)) {
event.getChannel().sendMessage(EmoteReference.WARNING + "This category is already disabled.").queue();
return;
}
if (toDisable.toString().equals("Moderation")) {
event.getChannel().sendMessage(EmoteReference.WARNING + "You cannot disable moderation since it contains this command.").queue();
return;
}
guildData.getChannelSpecificDisabledCategories().get(selectedChannel.getId()).add(toDisable);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Disabled category `" + toDisable.toString() + "` on channel " + selectedChannel.getAsMention()).queue();
};
TextChannel channel = Utils.findChannelSelect(event, channelName, consumer);
if (channel != null) {
consumer.accept(channel);
}
});
registerOption("category:specific:enable", "Enable categories on a specific channel", "Enables a specified category on a specific channel.\n" + "If a non-valid category it's specified, it will display a list of valid categories\n" + "You need the category name and the channel name, for example ` ~>opts category specific enable Action general`", "Enables a specified category", (event, args) -> {
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify a category to disable and the channel where.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
Category toEnable = Category.lookupFromString(args[0]);
String channelName = args[1];
Consumer<TextChannel> consumer = selectedChannel -> {
if (toEnable == null) {
AtomicInteger at = new AtomicInteger();
event.getChannel().sendMessage(EmoteReference.ERROR + "You entered a invalid category. A list of valid categories to disable (case-insensitive) will be shown below" + "```md\n" + Category.getAllNames().stream().map(name -> "#" + at.incrementAndGet() + ". " + name).collect(Collectors.joining("\n")) + "```").queue();
return;
}
if (selectedChannel == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "That's not a valid channel!").queue();
return;
}
List l = guildData.getChannelSpecificDisabledCategories().computeIfAbsent(selectedChannel.getId(), uwu -> new ArrayList<>());
if (l.isEmpty() || !l.contains(toEnable)) {
event.getChannel().sendMessage(EmoteReference.THINKING + "This category wasn't disabled?").queue();
return;
}
guildData.getChannelSpecificDisabledCategories().get(selectedChannel.getId()).remove(toEnable);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Enabled category `" + toEnable.toString() + "` on channel " + selectedChannel.getAsMention()).queue();
};
TextChannel channel = Utils.findChannelSelect(event, channelName, consumer);
if (channel != null) {
consumer.accept(channel);
}
});
// endregion
// endregion
registerOption("server:role:specific:disallow", "Disallows a role from executing an specific command", "Disallows a role from executing an specific command\n" + "This command takes the command to disallow and the role name afterwards. If the role name contains spaces, wrap it in quotes \"like this\"\n" + "Example: `~>opts server role specific disallow daily Member`", "Disallows a role from executing an specific command", (event, args) -> {
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need the role and the command to disallow!").queue();
return;
}
String commandDisallow = args[0];
String roleDisallow = args[1];
Consumer<Role> consumer = role -> {
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (!DefaultCommandProcessor.REGISTRY.commands().containsKey(commandDisallow)) {
event.getChannel().sendMessage(EmoteReference.ERROR + "That command doesn't exist!").queue();
return;
}
if (commandDisallow.equals("opts") || commandDisallow.equals("help")) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You cannot disable the options or the help command.").queue();
return;
}
guildData.getRoleSpecificDisabledCommands().computeIfAbsent(role.getId(), key -> new ArrayList<>());
if (guildData.getRoleSpecificDisabledCommands().get(role.getId()).contains(commandDisallow)) {
event.getChannel().sendMessage(EmoteReference.ERROR + "This command was already disabled for the specified role.").queue();
return;
}
guildData.getRoleSpecificDisabledCommands().get(role.getId()).add(commandDisallow);
dbGuild.save();
event.getChannel().sendMessage(String.format("%sSuccessfully restricted command `%s` for role `%s`", EmoteReference.CORRECT, commandDisallow, role.getName())).queue();
};
Role role = Utils.findRoleSelect(event, roleDisallow, consumer);
if (role != null) {
consumer.accept(role);
}
});
registerOption("server:role:specific:allow", "Allows a role from executing an specific command", "Allows a role from executing an specific command\n" + "This command takes either the role name, id or mention and the command to disallow afterwards. If the role name contains spaces, wrap it in quotes \"like this\"\n" + "Example: `~>opts server role specific allow daily Member`", "Allows a role from executing an specific command", (event, args) -> {
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need the role and the command to allow!").queue();
return;
}
String commandAllow = args[0];
String roleAllow = args[1];
Consumer<Role> consumer = role -> {
if (role == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "That's not a valid role!").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (!DefaultCommandProcessor.REGISTRY.commands().containsKey(commandAllow)) {
event.getChannel().sendMessage(EmoteReference.ERROR + "That command doesn't exist!").queue();
return;
}
List l = guildData.getRoleSpecificDisabledCommands().computeIfAbsent(role.getId(), key -> new ArrayList<>());
if (l.isEmpty() || !l.contains(commandAllow)) {
event.getChannel().sendMessage(EmoteReference.THINKING + "This command wasn't disabled for this role?").queue();
return;
}
guildData.getRoleSpecificDisabledCommands().get(role.getId()).remove(commandAllow);
dbGuild.save();
event.getChannel().sendMessage(String.format("%sSuccessfully un-restricted command `%s` for role `%s`", EmoteReference.CORRECT, commandAllow, role.getName())).queue();
};
Role role = Utils.findRoleSelect(event, roleAllow, consumer);
if (role != null) {
consumer.accept(role);
}
});
registerOption("category:role:specific:disable", "Disables a role from executing commands in an specified category.", "Disables a role from executing commands in an specified category\n" + "This command takes the category name and the role to disable afterwards. If the role name contains spaces, wrap it in quotes \"like this\"\n" + "Example: `~>opts category role specific disable Currency Member`", "Disables a role from executing commands in an specified category.", (event, args) -> {
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify a category to disable and the role to.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
Category toDisable = Category.lookupFromString(args[0]);
String roleName = args[1];
Consumer<Role> consumer = role -> {
if (toDisable == null) {
AtomicInteger at = new AtomicInteger();
event.getChannel().sendMessage(EmoteReference.ERROR + "You entered a invalid category. A list of valid categories to disable (case-insensitive) will be shown below" + "```md\n" + Category.getAllNames().stream().map(name -> "#" + at.incrementAndGet() + ". " + name).collect(Collectors.joining("\n")) + "```").queue();
return;
}
guildData.getRoleSpecificDisabledCategories().computeIfAbsent(role.getId(), cat -> new ArrayList<>());
if (guildData.getRoleSpecificDisabledCategories().get(role.getId()).contains(toDisable)) {
event.getChannel().sendMessage(EmoteReference.WARNING + "This category is already disabled.").queue();
return;
}
if (toDisable.toString().equals("Moderation")) {
event.getChannel().sendMessage(EmoteReference.WARNING + "You cannot disable moderation since it contains this command.").queue();
return;
}
guildData.getRoleSpecificDisabledCategories().get(role.getId()).add(toDisable);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Disabled category `" + toDisable.toString() + "` for role " + role.getName()).queue();
};
Role role = Utils.findRoleSelect(event, roleName, consumer);
if (role != null) {
consumer.accept(role);
}
});
registerOption("category:role:specific:enable", "Enables a role from executing commands in an specified category.", "Enables a role from executing commands in an specified category\n" + "This command takes the category name and the role to enable afterwards. If the role name contains spaces, wrap it in quotes \"like this\"\n" + "Example: `~>opts category role specific enable Currency Member`", "Enables a role from executing commands in an specified category.", (event, args) -> {
if (args.length < 2) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify a category to disable and the channel where.").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
Category toEnable = Category.lookupFromString(args[0]);
String roleName = args[1];
Consumer<Role> consumer = role -> {
if (toEnable == null) {
AtomicInteger at = new AtomicInteger();
event.getChannel().sendMessage(EmoteReference.ERROR + "You entered a invalid category. A list of valid categories to disable (case-insensitive) will be shown below" + "```md\n" + Category.getAllNames().stream().map(name -> "#" + at.incrementAndGet() + ". " + name).collect(Collectors.joining("\n")) + "```").queue();
return;
}
if (role == null) {
event.getChannel().sendMessage(EmoteReference.ERROR + "That's not a valid role!").queue();
return;
}
List l = guildData.getRoleSpecificDisabledCategories().computeIfAbsent(role.getId(), cat -> new ArrayList<>());
if (l.isEmpty() || !l.contains(toEnable)) {
event.getChannel().sendMessage(EmoteReference.THINKING + "This category wasn't disabled?").queue();
return;
}
guildData.getRoleSpecificDisabledCategories().get(role.getId()).remove(toEnable);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Enabled category `" + toEnable.toString() + "` for role " + role.getName()).queue();
};
Role role = Utils.findRoleSelect(event, roleName, consumer);
if (role != null) {
consumer.accept(role);
}
});
}
use of net.kodehawa.mantarobot.db.entities.DBGuild in project MantaroBot by Mantaro.
the class GeneralOptions method onRegistry.
@Subscribe
public void onRegistry(OptionRegistryEvent e) {
registerOption("lobby:reset", "Lobby reset", "Fixes stuck game/poll/operations session.", event -> {
GameLobby.LOBBYS.remove(event.getChannel());
Poll.getRunningPolls().remove(event.getChannel().getId());
Future<Void> stuck = InteractiveOperations.get(event.getChannel());
if (stuck != null)
stuck.cancel(true);
event.getChannel().sendMessage(EmoteReference.CORRECT + "Reset the lobby correctly.").queue();
});
registerOption("modlog:blacklist", "Modlog blacklist", "Prevents an user from appearing in modlogs.\n" + "You need the user mention.\n" + "Example: ~>opts modlog blacklist @user", "Prevents an user from appearing in modlogs", event -> {
List<User> mentioned = event.getMessage().getMentionedUsers();
if (mentioned.isEmpty()) {
event.getChannel().sendMessage(EmoteReference.ERROR + "**You need to specify the users to locally blacklist from mod logs.**").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
List<String> toBlackList = mentioned.stream().map(ISnowflake::getId).collect(Collectors.toList());
String blacklisted = mentioned.stream().map(user -> user.getName() + "#" + user.getDiscriminator()).collect(Collectors.joining(","));
guildData.getModlogBlacklistedPeople().addAll(toBlackList);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Locally blacklisted users from mod-log: **" + blacklisted + "**").queue();
});
registerOption("modlog:whitelist", "Modlog whitelist", "Allows an user from appearing in modlogs.\n" + "You need the user mention.\n" + "Example: ~>opts modlog whitelist @user", "Allows an user from appearing in modlogs (everyone by default)", event -> {
List<User> mentioned = event.getMessage().getMentionedUsers();
if (mentioned.isEmpty()) {
event.getChannel().sendMessage(EmoteReference.ERROR + "**You need to specify the users to locally whitelist from mod logs.**").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
List<String> toUnBlacklist = mentioned.stream().map(ISnowflake::getId).collect(Collectors.toList());
String unBlacklisted = mentioned.stream().map(user -> user.getName() + "#" + user.getDiscriminator()).collect(Collectors.joining(","));
guildData.getModlogBlacklistedPeople().removeAll(toUnBlacklist);
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Locally un-blacklisted users from mod-log: **" + unBlacklisted + "**").queue();
});
registerOption("linkprotection:toggle", "Link-protection toggle", "Toggles anti-link protection.", event -> {
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
boolean toggler = guildData.isLinkProtection();
guildData.setLinkProtection(!toggler);
event.getChannel().sendMessage(EmoteReference.CORRECT + "Set link protection to " + "`" + !toggler + "`").queue();
dbGuild.save();
});
registerOption("linkprotection:channel:allow", "Link-protection channel allow", "Allows the posting of invites on a channel.\n" + "You need the channel name.\n" + "Example: ~>opts linkprotection channel allow promote-here", "Allows the posting of invites on a channel.", (event, args) -> {
if (args.length == 0) {
OptsCmd.onHelp(event);
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
String channelName = args[0];
Consumer<TextChannel> consumer = tc -> {
guildData.getLinkProtectionAllowedChannels().add(tc.getId());
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.OK + tc.getAsMention() + " can now be used to send discord invites.").queue();
};
TextChannel channel = Utils.findChannelSelect(event, channelName, consumer);
if (channel != null) {
consumer.accept(channel);
}
});
registerOption("linkprotection:channel:disallow", "Link-protection channel disallow", "Disallows the posting of invites on a channel.\n" + "You need the channel name.\n" + "Example: ~>opts linkprotection channel disallow general", "Disallows the posting of invites on a channel (every channel by default)", (event, args) -> {
if (args.length == 0) {
OptsCmd.onHelp(event);
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
String channelName = args[0];
Consumer<TextChannel> consumer = tc -> {
guildData.getLinkProtectionAllowedChannels().remove(tc.getId());
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.OK + tc.getAsMention() + " cannot longer be used to send discord invites.").queue();
};
TextChannel channel = Utils.findChannelSelect(event, channelName, consumer);
if (channel != null) {
consumer.accept(channel);
}
});
registerOption("linkprotection:user:allow", "Link-protection user whitelist", "Allows an user to post invites.\n" + "You need to mention the user.", "Allows an user to post invites.", (event, args) -> {
if (args.length == 0) {
OptsCmd.onHelp(event);
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (event.getMessage().getMentionedUsers().isEmpty()) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to mention the user to whitelist from posting invites!").queue();
return;
}
User toWhiteList = event.getMessage().getMentionedUsers().get(0);
guildData.getLinkProtectionAllowedUsers().add(toWhiteList.getId());
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Successfully whitelisted " + toWhiteList.getName() + "#" + toWhiteList.getDiscriminator() + " from posting discord invites.").queue();
});
registerOption("linkprotection:user:disallow", "Link-protection user blacklist", "Disallows an user to post invites.\n" + "You need to mention the user. (This is the default behaviour)", "Allows an user to post invites (This is the default behaviour)", (event, args) -> {
if (args.length == 0) {
OptsCmd.onHelp(event);
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
if (event.getMessage().getMentionedUsers().isEmpty()) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to mention the user to blacklist from posting invites!").queue();
return;
}
User toBlackList = event.getMessage().getMentionedUsers().get(0);
if (!guildData.getLinkProtectionAllowedUsers().contains(toBlackList.getId())) {
event.getChannel().sendMessage(EmoteReference.ERROR + "This user isn't in the invite posting whitelist!").queue();
return;
}
guildData.getLinkProtectionAllowedUsers().remove(toBlackList.getId());
dbGuild.save();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Successfully blacklisted " + toBlackList.getName() + "#" + toBlackList.getDiscriminator() + " from posting discord invites.").queue();
});
registerOption("imageboard:tags:blacklist:add", "Blacklist imageboard tags", "Blacklists the specified imageboard tag from being looked up.", "Blacklist imageboard tags", (event, args) -> {
if (args.length == 0) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify at least a tag to blacklist!").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
for (String tag : args) {
guildData.getBlackListedImageTags().add(tag.toLowerCase());
}
dbGuild.saveAsync();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Successfully blacklisted " + String.join(" ,", args) + " from image search.").queue();
});
registerOption("imageboard:tags:blacklist:remove", "Un-blacklist imageboard tags", "Un-blacklist the specified imageboard tag from being looked up.", "Un-blacklist imageboard tags", (event, args) -> {
if (args.length == 0) {
event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify at least a tag to un-blacklist!").queue();
return;
}
DBGuild dbGuild = MantaroData.db().getGuild(event.getGuild());
GuildData guildData = dbGuild.getData();
for (String tag : args) {
guildData.getBlackListedImageTags().remove(tag.toLowerCase());
}
dbGuild.saveAsync();
event.getChannel().sendMessage(EmoteReference.CORRECT + "Successfully un-blacklisted " + String.join(" ,", args) + " from image search.").queue();
});
}
Aggregations