use of discord4j.core.event.domain.message.MessageCreateEvent in project KaellyBot by Kaysoro.
the class HelpCommand method request.
@Override
public void request(MessageCreateEvent event, Message message, Matcher m, Language lg) {
String prefix = getPrefixMdEscaped(message);
StringBuilder st = new StringBuilder();
List<String> messages = new ArrayList<>();
boolean argumentFound = m.group(1) != null && m.group(1).replaceAll("^\\s+", "").length() > 0;
for (Command command : CommandManager.getCommands()) if (command.isPublic() && !command.isAdmin() && (!command.isHidden() || argumentFound) && (message.getChannel().block() instanceof PrivateChannel || !command.isForbidden(Guild.getGuild(message.getGuild().block())))) {
if (!argumentFound) {
String helpCmd = command.help(lg, prefix) + "\n";
if (st.length() + helpCmd.length() > Message.MAX_CONTENT_LENGTH) {
messages.add(st.toString());
st.setLength(0);
}
st.append(helpCmd);
} else if (command.getName().equals(m.group(1).trim())) {
st.append(command.helpDetailed(lg, prefix));
break;
}
}
if (st.length() > 0)
messages.add(st.toString());
if (argumentFound && messages.isEmpty())
notFoundCmd.throwException(message, this, lg);
else
for (String msg : messages) message.getChannel().flatMap(chan -> chan.createMessage(msg)).subscribe();
}
use of discord4j.core.event.domain.message.MessageCreateEvent in project KaellyBot by Kaysoro.
the class JobCommand method request.
@Override
protected void request(MessageCreateEvent event, Message message, Matcher m, Language lg) {
String content = m.group(1).trim().replaceAll(",", "");
// Filter Initialisation
Optional<discord4j.core.object.entity.Guild> guild = message.getGuild().blockOptional();
Optional<Member> user = message.getAuthorAsMember().blockOptional();
if (guild.isPresent() && user.isPresent()) {
ServerDofus server = ServerUtils.getDofusServerFrom(Guild.getGuild(guild.get()), message.getChannel().block());
// Concerned user is the author?
if (Pattern.compile("^<@[!|&]?\\d+>").matcher(content).find()) {
content = content.replaceFirst("<@[!|&]?\\d+>", "").trim();
Optional<Snowflake> memberId = message.getUserMentionIds().stream().findFirst();
if (!memberId.isPresent()) {
BasicDiscordException.USER_NEEDED.throwException(message, this, lg);
return;
}
user = guild.get().getMemberById(memberId.get()).blockOptional();
}
// user data consultation
ServerUtils.ServerQuery serverQuery = ServerUtils.getServerDofusFromName(content, lg);
if (!serverQuery.getServersFound().isEmpty() && Pattern.compile("(.+)").matcher(content).matches() || content.isEmpty()) {
if (serverQuery.hasSucceed())
server = serverQuery.getServer();
else if (server == null) {
if (!content.isEmpty())
serverQuery.getExceptions().forEach(e -> e.throwException(message, this, lg, serverQuery.getServersFound()));
else
notFoundServer.throwException(message, this, lg);
return;
}
if (user.isPresent()) {
List<EmbedCreateSpec> embeds = JobUser.getJobsFromUser(user.get(), server, lg);
for (EmbedCreateSpec embed : embeds) message.getChannel().flatMap(chan -> chan.createEmbed(embed)).subscribe();
}
} else // Data recording
if ((m = Pattern.compile("-list|(-all|\\p{L}+(?:\\s+\\p{L}+)*)\\s+(\\d{1,3})(\\s+.+)?").matcher(content)).matches()) {
if (user.isPresent() && message.getAuthor().isPresent() && user.get().getId().equals(message.getAuthor().get().getId())) {
if (!m.group(0).equals("-list")) {
// Data Parsing and exceptions processing
Set<Job> jobs;
StringBuilder found = new StringBuilder();
StringBuilder notFound = new StringBuilder();
StringBuilder tooMuch = new StringBuilder();
if (!m.group(1).equals("-all")) {
jobs = new HashSet<>();
String[] proposals = m.group(1).split("\\s+");
for (String proposal : proposals) if (!proposal.trim().isEmpty()) {
List<Job> tmp = getJob(lg, proposal);
if (tmp.size() == 1) {
jobs.add(tmp.get(0));
found.append(tmp.get(0).getLabel(lg)).append(", ");
} else if (tmp.isEmpty())
notFound.append("*").append(proposal).append("*, ");
else
tooMuch.append("*").append(proposal).append("*, ");
}
} else
jobs = new HashSet<>(Arrays.asList(Job.values()));
// Check existing jobs
if (jobs.isEmpty()) {
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "job.noone"))).subscribe();
return;
}
if (found.length() > 0)
found.setLength(found.length() - 2);
if (notFound.length() > 0)
notFound.setLength(notFound.length() - 2);
if (tooMuch.length() > 0)
tooMuch.setLength(tooMuch.length() - 2);
int level = Integer.parseInt(m.group(2));
if (m.group(3) != null) {
ServerUtils.ServerQuery query = ServerUtils.getServerDofusFromName(m.group(3), lg);
if (serverQuery.hasSucceed())
server = serverQuery.getServer();
else
serverQuery.getExceptions().forEach(e -> e.throwException(message, this, lg, query.getServersFound()));
} else if (server == null) {
notFoundServer.throwException(message, this, lg);
return;
}
for (Job job : jobs) if (JobUser.containsKeys(user.get().getId().asLong(), server, job))
JobUser.get(user.get().getId().asLong(), server, job).get(0).setLevel(level);
else
new JobUser(user.get().getId().asLong(), server, job, level).addToDatabase();
StringBuilder sb = new StringBuilder();
if (jobs.size() < Job.values().length)
sb.append(Translator.getLabel(lg, level > 0 ? "job.save" : "job.reset").replace("{jobs}", found.toString()));
else
sb.append(Translator.getLabel(lg, level > 0 ? "job.all_save" : "job.all_reset"));
if (notFound.length() > 0)
sb.append("\n").append(Translator.getLabel(lg, "job.not_found").replace("{jobs}", notFound.toString()));
if (tooMuch.length() > 0)
sb.append("\n").append(Translator.getLabel(lg, "job.too_much").replace("{jobs}", tooMuch.toString()));
final String CONTENT = sb.toString();
message.getChannel().flatMap(chan -> chan.createMessage(CONTENT)).subscribe();
} else {
String sb = Translator.getLabel(lg, "job.list") + "\n" + getJobsList(lg);
message.getChannel().flatMap(chan -> chan.createMessage(sb)).subscribe();
}
} else
badUse.throwException(message, this, lg);
} else if ((m = Pattern.compile("(?:>\\s*(\\d{1,3})\\s+)?(\\p{L}+(?:\\s+\\p{L}+)*)").matcher(content)).matches()) {
List<String> proposals = new LinkedList<>(Arrays.asList(m.group(2).split("\\s+")));
if (proposals.size() > 1) {
String potentialServer = proposals.get(proposals.size() - 1);
ServerUtils.ServerQuery query = ServerUtils.getServerDofusFromName(potentialServer, lg);
if (query.hasSucceed()) {
server = query.getServer();
proposals.remove(potentialServer);
} else {
query.getExceptions().forEach(e -> e.throwException(message, this, lg, query.getServersFound()));
return;
}
} else if (server == null) {
notFoundServer.throwException(message, this, lg);
return;
}
Set<Job> jobs = new HashSet<>();
for (String proposal : proposals) if (jobs.size() < MAX_JOB_DISPLAY) {
if (!proposal.trim().isEmpty()) {
List<Job> tmp = getJob(lg, proposal);
if (tmp.size() == 1)
jobs.add(tmp.get(0));
}
}
// Check if a job is found
if (jobs.isEmpty()) {
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "job.noone"))).subscribe();
return;
}
int level = -1;
if (m.group(1) != null)
level = Integer.parseInt(m.group(1));
List<EmbedCreateSpec> embeds = JobUser.getJobsFromFilters(guild.get().getMembers().collectList().blockOptional().orElse(Collections.emptyList()), server, jobs, level, guild.get(), lg);
for (EmbedCreateSpec embed : embeds) message.getChannel().flatMap(chan -> chan.createEmbed(embed)).subscribe();
} else
badUse.throwException(message, this, lg);
}
}
use of discord4j.core.event.domain.message.MessageCreateEvent in project KaellyBot by Kaysoro.
the class RSSCommand method request.
@Override
public void request(MessageCreateEvent event, Message message, Matcher m, Language lg) {
// On check si la personne a bien les droits pour exécuter cette commande
if (isUserHasEnoughRights(message)) {
String value = m.group(1);
String guildId = message.getGuild().blockOptional().map(Guild::getId).map(Snowflake::asString).orElse("");
String channelId = message.getChannel().blockOptional().map(MessageChannel::getId).map(Snowflake::asString).orElse("");
if (value.matches("\\s+true") || value.matches("\\s+0") || value.matches("\\s+on")) {
if (!RSSFinder.getRSSFinders().containsKey(channelId)) {
new RSSFinder(guildId, channelId).addToDatabase();
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "rss.request.1").replace("{game.url}", Translator.getLabel(lg, "game.url")))).subscribe();
} else
rssFound.throwException(message, this, lg);
} else if (value.matches("\\s+false") || value.matches("\\s+1") || value.matches("\\s+off"))
if (RSSFinder.getRSSFinders().containsKey(channelId)) {
RSSFinder.getRSSFinders().get(channelId).removeToDatabase();
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "rss.request.2").replace("{game.url}", Translator.getLabel(lg, "game.url")))).subscribe();
} else
rssNotFound.throwException(message, this, lg);
else
badUse.throwException(message, this, lg);
} else
BasicDiscordException.NO_ENOUGH_RIGHTS.throwException(message, this, lg);
}
use of discord4j.core.event.domain.message.MessageCreateEvent in project KaellyBot by Kaysoro.
the class TwitterCommand method request.
@Override
public void request(MessageCreateEvent event, Message message, Matcher m, Language lg) {
// On check si la personne a bien les droits pour exécuter cette commande
if (isUserHasEnoughRights(message)) {
String value = m.group(1);
Long guildId = message.getGuild().blockOptional().map(Guild::getId).map(Snowflake::asLong).orElse(0L);
Long channelId = message.getChannel().blockOptional().map(MessageChannel::getId).map(Snowflake::asLong).orElse(0L);
if (value.matches("\\s+true") || value.matches("\\s+0") || value.matches("\\s+on")) {
if (!TwitterFinder.getTwitterChannels().containsKey(channelId)) {
new TwitterFinder(guildId, channelId).addToDatabase();
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "twitter.request.1").replace("{twitter.name}", Translator.getLabel(lg, "twitter.name")))).subscribe();
} else
twitterFound.throwException(message, this, lg);
} else if (value.matches("\\s+false") || value.matches("\\s+1") || value.matches("\\s+off")) {
if (TwitterFinder.getTwitterChannels().containsKey(channelId)) {
TwitterFinder.getTwitterChannels().get(channelId).removeToDatabase();
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "twitter.request.2").replace("{twitter.name}", Translator.getLabel(lg, "twitter.name")))).subscribe();
} else
twitterNotFound.throwException(message, this, lg);
} else
badUse.throwException(message, this, lg);
} else
BasicDiscordException.NO_ENOUGH_RIGHTS.throwException(message, this, lg);
}
use of discord4j.core.event.domain.message.MessageCreateEvent in project KaellyBot by Kaysoro.
the class CommandCommand method request.
@Override
public void request(MessageCreateEvent event, Message message, Matcher m, Language lg) {
if (isUserHasEnoughRights(message)) {
Guild guild = Guild.getGuild(message.getGuild().block());
List<Command> potentialCmds = new ArrayList<>();
String commandName = m.group(1).trim();
for (Command command : CommandManager.getCommands()) if (command.isPublic() && !command.isAdmin() && command.getName().contains(commandName))
potentialCmds.add(command);
if (potentialCmds.size() == 1) {
Command command = potentialCmds.get(0);
String value = m.group(2);
if (command instanceof CommandCommand) {
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "command.request.1"))).subscribe();
return;
}
if (value.matches("false") || value.matches("1") || value.matches("off")) {
if (!guild.getForbiddenCommands().containsKey(command.getName())) {
new CommandForbidden(command, guild).addToDatabase();
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "command.request.2") + " *" + commandName + "* " + Translator.getLabel(lg, "command.request.3"))).subscribe();
} else
BasicDiscordException.FORBIDDEN_COMMAND_FOUND.throwException(message, this, lg);
} else if (value.matches("true") || value.matches("0") || value.matches("on")) {
if (guild.getForbiddenCommands().containsKey(command.getName())) {
guild.getForbiddenCommands().get(command.getName()).removeToDatabase();
message.getChannel().flatMap(chan -> chan.createMessage(Translator.getLabel(lg, "command.request.2") + " *" + commandName + "* " + Translator.getLabel(lg, "command.request.4"))).subscribe();
} else
BasicDiscordException.FORBIDDEN_COMMAND_NOTFOUND.throwException(message, this, lg);
} else
badUse.throwException(message, this, lg);
} else if (potentialCmds.isEmpty())
notFoundCmd.throwException(message, this, lg);
else
tooMuchCmds.throwException(message, this, lg);
} else
BasicDiscordException.NO_ENOUGH_RIGHTS.throwException(message, this, lg);
}
Aggregations