Search in sources :

Example 1 with IMessage

use of io.discloader.discloader.entity.message.IMessage 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;
}
Also used : CompletableFuture(java.util.concurrent.CompletableFuture) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) MessageJSON(io.discloader.discloader.network.json.MessageJSON) SendableMessage(io.discloader.discloader.entity.sendable.SendableMessage) IMessage(io.discloader.discloader.entity.message.IMessage) File(java.io.File)

Example 2 with IMessage

use of io.discloader.discloader.entity.message.IMessage in project DiscLoader by R3alCl0ud.

the class ExampleCommand method execute.

@Override
public void execute(MessageCreateEvent e) {
    IMessage message = e.getMessage();
    message.getChannel().sendMessage(String.format("Hello %s\nThis is an example command", message.getAuthor().toString()));
}
Also used : IMessage(io.discloader.discloader.entity.message.IMessage)

Example 3 with IMessage

use of io.discloader.discloader.entity.message.IMessage in project DiscLoader by R3alCl0ud.

the class Message method deleteAllReactions.

@Override
public CompletableFuture<IMessage> deleteAllReactions() {
    CompletableFuture<IMessage> future = new CompletableFuture<>();
    if (channel instanceof IGuildChannel) {
        if (!((IGuildChannel) channel).permissionsOf(guild.getCurrentMember()).hasPermission(Permissions.MANAGE_MESSAGES)) {
            future.completeExceptionally(new PermissionsException());
            return future;
        }
    }
    CompletableFuture<Void> cf = loader.rest.request(Methods.DELETE, Endpoints.messageReactions(getChannel().getID(), getID()), new RESTOptions(), Void.class);
    cf.thenAcceptAsync(Null -> {
        future.complete(this);
    });
    cf.exceptionally(ex -> {
        future.completeExceptionally(ex);
        return null;
    });
    return future;
}
Also used : CompletableFuture(java.util.concurrent.CompletableFuture) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) IGuildChannel(io.discloader.discloader.entity.channel.IGuildChannel) IMessage(io.discloader.discloader.entity.message.IMessage) PermissionsException(io.discloader.discloader.common.exceptions.PermissionsException)

Example 4 with IMessage

use of io.discloader.discloader.entity.message.IMessage 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;
}
Also used : CompletableFuture(java.util.concurrent.CompletableFuture) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) MessageJSON(io.discloader.discloader.network.json.MessageJSON) SendableMessage(io.discloader.discloader.entity.sendable.SendableMessage) IMessage(io.discloader.discloader.entity.message.IMessage) Attachment(io.discloader.discloader.entity.sendable.Attachment) IMessageAttachment(io.discloader.discloader.entity.message.IMessageAttachment) File(java.io.File) PermissionsException(io.discloader.discloader.common.exceptions.PermissionsException)

Example 5 with IMessage

use of io.discloader.discloader.entity.message.IMessage 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;
}
Also used : CompletableFuture(java.util.concurrent.CompletableFuture) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) MessageJSON(io.discloader.discloader.network.json.MessageJSON) SendableMessage(io.discloader.discloader.entity.sendable.SendableMessage) IMessage(io.discloader.discloader.entity.message.IMessage) Attachment(io.discloader.discloader.entity.sendable.Attachment)

Aggregations

IMessage (io.discloader.discloader.entity.message.IMessage)34 MessageJSON (io.discloader.discloader.network.json.MessageJSON)21 CompletableFuture (java.util.concurrent.CompletableFuture)20 RESTOptions (io.discloader.discloader.network.rest.RESTOptions)17 SendableMessage (io.discloader.discloader.entity.sendable.SendableMessage)15 File (java.io.File)10 Attachment (io.discloader.discloader.entity.sendable.Attachment)9 ITextChannel (io.discloader.discloader.entity.channel.ITextChannel)6 RichEmbed (io.discloader.discloader.core.entity.message.embed.RichEmbed)4 Message (io.discloader.discloader.core.entity.message.Message)3 IGuildTextChannel (io.discloader.discloader.entity.channel.IGuildTextChannel)3 MessageCreateEvent (io.discloader.discloader.common.event.message.MessageCreateEvent)2 PermissionsException (io.discloader.discloader.common.exceptions.PermissionsException)2 Reaction (io.discloader.discloader.core.entity.message.Reaction)2 IGuildChannel (io.discloader.discloader.entity.channel.IGuildChannel)2 IPrivateChannel (io.discloader.discloader.entity.channel.IPrivateChannel)2 IReaction (io.discloader.discloader.entity.message.IReaction)2 IUser (io.discloader.discloader.entity.user.IUser)2 ReactionJSON (io.discloader.discloader.network.json.ReactionJSON)2 HashMap (java.util.HashMap)2