net.dv8tion.jda.internal.requests.IncomingWebhookClientImpl 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;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.entities.IncomingWebhookClient;
import net.dv8tion.jda.api.entities.Message;
import net.dv8tion.jda.api.entities.channel.middleman.MessageChannel;
import net.dv8tion.jda.api.requests.Route;
import net.dv8tion.jda.api.requests.restaction.WebhookMessageDeleteAction;
import net.dv8tion.jda.api.requests.restaction.WebhookMessageRetrieveAction;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.JDAImpl;
import net.dv8tion.jda.internal.entities.AbstractWebhookClient;
import net.dv8tion.jda.internal.entities.EntityBuilder;
import net.dv8tion.jda.internal.entities.ReceivedMessage;
import net.dv8tion.jda.internal.requests.restaction.WebhookMessageCreateActionImpl;
import net.dv8tion.jda.internal.requests.restaction.WebhookMessageDeleteActionImpl;
import net.dv8tion.jda.internal.requests.restaction.WebhookMessageEditActionImpl;
import net.dv8tion.jda.internal.requests.restaction.WebhookMessageRetrieveActionImpl;
import net.dv8tion.jda.internal.utils.Checks;
import javax.annotation.Nonnull;
import java.util.function.Function;
public class IncomingWebhookClientImpl extends AbstractWebhookClient implements IncomingWebhookClient
{
public IncomingWebhookClientImpl(long webhookId, String webhookToken, JDA api)
{
super(webhookId, webhookToken, api);
}
@Override
public WebhookMessageCreateActionImpl sendRequest()
{
Route.CompiledRoute route = Route.Webhooks.EXECUTE_WEBHOOK.compile(Long.toUnsignedString(id), token);
route = route.withQueryParams("wait", "true");
WebhookMessageCreateActionImpl action = new WebhookMessageCreateActionImpl<>(api, route, builder());
action.run();
action.setInteraction(false);
return action;
}
@Override
public WebhookMessageEditActionImpl editRequest(@Nonnull String messageId)
{
if (!"@original".equals(messageId))
Checks.isSnowflake(messageId);
Route.CompiledRoute route = Route.Webhooks.EXECUTE_WEBHOOK_EDIT.compile(Long.toUnsignedString(id), token, messageId);
route = route.withQueryParams("wait", "true");
WebhookMessageEditActionImpl action = new WebhookMessageEditActionImpl<>(api, route, builder());
action.run();
return action;
}
@Nonnull
@Override
public WebhookMessageRetrieveAction retrieveMessageById(@Nonnull String messageId)
{
if (!"@original".equals(messageId))
Checks.isSnowflake(messageId);
Route.CompiledRoute route = Route.Webhooks.EXECUTE_WEBHOOK_FETCH.compile(Long.toUnsignedString(id), token, messageId);
WebhookMessageRetrieveActionImpl action = new WebhookMessageRetrieveActionImpl(api, route, (response, request) -> builder().apply(response.getObject()));
action.run();
return action;
}
@Nonnull
@Override
public WebhookMessageDeleteAction deleteMessageById(@Nonnull String messageId)
{
WebhookMessageDeleteActionImpl action = (WebhookMessageDeleteActionImpl) super.deleteMessageById(messageId);
action.run();
return action;
}
private Function builder()
{
return (data) -> {
JDAImpl jda = (JDAImpl) api;
long channelId = data.getUnsignedLong("channel_id");
MessageChannel channel = api.getChannelById(MessageChannel.class, channelId);
EntityBuilder entityBuilder = jda.getEntityBuilder();
ReceivedMessage message = entityBuilder.createMessageBestEffort(data, channel, null);
message.withHook(this);
return message;
};
}
}