Skip to content

Commit e58d4e1

Browse files
authored
Merge pull request #7 from pepijntb/feature/add_api_key
Adds ApiKey to configuration and headers.
2 parents 9e419f6 + 10ef0f5 commit e58d4e1

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

sdk/src/main/java/com/jedlix/sdk/JedlixSDK.kt

+12-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ import java.util.concurrent.atomic.AtomicReference
3131
class JedlixSDK private constructor(
3232
private val apiHost: String = "",
3333
private val apiBasePath: String = "",
34-
private val authentication: Authentication
34+
private val authentication: Authentication,
35+
private val apiKey: String? = null,
3536
) {
3637

3738
/**
@@ -63,15 +64,17 @@ class JedlixSDK private constructor(
6364
*/
6465
fun configure(
6566
baseURL: URL,
66-
authentication: Authentication
67+
authentication: Authentication,
68+
apiKey: String? = null,
6769
): JedlixSDK {
6870
if (
6971
!sdk.compareAndSet(
7072
null,
7173
JedlixSDK(
72-
baseURL.host,
73-
baseURL.path.substringBefore(EndpointBuilder().path),
74-
authentication
74+
apiHost = baseURL.host,
75+
apiBasePath = baseURL.path.substringBefore(EndpointBuilder().path),
76+
authentication = authentication,
77+
apiKey = apiKey,
7578
)
7679
)
7780
) {
@@ -100,9 +103,10 @@ class JedlixSDK private constructor(
100103
val api: Api
101104
get() = sdk.get()!!.run {
102105
KtorApi(
103-
apiHost,
104-
apiBasePath,
105-
authentication
106+
apiHost = apiHost,
107+
basePath = apiBasePath,
108+
authentication = authentication,
109+
apiKey = apiKey,
106110
)
107111
}
108112

sdk/src/main/java/com/jedlix/sdk/networking/Api.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ abstract class Api {
3131
private const val HEADER_CORRELATION_ID = "Jedlix-CorrelationId"
3232
private const val HEADER_ACCEPT_LANGUAGE = "Accept-Language"
3333
private const val HEADER_AUTHORIZATION = "Authorization"
34+
private const val HEADER_API_KEY = "ApiKey"
3435

3536
private const val AUTHORIZATION_FORMAT = "Bearer %s"
3637

@@ -79,12 +80,14 @@ abstract class Api {
7980
protected abstract val apiHost: String
8081
protected abstract val basePath: String
8182
protected abstract val authentication: Authentication
83+
protected abstract val apiKey: String?
8284

8385
protected suspend fun headers(): Map<String, String> = mapOf(
8486
HEADER_CORRELATION_ID to UUID.randomUUID().toString(),
8587
HEADER_AUTHORIZATION to authentication.getAccessToken()
8688
?.let { AUTHORIZATION_FORMAT.format(it) },
87-
HEADER_ACCEPT_LANGUAGE to Locale.getDefault().toLanguageTag()
89+
HEADER_ACCEPT_LANGUAGE to Locale.getDefault().toLanguageTag(),
90+
HEADER_API_KEY to apiKey,
8891
)
8992
.mapNotNull { (key, value) -> value?.let { key to it } }
9093
.toMap()

sdk/src/main/java/com/jedlix/sdk/networking/KtorApi.kt

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,16 @@ import io.ktor.client.features.json.serializer.*
2525
import io.ktor.client.features.logging.*
2626
import io.ktor.client.request.*
2727
import io.ktor.client.statement.*
28-
import io.ktor.client.utils.*
2928
import io.ktor.http.*
30-
import io.ktor.util.*
3129
import io.ktor.utils.io.errors.*
3230
import kotlinx.serialization.SerializationException
3331
import kotlinx.serialization.builtins.serializer
3432

3533
internal class KtorApi(
3634
override val apiHost: String,
3735
override val basePath: String,
38-
override val authentication: Authentication
36+
override val authentication: Authentication,
37+
override val apiKey: String?,
3938
) : Api() {
4039

4140
private val json = kotlinx.serialization.json.Json {

0 commit comments

Comments
 (0)