net.dv8tion.jda.internal.managers.TemplateManagerImpl 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.managers;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.Permission;
import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.templates.Template;
import net.dv8tion.jda.api.exceptions.InsufficientPermissionException;
import net.dv8tion.jda.api.managers.TemplateManager;
import net.dv8tion.jda.api.requests.Route;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.utils.Checks;
import okhttp3.RequestBody;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class TemplateManagerImpl extends ManagerBase implements TemplateManager
{
protected final Template template;
protected final JDA api;
protected String name;
protected String description;
/**
* Creates a new TemplateManager instance
*
* @param template
* {@link Template Template} that should be modified
*/
public TemplateManagerImpl(Template template)
{
super(template.getJDA(), Route.Templates.MODIFY_TEMPLATE.compile(template.getGuild().getId(), template.getCode()));
this.template = template;
this.api = template.getJDA();
if (isPermissionChecksEnabled())
checkPermissions();
}
@Nonnull
@Override
@CheckReturnValue
public TemplateManagerImpl reset(long fields)
{
super.reset(fields);
if ((fields & NAME) == NAME)
this.name = null;
if ((fields & DESCRIPTION) == DESCRIPTION)
this.description = null;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public TemplateManagerImpl reset(long... fields)
{
super.reset(fields);
return this;
}
@Nonnull
@Override
@CheckReturnValue
public TemplateManagerImpl reset()
{
super.reset();
this.name = null;
this.description = null;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public TemplateManagerImpl setName(@Nonnull String name)
{
Checks.notEmpty(name, "Name");
Checks.notLonger(name, 100, "Name");
this.name = name;
set |= NAME;
return this;
}
@Nonnull
@Override
@CheckReturnValue
public TemplateManagerImpl setDescription(@Nullable String description)
{
if (description != null)
Checks.notLonger(name, 120, "Description");
this.description = description;
set |= DESCRIPTION;
return this;
}
@Override
protected RequestBody finalizeData()
{
DataObject body = DataObject.empty();
if (shouldUpdate(NAME))
body.put("name", name);
if (shouldUpdate(DESCRIPTION))
body.put("description", name);
reset(); //now that we've built our JSON object, reset the manager back to the non-modified state
return getRequestBody(body);
}
@Override
protected boolean checkPermissions()
{
final Guild guild = api.getGuildById(template.getGuild().getIdLong());
if (guild == null)
return true;
if (!guild.getSelfMember().hasPermission(Permission.MANAGE_SERVER))
throw new InsufficientPermissionException(guild, Permission.MANAGE_SERVER);
return super.checkPermissions();
}
}