net.dv8tion.jda.internal.requests.restaction.pagination.PollVotersPaginationActionImpl 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.requests.restaction.pagination;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.entities.User;
import net.dv8tion.jda.api.exceptions.ParsingException;
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.pagination.PollVotersPaginationAction;
import net.dv8tion.jda.api.utils.data.DataArray;
import net.dv8tion.jda.api.utils.data.DataObject;
import net.dv8tion.jda.internal.entities.EntityBuilder;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.EnumSet;
import java.util.List;
public class PollVotersPaginationActionImpl extends PaginationActionImpl implements PollVotersPaginationAction
{
public PollVotersPaginationActionImpl(JDA jda, String channelId, String messageId, long answerId)
{
super(jda, Route.Messages.GET_POLL_ANSWER_VOTERS.compile(channelId, messageId, Long.toString(answerId)), 1, 1000, 1000);
this.order = PaginationOrder.FORWARD;
}
@NotNull
@Override
public EnumSet getSupportedOrders()
{
return EnumSet.of(PaginationOrder.FORWARD);
}
@Override
protected long getKey(User it)
{
return it.getIdLong();
}
@Override
protected void handleSuccess(Response response, Request> request)
{
DataArray array = response.getObject().getArray("users");
List users = new ArrayList<>(array.length());
EntityBuilder builder = api.getEntityBuilder();
for (int i = 0; i < array.length(); i++)
{
try
{
DataObject object = array.getObject(i);
users.add(builder.createUser(object));
}
catch(ParsingException | NullPointerException e)
{
LOG.warn("Encountered an exception in PollVotersPaginationAction", e);
}
}
if (!users.isEmpty())
{
if (useCache)
cached.addAll(users);
last = users.get(users.size() - 1);
lastKey = last.getIdLong();
}
request.onSuccess(users);
}
}