use of club.minnced.discord.webhook.send.WebhookEmbedBuilder in project PurrBot by purrbot-site.
the class ConnectionListener method onDisconnect.
@Override
public void onDisconnect(@NotNull DisconnectEvent event) {
JDA jda = event.getJDA();
WebhookEmbedBuilder embed = new WebhookEmbedBuilder().setColor(0xFF0000).setTitle(new WebhookEmbed.EmbedTitle(Emotes.STATUS_DISCONNECT.getEmote(), null)).addField(new WebhookEmbed.EmbedField(true, "Shard:", String.valueOf(jda.getShardInfo().getShardId()))).addField(new WebhookEmbed.EmbedField(true, "Affected Guilds:", String.valueOf(jda.getGuilds().size()))).setFooter(new WebhookEmbed.EmbedFooter("Disconnected at", null)).setTimestamp(event.getTimeDisconnected());
if ((event.getCloseCode() != null) && (event.getCloseCode().getCode() != 4900))
embed.addField(new WebhookEmbed.EmbedField(false, "Reason:", String.format("```yaml\n" + "Code: %d\n" + "Message: %s\n" + "```", event.getCloseCode().getCode(), event.getCloseCode().getMeaning())));
webhookUtil.sendMsg(jda.getSelfUser().getEffectiveAvatarUrl(), "Disconnected", embed.build());
logger.info("Got disconnected on shard {}. Resume connection...", jda.getShardInfo().getShardId());
}
use of club.minnced.discord.webhook.send.WebhookEmbedBuilder in project PurrBot by purrbot-site.
the class ConnectionListener method onResumed.
@Override
public void onResumed(@NotNull ResumedEvent event) {
JDA jda = event.getJDA();
WebhookEmbed embed = new WebhookEmbedBuilder().setColor(0x00FF00).setTitle(new WebhookEmbed.EmbedTitle(Emotes.STATUS_READY.getEmote(), null)).addField(new WebhookEmbed.EmbedField(true, "Shard:", String.valueOf(jda.getShardInfo().getShardId()))).addField(new WebhookEmbed.EmbedField(true, "Affected Guilds:", String.valueOf(jda.getGuilds().size()))).setFooter(new WebhookEmbed.EmbedFooter("Resumed at", null)).setTimestamp(ZonedDateTime.now()).build();
webhookUtil.sendMsg(jda.getSelfUser().getEffectiveAvatarUrl(), "Resumed session", embed);
logger.info("Connection successfully resumed for shard {}!", jda.getShardInfo().getShardId());
}
use of club.minnced.discord.webhook.send.WebhookEmbedBuilder in project Sx4 by sx4-discord-bot.
the class LoggerHandler method onGuildVoiceJoin.
public void onGuildVoiceJoin(GuildVoiceJoinEvent event) {
Guild guild = event.getGuild();
Member member = event.getMember();
User user = member.getUser();
VoiceChannel channel = event.getChannelJoined();
LoggerEvent loggerEvent = LoggerEvent.MEMBER_VOICE_JOIN;
LoggerContext loggerContext = new LoggerContext().setUser(user).setChannel(channel);
WebhookEmbedBuilder embed = new WebhookEmbedBuilder().setDescription(String.format("`%s` just joined the voice channel %s", member.getEffectiveName(), channel.getAsMention())).setColor(this.bot.getConfig().getGreen()).setTimestamp(Instant.now()).setFooter(new EmbedFooter(String.format("User ID: %s", member.getId()), null)).setAuthor(new EmbedAuthor(user.getAsTag(), user.getEffectiveAvatarUrl(), null));
this.bot.getMongo().aggregateLoggers(this.getPipeline(guild.getIdLong())).whenComplete((documents, exception) -> {
if (ExceptionUtility.sendErrorMessage(exception)) {
return;
}
if (documents.isEmpty()) {
return;
}
Document data = documents.get(0);
this.queue(guild, data.getList("loggers", Document.class), loggerEvent, loggerContext, embed.build());
});
}
use of club.minnced.discord.webhook.send.WebhookEmbedBuilder in project Sx4 by sx4-discord-bot.
the class LoggerHandler method handleBulkMessages.
public void handleBulkMessages(TextChannel textChannel, List<String> messageIds, List<Document> loggers, LoggerEvent loggerEvent, User moderator) {
Guild guild = textChannel.getGuild();
for (Document logger : loggers) {
if ((logger.get("events", LoggerEvent.ALL) & loggerEvent.getRaw()) != loggerEvent.getRaw()) {
continue;
}
long channelId = logger.getLong("channelId");
TextChannel channel = guild.getTextChannelById(channelId);
if (channel == null) {
continue;
}
List<Document> entities = logger.getEmbedded(List.of("blacklist", "entities"), Collections.emptyList());
List<WebhookEmbed> embeds = new ArrayList<>();
for (String messageId : messageIds) {
WebhookEmbedBuilder embed = new WebhookEmbedBuilder().setColor(this.bot.getConfig().getRed()).setTimestamp(Instant.now()).setFooter(new EmbedFooter("Message ID: " + messageId, null));
LoggerContext loggerContext = new LoggerContext().setChannel(textChannel);
if (moderator != null) {
loggerContext.setModerator(moderator);
}
String reason = moderator == null ? "in a bulk delete" : "by **" + moderator.getAsTag() + "**";
GuildMessage message = this.bot.getMessageCache().getMessageById(messageId);
if (message == null) {
if (!LoggerUtility.isWhitelisted(entities, loggerEvent, loggerContext)) {
continue;
}
embed.setDescription(String.format("A message sent in %s was deleted %s", textChannel.getAsMention(), reason));
embed.setAuthor(new EmbedAuthor(guild.getName(), guild.getIconUrl(), null));
} else {
User author = message.getAuthor();
loggerContext.setUser(author);
if (!LoggerUtility.isWhitelisted(entities, loggerEvent, loggerContext)) {
continue;
}
embed.setDescription(String.format("The message sent by `%s` in %s was deleted %s", author.getName(), textChannel.getAsMention(), reason));
embed.setAuthor(new EmbedAuthor(author.getAsTag(), author.getEffectiveAvatarUrl(), null));
String content = message.getContent();
if (!content.isBlank()) {
embed.addField(new EmbedField(false, "Message", StringUtility.limit(content, MessageEmbed.VALUE_MAX_LENGTH, "...")));
}
}
embeds.add(embed.build());
}
this.getManager(channelId).queue(channel, logger, embeds);
}
}
use of club.minnced.discord.webhook.send.WebhookEmbedBuilder in project Sx4 by sx4-discord-bot.
the class LoggerHandler method onGuildBan.
public void onGuildBan(GuildBanEvent event) {
Guild guild = event.getGuild();
User user = event.getUser();
LoggerEvent loggerEvent = LoggerEvent.MEMBER_BANNED;
LoggerContext loggerContext = new LoggerContext().setUser(user);
WebhookEmbedBuilder embed = new WebhookEmbedBuilder();
embed.setDescription(String.format("`%s` has been banned", user.getName()));
embed.setColor(this.bot.getConfig().getRed());
embed.setTimestamp(Instant.now());
embed.setAuthor(new EmbedAuthor(user.getAsTag(), user.getEffectiveAvatarUrl(), null));
embed.setFooter(new EmbedFooter(String.format("User ID: %s", user.getId()), null));
this.bot.getMongo().aggregateLoggers(this.getPipeline(guild.getIdLong())).whenComplete((documents, exception) -> {
if (ExceptionUtility.sendErrorMessage(exception)) {
return;
}
if (documents.isEmpty()) {
return;
}
Document data = documents.get(0);
List<Document> loggers = LoggerUtility.getValidLoggers(data.getList("loggers", Document.class), loggerEvent, loggerContext);
if (loggers.isEmpty()) {
return;
}
if (guild.getSelfMember().hasPermission(Permission.VIEW_AUDIT_LOGS)) {
this.retrieveAuditLogsDelayed(guild, ActionType.BAN).whenComplete((logs, auditException) -> {
User moderator = logs == null ? null : logs.stream().filter(e -> Duration.between(e.getTimeCreated(), ZonedDateTime.now(ZoneOffset.UTC)).toSeconds() <= 5).filter(e -> e.getTargetIdLong() == user.getIdLong()).map(AuditLogEntry::getUser).findFirst().orElse(null);
if (moderator != null) {
loggerContext.setModerator(moderator);
embed.setDescription(String.format("`%s` has been banned by **%s**", user.getName(), moderator.getAsTag()));
}
this.queue(guild, loggers, loggerEvent, loggerContext, embed.build());
});
} else {
this.queue(guild, loggers, loggerEvent, loggerContext, embed.build());
}
});
}
Aggregations