Skip to content

Commit

Permalink
Merge branch 'master' into wkal/chat_js_wrapper2
Browse files Browse the repository at this point in the history
  • Loading branch information
wkal-pubnub authored Nov 6, 2024
2 parents 69e3168 + 68c6f1c commit ac7314e
Show file tree
Hide file tree
Showing 14 changed files with 107 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ interface PNConfiguration : com.pubnub.api.v2.PNConfiguration {
val secretKey: String

/**
* If Access Manager (deprecated PAM v2) is utilized, client will use this authKey in all restricted requests.
* If Access Manager V2(deprecated PAM v2) is utilized, client will use this authKey in all restricted requests.
*/
@Deprecated(
message = "The authKey parameter is deprecated because it relates to deprecated Access Manager (PAM V2) and will be removed in the future. " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class PNConfigurationImpl(
override val publishKey: String = "",
override val secretKey: String = "",
override val authKey: String = "",
override val authToken: String? = null, // this property is not used, user can't create configuration with authToken
override val cryptoModule: CryptoModule? = null,
override val origin: String = "",
override val secure: Boolean = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class EntitiesTest : BaseIntegrationTest() {
}
}

@Test
@Test // todo flaky
fun can_get_events_from_channel_subscriptionSet() = runTest {
pubnub.test(backgroundScope) {
val channelSet = setOf(channelName, "abc")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ class PubNubImpl(val jsPubNub: PubNubJs) : PubNub {
jsPubNub.asDynamic().configuration.subscribeKey,
jsPubNub.asDynamic().configuration.publishKey,
jsPubNub.asDynamic().configuration.secretKey,
jsPubNub.asDynamic().configuration.authKey,
jsPubNub.asDynamic().configuration.logVerbosity
jsPubNub.asDynamic().configuration.logVerbosity,
authToken = jsPubNub.asDynamic().configuration.authToken
)

override fun addListener(listener: EventListener) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ expect interface PNConfiguration {
val userId: UserId
val subscribeKey: String
val publishKey: String

/**
* The secretKey should only be used within a server side and never exposed to client devices.
*/
val secretKey: String
val logVerbosity: PNLogVerbosity

Expand All @@ -16,6 +20,12 @@ expect interface PNConfiguration {
level = DeprecationLevel.WARNING
)
val authKey: String

/**
* Authentication token for the PubNub client. This token is required on the client side when Access Manager (PAM) is enabled for PubNub keys.
* It can be generated using the [PubNub.grantToken] method, which should be executed on the server side with a PubNub instance initialized using the secret key.
*/
val authToken: String?
}

@Deprecated(
Expand All @@ -42,4 +52,5 @@ expect fun createPNConfiguration(
publishKey: String,
secretKey: String? = null,
logVerbosity: PNLogVerbosity = PNLogVerbosity.NONE,
authToken: String? = null
): PNConfiguration
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import com.pubnub.api.UserId
import com.pubnub.api.enums.PNLogVerbosity

private const val NO_AUTH_KEY = ""
private const val NO_AUTH_TOKEN = ""

actual interface PNConfiguration {
actual val userId: UserId
Expand All @@ -18,6 +19,12 @@ actual interface PNConfiguration {
level = DeprecationLevel.WARNING
)
actual val authKey: String

/**
* Authentication token for the PubNub client. This token is required on the client side when Access Manager (PAM) is enabled for PubNub keys.
* It can be generated using the [PubNub.grantToken] method, which should be executed on the server side with a PubNub instance initialized using the secret key.
*/
actual val authToken: String?
}

@Deprecated(
Expand Down Expand Up @@ -47,6 +54,8 @@ actual fun createPNConfiguration(
get() = authKey.orEmpty()
override val logVerbosity: PNLogVerbosity
get() = logVerbosity
override val authToken: String?
get() = null
}
}

Expand All @@ -55,7 +64,8 @@ actual fun createPNConfiguration(
subscribeKey: String,
publishKey: String,
secretKey: String?,
logVerbosity: PNLogVerbosity
logVerbosity: PNLogVerbosity,
authToken: String?
): PNConfiguration {
return object : PNConfiguration {
override val userId: UserId = userId
Expand All @@ -67,5 +77,7 @@ actual fun createPNConfiguration(
get() = NO_AUTH_KEY
override val logVerbosity: PNLogVerbosity
get() = logVerbosity
override val authToken: String?
get() = authToken
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import com.pubnub.api.UserId
import com.pubnub.api.enums.PNLogVerbosity

private const val NO_AUTH_KEY = ""
private const val NO_AUTH_TOKEN = ""

actual interface PNConfiguration {
actual val userId: UserId
Expand All @@ -19,6 +20,12 @@ actual interface PNConfiguration {
level = DeprecationLevel.WARNING
)
actual val authKey: String

/**
* Authentication token for the PubNub client. This token is required on the client side when Access Manager (PAM) is enabled for PubNub keys.
* It can be generated using the [PubNub.grantToken] method, which should be executed on the server side with a PubNub instance initialized using the secret key.
*/
actual val authToken: String?
}

@Deprecated(
Expand Down Expand Up @@ -49,6 +56,8 @@ actual fun createPNConfiguration(
get() = secretKey.orEmpty()
override val authKey: String
get() = authKey.orEmpty()
override val authToken: String?
get() = null
override val enableEventEngine: Boolean
get() = false
override val logVerbosity: PNLogVerbosity
Expand All @@ -61,7 +70,8 @@ actual fun createPNConfiguration(
subscribeKey: String,
publishKey: String,
secretKey: String?,
logVerbosity: PNLogVerbosity
logVerbosity: PNLogVerbosity,
authToken: String?
): PNConfiguration {
return object : PNConfiguration {
override val userId: UserId
Expand All @@ -74,6 +84,8 @@ actual fun createPNConfiguration(
get() = secretKey.orEmpty()
override val authKey: String
get() = NO_AUTH_KEY
override val authToken: String?
get() = authToken
override val enableEventEngine: Boolean
get() = false
override val logVerbosity: PNLogVerbosity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ actual fun createPNConfiguration(
subscribeKey: String,
publishKey: String,
secretKey: String?,
logVerbosity: PNLogVerbosity
logVerbosity: PNLogVerbosity,
authToken: String?
): PNConfiguration {
return PNConfiguration.builder(userId, subscribeKey) {
this.publishKey = publishKey
this.secretKey = secretKey.orEmpty()
this.authKey = NO_AUTH_KEY
this.secretKey = secretKey.orEmpty()
this.logVerbosity = logVerbosity
this.authToken = authToken.orEmpty()
}.build()
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ actual interface PNConfiguration {
)
actual val authKey: String

/**
* Authentication token for the PubNub client. This token is required on the client side when Access Manager (PAM) is enabled for PubNub keys.
* It can be generated using the [PubNub.grantToken] method, which should be executed on the server side with a PubNub instance initialized using the secret key.
*/
actual val authToken: String?

/**
* CryptoModule is responsible for handling encryption and decryption.
* If set, all communications to and from PubNub will be encrypted.
Expand Down Expand Up @@ -346,6 +352,12 @@ actual interface PNConfiguration {
)
var authKey: String

/**
* Authentication token for the PubNub client. This token is required on the client side when Access Manager (PAM) is enabled for PubNub keys.
* It can be generated using the [PubNub.grantToken] method, which should be executed on the server side with a PubNub instance initialized using the secret key.
*/
var authToken: String?

/**
* CryptoModule is responsible for handling encryption and decryption.
* If set, all communications to and from PubNub will be encrypted.
Expand Down Expand Up @@ -656,6 +668,12 @@ interface PNConfigurationOverride {
)
var authKey: String

/**
* Authentication token for the PubNub client. This token is required on the client side when Access Manager (PAM) is enabled for PubNub keys.
* It can be generated using the [PubNub.grantToken] method, which should be executed on the server side with a PubNub instance initialized using the secret key.
*/
var authToken: String?

/**
* CryptoModule is responsible for handling encryption and decryption.
* If set, all communications to and from PubNub will be encrypted.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,29 @@ class PNConfigurationIntegrationTests : BaseIntegrationTest() {
@Test
fun `create configuration with configuration action block`() {
val expectedUuid = PubNub.generateUUID()
val expectedAuthToken = "token"

val configBuilder = PNConfiguration.builder(UserId(expectedUuid), Keys.subKey) {
publishKey = Keys.pubKey
authToken = expectedAuthToken
}
val pubNub = PubNub.create(configBuilder.build())

Assert.assertEquals(expectedUuid, pubNub.configuration.userId.value)
Assert.assertEquals(Keys.subKey, pubNub.configuration.subscribeKey)
Assert.assertEquals(Keys.pubKey, pubNub.configuration.publishKey)
Assert.assertEquals(expectedAuthToken, pubNub.configuration.authToken)
Assert.assertEquals(expectedAuthToken, pubNub.getToken())
}

@Test
fun `create configuration override`() {
val expectedUuid = PubNub.generateUUID()
val expectedAuthToken = "token"

val configBuilder = PNConfiguration.builder(UserId(expectedUuid), Keys.subKey) {
publishKey = Keys.pubKey
authToken = "token$expectedAuthToken"
}
val config = configBuilder.build()

Expand All @@ -54,24 +60,29 @@ class PNConfigurationIntegrationTests : BaseIntegrationTest() {

val overrideConfig = PNConfigurationOverride.from(config).apply {
publishKey = "overridePublishKey"
authToken = expectedAuthToken
}.build()

Assert.assertEquals(Keys.subKey, overrideConfig.subscribeKey)
Assert.assertEquals("overridePublishKey", overrideConfig.publishKey)
Assert.assertEquals(expectedAuthToken, overrideConfig.authToken)
}

@Test
fun `use configuration override with Publish`() {
val expectedUuid = PubNub.generateUUID()
val expectedAuthToken = "token"

val configBuilder = PNConfiguration.builder(UserId(expectedUuid), Keys.subKey) {
publishKey = "rubbishKey"
authToken = "old$expectedAuthToken"
}
val config = configBuilder.build()
val pubnub = PubNub.create(config)

val overrideConfig = PNConfigurationOverride.from(config).apply {
publishKey = Keys.pubKey
authToken = expectedAuthToken
}.build()

pubnub.publish(randomChannel(), "message").overrideConfiguration(overrideConfig).sync()
Expand All @@ -81,13 +92,18 @@ class PNConfigurationIntegrationTests : BaseIntegrationTest() {
@Test
fun `use configuration override builder with Publish`() {
val expectedUuid = PubNub.generateUUID()
val expectedAuthToken = "token"

val configBuilder = PNConfiguration.builder(UserId(expectedUuid), Keys.subKey) {
publishKey = "rubbishKey"
authToken = "old$expectedAuthToken"
}
val pubnub = PubNub.create(configBuilder.build())

pubnub.publish(randomChannel(), "message").overrideConfiguration { publishKey = Keys.pubKey }.sync()
pubnub.publish(randomChannel(), "message").overrideConfiguration {
publishKey = Keys.pubKey
authToken = expectedAuthToken
}.sync()
// no exception expected
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ abstract class EndpointCore<Input, Output> protected constructor(protected val p
}

if (isAuthRequired()) {
val token = pubnub.tokenManager.getToken()
val token = configOverride?.authToken?.takeIf { it.isNotEmpty() } ?: pubnub.tokenManager.getToken()
if (token != null) {
map["auth"] = token
} else if (configuration.authKey.isValid()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,11 @@ open class PubNubImpl(
val pnsdkName: String = PNSDK_PUBNUB_KOTLIN,
eventEnginesConf: EventEnginesConf = EventEnginesConf()
) : PubNub {
internal val tokenManager: TokenManager = TokenManager()

init {
this.setToken(configuration.authToken)
}
constructor(configuration: PNConfiguration) : this(configuration, PNSDK_PUBNUB_KOTLIN)

val mapper = MapperManager()
Expand All @@ -189,7 +194,6 @@ open class PubNubImpl(
private val basePathManager = BasePathManager(configuration)
internal val retrofitManager = RetrofitManager(this, configuration)
internal val publishSequenceManager = PublishSequenceManager(MAX_SEQUENCE)
internal val tokenManager: TokenManager = TokenManager()
private val tokenParser: TokenParser = TokenParser()
private val presenceData = PresenceData()
private val subscribe =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class PNConfigurationImpl(
override val publishKey: String = "",
override val secretKey: String = "",
override val authKey: String = "",
override val authToken: String? = null,
override val cryptoModule: CryptoModule? = null,
override val origin: String = "",
override val secure: Boolean = true,
Expand Down Expand Up @@ -95,17 +96,10 @@ class PNConfigurationImpl(

override var secretKey: String = defaultConfiguration.secretKey

@Deprecated(
message = "The authKey parameter is deprecated because it relates to deprecated Access Manager (PAM V2) and will be removed in the future." +
"Please, use createPNConfiguration without authKey instead and migrate to new Access Manager " +
"(PAM V3) https://www.pubnub.com/docs/general/resources/migration-guides/pam-v3-migration ",
level = DeprecationLevel.WARNING,
replaceWith = ReplaceWith(
"createPNConfiguration(userId, subscribeKey, publishKey, secretKey, logVerbosity)"
),
)
override var authKey: String = defaultConfiguration.authKey

override var authToken: String? = defaultConfiguration.authToken

override var cryptoModule: CryptoModule? = defaultConfiguration.cryptoModule

override var origin: String = defaultConfiguration.origin
Expand Down Expand Up @@ -196,6 +190,7 @@ class PNConfigurationImpl(
publishKey = publishKey,
secretKey = secretKey,
authKey = authKey,
authToken = authToken,
cryptoModule = cryptoModule,
origin = origin,
secure = secure,
Expand Down
Loading

0 comments on commit ac7314e

Please sign in to comment.