
discord4j.rest.entity.RestScheduledEvent Maven / Gradle / Ivy
Show all versions of discord4j-rest Show documentation
/*
* This file is part of Discord4J.
*
* Discord4J is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Discord4J is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Discord4J. If not, see .
*/
package discord4j.rest.entity;
import discord4j.common.util.Snowflake;
import discord4j.discordjson.json.GuildScheduledEventData;
import discord4j.discordjson.json.GuildScheduledEventModifyRequest;
import discord4j.discordjson.json.GuildScheduledEventUserData;
import discord4j.rest.RestClient;
import discord4j.rest.util.PaginationUtil;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import reactor.util.annotation.Nullable;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import java.util.function.Predicate;
/**
* Represents a guild scheduled event within Discord.
*/
public class RestScheduledEvent {
private final RestClient restClient;
private final long guildId;
private final long id;
private RestScheduledEvent(RestClient restClient, long guildId, long id) {
this.restClient = restClient;
this.guildId = guildId;
this.id = id;
}
/**
* Create a {@link RestScheduledEvent} for the given parameters. This method does not perform any API request.
*
* @param restClient The client to make API requests.
* @param guildId The ID of the guild this entity belongs to.
* @param id the ID of this entity.
* @return A {@code RestGuildScheduledEvent} represented by the given parameters.
*/
public static RestScheduledEvent create(RestClient restClient, Snowflake guildId, Snowflake id) {
return new RestScheduledEvent(restClient, guildId.asLong(), id.asLong());
}
static RestScheduledEvent create(RestClient restClient, long guildId, long id) {
return new RestScheduledEvent(restClient, guildId, id);
}
/**
* Returns the ID of the guild this scheduled event belongs to.
*
* @return The ID of the guild this scheduled event belongs to.
*/
public Snowflake getGuildId() {
return Snowflake.of(guildId);
}
/**
* Returns the ID of this scheduled event.
*
* @return The ID of this scheduled event.
*/
public Snowflake getId() {
return Snowflake.of(id);
}
/**
* Return the guild tied to thi role as a REST operations handle.
*
* @return The parent guild for this scheduled event.
*/
public RestGuild guild() {
return RestGuild.create(restClient, guildId);
}
/**
* Requests to edit this event.
*
* @param request A {@link GuildScheduledEventModifyRequest} to parameterize this request.
* @param reason The reason, if present
* @return A {@link Mono} where, upon successful completion, emits the edited {@link GuildScheduledEventData}.
* If an error is received, it is emitted through the {@code Mono}.
*/
public Mono edit(final GuildScheduledEventModifyRequest request, @Nullable String reason) {
return restClient.getGuildService().modifyScheduledEvent(guildId,id, request, reason);
}
/**
* Requests to delete this event while optionally specifying the reason.
*
* @param reason The reason, if present.
* @return A {@link Mono} where, upon successful completion, emits nothing; indicating the event was deleted.
* If an error is received, it is emitted through the {@code Mono}.
*/
public Mono delete(@Nullable final String reason) {
return restClient.getGuildService().deleteScheduledEvent(guildId, id, reason);
}
/**
* Request to retrieve all subscribed users before the specified ID.
*
* The returned {@code Flux} will emit items in reverse-chronological order (newest to oldest). It is
* recommended to limit the emitted items by invoking either {@link Flux#takeWhile(Predicate)} (to retrieve IDs
* within a specified range) or {@link Flux#take(long)} (to retrieve a specific amount of IDs).
*
* The following example will get all users from {@code userId} to {@code myOtherUserId}:
* {@code getSubscribedUsersBefore(userId).takeWhile(user -> user.getId().compareTo(myOtherUserId) >= 0)}
*
* @param userId The ID of the newest user to retrieve.
* @param withMember Whether to optionally include the member object in the returned data (if the user is a member).
* @return A {@link Flux} that continually emits all {@link GuildScheduledEventUserData users} before
* the specified ID. If an error is received, it is emitted through the {@code Flux}.
* @see
*
* Get Guild Scheduled Event Users
*/
public Flux getSubscribedUsersBefore(Snowflake userId, @Nullable Boolean withMember) {
Function