use of io.discloader.discloader.network.json.MessageJSON in project DiscLoader by R3alCl0ud.
the class PrivateChannel method sendMessage.
/*
* (non-Javadoc)
*
* @see io.discloader.discloader.entity.channel.ITextChannel#sendMessage(java.
* lang.String, io.discloader.discloader.core.entity.RichEmbed,
* io.discloader.discloader.entity.sendable.Attachment)
*/
@Override
public CompletableFuture<IMessage> sendMessage(String content, RichEmbed embed, Attachment attachment) {
SendableMessage sendable = new SendableMessage(content, false, embed, attachment, new File(attachment.filename));
CompletableFuture<IMessage> future = new CompletableFuture<>();
CompletableFuture<MessageJSON> mcf = loader.rest.request(Methods.POST, Endpoints.messages(getID()), new RESTOptions(sendable), MessageJSON.class);
mcf.thenAcceptAsync(e -> {
future.complete(new Message<>(this, e));
});
mcf.exceptionally(ex -> {
future.completeExceptionally(ex);
return null;
});
return future;
}
use of io.discloader.discloader.network.json.MessageJSON in project DiscLoader by R3alCl0ud.
the class Message method edit.
/**
* Edit's the messages content. Only possible if the {@link DiscLoader loader}
* is the message's {@link #author}
*
* @param content
* The new content of the message
* @param embed
* The new embed for the message
* @return A Future that completes with {@literal this} when sucessfull
*/
@Override
public CompletableFuture<IMessage> edit(String content, RichEmbed embed) {
CompletableFuture<IMessage> future = new CompletableFuture<>();
if (!canEdit()) {
future.completeExceptionally(new PermissionsException("Only messages author by you can be editted"));
return future;
}
SendableMessage sendable = null;
Attachment attachment = null;
File file = null;
if (embed != null) {
if ((embed.getThumbnail() != null && embed.getThumbnail().resource != null)) {
attachment = new Attachment(embed.getThumbnail().resource.getName());
}
if (embed.getThumbnail() != null && embed.getThumbnail().file != null) {
attachment = new Attachment(embed.getThumbnail().file.getName());
}
if ((embed.getImage() != null && embed.getImage().resource != null)) {
attachment = new Attachment(embed.getImage().resource.getName());
}
if (embed.getImage() != null && embed.getImage().file != null) {
attachment = new Attachment(embed.getImage().file.getName());
}
}
sendable = new SendableMessage(content, false, embed, attachment, file);
CompletableFuture<MessageJSON> cf = loader.rest.request(Methods.PATCH, Endpoints.message(getChannel().getID(), getID()), new RESTOptions(sendable), MessageJSON.class);
cf.thenAcceptAsync(messageJSON -> {
future.complete(EntityBuilder.getChannelFactory().buildMessage(channel, messageJSON));
});
cf.exceptionally(ex -> {
future.completeExceptionally(ex);
return null;
});
return future;
}
use of io.discloader.discloader.network.json.MessageJSON in project DiscLoader by R3alCl0ud.
the class PrivateChannel method sendMessage.
@Override
public CompletableFuture<IMessage> sendMessage(String content, RichEmbed embed, File file, boolean tts) {
Attachment attachment = file == null ? null : new Attachment(file.getName());
SendableMessage sendable = new SendableMessage(content, tts, embed, attachment, file);
CompletableFuture<IMessage> future = new CompletableFuture<>();
CompletableFuture<MessageJSON> mcf = loader.rest.request(Methods.POST, Endpoints.messages(getID()), new RESTOptions(sendable), MessageJSON.class);
mcf.thenAcceptAsync(e -> {
future.complete(new Message<>(this, e));
});
mcf.exceptionally(ex -> {
future.completeExceptionally(ex);
return null;
});
return future;
}
use of io.discloader.discloader.network.json.MessageJSON in project DiscLoader by R3alCl0ud.
the class PrivateChannel method sendMessage.
@Override
public CompletableFuture<IMessage> sendMessage(String content, RichEmbed embed, Resource resource, boolean tts) {
Attachment attachment = resource == null ? null : new Attachment(resource.getFileName());
SendableMessage sendable = new SendableMessage(content, tts, embed, attachment, resource);
CompletableFuture<IMessage> future = new CompletableFuture<>();
CompletableFuture<MessageJSON> mcf = loader.rest.request(Methods.POST, Endpoints.messages(getID()), new RESTOptions(sendable), MessageJSON.class);
mcf.thenAcceptAsync(e -> {
future.complete(new Message<>(this, e));
});
mcf.exceptionally(ex -> {
future.completeExceptionally(ex);
return null;
});
return future;
}
use of io.discloader.discloader.network.json.MessageJSON in project DiscLoader by R3alCl0ud.
the class TextChannel method sendMessage.
@Override
public CompletableFuture<IMessage> sendMessage(String content, RichEmbed embed, Attachment attachment, boolean tts) {
CompletableFuture<IMessage> future = new CompletableFuture<>();
File file = attachment == null ? null : new File(attachment.filename);
SendableMessage sendable = new SendableMessage(content, tts, embed, attachment, file);
CompletableFuture<MessageJSON> mcf = loader.rest.request(Methods.POST, Endpoints.messages(getID()), new RESTOptions(sendable), MessageJSON.class);
mcf.thenAcceptAsync(e -> {
future.complete(new Message<>(this, e));
});
mcf.exceptionally(ex -> {
future.completeExceptionally(ex);
return null;
});
return future;
}
Aggregations