com.pubnub.api.endpoints.presence.Leave.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-kotlin Show documentation
Show all versions of pubnub-kotlin 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!
package com.pubnub.api.endpoints.presence
import com.pubnub.api.Endpoint
import com.pubnub.api.PubNub
import com.pubnub.api.PubNubError
import com.pubnub.api.PubNubException
import com.pubnub.api.PubNubUtil
import com.pubnub.api.enums.PNOperationType
import com.pubnub.api.toCsv
import retrofit2.Call
import retrofit2.Response
import java.util.HashMap
class Leave internal constructor(pubnub: PubNub) : Endpoint(pubnub) {
var channels = emptyList()
var channelGroups = emptyList()
override fun validateParams() {
super.validateParams()
if (channels.isEmpty() && channelGroups.isEmpty()) {
throw PubNubException(PubNubError.CHANNEL_AND_GROUP_MISSING)
}
}
override fun getAffectedChannels() = channels
override fun getAffectedChannelGroups() = channelGroups
override fun doWork(queryParams: HashMap): Call {
addQueryParams(queryParams)
return pubnub.retrofitManager.presenceService.leave(
pubnub.configuration.subscribeKey,
channels.toCsv(),
queryParams
)
}
private fun addQueryParams(queryParams: HashMap) {
queryParams["channel-group"] = channelGroups.toCsv()
PubNubUtil.maybeAddEeQueryParam(pubnub.configuration, queryParams)
}
override fun createResponse(input: Response) = true
override fun operationType() = PNOperationType.PNUnsubscribeOperation
}