Skip to content

Commit 8225fd0

Browse files
author
Jedlix
committed
Version 1.0.0
1 parent e58d4e1 commit 8225fd0

File tree

7 files changed

+39
-31
lines changed

7 files changed

+39
-31
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,20 @@ Add the following to your `build.gradle`:
1414

1515
```groovy
1616
dependencies {
17-
implementation("com.jedlix:sdk:1.4.0")
17+
implementation("com.jedlix:sdk:1.5.0")
1818
}
1919
```
2020

2121
## Usage
2222

23-
When you sign up for a [Smart Charging API](https://api.jedlix.com/) account, you get a custom `baseURL`. You need to provide it to the SDK, as well as an `Authentication` implementation.
24-
25-
Configure the SDK:
23+
When you sign up for a [Smart Charging API](https://api.jedlix.com/) account, you get a custom `baseURL` and `apiKey`. Configure the SDK with these values and an `Authentication` implementation. API key is not required if you use your own base URL.
2624

2725
```kotlin
2826
import com.jedlix.sdk.JedlixSDK
2927

3028
JedlixSDK.configure(
3129
/* Base URL */,
30+
/* API key */,
3231
/* Authentication implementation */
3332
)
3433
```
@@ -99,10 +98,11 @@ By default the SDK logs only errors. To change it, update `JedlixSDK.logLevel`:
9998

10099
See the included example to learn how to use the SDK.
101100

102-
Open `ExampleApplication.kt` and specify your `baseURL`:
101+
Open `ExampleApplication.kt` and specify your `baseURL` and `apiKey`:
103102

104103
```kotlin
105104
baseURL = URL("<YOUR BASE URL>")
105+
apiKey = "<YOUR API KEY>"
106106
```
107107

108108
(Optional) If you use [Auth0](https://auth0.com/), you can uncomment the following code to authenticate with an Auth0 account directly, assuming the user identifier is stored in JWT body under `userIdentifierKey`.

build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ plugins {
55
}
66

77
buildscript {
8-
98
repositories {
109
google()
1110
mavenCentral()

example/src/main/java/com/jedlix/sdk/example/ExampleApplication.kt

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import java.net.URL
3030
class ExampleApplication : Application() {
3131
companion object {
3232
lateinit var baseURL: URL
33+
lateinit var apiKey: String
3334
lateinit var authentication: Authentication
3435
}
3536

@@ -39,6 +40,7 @@ class ExampleApplication : Application() {
3940
super.onCreate()
4041

4142
baseURL = URL("<YOUR BASE URL>")
43+
apiKey = "<YOUR API KEY>"
4244
authentication = DefaultAuthentication(this)
4345
// authentication = Auth0Authentication(
4446
// "<AUTH0 CLIENT ID>",
@@ -50,6 +52,7 @@ class ExampleApplication : Application() {
5052
// )
5153
JedlixSDK.configure(
5254
baseURL,
55+
apiKey,
5356
authentication
5457
)
5558
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ androidxActivityVersion=1.4.0
1616
androidxLifecycleVersion=2.4.0
1717
androidxBrowserVersion=1.4.0
1818

19-
sdkVersion=1.4.0
19+
sdkVersion=1.5.0

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

+15-14
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ import java.util.concurrent.atomic.AtomicReference
2929
* Manages the settings of the Jedlix SDK
3030
*/
3131
class JedlixSDK private constructor(
32-
private val apiHost: String = "",
33-
private val apiBasePath: String = "",
34-
private val authentication: Authentication,
35-
private val apiKey: String? = null,
32+
private val host: String = "",
33+
private val basePath: String = "",
34+
private val apiKey: String?,
35+
private val authentication: Authentication
3636
) {
3737

3838
/**
@@ -59,22 +59,23 @@ class JedlixSDK private constructor(
5959
companion object {
6060
/**
6161
* Initializes the SDK with the specified parameters.
62-
* @param baseURL Base [URL] of the Smart Charging API.
62+
* @param baseURL Base [URL] of the Smart Charging API
63+
* @param apiKey API key associated with the developer account
6364
* @param authentication An object providing access token to the API
6465
*/
6566
fun configure(
6667
baseURL: URL,
67-
authentication: Authentication,
6868
apiKey: String? = null,
69+
authentication: Authentication
6970
): JedlixSDK {
7071
if (
7172
!sdk.compareAndSet(
7273
null,
7374
JedlixSDK(
74-
apiHost = baseURL.host,
75-
apiBasePath = baseURL.path.substringBefore(EndpointBuilder().path),
76-
authentication = authentication,
77-
apiKey = apiKey,
75+
baseURL.host,
76+
baseURL.path.substringBefore(EndpointBuilder().path),
77+
apiKey,
78+
authentication
7879
)
7980
)
8081
) {
@@ -103,10 +104,10 @@ class JedlixSDK private constructor(
103104
val api: Api
104105
get() = sdk.get()!!.run {
105106
KtorApi(
106-
apiHost = apiHost,
107-
basePath = apiBasePath,
108-
authentication = authentication,
109-
apiKey = apiKey,
107+
host,
108+
basePath,
109+
apiKey,
110+
authentication
110111
)
111112
}
112113

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

+10-8
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ import java.util.*
2828
abstract class Api {
2929

3030
companion object {
31-
private const val HEADER_CORRELATION_ID = "Jedlix-CorrelationId"
32-
private const val HEADER_ACCEPT_LANGUAGE = "Accept-Language"
33-
private const val HEADER_AUTHORIZATION = "Authorization"
3431
private const val HEADER_API_KEY = "ApiKey"
32+
private const val HEADER_AUTHORIZATION = "Authorization"
33+
private const val HEADER_ACCEPT_LANGUAGE = "Accept-Language"
34+
private const val HEADER_CLIENT_VERSION = "Jedlix-ClientVersion"
35+
private const val HEADER_CORRELATION_ID = "Jedlix-CorrelationId"
3536

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

@@ -77,17 +78,18 @@ abstract class Api {
7778
class SDKNotInitialized<Result> : Failure<Result>()
7879
}
7980

80-
protected abstract val apiHost: String
81+
protected abstract val host: String
8182
protected abstract val basePath: String
82-
protected abstract val authentication: Authentication
8383
protected abstract val apiKey: String?
84+
protected abstract val authentication: Authentication
8485

8586
protected suspend fun headers(): Map<String, String> = mapOf(
86-
HEADER_CORRELATION_ID to UUID.randomUUID().toString(),
87+
HEADER_API_KEY to apiKey,
8788
HEADER_AUTHORIZATION to authentication.getAccessToken()
8889
?.let { AUTHORIZATION_FORMAT.format(it) },
8990
HEADER_ACCEPT_LANGUAGE to Locale.getDefault().toLanguageTag(),
90-
HEADER_API_KEY to apiKey,
91+
HEADER_CLIENT_VERSION to "1.5.0",
92+
HEADER_CORRELATION_ID to UUID.randomUUID().toString()
9193
)
9294
.mapNotNull { (key, value) -> value?.let { key to it } }
9395
.toMap()
@@ -99,7 +101,7 @@ abstract class Api {
99101
* @return A [Response] from requesting the endpoint
100102
*/
101103
suspend fun <Result : Any> request(builder: EndpointBuilder.() -> EndpointNode<Result>): Response<Result> {
102-
return if (apiHost.isEmpty()) {
104+
return if (host.isEmpty()) {
103105
JedlixSDK.logError("SDK has not been initialized properly. Make sure you configure an API host")
104106
Response.SDKNotInitialized()
105107
} else {

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

+5-2
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,18 @@ 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.*
2829
import io.ktor.http.*
30+
import io.ktor.util.*
2931
import io.ktor.utils.io.errors.*
3032
import kotlinx.serialization.SerializationException
3133
import kotlinx.serialization.builtins.serializer
3234

3335
internal class KtorApi(
34-
override val apiHost: String,
36+
override val host: String,
3537
override val basePath: String,
36-
override val authentication: Authentication,
3738
override val apiKey: String?,
39+
override val authentication: Authentication
3840
) : Api() {
3941

4042
private val json = kotlinx.serialization.json.Json {
@@ -89,6 +91,7 @@ internal class KtorApi(
8991
override suspend fun <Result : Any> request(endpoint: EndpointNode<Result>): Response<Result> {
9092
return try {
9193
client.use { client ->
94+
val apiHost = host
9295
val response = client.request<HttpResponse> {
9396
url {
9497
this.protocol = URLProtocol.HTTPS

0 commit comments

Comments
 (0)