net.dv8tion.jda.internal.entities.SelfUserImpl 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 net.dv8tion.jda.api.entities.Message;
import net.dv8tion.jda.api.entities.SelfUser;
import net.dv8tion.jda.api.entities.channel.concrete.PrivateChannel;
import net.dv8tion.jda.api.managers.AccountManager;
import net.dv8tion.jda.api.requests.restaction.CacheRestAction;
import net.dv8tion.jda.internal.JDAImpl;
import net.dv8tion.jda.internal.managers.AccountManagerImpl;
import javax.annotation.Nonnull;
public class SelfUserImpl extends UserImpl implements SelfUser
{
private boolean verified;
private boolean mfaEnabled;
private long applicationId;
public SelfUserImpl(long id, JDAImpl api)
{
super(id, api);
this.applicationId = id; // configured later by EntityBuilder#createSelfUser when handling the ready event payload
}
@Override
public boolean hasPrivateChannel()
{
return false;
}
@Override
public PrivateChannel getPrivateChannel()
{
throw new UnsupportedOperationException("You cannot get a PrivateChannel with yourself (SelfUser)");
}
@Nonnull
@Override
public CacheRestAction openPrivateChannel()
{
throw new UnsupportedOperationException("You cannot open a PrivateChannel with yourself (SelfUser)");
}
@Override
public long getApplicationIdLong()
{
return applicationId;
}
@Override
public boolean isVerified()
{
return verified;
}
@Override
public boolean isMfaEnabled()
{
return mfaEnabled;
}
@Override
public long getAllowedFileSize()
{
return Message.MAX_FILE_SIZE;
}
@Nonnull
@Override
public AccountManager getManager()
{
return new AccountManagerImpl(this);
}
public SelfUserImpl setVerified(boolean verified)
{
this.verified = verified;
return this;
}
public SelfUserImpl setMfaEnabled(boolean enabled)
{
this.mfaEnabled = enabled;
return this;
}
public SelfUserImpl setApplicationId(long id)
{
this.applicationId = id;
return this;
}
public static SelfUserImpl copyOf(SelfUserImpl other, JDAImpl jda)
{
SelfUserImpl selfUser = new SelfUserImpl(other.id, jda);
selfUser.setName(other.name)
.setGlobalName(other.globalName)
.setAvatarId(other.avatarId)
.setDiscriminator(other.getDiscriminatorInt())
.setBot(other.bot);
return selfUser
.setVerified(other.verified)
.setMfaEnabled(other.mfaEnabled)
.setApplicationId(other.applicationId);
}
}