Search in sources :

Example 16 with ChannelJSON

use of io.discloader.discloader.network.json.ChannelJSON in project DiscLoader by R3alCl0ud.

the class CreateDMChannel method complete.

public void complete(String packet, Throwable ex) {
    if (ex != null) {
        future.completeExceptionally(ex);
        return;
    }
    ChannelJSON data = gson.fromJson(packet, ChannelJSON.class);
    future.complete((IPrivateChannel) EntityRegistry.addChannel(data, loader));
}
Also used : ChannelJSON(io.discloader.discloader.network.json.ChannelJSON)

Example 17 with ChannelJSON

use of io.discloader.discloader.network.json.ChannelJSON in project DiscLoader by R3alCl0ud.

the class CreateVoiceChannel method complete.

public void complete(String packet, Throwable ex) {
    if (ex != null) {
        future.completeExceptionally(ex);
        return;
    }
    ChannelJSON data = gson.fromJson(packet, ChannelJSON.class);
    future.complete((IGuildVoiceChannel) EntityRegistry.addChannel(data, loader));
}
Also used : ChannelJSON(io.discloader.discloader.network.json.ChannelJSON)

Example 18 with ChannelJSON

use of io.discloader.discloader.network.json.ChannelJSON in project DiscLoader by R3alCl0ud.

the class ChannelCategory method createTextChannel.

@Override
public CompletableFuture<IGuildTextChannel> createTextChannel(String name) {
    CompletableFuture<IGuildTextChannel> future = new CompletableFuture<>();
    JSONObject data = new JSONObject().put("parent_id", SnowflakeUtil.asString(this)).put("name", name).put("type", 0);
    // System.out.println(data.toString());
    CompletableFuture<ChannelJSON> cf = loader.rest.request(Methods.POST, Endpoints.guildChannels(getGuild().getID()), new RESTOptions(data), ChannelJSON.class);
    cf.thenAcceptAsync(channelJSON -> {
        if (channelJSON != null) {
            IGuildTextChannel channel = (IGuildTextChannel) EntityBuilder.getChannelFactory().buildChannel(channelJSON, getLoader(), getGuild(), false);
            if (channel != null)
                future.complete(channel);
        }
    });
    cf.exceptionally(ex -> {
        future.completeExceptionally(ex);
        return null;
    });
    return future;
}
Also used : ChannelJSON(io.discloader.discloader.network.json.ChannelJSON) CompletableFuture(java.util.concurrent.CompletableFuture) JSONObject(org.json.JSONObject) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) IGuildTextChannel(io.discloader.discloader.entity.channel.IGuildTextChannel)

Example 19 with ChannelJSON

use of io.discloader.discloader.network.json.ChannelJSON in project DiscLoader by R3alCl0ud.

the class ChannelCategory method createChannel.

@Override
public CompletableFuture<IGuildChannel> createChannel(String name, ChannelTypes type, IOverwrite... overwrites) {
    CompletableFuture<IGuildChannel> future = new CompletableFuture<>();
    // JSONObject data = new JSONObject().put("parent_id",
    // SnowflakeUtil.asString(this)).put("name", name).put("type", type.toInt()).;
    ChannelPayload data = new ChannelPayload(name, type, overwrites);
    CompletableFuture<ChannelJSON> cf = loader.rest.request(Methods.POST, Endpoints.guildChannels(getGuild().getID()), new RESTOptions(data), ChannelJSON.class);
    cf.thenAcceptAsync(channelJSON -> {
        if (channelJSON != null) {
            IGuildChannel channel = (IGuildChannel) EntityBuilder.getChannelFactory().buildChannel(channelJSON, getLoader(), getGuild(), false);
            if (channel != null)
                future.complete(channel);
        }
    });
    cf.exceptionally(ex -> {
        future.completeExceptionally(ex);
        return null;
    });
    return future;
}
Also used : ChannelJSON(io.discloader.discloader.network.json.ChannelJSON) CompletableFuture(java.util.concurrent.CompletableFuture) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) IGuildChannel(io.discloader.discloader.entity.channel.IGuildChannel) ChannelPayload(io.discloader.discloader.network.rest.payloads.ChannelPayload)

Example 20 with ChannelJSON

use of io.discloader.discloader.network.json.ChannelJSON in project DiscLoader by R3alCl0ud.

the class ChannelCategory method createVoiceChannel.

@Override
public CompletableFuture<IGuildVoiceChannel> createVoiceChannel(String name) {
    CompletableFuture<IGuildVoiceChannel> future = new CompletableFuture<>();
    JSONObject data = new JSONObject().put("parent_id", SnowflakeUtil.asString(this)).put("name", name).put("type", 2);
    CompletableFuture<ChannelJSON> cf = loader.rest.request(Methods.POST, Endpoints.guildChannels(getGuild().getID()), new RESTOptions(data), ChannelJSON.class);
    cf.thenAcceptAsync(channelJSON -> {
        if (channelJSON != null) {
            IGuildVoiceChannel channel = (IGuildVoiceChannel) EntityBuilder.getChannelFactory().buildChannel(channelJSON, getLoader(), getGuild(), false);
            if (channel != null)
                future.complete(channel);
        }
    });
    cf.exceptionally(ex -> {
        future.completeExceptionally(ex);
        return null;
    });
    return future;
}
Also used : ChannelJSON(io.discloader.discloader.network.json.ChannelJSON) CompletableFuture(java.util.concurrent.CompletableFuture) JSONObject(org.json.JSONObject) RESTOptions(io.discloader.discloader.network.rest.RESTOptions) IGuildVoiceChannel(io.discloader.discloader.entity.channel.IGuildVoiceChannel)

Aggregations

ChannelJSON (io.discloader.discloader.network.json.ChannelJSON)21 RESTOptions (io.discloader.discloader.network.rest.RESTOptions)13 CompletableFuture (java.util.concurrent.CompletableFuture)13 IGuildTextChannel (io.discloader.discloader.entity.channel.IGuildTextChannel)8 PermissionsException (io.discloader.discloader.common.exceptions.PermissionsException)7 JSONObject (org.json.JSONObject)7 IGuildVoiceChannel (io.discloader.discloader.entity.channel.IGuildVoiceChannel)5 ChannelPayload (io.discloader.discloader.network.rest.payloads.ChannelPayload)5 IGuildChannel (io.discloader.discloader.entity.channel.IGuildChannel)4 IChannel (io.discloader.discloader.entity.channel.IChannel)3 IGuild (io.discloader.discloader.entity.guild.IGuild)3 ChannelCreateEvent (io.discloader.discloader.common.event.channel.ChannelCreateEvent)1 ChannelDeleteEvent (io.discloader.discloader.common.event.channel.ChannelDeleteEvent)1 ChannelUpdateEvent (io.discloader.discloader.common.event.channel.ChannelUpdateEvent)1 GuildChannelUpdateEvent (io.discloader.discloader.common.event.channel.GuildChannelUpdateEvent)1 AccountTypeException (io.discloader.discloader.common.exceptions.AccountTypeException)1 GuildSyncException (io.discloader.discloader.common.exceptions.GuildSyncException)1 MissmatchException (io.discloader.discloader.common.exceptions.MissmatchException)1 UnauthorizedException (io.discloader.discloader.common.exceptions.UnauthorizedException)1 DLUser (io.discloader.discloader.core.entity.user.DLUser)1