net.dv8tion.jda.internal.entities.GuildImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDA Show documentation
Show all versions of JDA Show documentation
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
/*
* Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.dv8tion.jda.internal.entities;
import gnu.trove.map.TLongObjectMap;
import gnu.trove.map.hash.TLongObjectHashMap;
import gnu.trove.set.TLongSet;
import net.dv8tion.jda.api.Permission;
import net.dv8tion.jda.api.Region;
import net.dv8tion.jda.api.audio.hooks.ConnectionStatus;
import net.dv8tion.jda.api.entities.*;
import net.dv8tion.jda.api.entities.automod.AutoModRule;
import net.dv8tion.jda.api.entities.automod.build.AutoModRuleData;
import net.dv8tion.jda.api.entities.channel.Channel;
import net.dv8tion.jda.api.entities.channel.ChannelType;
import net.dv8tion.jda.api.entities.channel.attribute.IThreadContainer;
import net.dv8tion.jda.api.entities.channel.concrete.*;
import net.dv8tion.jda.api.entities.channel.middleman.AudioChannel;
import net.dv8tion.jda.api.entities.channel.middleman.GuildChannel;
import net.dv8tion.jda.api.entities.channel.unions.DefaultGuildChannelUnion;
import net.dv8tion.jda.api.entities.emoji.RichCustomEmoji;
import net.dv8tion.jda.api.entities.sticker.GuildSticker;
import net.dv8tion.jda.api.entities.sticker.StandardSticker;
import net.dv8tion.jda.api.entities.sticker.StickerSnowflake;
import net.dv8tion.jda.api.entities.templates.Template;
import net.dv8tion.jda.api.exceptions.HierarchyException;
import net.dv8tion.jda.api.exceptions.InsufficientPermissionException;
import net.dv8tion.jda.api.exceptions.ParsingException;
import net.dv8tion.jda.api.exceptions.PermissionException;
import net.dv8tion.jda.api.interactions.DiscordLocale;
import net.dv8tion.jda.api.interactions.commands.Command;
import net.dv8tion.jda.api.interactions.commands.PrivilegeConfig;
import net.dv8tion.jda.api.interactions.commands.build.CommandData;
import net.dv8tion.jda.api.interactions.commands.privileges.IntegrationPrivilege;
import net.dv8tion.jda.api.managers.*;
import net.dv8tion.jda.api.requests.GatewayIntent;
import net.dv8tion.jda.api.requests.RestAction;
import net.dv8tion.jda.api.requests.Route;
import net.dv8tion.jda.api.requests.restaction.*;
import net.dv8tion.jda.api.requests.restaction.order.CategoryOrderAction;
import net.dv8tion.jda.api.requests.restaction.order.ChannelOrderAction;
import net.dv8tion.jda.api.requests.restaction.order.RoleOrderAction;
import net.dv8tion.jda.api.requests.restaction.pagination.AuditLogPaginationAction;
import net.dv8tion.jda.api.utils.FileUpload;
import net.dv8tion.jda.api.utils.cache.*;
import net.dv8tion.jda.api.utils.concurrent.Task;
import net.dv8tion.jda.api.utils.data.DataArray;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.JDAImpl;
import net.dv8tion.jda.internal.entities.automod.AutoModRuleImpl;
import net.dv8tion.jda.internal.handle.EventCache;
import net.dv8tion.jda.internal.interactions.CommandDataImpl;
import net.dv8tion.jda.internal.interactions.command.CommandImpl;
import net.dv8tion.jda.internal.managers.*;
import net.dv8tion.jda.internal.requests.*;
import net.dv8tion.jda.internal.requests.restaction.*;
import net.dv8tion.jda.internal.requests.restaction.order.CategoryOrderActionImpl;
import net.dv8tion.jda.internal.requests.restaction.order.ChannelOrderActionImpl;
import net.dv8tion.jda.internal.requests.restaction.order.RoleOrderActionImpl;
import net.dv8tion.jda.internal.requests.restaction.pagination.AuditLogPaginationActionImpl;
import net.dv8tion.jda.internal.requests.restaction.pagination.BanPaginationActionImpl;
import net.dv8tion.jda.internal.utils.Checks;
import net.dv8tion.jda.internal.utils.EntityString;
import net.dv8tion.jda.internal.utils.Helpers;
import net.dv8tion.jda.internal.utils.UnlockHook;
import net.dv8tion.jda.internal.utils.cache.AbstractCacheView;
import net.dv8tion.jda.internal.utils.cache.MemberCacheViewImpl;
import net.dv8tion.jda.internal.utils.cache.SnowflakeCacheViewImpl;
import net.dv8tion.jda.internal.utils.cache.SortedSnowflakeCacheViewImpl;
import net.dv8tion.jda.internal.utils.concurrent.task.GatewayTask;
import okhttp3.MediaType;
import okhttp3.MultipartBody;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.time.OffsetDateTime;
import java.time.temporal.TemporalAccessor;
import java.util.*;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import java.util.function.Consumer;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class GuildImpl implements Guild
{
private final long id;
private final JDAImpl api;
private final SortedSnowflakeCacheViewImpl categoryCache = new SortedSnowflakeCacheViewImpl<>(Category.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl scheduledEventCache = new SortedSnowflakeCacheViewImpl<>(ScheduledEvent.class, ScheduledEvent::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl voiceChannelCache = new SortedSnowflakeCacheViewImpl<>(VoiceChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl textChannelCache = new SortedSnowflakeCacheViewImpl<>(TextChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl newsChannelCache = new SortedSnowflakeCacheViewImpl<>(NewsChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl stageChannelCache = new SortedSnowflakeCacheViewImpl<>(StageChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl threadChannelCache = new SortedSnowflakeCacheViewImpl<>(ThreadChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl forumChannelCache = new SortedSnowflakeCacheViewImpl<>(ForumChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl mediaChannelCache = new SortedSnowflakeCacheViewImpl<>(MediaChannel.class, Channel::getName, Comparator.naturalOrder());
private final SortedSnowflakeCacheViewImpl roleCache = new SortedSnowflakeCacheViewImpl<>(Role.class, Role::getName, Comparator.reverseOrder());
private final SnowflakeCacheViewImpl emojicache = new SnowflakeCacheViewImpl<>(RichCustomEmoji.class, RichCustomEmoji::getName);
private final SnowflakeCacheViewImpl stickerCache = new SnowflakeCacheViewImpl<>(GuildSticker.class, GuildSticker::getName);
private final MemberCacheViewImpl memberCache = new MemberCacheViewImpl();
private final CacheView.SimpleCacheView memberPresences;
private CompletableFuture pendingRequestToSpeak;
private Member owner;
private String name;
private String iconId, splashId;
private String vanityCode;
private String description, banner;
private int maxPresences, maxMembers;
private int boostCount;
private long ownerId;
private Set features;
private VoiceChannel afkChannel;
private TextChannel systemChannel;
private TextChannel rulesChannel;
private TextChannel communityUpdatesChannel;
private Role publicRole;
private VerificationLevel verificationLevel = VerificationLevel.UNKNOWN;
private NotificationLevel defaultNotificationLevel = NotificationLevel.UNKNOWN;
private MFALevel mfaLevel = MFALevel.UNKNOWN;
private ExplicitContentLevel explicitContentLevel = ExplicitContentLevel.UNKNOWN;
private NSFWLevel nsfwLevel = NSFWLevel.UNKNOWN;
private Timeout afkTimeout;
private BoostTier boostTier = BoostTier.NONE;
private DiscordLocale preferredLocale = DiscordLocale.ENGLISH_US;
private int memberCount;
private boolean boostProgressBarEnabled;
public GuildImpl(JDAImpl api, long id)
{
this.id = id;
this.api = api;
if (api.getCacheFlags().stream().anyMatch(CacheFlag::isPresence))
memberPresences = new CacheView.SimpleCacheView<>(MemberPresenceImpl.class, null);
else
memberPresences = null;
}
public void invalidate()
{
//Remove everything from global cache
// this prevents some race-conditions for getting audio managers from guilds
SnowflakeCacheViewImpl guildView = getJDA().getGuildsView();
SnowflakeCacheViewImpl stageView = getJDA().getStageChannelView();
SnowflakeCacheViewImpl textView = getJDA().getTextChannelsView();
SnowflakeCacheViewImpl threadView = getJDA().getThreadChannelsView();
SnowflakeCacheViewImpl newsView = getJDA().getNewsChannelView();
SnowflakeCacheViewImpl forumView = getJDA().getForumChannelsView();
SnowflakeCacheViewImpl mediaView = getJDA().getMediaChannelsView();
SnowflakeCacheViewImpl voiceView = getJDA().getVoiceChannelsView();
SnowflakeCacheViewImpl categoryView = getJDA().getCategoriesView();
guildView.remove(id);
try (UnlockHook hook = stageView.writeLock())
{
getStageChannelCache()
.forEachUnordered(chan -> stageView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = textView.writeLock())
{
getTextChannelCache()
.forEachUnordered(chan -> textView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = threadView.writeLock())
{
getThreadChannelsView()
.forEachUnordered(chan -> threadView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = newsView.writeLock())
{
getNewsChannelCache()
.forEachUnordered(chan -> newsView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = forumView.writeLock())
{
getForumChannelCache()
.forEachUnordered(chan -> forumView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = mediaView.writeLock())
{
getMediaChannelsView()
.forEachUnordered(chan -> mediaView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = voiceView.writeLock())
{
getVoiceChannelCache()
.forEachUnordered(chan -> voiceView.getMap().remove(chan.getIdLong()));
}
try (UnlockHook hook = categoryView.writeLock())
{
getCategoryCache()
.forEachUnordered(chan -> categoryView.getMap().remove(chan.getIdLong()));
}
// Clear audio connection
getJDA().getClient().removeAudioConnection(id);
final AbstractCacheView audioManagerView = getJDA().getAudioManagersView();
final AudioManagerImpl manager = (AudioManagerImpl) audioManagerView.get(id); //read-lock access/release
if (manager != null)
manager.closeAudioConnection(ConnectionStatus.DISCONNECTED_REMOVED_FROM_GUILD); //connection-lock access/release
audioManagerView.remove(id); //write-lock access/release
//cleaning up all users that we do not share a guild with anymore
// Anything left in memberIds will be removed from the main userMap
//Use a new HashSet so that we don't actually modify the Member map so it doesn't affect Guild#getMembers for the leave event.
TLongSet memberIds = getMembersView().keySet(); // copies keys
getJDA().getGuildCache().stream()
.map(GuildImpl.class::cast)
.forEach(g -> memberIds.removeAll(g.getMembersView().keySet()));
// Remember, everything left in memberIds is removed from the userMap
SnowflakeCacheViewImpl userView = getJDA().getUsersView();
try (UnlockHook hook = userView.writeLock())
{
long selfId = getJDA().getSelfUser().getIdLong();
memberIds.forEach(memberId -> {
if (memberId == selfId)
return true; // don't remove selfUser from cache
userView.remove(memberId);
getJDA().getEventCache().clear(EventCache.Type.USER, memberId);
return true;
});
}
}
public void uncacheChannel(GuildChannel channel, boolean keepThreads)
{
long id = channel.getIdLong();
switch (channel.getType())
{
case TEXT:
api.getTextChannelsView().remove(id);
this.getTextChannelsView().remove(id);
break;
case NEWS:
api.getNewsChannelView().remove(id);
this.getNewsChannelView().remove(id);
break;
case MEDIA:
api.getMediaChannelsView().remove(id);
this.getMediaChannelsView().remove(id);
break;
case FORUM:
api.getForumChannelsView().remove(id);
this.getForumChannelsView().remove(id);
break;
case VOICE:
api.getVoiceChannelsView().remove(id);
this.getVoiceChannelsView().remove(id);
break;
case STAGE:
api.getStageChannelView().remove(id);
this.getStageChannelsView().remove(id);
break;
case CATEGORY:
api.getCategoriesView().remove(id);
this.getCategoriesView().remove(id);
break;
case GUILD_NEWS_THREAD:
case GUILD_PUBLIC_THREAD:
case GUILD_PRIVATE_THREAD:
api.getThreadChannelsView().remove(id);
this.getThreadChannelsView().remove(id);
break;
}
if (!keepThreads && channel instanceof IThreadContainer)
{
// Remove dangling threads
SortedSnowflakeCacheViewImpl localView = this.getThreadChannelsView();
SnowflakeCacheViewImpl globalView = api.getThreadChannelsView();
Predicate predicate = thread -> channel.equals(thread.getParentChannel());
try (UnlockHook hook1 = localView.writeLock(); UnlockHook hook2 = globalView.writeLock())
{
localView.getMap().valueCollection().removeIf(predicate);
globalView.getMap().valueCollection().removeIf(predicate);
}
}
// This might be too presumptuous, Channel#getParent still returns null regardless if the category is uncached
// if (channel instanceof Category)
// {
// for (Channel chan : guild.getChannels())
// {
// if (!(chan instanceof ICategorizableChannelMixin>))
// continue;
//
// ICategorizableChannelMixin> categoizable = (ICategorizableChannelMixin>) chan;
// if (categoizable.getParentCategoryIdLong() == id)
// categoizable.setParentCategory(0L);
// }
// }
}
@Nonnull
@Override
public RestAction> retrieveCommands(boolean withLocalizations)
{
Route.CompiledRoute route = Route.Interactions.GET_GUILD_COMMANDS
.compile(getJDA().getSelfUser().getApplicationId(), getId())
.withQueryParams("with_localizations", String.valueOf(withLocalizations));
return new RestActionImpl<>(getJDA(), route,
(response, request) ->
response.getArray()
.stream(DataArray::getObject)
.map(json -> new CommandImpl(getJDA(), this, json))
.collect(Collectors.toList()));
}
@Nonnull
@Override
public RestAction retrieveCommandById(@Nonnull String id)
{
Checks.isSnowflake(id);
Route.CompiledRoute route = Route.Interactions.GET_GUILD_COMMAND.compile(getJDA().getSelfUser().getApplicationId(), getId(), id);
return new RestActionImpl<>(getJDA(), route, (response, request) -> new CommandImpl(getJDA(), this, response.getObject()));
}
@Nonnull
@Override
public CommandCreateAction upsertCommand(@Nonnull CommandData command)
{
Checks.notNull(command, "CommandData");
return new CommandCreateActionImpl(this, (CommandDataImpl) command);
}
@Nonnull
@Override
public CommandListUpdateAction updateCommands()
{
Route.CompiledRoute route = Route.Interactions.UPDATE_GUILD_COMMANDS.compile(getJDA().getSelfUser().getApplicationId(), getId());
return new CommandListUpdateActionImpl(getJDA(), this, route);
}
@Nonnull
@Override
public CommandEditAction editCommandById(@Nonnull String id)
{
Checks.isSnowflake(id);
return new CommandEditActionImpl(this, id);
}
@Nonnull
@Override
public RestAction deleteCommandById(@Nonnull String commandId)
{
Checks.isSnowflake(commandId);
Route.CompiledRoute route = Route.Interactions.DELETE_GUILD_COMMAND.compile(getJDA().getSelfUser().getApplicationId(), getId(), commandId);
return new RestActionImpl<>(getJDA(), route);
}
@Nonnull
@Override
public RestAction> retrieveIntegrationPrivilegesById(@Nonnull String targetId)
{
Checks.isSnowflake(targetId, "ID");
Route.CompiledRoute route = Route.Interactions.GET_COMMAND_PERMISSIONS.compile(getJDA().getSelfUser().getApplicationId(), getId(), targetId);
return new RestActionImpl<>(getJDA(), route, (response, request) -> parsePrivilegesList(response.getObject()));
}
@Nonnull
@Override
public RestAction retrieveCommandPrivileges()
{
Route.CompiledRoute route = Route.Interactions.GET_ALL_COMMAND_PERMISSIONS.compile(getJDA().getSelfUser().getApplicationId(), getId());
return new RestActionImpl<>(getJDA(), route, (response, request) -> {
Map> privileges = new HashMap<>();
response.getArray().stream(DataArray::getObject).forEach(obj -> {
String id = obj.getString("id");
List list = Collections.unmodifiableList(parsePrivilegesList(obj));
privileges.put(id, list);
});
return new PrivilegeConfig(this, privileges);
});
}
private List parsePrivilegesList(DataObject obj)
{
return obj.getArray("permissions")
.stream(DataArray::getObject)
.map(this::parsePrivilege)
.collect(Collectors.toList());
}
private IntegrationPrivilege parsePrivilege(DataObject data)
{
IntegrationPrivilege.Type type = IntegrationPrivilege.Type.fromKey(data.getInt("type", 1));
boolean enabled = data.getBoolean("permission");
return new IntegrationPrivilege(this, type, enabled, data.getUnsignedLong("id"));
}
@Nonnull
@Override
public RestAction> retrieveRegions(boolean includeDeprecated)
{
Route.CompiledRoute route = Route.Guilds.GET_VOICE_REGIONS.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
EnumSet set = EnumSet.noneOf(Region.class);
DataArray arr = response.getArray();
for (int i = 0; i < arr.length(); i++)
{
DataObject obj = arr.getObject(i);
if (!includeDeprecated && obj.getBoolean("deprecated"))
continue;
String id = obj.getString("id", "");
Region region = Region.fromKey(id);
if (region != Region.UNKNOWN)
set.add(region);
}
return set;
});
}
@Nonnull
@Override
public RestAction> retrieveAutoModRules()
{
checkPermission(Permission.MANAGE_SERVER);
Route.CompiledRoute route = Route.AutoModeration.LIST_RULES.compile(getId());
return new RestActionImpl<>(api, route, (response, request) ->
{
DataArray array = response.getArray();
List rules = new ArrayList<>(array.length());
for (int i = 0; i < array.length(); i++)
{
try
{
DataObject obj = array.getObject(i);
rules.add(AutoModRuleImpl.fromData(this, obj));
}
catch (ParsingException exception)
{
EntityBuilder.LOG.error("Failed to parse AutoModRule", exception);
}
}
return Collections.unmodifiableList(rules);
});
}
@Nonnull
@Override
public RestAction retrieveAutoModRuleById(@Nonnull String id)
{
Checks.isSnowflake(id);
checkPermission(Permission.MANAGE_SERVER);
Route.CompiledRoute route = Route.AutoModeration.GET_RULE.compile(getId(), id);
return new RestActionImpl<>(api, route, (response, request) -> AutoModRuleImpl.fromData(this, response.getObject()));
}
@Nonnull
@Override
public AuditableRestAction createAutoModRule(@Nonnull AutoModRuleData rule)
{
Checks.notNull(rule, "AutoMod Rule");
rule.getRequiredPermissions().forEach(this::checkPermission);
Route.CompiledRoute route = Route.AutoModeration.CREATE_RULE.compile(getId());
return new AuditableRestActionImpl<>(api, route, rule.toData(), (response, request) -> AutoModRuleImpl.fromData(this, response.getObject()));
}
@Nonnull
@Override
public AutoModRuleManager modifyAutoModRuleById(@Nonnull String id)
{
Checks.isSnowflake(id);
checkPermission(Permission.MANAGE_SERVER);
return new AutoModRuleManagerImpl(this, id);
}
@Nonnull
@Override
public AuditableRestAction deleteAutoModRuleById(@Nonnull String id)
{
Checks.isSnowflake(id);
checkPermission(Permission.MANAGE_SERVER);
Route.CompiledRoute route = Route.AutoModeration.DELETE_RULE.compile(getId(), id);
return new AuditableRestActionImpl<>(api, route);
}
@Nonnull
@Override
public MemberAction addMember(@Nonnull String accessToken, @Nonnull UserSnowflake user)
{
Checks.notBlank(accessToken, "Access-Token");
Checks.notNull(user, "User");
Checks.check(!isMember(user), "User is already in this guild");
if (!getSelfMember().hasPermission(Permission.CREATE_INSTANT_INVITE))
throw new InsufficientPermissionException(this, Permission.CREATE_INSTANT_INVITE);
return new MemberActionImpl(getJDA(), this, user.getId(), accessToken);
}
@Override
public boolean isLoaded()
{
// Only works with GUILD_MEMBERS intent
return getJDA().isIntent(GatewayIntent.GUILD_MEMBERS)
&& (long) getMemberCount() <= getMemberCache().size();
}
@Override
public void pruneMemberCache()
{
try (UnlockHook h = memberCache.writeLock())
{
EntityBuilder builder = getJDA().getEntityBuilder();
Set members = memberCache.asSet();
members.forEach(m -> builder.updateMemberCache((MemberImpl) m));
}
}
@Override
public boolean unloadMember(long userId)
{
if (userId == api.getSelfUser().getIdLong())
return false;
MemberImpl member = (MemberImpl) getMemberById(userId);
if (member == null)
return false;
api.getEntityBuilder().updateMemberCache(member, true);
return true;
}
@Override
public int getMemberCount()
{
return memberCount;
}
@Nonnull
@Override
public String getName()
{
return name;
}
@Override
public String getIconId()
{
return iconId;
}
@Nonnull
@Override
public Set getFeatures()
{
return features;
}
@Override
public String getSplashId()
{
return splashId;
}
@Nullable
@Override
public String getVanityCode()
{
return vanityCode;
}
@Override
@Nonnull
public RestAction retrieveVanityInvite()
{
checkPermission(Permission.MANAGE_SERVER);
JDAImpl api = getJDA();
Route.CompiledRoute route = Route.Guilds.GET_VANITY_URL.compile(getId());
return new RestActionImpl<>(api, route,
(response, request) -> new VanityInvite(vanityCode, response.getObject().getInt("uses")));
}
@Nullable
@Override
public String getDescription()
{
return description;
}
@Nonnull
@Override
public DiscordLocale getLocale()
{
return preferredLocale;
}
@Nullable
@Override
public String getBannerId()
{
return banner;
}
@Nonnull
@Override
public BoostTier getBoostTier()
{
return boostTier;
}
@Override
public int getBoostCount()
{
return boostCount;
}
@Nonnull
@Override
@SuppressWarnings("ConstantConditions") // can't be null here
public List getBoosters()
{
return memberCache.applyStream((members) ->
members.filter(m -> m.getTimeBoosted() != null)
.sorted(Comparator.comparing(Member::getTimeBoosted))
.collect(Collectors.toList()));
}
@Override
public int getMaxMembers()
{
return maxMembers;
}
@Override
public int getMaxPresences()
{
return maxPresences;
}
@Nonnull
@Override
public RestAction retrieveMetaData()
{
Route.CompiledRoute route = Route.Guilds.GET_GUILD.compile(getId());
route = route.withQueryParams("with_counts", "true");
return new RestActionImpl<>(getJDA(), route, (response, request) -> {
DataObject json = response.getObject();
int memberLimit = json.getInt("max_members", 0);
int presenceLimit = json.getInt("max_presences", 5000);
this.maxMembers = memberLimit;
this.maxPresences = presenceLimit;
int approxMembers = json.getInt("approximate_member_count", this.memberCount);
int approxPresence = json.getInt("approximate_presence_count", 0);
return new MetaData(memberLimit, presenceLimit, approxPresence, approxMembers);
});
}
@Override
public VoiceChannel getAfkChannel()
{
return afkChannel;
}
@Override
public TextChannel getSystemChannel()
{
return systemChannel;
}
@Override
public TextChannel getRulesChannel()
{
return rulesChannel;
}
@Nonnull
@Override
public CacheRestAction retrieveScheduledEventById(@Nonnull String id)
{
Checks.isSnowflake(id);
return new DeferredRestAction<>(getJDA(), ScheduledEvent.class,
() -> getScheduledEventById(id),
() ->
{
Route.CompiledRoute route = Route.Guilds.GET_SCHEDULED_EVENT.compile(getId(), id);
return new RestActionImpl<>(getJDA(), route, (response, request) -> api.getEntityBuilder().createScheduledEvent(this, response.getObject()));
});
}
@Nonnull
@Override
public CacheRestAction retrieveScheduledEventById(long id)
{
return retrieveScheduledEventById(Long.toUnsignedString(id));
}
@Nonnull
@Override
public ScheduledEventAction createScheduledEvent(@Nonnull String name, @Nonnull String location, @Nonnull OffsetDateTime startTime, @Nonnull OffsetDateTime endTime)
{
checkPermission(Permission.MANAGE_EVENTS);
return new ScheduledEventActionImpl(name, location, startTime, endTime, this);
}
@Nonnull
@Override
public ScheduledEventAction createScheduledEvent(@Nonnull String name, @Nonnull GuildChannel channel, @Nonnull OffsetDateTime startTime)
{
checkPermission(Permission.MANAGE_EVENTS);
return new ScheduledEventActionImpl(name, channel, startTime, this);
}
@Override
public TextChannel getCommunityUpdatesChannel()
{
return communityUpdatesChannel;
}
@Nonnull
@Override
public RestAction> retrieveWebhooks()
{
if (!getSelfMember().hasPermission(Permission.MANAGE_WEBHOOKS))
throw new InsufficientPermissionException(this, Permission.MANAGE_WEBHOOKS);
Route.CompiledRoute route = Route.Guilds.GET_WEBHOOKS.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
DataArray array = response.getArray();
List webhooks = new ArrayList<>(array.length());
EntityBuilder builder = api.getEntityBuilder();
for (int i = 0; i < array.length(); i++)
{
try
{
webhooks.add(builder.createWebhook(array.getObject(i)));
}
catch (Exception e)
{
JDAImpl.LOG.error("Error creating webhook from json", e);
}
}
return Collections.unmodifiableList(webhooks);
});
}
@Override
public Member getOwner()
{
return owner;
}
@Override
public long getOwnerIdLong()
{
return ownerId;
}
@Nonnull
@Override
public Timeout getAfkTimeout()
{
return afkTimeout;
}
@Override
public boolean isMember(@Nonnull UserSnowflake user)
{
return memberCache.get(user.getIdLong()) != null;
}
@Nonnull
@Override
public Member getSelfMember()
{
Member member = getMember(getJDA().getSelfUser());
if (member == null)
throw new IllegalStateException("Guild does not have a self member");
return member;
}
@Override
public Member getMember(@Nonnull UserSnowflake user)
{
Checks.notNull(user, "User");
return getMemberById(user.getIdLong());
}
@Nonnull
@Override
public MemberCacheView getMemberCache()
{
return memberCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getScheduledEventCache()
{
return scheduledEventCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getCategoryCache()
{
return categoryCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getTextChannelCache()
{
return textChannelCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getNewsChannelCache()
{
return newsChannelCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getVoiceChannelCache()
{
return voiceChannelCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getForumChannelCache()
{
return forumChannelCache;
}
@Nonnull
@Override
public SnowflakeCacheView getMediaChannelCache()
{
return mediaChannelCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getStageChannelCache()
{
return stageChannelCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getThreadChannelCache()
{
return threadChannelCache;
}
@Nonnull
@Override
public SortedSnowflakeCacheView getRoleCache()
{
return roleCache;
}
@Nonnull
@Override
public SnowflakeCacheView getEmojiCache()
{
return emojicache;
}
@Nonnull
@Override
public SnowflakeCacheView getStickerCache()
{
return stickerCache;
}
@Nonnull
@Override
public List getChannels(boolean includeHidden)
{
Member self = getSelfMember();
Predicate filterHidden = includeHidden ? (it) -> true : it -> self.hasPermission(it, Permission.VIEW_CHANNEL);
SnowflakeCacheViewImpl categories = getCategoriesView();
SnowflakeCacheViewImpl voice = getVoiceChannelsView();
SnowflakeCacheViewImpl stage = getStageChannelsView();
SnowflakeCacheViewImpl text = getTextChannelsView();
SnowflakeCacheViewImpl news = getNewsChannelView();
SnowflakeCacheViewImpl forum = getForumChannelsView();
SnowflakeCacheViewImpl media = getMediaChannelsView();
List channels = new ArrayList<>((int) (categories.size() + voice.size() + stage.size() + text.size() + news.size() + forum.size() + media.size()));
voice.acceptStream(stream -> stream.filter(filterHidden).forEach(channels::add));
stage.acceptStream(stream -> stream.filter(filterHidden).forEach(channels::add));
text.acceptStream(stream -> stream.filter(filterHidden).forEach(channels::add));
news.acceptStream(stream -> stream.filter(filterHidden).forEach(channels::add));
forum.acceptStream(stream -> stream.filter(filterHidden).forEach(channels::add));
media.acceptStream(stream -> stream.filter(filterHidden).forEach(channels::add));
categories.forEach(category ->
{
if (!includeHidden && category.getChannels().stream().noneMatch(filterHidden))
return;
channels.add(category);
});
// See AbstractGuildChannelImpl#compareTo for details on how this achieves the canonical order of the client
Collections.sort(channels);
return Collections.unmodifiableList(channels);
}
@Nonnull
@Override
public RestAction> retrieveEmojis()
{
Route.CompiledRoute route = Route.Emojis.GET_EMOJIS.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
EntityBuilder builder = GuildImpl.this.getJDA().getEntityBuilder();
DataArray emojis = response.getArray();
List list = new ArrayList<>(emojis.length());
for (int i = 0; i < emojis.length(); i++)
{
DataObject emoji = emojis.getObject(i);
list.add(builder.createEmoji(GuildImpl.this, emoji));
}
return Collections.unmodifiableList(list);
});
}
@Nonnull
@Override
public RestAction retrieveEmojiById(@Nonnull String id)
{
Checks.isSnowflake(id, "Emoji ID");
JDAImpl jda = getJDA();
return new DeferredRestAction<>(jda, RichCustomEmoji.class,
() -> {
RichCustomEmoji emoji = getEmojiById(id);
if (emoji != null)
{
if (emoji.getOwner() != null || !getSelfMember().hasPermission(Permission.MANAGE_GUILD_EXPRESSIONS))
return emoji;
}
return null;
}, () -> {
Route.CompiledRoute route = Route.Emojis.GET_EMOJI.compile(getId(), id);
return new AuditableRestActionImpl<>(jda, route, (response, request) ->
{
EntityBuilder builder = GuildImpl.this.getJDA().getEntityBuilder();
return builder.createEmoji(GuildImpl.this, response.getObject());
});
});
}
@Nonnull
@Override
public RestAction> retrieveStickers()
{
Route.CompiledRoute route = Route.Stickers.GET_GUILD_STICKERS.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) -> {
DataArray array = response.getArray();
List stickers = new ArrayList<>(array.length());
EntityBuilder builder = api.getEntityBuilder();
for (int i = 0; i < array.length(); i++)
{
DataObject object = null;
try
{
object = array.getObject(i);
GuildSticker sticker = (GuildSticker) builder.createRichSticker(object);
stickers.add(sticker);
}
catch (ParsingException | ClassCastException ex)
{
EntityBuilder.LOG.error("Failed to parse sticker for JSON: {}", object, ex);
}
}
return Collections.unmodifiableList(stickers);
});
}
@Nonnull
@Override
public RestAction retrieveSticker(@Nonnull StickerSnowflake sticker)
{
Checks.notNull(sticker, "Sticker");
Route.CompiledRoute route = Route.Stickers.GET_GUILD_STICKER.compile(getId(), sticker.getId());
return new RestActionImpl<>(getJDA(), route, (response, request) -> {
DataObject object = response.getObject();
EntityBuilder builder = api.getEntityBuilder();
return (GuildSticker) builder.createRichSticker(object);
});
}
@Nonnull
@Override
public GuildStickerManager editSticker(@Nonnull StickerSnowflake sticker)
{
Checks.notNull(sticker, "Sticker");
if (sticker instanceof GuildSticker)
Checks.check(((GuildSticker) sticker).getGuildIdLong() == id, "Cannot edit a sticker from another guild!");
Checks.check(!(sticker instanceof StandardSticker), "Cannot edit a standard sticker.");
return new GuildStickerManagerImpl(this, id, sticker);
}
@Nonnull
@Override
public BanPaginationActionImpl retrieveBanList()
{
if (!getSelfMember().hasPermission(Permission.BAN_MEMBERS))
throw new InsufficientPermissionException(this, Permission.BAN_MEMBERS);
return new BanPaginationActionImpl(this);
}
@Nonnull
@Override
public RestAction retrieveBan(@Nonnull UserSnowflake user)
{
if (!getSelfMember().hasPermission(Permission.BAN_MEMBERS))
throw new InsufficientPermissionException(this, Permission.BAN_MEMBERS);
Checks.notNull(user, "User");
Route.CompiledRoute route = Route.Guilds.GET_BAN.compile(getId(), user.getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
EntityBuilder builder = api.getEntityBuilder();
DataObject bannedObj = response.getObject();
DataObject userJson = bannedObj.getObject("user");
return new Ban(builder.createUser(userJson), bannedObj.getString("reason", null));
});
}
@Nonnull
@Override
public RestAction retrievePrunableMemberCount(int days)
{
if (!getSelfMember().hasPermission(Permission.KICK_MEMBERS))
throw new InsufficientPermissionException(this, Permission.KICK_MEMBERS);
Checks.check(days >= 1 && days <= 30, "Provided %d days must be between 1 and 30.", days);
Route.CompiledRoute route = Route.Guilds.PRUNABLE_COUNT.compile(getId()).withQueryParams("days", Integer.toString(days));
return new RestActionImpl<>(getJDA(), route, (response, request) -> response.getObject().getInt("pruned"));
}
@Nonnull
@Override
public Role getPublicRole()
{
return publicRole;
}
@Nullable
@Override
public DefaultGuildChannelUnion getDefaultChannel()
{
final Role role = getPublicRole();
return (DefaultGuildChannelUnion) Stream.concat(getTextChannelCache().stream(), getNewsChannelCache().stream())
.filter(c -> role.hasPermission(c, Permission.VIEW_CHANNEL))
.min(Comparator.naturalOrder())
.orElse(null);
}
@Nonnull
@Override
public GuildManager getManager()
{
return new GuildManagerImpl(this);
}
@Override
public boolean isBoostProgressBarEnabled()
{
return boostProgressBarEnabled;
}
@Nonnull
@Override
public AuditLogPaginationAction retrieveAuditLogs()
{
return new AuditLogPaginationActionImpl(this);
}
@Nonnull
@Override
public RestAction leave()
{
if (getSelfMember().isOwner())
throw new IllegalStateException("Cannot leave a guild that you are the owner of! Transfer guild ownership first!");
Route.CompiledRoute route = Route.Self.LEAVE_GUILD.compile(getId());
return new RestActionImpl<>(getJDA(), route);
}
@Nonnull
@Override
public RestAction delete()
{
if (!getJDA().getSelfUser().isBot() && getJDA().getSelfUser().isMfaEnabled())
throw new IllegalStateException("Cannot delete a guild without providing MFA code. Use Guild#delete(String)");
return delete(null);
}
@Nonnull
@Override
public RestAction delete(String mfaCode)
{
if (!getSelfMember().isOwner())
throw new PermissionException("Cannot delete a guild that you do not own!");
DataObject mfaBody = null;
if (!getJDA().getSelfUser().isBot() && getJDA().getSelfUser().isMfaEnabled())
{
Checks.notEmpty(mfaCode, "Provided MultiFactor Auth code");
mfaBody = DataObject.empty().put("code", mfaCode);
}
Route.CompiledRoute route = Route.Guilds.DELETE_GUILD.compile(getId());
return new RestActionImpl<>(getJDA(), route, mfaBody);
}
@Nonnull
@Override
public AudioManager getAudioManager()
{
if (!getJDA().isIntent(GatewayIntent.GUILD_VOICE_STATES))
throw new IllegalStateException("Cannot use audio features with disabled GUILD_VOICE_STATES intent!");
final AbstractCacheView managerMap = getJDA().getAudioManagersView();
AudioManager mng = managerMap.get(id);
if (mng == null)
{
// No previous manager found -> create one
try (UnlockHook hook = managerMap.writeLock())
{
GuildImpl cachedGuild = (GuildImpl) getJDA().getGuildById(id);
if (cachedGuild == null)
throw new IllegalStateException("Cannot get an AudioManager instance on an uncached Guild");
mng = managerMap.get(id);
if (mng == null)
{
mng = new AudioManagerImpl(cachedGuild);
managerMap.getMap().put(id, mng);
}
}
}
return mng;
}
@Nonnull
@Override
public synchronized Task requestToSpeak()
{
if (!isRequestToSpeakPending())
pendingRequestToSpeak = new CompletableFuture<>();
Task task = new GatewayTask<>(pendingRequestToSpeak, this::cancelRequestToSpeak);
updateRequestToSpeak();
return task;
}
@Nonnull
@Override
public synchronized Task cancelRequestToSpeak()
{
if (isRequestToSpeakPending())
{
pendingRequestToSpeak.cancel(false);
pendingRequestToSpeak = null;
}
AudioChannel channel = getSelfMember().getVoiceState().getChannel();
if (channel instanceof StageChannel)
{
CompletableFuture future = ((StageChannel) channel).cancelRequestToSpeak().submit();
return new GatewayTask<>(future, () -> future.cancel(false));
}
return new GatewayTask<>(CompletableFuture.completedFuture(null), () -> {});
}
@Nonnull
@Override
public JDAImpl getJDA()
{
return api;
}
@Nonnull
@Override
public List getVoiceStates()
{
return Collections.unmodifiableList(
getMembersView().stream()
.map(Member::getVoiceState)
.filter(Objects::nonNull)
.collect(Collectors.toList()));
}
@Nonnull
@Override
public VerificationLevel getVerificationLevel()
{
return verificationLevel;
}
@Nonnull
@Override
public NotificationLevel getDefaultNotificationLevel()
{
return defaultNotificationLevel;
}
@Nonnull
@Override
public MFALevel getRequiredMFALevel()
{
return mfaLevel;
}
@Nonnull
@Override
public ExplicitContentLevel getExplicitContentLevel()
{
return explicitContentLevel;
}
@Nonnull
@Override
public Task loadMembers(@Nonnull Consumer callback)
{
Checks.notNull(callback, "Callback");
if (!getJDA().isIntent(GatewayIntent.GUILD_MEMBERS))
throw new IllegalStateException("Cannot use loadMembers without GatewayIntent.GUILD_MEMBERS!");
if (isLoaded())
{
memberCache.forEachUnordered(callback);
return new GatewayTask<>(CompletableFuture.completedFuture(null), () -> {});
}
MemberChunkManager chunkManager = getJDA().getClient().getChunkManager();
boolean includePresences = getJDA().isIntent(GatewayIntent.GUILD_PRESENCES);
MemberChunkManager.ChunkRequest handler = chunkManager.chunkGuild(this, includePresences, (last, list) -> list.forEach(callback));
handler.exceptionally(ex -> {
WebSocketClient.LOG.error("Encountered exception trying to handle member chunk response", ex);
return null;
});
return new GatewayTask<>(handler, () -> handler.cancel(false)).onSetTimeout(handler::setTimeout);
}
@Nonnull
@Override
public CacheRestAction retrieveMemberById(long id)
{
JDAImpl jda = getJDA();
return new DeferredRestAction<>(jda, Member.class,
() -> getMemberById(id),
() -> {
if (id == jda.getSelfUser().getIdLong())
return new CompletedRestAction<>(jda, getSelfMember());
Route.CompiledRoute route = Route.Guilds.GET_MEMBER.compile(getId(), Long.toUnsignedString(id));
return new RestActionImpl<>(jda, route, (resp, req) -> {
MemberImpl member = jda.getEntityBuilder().createMember(this, resp.getObject());
jda.getEntityBuilder().updateMemberCache(member);
return member;
});
}).useCache(jda.isIntent(GatewayIntent.GUILD_MEMBERS));
}
@Nonnull
@Override
public Task> retrieveMembersByIds(boolean includePresence, @Nonnull long... ids)
{
Checks.notNull(ids, "ID Array");
Checks.check(!includePresence || api.isIntent(GatewayIntent.GUILD_PRESENCES),
"Cannot retrieve presences of members without GUILD_PRESENCES intent!");
if (ids.length == 0)
return new GatewayTask<>(CompletableFuture.completedFuture(Collections.emptyList()), () -> {});
Checks.check(ids.length <= 100, "You can only request 100 members at once");
MemberChunkManager chunkManager = api.getClient().getChunkManager();
List collect = new ArrayList<>(ids.length);
CompletableFuture> result = new CompletableFuture<>();
MemberChunkManager.ChunkRequest handle = chunkManager.chunkGuild(this, includePresence, ids, (last, list) -> {
collect.addAll(list);
if (last)
result.complete(collect);
});
handle.exceptionally(ex -> {
WebSocketClient.LOG.error("Encountered exception trying to handle member chunk response", ex);
result.completeExceptionally(ex);
return null;
});
return new GatewayTask<>(result, () -> handle.cancel(false)).onSetTimeout(handle::setTimeout);
}
@Nonnull
@Override
@CheckReturnValue
public Task> retrieveMembersByPrefix(@Nonnull String prefix, int limit)
{
Checks.notEmpty(prefix, "Prefix");
Checks.positive(limit, "Limit");
Checks.check(limit <= 100, "Limit must not be greater than 100");
MemberChunkManager chunkManager = api.getClient().getChunkManager();
List collect = new ArrayList<>(limit);
CompletableFuture> result = new CompletableFuture<>();
MemberChunkManager.ChunkRequest handle = chunkManager.chunkGuild(this, prefix, limit, (last, list) -> {
collect.addAll(list);
if (last)
result.complete(collect);
});
handle.exceptionally(ex -> {
WebSocketClient.LOG.error("Encountered exception trying to handle member chunk response", ex);
result.completeExceptionally(ex);
return null;
});
return new GatewayTask<>(result, () -> handle.cancel(false)).onSetTimeout(handle::setTimeout);
}
@Nonnull
@Override
public RestAction> retrieveActiveThreads()
{
Route.CompiledRoute route = Route.Guilds.LIST_ACTIVE_THREADS.compile(getId());
return new RestActionImpl<>(api, route, (response, request) ->
{
DataObject obj = response.getObject();
DataArray selfThreadMembers = obj.getArray("members");
DataArray threads = obj.getArray("threads");
List list = new ArrayList<>(threads.length());
EntityBuilder builder = api.getEntityBuilder();
TLongObjectMap selfThreadMemberMap = new TLongObjectHashMap<>();
for (int i = 0; i < selfThreadMembers.length(); i++)
{
DataObject selfThreadMember = selfThreadMembers.getObject(i);
//Store the thread member based on the "id" which is the _thread's_ id, not the member's id (which would be our id)
selfThreadMemberMap.put(selfThreadMember.getLong("id"), selfThreadMember);
}
for (int i = 0; i < threads.length(); i++)
{
DataObject threadObj = threads.getObject(i);
DataObject selfThreadMemberObj = selfThreadMemberMap.get(threadObj.getLong("id", 0));
if (selfThreadMemberObj != null)
{
//Combine the thread and self thread-member into a single object to model what we get from
// thread payloads (like from Gateway, etc)
threadObj.put("member", selfThreadMemberObj);
}
try
{
ThreadChannel thread = builder.createThreadChannel(threadObj, this.getIdLong());
list.add(thread);
}
catch (Exception e)
{
if (EntityBuilder.MISSING_CHANNEL.equals(e.getMessage()))
EntityBuilder.LOG.debug("Discarding thread without cached parent channel. JSON: {}", threadObj);
else
EntityBuilder.LOG.warn("Failed to create thread channel. JSON: {}", threadObj, e);
}
}
return Collections.unmodifiableList(list);
});
}
@Override
public long getIdLong()
{
return id;
}
@Nonnull
@Override
public RestAction> retrieveInvites()
{
if (!this.getSelfMember().hasPermission(Permission.MANAGE_SERVER))
throw new InsufficientPermissionException(this, Permission.MANAGE_SERVER);
final Route.CompiledRoute route = Route.Invites.GET_GUILD_INVITES.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
EntityBuilder entityBuilder = api.getEntityBuilder();
DataArray array = response.getArray();
List invites = new ArrayList<>(array.length());
for (int i = 0; i < array.length(); i++)
invites.add(entityBuilder.createInvite(array.getObject(i)));
return Collections.unmodifiableList(invites);
});
}
@Nonnull
@Override
public RestAction> retrieveTemplates()
{
if (!this.getSelfMember().hasPermission(Permission.MANAGE_SERVER))
throw new InsufficientPermissionException(this, Permission.MANAGE_SERVER);
final Route.CompiledRoute route = Route.Templates.GET_GUILD_TEMPLATES.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
EntityBuilder entityBuilder = api.getEntityBuilder();
DataArray array = response.getArray();
List templates = new ArrayList<>(array.length());
for (int i = 0; i < array.length(); i++)
{
try
{
templates.add(entityBuilder.createTemplate(array.getObject(i)));
}
catch (Exception e)
{
JDAImpl.LOG.error("Error creating template from json", e);
}
}
return Collections.unmodifiableList(templates);
});
}
@Nonnull
@Override
public RestAction createTemplate(@Nonnull String name, @Nullable String description)
{
checkPermission(Permission.MANAGE_SERVER);
Checks.notBlank(name, "Name");
name = name.trim();
Checks.notLonger(name, 100, "Name");
if (description != null)
Checks.notLonger(description, 120, "Description");
final Route.CompiledRoute route = Route.Templates.CREATE_TEMPLATE.compile(getId());
DataObject object = DataObject.empty();
object.put("name", name);
object.put("description", description);
return new RestActionImpl<>(getJDA(), route, object, (response, request) ->
{
EntityBuilder entityBuilder = api.getEntityBuilder();
return entityBuilder.createTemplate(response.getObject());
});
}
@Nonnull
@Override
public RestAction retrieveWelcomeScreen()
{
final Route.CompiledRoute route = Route.Guilds.GET_WELCOME_SCREEN.compile(getId());
return new RestActionImpl<>(getJDA(), route, (response, request) ->
{
EntityBuilder entityBuilder = api.getEntityBuilder();
return entityBuilder.createWelcomeScreen(this, response.getObject());
});
}
@Nonnull
@Override
public RestAction moveVoiceMember(@Nonnull Member member, @Nullable AudioChannel audioChannel)
{
Checks.notNull(member, "Member");
checkGuild(member.getGuild(), "Member");
if (audioChannel != null)
checkGuild(audioChannel.getGuild(), "AudioChannel");
GuildVoiceState vState = member.getVoiceState();
if (vState == null)
throw new IllegalStateException("Cannot move a Member with disabled CacheFlag.VOICE_STATE");
AudioChannel channel = vState.getChannel();
if (channel == null)
throw new IllegalStateException("You cannot move a Member who isn't in an AudioChannel!");
Member selfMember = getSelfMember();
if (!selfMember.hasPermission(channel, Permission.VOICE_MOVE_OTHERS))
throw new InsufficientPermissionException(channel, Permission.VOICE_MOVE_OTHERS, "This account does not have Permission to MOVE_OTHERS out of the channel that the Member is currently in.");
if (audioChannel != null
&& !selfMember.hasPermission(audioChannel, Permission.VOICE_CONNECT)
&& !member.hasPermission(audioChannel, Permission.VOICE_CONNECT))
throw new InsufficientPermissionException(audioChannel, Permission.VOICE_CONNECT,
"Neither this account nor the Member that is attempting to be moved have the VOICE_CONNECT permission " +
"for the destination AudioChannel, so the move cannot be done.");
DataObject body = DataObject.empty().put("channel_id", audioChannel == null ? null : audioChannel.getId());
Route.CompiledRoute route = Route.Guilds.MODIFY_MEMBER.compile(getId(), member.getUser().getId());
return new RestActionImpl<>(getJDA(), route, body);
}
@Nonnull
@Override
public AuditableRestAction modifyNickname(@Nonnull Member member, String nickname)
{
Checks.notNull(member, "Member");
checkGuild(member.getGuild(), "Member");
if (member.equals(getSelfMember()))
{
if (!member.hasPermission(Permission.NICKNAME_CHANGE) && !member.hasPermission(Permission.NICKNAME_MANAGE))
throw new InsufficientPermissionException(this, Permission.NICKNAME_CHANGE, "You neither have NICKNAME_CHANGE nor NICKNAME_MANAGE permission!");
}
else
{
checkPermission(Permission.NICKNAME_MANAGE);
checkPosition(member);
}
JDAImpl jda = getJDA();
return new DeferredRestAction<>(jda, () -> {
DataObject body = DataObject.empty().put("nick", nickname == null ? "" : nickname);
Route.CompiledRoute route;
if (member.equals(getSelfMember()))
route = Route.Guilds.MODIFY_SELF.compile(getId());
else
route = Route.Guilds.MODIFY_MEMBER.compile(getId(), member.getUser().getId());
return new AuditableRestActionImpl(jda, route, body);
}).setCacheCheck(() -> !Objects.equals(nickname, member.getNickname()));
}
@Nonnull
@Override
public AuditableRestAction prune(int days, boolean wait, @Nonnull Role... roles)
{
checkPermission(Permission.KICK_MEMBERS);
Checks.check(days >= 1 && days <= 30, "Provided %d days must be between 1 and 30.", days);
Checks.notNull(roles, "Roles");
Route.CompiledRoute route = Route.Guilds.PRUNE_MEMBERS.compile(getId());
DataObject body = DataObject.empty();
body.put("days", days);
if (!wait)
body.put("compute_prune_count", false);
if (roles.length != 0)
{
for (Role role : roles)
{
Checks.notNull(role, "Role");
Checks.check(role.getGuild().equals(this), "Role is not from the same guild!");
}
body.put("include_roles", Arrays.stream(roles).map(Role::getId).collect(Collectors.toList()));
}
return new AuditableRestActionImpl<>(getJDA(), route, body, (response, request) -> response.getObject().getInt("pruned", 0));
}
@Nonnull
@Override
public AuditableRestAction kick(@Nonnull UserSnowflake user)
{
Checks.notNull(user, "User");
checkPermission(Permission.KICK_MEMBERS);
checkOwner(user.getIdLong(), "kick");
checkPosition(user);
Route.CompiledRoute route = Route.Guilds.KICK_MEMBER.compile(getId(), user.getId());
return new AuditableRestActionImpl<>(getJDA(), route);
}
@Nonnull
@Override
public AuditableRestAction ban(@Nonnull UserSnowflake user, int duration, @Nonnull TimeUnit unit)
{
Checks.notNull(user, "User");
Checks.notNull(unit, "TimeUnit");
Checks.notNegative(duration, "Deletion Timeframe");
Checks.check(unit.toDays(duration) <= 7, "Deletion timeframe must not be larger than 7 days");
checkPermission(Permission.BAN_MEMBERS);
checkOwner(user.getIdLong(), "ban");
checkPosition(user);
Route.CompiledRoute route = Route.Guilds.BAN.compile(getId(), user.getId());
DataObject params = DataObject.empty();
if (duration > 0)
params.put("delete_message_seconds", unit.toSeconds(duration));
return new AuditableRestActionImpl<>(getJDA(), route, params);
}
@Nonnull
@Override
public AuditableRestAction unban(@Nonnull UserSnowflake user)
{
Checks.notNull(user, "User");
checkPermission(Permission.BAN_MEMBERS);
Route.CompiledRoute route = Route.Guilds.UNBAN.compile(getId(), user.getId());
return new AuditableRestActionImpl<>(getJDA(), route);
}
@Nonnull
@Override
public AuditableRestAction timeoutUntil(@Nonnull UserSnowflake user, @Nonnull TemporalAccessor temporal)
{
Checks.notNull(user, "User");
Checks.notNull(temporal, "Temporal");
OffsetDateTime date = Helpers.toOffsetDateTime(temporal);
Checks.check(date.isAfter(OffsetDateTime.now()), "Cannot put a member in time out with date in the past. Provided: %s", date);
Checks.check(date.isBefore(OffsetDateTime.now().plusDays(Member.MAX_TIME_OUT_LENGTH)), "Cannot put a member in time out for more than 28 days. Provided: %s", date);
checkPermission(Permission.MODERATE_MEMBERS);
checkOwner(user.getIdLong(), "time out");
checkPosition(user);
return timeoutUntilById0(user.getId(), date);
}
@Nonnull
@Override
public AuditableRestAction removeTimeout(@Nonnull UserSnowflake user)
{
Checks.notNull(user, "User");
return timeoutUntilById0(user.getId(), null);
}
@Nonnull
private AuditableRestAction timeoutUntilById0(@Nonnull String userId, @Nullable OffsetDateTime date)
{
DataObject body = DataObject.empty().put("communication_disabled_until", date == null ? null : date.toString());
Route.CompiledRoute route = Route.Guilds.MODIFY_MEMBER.compile(getId(), userId);
return new AuditableRestActionImpl<>(getJDA(), route, body);
}
@Nonnull
@Override
public AuditableRestAction deafen(@Nonnull UserSnowflake user, boolean deafen)
{
Checks.notNull(user, "User");
checkPermission(Permission.VOICE_DEAF_OTHERS);
Member member = resolveMember(user);
if (member != null)
{
GuildVoiceState voiceState = member.getVoiceState();
if (voiceState != null)
{
if (voiceState.getChannel() == null)
throw new IllegalStateException("Can only deafen members who are currently in a voice channel");
if (voiceState.isGuildDeafened() == deafen)
return new CompletedRestAction<>(getJDA(), null);
}
}
DataObject body = DataObject.empty().put("deaf", deafen);
Route.CompiledRoute route = Route.Guilds.MODIFY_MEMBER.compile(getId(), user.getId());
return new AuditableRestActionImpl<>(getJDA(), route, body);
}
@Nonnull
@Override
public AuditableRestAction mute(@Nonnull UserSnowflake user, boolean mute)
{
Checks.notNull(user, "User");
checkPermission(Permission.VOICE_MUTE_OTHERS);
Member member = resolveMember(user);
if (member != null)
{
GuildVoiceState voiceState = member.getVoiceState();
if (voiceState != null)
{
if (voiceState.getChannel() == null)
throw new IllegalStateException("Can only mute members who are currently in a voice channel");
if (voiceState.isGuildMuted() == mute && (mute || !voiceState.isSuppressed()))
return new CompletedRestAction<>(getJDA(), null);
}
}
DataObject body = DataObject.empty().put("mute", mute);
Route.CompiledRoute route = Route.Guilds.MODIFY_MEMBER.compile(getId(), user.getId());
return new AuditableRestActionImpl<>(getJDA(), route, body);
}
@Nonnull
@Override
public AuditableRestAction addRoleToMember(@Nonnull UserSnowflake user, @Nonnull Role role)
{
Checks.notNull(user, "User");
Checks.notNull(role, "Role");
checkGuild(role.getGuild(), "Role");
checkPermission(Permission.MANAGE_ROLES);
checkPosition(role);
Route.CompiledRoute route = Route.Guilds.ADD_MEMBER_ROLE.compile(getId(), user.getId(), role.getId());
return new AuditableRestActionImpl<>(getJDA(), route);
}
@Nonnull
@Override
public AuditableRestAction removeRoleFromMember(@Nonnull UserSnowflake user, @Nonnull Role role)
{
Checks.notNull(user, "User");
Checks.notNull(role, "Role");
checkGuild(role.getGuild(), "Role");
checkPermission(Permission.MANAGE_ROLES);
checkPosition(role);
Route.CompiledRoute route = Route.Guilds.REMOVE_MEMBER_ROLE.compile(getId(), user.getId(), role.getId());
return new AuditableRestActionImpl<>(getJDA(), route);
}
@Nonnull
@Override
public AuditableRestAction modifyMemberRoles(@Nonnull Member member, Collection rolesToAdd, Collection rolesToRemove)
{
Checks.notNull(member, "Member");
checkGuild(member.getGuild(), "Member");
checkPermission(Permission.MANAGE_ROLES);
Set currentRoles = new HashSet<>(((MemberImpl) member).getRoleSet());
if (rolesToAdd != null)
{
checkRoles(rolesToAdd, "add", "to");
currentRoles.addAll(rolesToAdd);
}
if (rolesToRemove != null)
{
checkRoles(rolesToRemove, "remove", "from");
currentRoles.removeAll(rolesToRemove);
}
return modifyMemberRoles(member, currentRoles);
}
@Nonnull
@Override
public AuditableRestAction modifyMemberRoles(@Nonnull Member member, @Nonnull Collection roles)
{
Checks.notNull(member, "Member");
Checks.notNull(roles, "Roles");
checkGuild(member.getGuild(), "Member");
roles.forEach(role ->
{
Checks.notNull(role, "Role in collection");
checkGuild(role.getGuild(), "Role: " + role.toString());
});
Checks.check(!roles.contains(getPublicRole()),
"Cannot add the PublicRole of a Guild to a Member. All members have this role by default!");
// Return an empty rest action if there were no changes
final List memberRoles = member.getRoles();
if (Helpers.deepEqualsUnordered(roles, memberRoles))
return new CompletedRestAction<>(getJDA(), null);
// Check removed roles
for (Role r : memberRoles)
{
if (!roles.contains(r))
{
checkPosition(r);
Checks.check(!r.isManaged(), "Cannot remove managed role from member. Role: %s", r);
}
}
// Check added roles
for (Role r : roles)
{
if (!memberRoles.contains(r))
{
checkPosition(r);
Checks.check(!r.isManaged(), "Cannot add managed role to member. Role: %s", r);
}
}
DataObject body = DataObject.empty()
.put("roles", roles.stream().map(Role::getId).collect(Collectors.toSet()));
Route.CompiledRoute route = Route.Guilds.MODIFY_MEMBER.compile(getId(), member.getUser().getId());
return new AuditableRestActionImpl<>(getJDA(), route, body);
}
@Nonnull
@Override
public AuditableRestAction transferOwnership(@Nonnull Member newOwner)
{
Checks.notNull(newOwner, "Member");
checkGuild(newOwner.getGuild(), "Member");
if (!getSelfMember().isOwner())
throw new PermissionException("The logged in account must be the owner of this Guild to be able to transfer ownership");
Checks.check(!getSelfMember().equals(newOwner),
"The member provided as the newOwner is the currently logged in account. Provide a different member to give ownership to.");
Checks.check(!newOwner.getUser().isBot(), "Cannot transfer ownership of a Guild to a Bot!");
DataObject body = DataObject.empty().put("owner_id", newOwner.getUser().getId());
Route.CompiledRoute route = Route.Guilds.MODIFY_GUILD.compile(getId());
return new AuditableRestActionImpl<>(getJDA(), route, body);
}
@Nonnull
@Override
public ChannelAction createTextChannel(@Nonnull String name, Category parent)
{
return createChannel(ChannelType.TEXT, TextChannel.class, name, parent);
}
@Nonnull
@Override
public ChannelAction createNewsChannel(@Nonnull String name, Category parent)
{
return createChannel(ChannelType.NEWS, NewsChannel.class, name, parent);
}
@Nonnull
@Override
public ChannelAction createVoiceChannel(@Nonnull String name, Category parent)
{
return createChannel(ChannelType.VOICE, VoiceChannel.class, name, parent);
}
@Nonnull
@Override
public ChannelAction createStageChannel(@Nonnull String name, Category parent)
{
return createChannel(ChannelType.STAGE, StageChannel.class, name, parent);
}
@Nonnull
@Override
public ChannelAction createForumChannel(@Nonnull String name, Category parent)
{
return createChannel(ChannelType.FORUM, ForumChannel.class, name, parent);
}
@Nonnull
@Override
public ChannelAction createMediaChannel(@Nonnull String name, @Nullable Category parent)
{
return createChannel(ChannelType.MEDIA, MediaChannel.class, name, parent);
}
@Nonnull
@Override
public ChannelAction createCategory(@Nonnull String name)
{
return createChannel(ChannelType.CATEGORY, Category.class, name, null);
}
private ChannelAction createChannel(ChannelType type, Class clazz, String name, Category parent)
{
checkCanCreateChannel(parent);
Checks.notBlank(name, "Name");
name = name.trim();
Checks.notEmpty(name, "Name");
Checks.notLonger(name, 100, "Name");
return new ChannelActionImpl<>(clazz, name, this, type).setParent(parent);
}
@Nonnull
@Override
public RoleAction createRole()
{
checkPermission(Permission.MANAGE_ROLES);
return new RoleActionImpl(this);
}
@Nonnull
@Override
public AuditableRestAction createEmoji(@Nonnull String name, @Nonnull Icon icon, @Nonnull Role... roles)
{
checkPermission(Permission.MANAGE_GUILD_EXPRESSIONS);
Checks.inRange(name, 2, 32, "Emoji name");
Checks.notNull(icon, "Emoji icon");
Checks.notNull(roles, "Roles");
DataObject body = DataObject.empty();
body.put("name", name);
body.put("image", icon.getEncoding());
if (roles.length > 0) // making sure none of the provided roles are null before mapping them to the snowflake id
body.put("roles", Stream.of(roles).filter(Objects::nonNull).map(ISnowflake::getId).collect(Collectors.toSet()));
JDAImpl jda = getJDA();
Route.CompiledRoute route = Route.Emojis.CREATE_EMOJI.compile(getId());
return new AuditableRestActionImpl<>(jda, route, body, (response, request) ->
{
DataObject obj = response.getObject();
return jda.getEntityBuilder().createEmoji(this, obj);
});
}
@Nonnull
@Override
public AuditableRestAction createSticker(@Nonnull String name, @Nonnull String description, @Nonnull FileUpload file, @Nonnull Collection tags)
{
checkPermission(Permission.MANAGE_GUILD_EXPRESSIONS);
Checks.inRange(name, 2, 30, "Name");
Checks.notNull(file, "File");
Checks.notNull(description, "Description");
Checks.notEmpty(tags, "Tags");
if (!description.isEmpty())
Checks.inRange(description, 2, 100, "Description");
for (String t : tags)
Checks.notEmpty(t, "Tags");
String csv = String.join(",", tags);
Checks.notLonger(csv, 200, "Tags");
// Extract file extension and map to media type
int index = file.getName().lastIndexOf('.');
Checks.check(index > -1, "Filename for sticker is missing file extension. Provided: '" + file.getName() + "'. Must be PNG, GIF, or JSON.");
// Convert file extension to media-type
String extension = file.getName().substring(index + 1).toLowerCase(Locale.ROOT);
MediaType mediaType;
switch (extension)
{
case "apng":
case "png":
mediaType = Requester.MEDIA_TYPE_PNG;
break;
case "gif":
mediaType = Requester.MEDIA_TYPE_GIF;
break;
case "json":
mediaType = Requester.MEDIA_TYPE_JSON;
break;
default:
throw new IllegalArgumentException("Unsupported file extension: '." + extension + "', must be PNG, GIF, or JSON.");
}
// Add sticker metadata as form parts (because payload_json is broken)
MultipartBody.Builder builder = new MultipartBody.Builder().setType(MultipartBody.FORM);
builder.addFormDataPart("name", name);
builder.addFormDataPart("description", description);
builder.addFormDataPart("tags", csv);
// Attach file asset for sticker image/animation
builder.addFormDataPart("file", file.getName(), file.getRequestBody(mediaType));
MultipartBody body = builder.build();
Route.CompiledRoute route = Route.Stickers.CREATE_GUILD_STICKER.compile(getId());
return new AuditableRestActionImpl<>(api, route, body,
(response, request) -> (GuildSticker) api.getEntityBuilder().createRichSticker(response.getObject())
);
}
@Nonnull
@Override
public AuditableRestAction deleteSticker(@Nonnull StickerSnowflake id)
{
Checks.notNull(id, "Sticker");
Route.CompiledRoute route = Route.Stickers.DELETE_GUILD_STICKER.compile(getId(), id.getId());
return new AuditableRestActionImpl<>(api, route);
}
@Nonnull
@Override
public ChannelOrderAction modifyCategoryPositions()
{
return new ChannelOrderActionImpl(this, ChannelType.CATEGORY.getSortBucket());
}
@Nonnull
@Override
public ChannelOrderAction modifyTextChannelPositions()
{
return new ChannelOrderActionImpl(this, ChannelType.TEXT.getSortBucket());
}
@Nonnull
@Override
public ChannelOrderAction modifyVoiceChannelPositions()
{
return new ChannelOrderActionImpl(this, ChannelType.VOICE.getSortBucket());
}
@Nonnull
@Override
public CategoryOrderAction modifyTextChannelPositions(@Nonnull Category category)
{
Checks.notNull(category, "Category");
checkGuild(category.getGuild(), "Category");
return new CategoryOrderActionImpl(category, ChannelType.TEXT.getSortBucket());
}
@Nonnull
@Override
public CategoryOrderAction modifyVoiceChannelPositions(@Nonnull Category category)
{
Checks.notNull(category, "Category");
checkGuild(category.getGuild(), "Category");
return new CategoryOrderActionImpl(category, ChannelType.VOICE.getSortBucket());
}
@Nonnull
@Override
public RoleOrderAction modifyRolePositions(boolean useAscendingOrder)
{
return new RoleOrderActionImpl(this, useAscendingOrder);
}
@Nonnull
@Override
public GuildWelcomeScreenManager modifyWelcomeScreen()
{
return new GuildWelcomeScreenManagerImpl(this);
}
// ---- Checks ----
protected void checkGuild(Guild providedGuild, String comment)
{
if (!equals(providedGuild))
throw new IllegalArgumentException("Provided " + comment + " is not part of this Guild!");
}
protected void checkPermission(Permission perm)
{
if (!getSelfMember().hasPermission(perm))
throw new InsufficientPermissionException(this, perm);
}
protected void checkPosition(UserSnowflake user)
{
Member member = resolveMember(user);
if(member != null && !getSelfMember().canInteract(member))
throw new HierarchyException("Can't modify a member with higher or equal highest role than yourself!");
}
protected void checkPosition(Role role)
{
if(!getSelfMember().canInteract(role))
throw new HierarchyException("Can't modify a role with higher or equal highest role than yourself! Role: " + role.toString());
}
private void checkRoles(Collection roles, String type, String preposition)
{
roles.forEach(role ->
{
Checks.notNull(role, "Role in roles to " + type);
checkGuild(role.getGuild(), "Role: " + role);
checkPosition(role);
Checks.check(!role.isManaged(), "Cannot %s a managed role %s a Member. Role: %s", type, preposition, role.toString());
});
}
private void checkCanCreateChannel(Category parent)
{
if (parent != null)
{
Checks.check(parent.getGuild().equals(this), "Category is not from the same guild!");
if (!getSelfMember().hasPermission(parent, Permission.MANAGE_CHANNEL))
throw new InsufficientPermissionException(parent, Permission.MANAGE_CHANNEL);
}
else
{
checkPermission(Permission.MANAGE_CHANNEL);
}
}
private void checkOwner(long userId, String what)
{
if (userId == ownerId)
throw new HierarchyException("Cannot " + what + " the owner of a guild.");
}
private Member resolveMember(UserSnowflake user)
{
Member member = getMemberById(user.getIdLong());
if (member == null && user instanceof Member)
{
member = (Member) user;
// Only resolve if member is in the same guild, otherwise role information is not accurate
if (!equals(member.getGuild()))
member = null;
}
return member;
}
private synchronized boolean isRequestToSpeakPending()
{
return pendingRequestToSpeak != null && !pendingRequestToSpeak.isDone();
}
public synchronized void updateRequestToSpeak()
{
if (!isRequestToSpeakPending())
return;
AudioChannel connectedChannel = getSelfMember().getVoiceState().getChannel();
if (!(connectedChannel instanceof StageChannel))
return;
StageChannel stage = (StageChannel) connectedChannel;
CompletableFuture future = pendingRequestToSpeak;
pendingRequestToSpeak = null;
try
{
stage.requestToSpeak().queue((v) -> future.complete(null), future::completeExceptionally);
}
catch (Throwable ex)
{
future.completeExceptionally(ex);
if (ex instanceof Error)
throw ex;
}
}
// ---- Setters -----
public GuildImpl setOwner(Member owner)
{
// Only cache owner if user cache is enabled
if (owner != null && getMemberById(owner.getIdLong()) != null)
this.owner = owner;
return this;
}
public GuildImpl setName(String name)
{
this.name = name;
return this;
}
public GuildImpl setIconId(String iconId)
{
this.iconId = iconId;
return this;
}
public GuildImpl setFeatures(Set features)
{
this.features = Collections.unmodifiableSet(features);
return this;
}
public GuildImpl setSplashId(String splashId)
{
this.splashId = splashId;
return this;
}
public GuildImpl setVanityCode(String code)
{
this.vanityCode = code;
return this;
}
public GuildImpl setDescription(String description)
{
this.description = description;
return this;
}
public GuildImpl setBannerId(String bannerId)
{
this.banner = bannerId;
return this;
}
public GuildImpl setMaxPresences(int maxPresences)
{
this.maxPresences = maxPresences;
return this;
}
public GuildImpl setMaxMembers(int maxMembers)
{
this.maxMembers = maxMembers;
return this;
}
public GuildImpl setAfkChannel(VoiceChannel afkChannel)
{
this.afkChannel = afkChannel;
return this;
}
public GuildImpl setSystemChannel(TextChannel systemChannel)
{
this.systemChannel = systemChannel;
return this;
}
public GuildImpl setRulesChannel(TextChannel rulesChannel)
{
this.rulesChannel = rulesChannel;
return this;
}
public GuildImpl setCommunityUpdatesChannel(TextChannel communityUpdatesChannel)
{
this.communityUpdatesChannel = communityUpdatesChannel;
return this;
}
public GuildImpl setPublicRole(Role publicRole)
{
this.publicRole = publicRole;
return this;
}
public GuildImpl setVerificationLevel(VerificationLevel level)
{
this.verificationLevel = level;
return this;
}
public GuildImpl setDefaultNotificationLevel(NotificationLevel level)
{
this.defaultNotificationLevel = level;
return this;
}
public GuildImpl setRequiredMFALevel(MFALevel level)
{
this.mfaLevel = level;
return this;
}
public GuildImpl setExplicitContentLevel(ExplicitContentLevel level)
{
this.explicitContentLevel = level;
return this;
}
public GuildImpl setAfkTimeout(Timeout afkTimeout)
{
this.afkTimeout = afkTimeout;
return this;
}
public GuildImpl setLocale(DiscordLocale locale)
{
this.preferredLocale = locale;
return this;
}
public GuildImpl setBoostTier(int tier)
{
this.boostTier = BoostTier.fromKey(tier);
return this;
}
public GuildImpl setBoostCount(int count)
{
this.boostCount = count;
return this;
}
public GuildImpl setOwnerId(long ownerId)
{
this.ownerId = ownerId;
return this;
}
public GuildImpl setMemberCount(int count)
{
this.memberCount = count;
return this;
}
public GuildImpl setNSFWLevel(NSFWLevel nsfwLevel)
{
this.nsfwLevel = nsfwLevel;
return this;
}
public GuildImpl setBoostProgressBarEnabled(boolean enabled)
{
this.boostProgressBarEnabled = enabled;
return this;
}
// -- Map getters --
public SortedSnowflakeCacheViewImpl getScheduledEventsView()
{
return scheduledEventCache;
}
public SortedSnowflakeCacheViewImpl getCategoriesView()
{
return categoryCache;
}
public SortedSnowflakeCacheViewImpl getTextChannelsView()
{
return textChannelCache;
}
public SortedSnowflakeCacheViewImpl getNewsChannelView()
{
return newsChannelCache;
}
public SortedSnowflakeCacheViewImpl getVoiceChannelsView()
{
return voiceChannelCache;
}
public SortedSnowflakeCacheViewImpl getStageChannelsView()
{
return stageChannelCache;
}
public SortedSnowflakeCacheViewImpl getThreadChannelsView()
{
return threadChannelCache;
}
public SortedSnowflakeCacheViewImpl getForumChannelsView()
{
return forumChannelCache;
}
public SortedSnowflakeCacheViewImpl getMediaChannelsView()
{
return mediaChannelCache;
}
public SortedSnowflakeCacheViewImpl getRolesView()
{
return roleCache;
}
public SnowflakeCacheViewImpl getEmojisView()
{
return emojicache;
}
public SnowflakeCacheViewImpl getStickersView()
{
return stickerCache;
}
public MemberCacheViewImpl getMembersView()
{
return memberCache;
}
@Nonnull
@Override
public NSFWLevel getNSFWLevel()
{
return nsfwLevel;
}
@Nullable
public CacheView.SimpleCacheView getPresenceView()
{
return memberPresences;
}
// -- Member Tracking --
public void onMemberAdd()
{
memberCount++;
}
public void onMemberRemove()
{
memberCount--;
}
// -- Object overrides --
@Override
public boolean equals(Object o)
{
if (o == this)
return true;
if (!(o instanceof GuildImpl))
return false;
GuildImpl oGuild = (GuildImpl) o;
return this.id == oGuild.id;
}
@Override
public int hashCode()
{
return Long.hashCode(id);
}
@Override
public String toString()
{
return new EntityString(this)
.setName(getName())
.toString();
}
}