com.pubnub.api.endpoints.push.AddChannelsToPush Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub Show documentation
Show all versions of pubnub Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of
broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter
second!
The newest version!
// Generated by delombok at Fri Jun 30 11:22:25 PDT 2017
package com.pubnub.api.endpoints.push;
import com.pubnub.api.PubNub;
import com.pubnub.api.PubNubException;
import com.pubnub.api.PubNubUtil;
import com.pubnub.api.builder.PubNubErrorBuilder;
import com.pubnub.api.endpoints.Endpoint;
import com.pubnub.api.enums.PNOperationType;
import com.pubnub.api.enums.PNPushType;
import com.pubnub.api.models.consumer.push.PNPushAddChannelResult;
import retrofit2.Call;
import retrofit2.Response;
import retrofit2.Retrofit;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class AddChannelsToPush extends Endpoint, PNPushAddChannelResult> {
private PNPushType pushType;
private List channels;
private String deviceId;
public AddChannelsToPush(PubNub pubnub, Retrofit retrofit) {
super(pubnub, retrofit);
channels = new ArrayList<>();
}
@Override
protected List getAffectedChannels() {
return channels;
}
@Override
protected List getAffectedChannelGroups() {
return null;
}
@Override
protected void validateParams() throws PubNubException {
if (this.getPubnub().getConfiguration().getSubscribeKey() == null || this.getPubnub().getConfiguration().getSubscribeKey().isEmpty()) {
throw PubNubException.builder().pubnubError(PubNubErrorBuilder.PNERROBJ_SUBSCRIBE_KEY_MISSING).build();
}
if (pushType == null) {
throw PubNubException.builder().pubnubError(PubNubErrorBuilder.PNERROBJ_PUSH_TYPE_MISSING).build();
}
if (deviceId == null || deviceId.isEmpty()) {
throw PubNubException.builder().pubnubError(PubNubErrorBuilder.PNERROBJ_DEVICE_ID_MISSING).build();
}
if (channels.size() == 0) {
throw PubNubException.builder().pubnubError(PubNubErrorBuilder.PNERROBJ_CHANNEL_MISSING).build();
}
}
@Override
protected Call> doWork(Map baseParams) throws PubNubException {
baseParams.put("type", pushType.name().toLowerCase());
if (channels.size() != 0) {
baseParams.put("add", PubNubUtil.joinString(channels, ","));
}
PushService service = this.getRetrofit().create(PushService.class);
return service.modifyChannelsForDevice(this.getPubnub().getConfiguration().getSubscribeKey(), deviceId, baseParams);
}
@Override
protected PNPushAddChannelResult createResponse(Response> input) throws PubNubException {
if (input.body() == null) {
throw PubNubException.builder().pubnubError(PubNubErrorBuilder.PNERROBJ_PARSING_ERROR).build();
}
return PNPushAddChannelResult.builder().build();
}
@Override
protected PNOperationType getOperationType() {
return PNOperationType.PNPushNotificationEnabledChannelsOperation;
}
@Override
protected boolean isAuthRequired() {
return true;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public AddChannelsToPush pushType(final PNPushType pushType) {
this.pushType = pushType;
return this;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public AddChannelsToPush channels(final List channels) {
this.channels = channels;
return this;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public AddChannelsToPush deviceId(final String deviceId) {
this.deviceId = deviceId;
return this;
}
}