use of club.minnced.discord.webhook.send.WebhookEmbed.EmbedAuthor in project InteractiveChat-DiscordSRV-Addon by LOOHP.
the class DiscordMessageContent method toWebhookMessageBuilder.
public WebhookMessageBuilder toWebhookMessageBuilder() {
WebhookEmbedBuilder embed = new WebhookEmbedBuilder().setAuthor(new EmbedAuthor(authorName, authorIconUrl, null)).setColor(color).setThumbnailUrl(thumbnail);
if (description.size() > 0) {
embed.setDescription(description.get(0));
}
if (imageUrl.size() > 0) {
embed.setImageUrl(imageUrl.get(0));
}
if (imageUrl.size() == 1 || description.size() == 1) {
if (footer != null) {
embed.setFooter(new EmbedFooter(footer, footerImageUrl));
}
}
WebhookMessageBuilder webhookMessage = new WebhookMessageBuilder().addEmbeds(embed.build());
for (int i = 1; i < imageUrl.size() || i < description.size(); i++) {
WebhookEmbedBuilder otherEmbed = new WebhookEmbedBuilder().setColor(color);
if (i < imageUrl.size()) {
otherEmbed.setImageUrl(imageUrl.get(i));
}
if (i < description.size()) {
otherEmbed.setDescription(description.get(i));
}
if (!(i + 1 < imageUrl.size() || i + 1 < description.size())) {
if (footer != null) {
otherEmbed.setFooter(new EmbedFooter(footer, footerImageUrl));
}
}
if (!otherEmbed.isEmpty()) {
webhookMessage.addEmbeds(otherEmbed.build());
}
}
for (Entry<String, byte[]> entry : attachments.entrySet()) {
webhookMessage.addFile(entry.getKey(), entry.getValue());
}
return webhookMessage;
}
use of club.minnced.discord.webhook.send.WebhookEmbed.EmbedAuthor in project InteractiveChat-DiscordSRV-Addon by LOOHP.
the class DiscordMessageContent method toWebhookEmbeds.
public List<WebhookEmbed> toWebhookEmbeds() {
List<WebhookEmbed> list = new ArrayList<>();
WebhookEmbedBuilder embed = new WebhookEmbedBuilder().setAuthor(new EmbedAuthor(authorName, authorIconUrl, null)).setColor(color).setThumbnailUrl(thumbnail);
if (description.size() > 0) {
embed.setDescription(description.get(0));
}
if (imageUrl.size() > 0) {
embed.setImageUrl(imageUrl.get(0));
}
if (imageUrl.size() == 1 || description.size() == 1) {
if (footer != null) {
embed.setFooter(new EmbedFooter(footer, footerImageUrl));
}
}
list.add(embed.build());
for (int i = 1; i < imageUrl.size() || i < description.size(); i++) {
WebhookEmbedBuilder otherEmbed = new WebhookEmbedBuilder().setColor(color);
if (i < imageUrl.size()) {
otherEmbed.setImageUrl(imageUrl.get(i));
}
if (i < description.size()) {
otherEmbed.setDescription(description.get(i));
}
if (!(i + 1 < imageUrl.size() || i + 1 < description.size())) {
if (footer != null) {
otherEmbed.setFooter(new EmbedFooter(footer, footerImageUrl));
}
}
if (!otherEmbed.isEmpty()) {
list.add(otherEmbed.build());
}
}
return list;
}
use of club.minnced.discord.webhook.send.WebhookEmbed.EmbedAuthor 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.WebhookEmbed.EmbedAuthor 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.WebhookEmbed.EmbedAuthor 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