net.dv8tion.jda.internal.requests.restaction.RoleActionImpl 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
The newest version!
/*
* 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.requests.restaction;
import net.dv8tion.jda.api.Permission;
import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.Icon;
import net.dv8tion.jda.api.entities.Role;
import net.dv8tion.jda.api.exceptions.InsufficientPermissionException;
import net.dv8tion.jda.api.requests.Request;
import net.dv8tion.jda.api.requests.Response;
import net.dv8tion.jda.api.requests.Route;
import net.dv8tion.jda.api.requests.restaction.RoleAction;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.entities.GuildImpl;
import net.dv8tion.jda.internal.utils.Checks;
import okhttp3.RequestBody;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import java.util.concurrent.TimeUnit;
import java.util.function.BooleanSupplier;
public class RoleActionImpl extends AuditableRestActionImpl implements RoleAction
{
protected final Guild guild;
protected Long permissions;
protected String name = null;
protected Integer color = null;
protected Boolean hoisted = null;
protected Boolean mentionable = null;
protected Icon icon = null;
protected String emoji = null;
/**
* Creates a new RoleAction instance
*
* @param guild
* The {@link net.dv8tion.jda.api.entities.Guild Guild} for which the Role should be created.
*/
public RoleActionImpl(Guild guild)
{
super(guild.getJDA(), Route.Roles.CREATE_ROLE.compile(guild.getId()));
this.guild = guild;
}
@Nonnull
@Override
public RoleActionImpl setCheck(BooleanSupplier checks)
{
return (RoleActionImpl) super.setCheck(checks);
}
@Nonnull
@Override
public RoleActionImpl timeout(long timeout, @Nonnull TimeUnit unit)
{
return (RoleActionImpl) super.timeout(timeout, unit);
}
@Nonnull
@Override
public RoleActionImpl deadline(long timestamp)
{
return (RoleActionImpl) super.deadline(timestamp);
}
@Nonnull
@Override
public Guild getGuild()
{
return guild;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setName(String name)
{
if (name != null)
{
Checks.notEmpty(name, "Name");
Checks.notLonger(name, 100, "Name");
}
this.name = name;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setHoisted(Boolean hoisted)
{
this.hoisted = hoisted;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setMentionable(Boolean mentionable)
{
this.mentionable = mentionable;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setColor(Integer rgb)
{
this.color = rgb;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setPermissions(Long permissions)
{
if (permissions != null)
{
for (Permission p : Permission.getPermissions(permissions))
checkPermission(p);
}
this.permissions = permissions;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setIcon(Icon icon)
{
this.icon = icon;
this.emoji = null;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public RoleActionImpl setIcon(String emoji)
{
this.emoji = emoji;
this.icon = null;
return this;
}
@Override
protected RequestBody finalizeData()
{
DataObject object = DataObject.empty();
if (name != null)
object.put("name", name);
if (color != null)
object.put("color", color & 0xFFFFFF);
if (permissions != null)
object.put("permissions", permissions);
if (hoisted != null)
object.put("hoist", hoisted);
if (mentionable != null)
object.put("mentionable", mentionable);
if (icon != null)
object.put("icon", icon.getEncoding());
if (emoji != null)
object.put("unicode_emoji", emoji);
return getRequestBody(object);
}
@Override
protected void handleSuccess(Response response, Request request)
{
request.onSuccess(api.getEntityBuilder().createRole((GuildImpl) guild, response.getObject(), guild.getIdLong()));
}
private void checkPermission(Permission permission)
{
if (!guild.getSelfMember().hasPermission(permission))
throw new InsufficientPermissionException(guild, permission);
}
}