com.pubnub.api.endpoints.files.PublishFileMessage.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.files
import com.pubnub.api.Endpoint
import com.pubnub.api.PubNub
import com.pubnub.api.PubNubError
import com.pubnub.api.PubNubException
import com.pubnub.api.crypto.encryptString
import com.pubnub.api.endpoints.remoteaction.ExtendedRemoteAction
import com.pubnub.api.enums.PNOperationType
import com.pubnub.api.models.consumer.files.PNBaseFile
import com.pubnub.api.models.consumer.files.PNPublishFileMessageResult
import com.pubnub.api.models.server.files.FileUploadNotification
import com.pubnub.extension.numericString
import com.pubnub.extension.quoted
import retrofit2.Call
import retrofit2.Response
/**
* @see [PubNub.publishFileMessage]
*/
open class PublishFileMessage(
private val channel: String,
fileName: String,
fileId: String,
private val message: Any? = null,
private val meta: Any? = null,
private val ttl: Int? = null,
private val shouldStore: Boolean? = null,
pubNub: PubNub,
) : Endpoint, PNPublishFileMessageResult>(pubNub) {
private val pnFile = PNBaseFile(fileId, fileName)
@Throws(PubNubException::class)
override fun validateParams() {
if (channel.isEmpty()) {
throw PubNubException(PubNubError.CHANNEL_MISSING)
}
}
@Throws(PubNubException::class)
override fun doWork(queryParams: HashMap): Call> {
val stringifiedMessage: String = pubnub.mapper.toJson(FileUploadNotification(message, pnFile))
val messageAsString = pubnub.cryptoModule?.encryptString(stringifiedMessage)?.quoted() ?: stringifiedMessage
meta?.let {
val stringifiedMeta: String = pubnub.mapper.toJson(it)
queryParams["meta"] = stringifiedMeta
}
shouldStore?.numericString?.let { queryParams["store"] = it }
ttl?.let { queryParams["ttl"] = it.toString() }
return pubnub.retrofitManager.filesService.notifyAboutFileUpload(
pubnub.configuration.publishKey,
pubnub.configuration.subscribeKey,
channel,
messageAsString,
queryParams
)
}
@Throws(PubNubException::class)
override fun createResponse(input: Response>): PNPublishFileMessageResult {
return input.body()?.let { body ->
val timetoken = body[2].toString().toLong()
PNPublishFileMessageResult(timetoken)
} ?: throw PubNubException(PubNubError.INTERNAL_ERROR)
}
override fun getAffectedChannels() = listOf(channel)
override fun getAffectedChannelGroups(): List = listOf()
override fun operationType(): PNOperationType = PNOperationType.FileOperation
override fun isAuthRequired(): Boolean = true
override fun isSubKeyRequired(): Boolean = true
override fun isPubKeyRequired(): Boolean = true
internal class Factory(private val pubNub: PubNub) {
fun create(
channel: String,
fileName: String,
fileId: String,
message: Any? = null,
meta: Any? = null,
ttl: Int? = null,
shouldStore: Boolean? = null,
): ExtendedRemoteAction {
return PublishFileMessage(
channel = channel,
fileName = fileName,
fileId = fileId,
message = message,
meta = meta,
ttl = ttl,
shouldStore = shouldStore,
pubNub = pubNub
)
}
}
}