Skip to content

Commit acfbb73

Browse files
author
Jedlix
committed
Version 1.0.0
1 parent 48a20dc commit acfbb73

File tree

7 files changed

+17
-10
lines changed

7 files changed

+17
-10
lines changed

README.md

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

1515
```groovy
1616
dependencies {
17-
implementation("com.jedlix:sdk:1.6.1")
17+
implementation("com.jedlix:sdk:1.7.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` and `apiKey`. Configure the SDK with these values and an `Authentication` implementation. API key is not required if you use your own base URL.
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. You can also provide custom HTTP headers. API key is not required if you use your own base URL.
2424

2525
```kotlin
2626
import com.jedlix.sdk.JedlixSDK
2727

2828
JedlixSDK.configure(
2929
/* Base URL */,
30+
/* Headers */,
3031
/* API key */,
3132
/* Authentication implementation */
3233
)

example/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ dependencies {
8383

8484
val exampleAsMavenLocal: String by project
8585
if (exampleAsMavenLocal.toBoolean()) {
86-
implementation("com.jedlix:sdk:1.6.1")
86+
implementation("com.jedlix:sdk:1.7.0")
8787
} else {
8888
implementation(project(":sdk"))
8989
}

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ class ExampleApplication : Application() {
5151
// this
5252
// )
5353
JedlixSDK.configure(
54-
baseURL,
55-
apiKey,
56-
authentication
54+
baseURL = baseURL,
55+
apiKey = apiKey,
56+
authentication = authentication
5757
)
5858
}
5959

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ androidxLifecycleVersion=2.6.1
1717
androidxBrowserVersion=1.5.0
1818
dokkaVersion=1.8.10
1919

20-
sdkVersion=1.6.1
20+
sdkVersion=1.7.0
2121
exampleAsMavenLocal=false

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ import java.util.concurrent.atomic.AtomicReference
3131
class JedlixSDK private constructor(
3232
private val host: String = "",
3333
private val basePath: String = "",
34+
private val headers: Map<String, String>,
3435
private val apiKey: String?,
3536
private val authentication: Authentication
3637
) {
37-
3838
/**
3939
* Sets the log level of the Jedlix SDK. Defaults to [ERRORS]
4040
*/
@@ -60,11 +60,13 @@ class JedlixSDK private constructor(
6060
/**
6161
* Initializes the SDK with the specified parameters.
6262
* @param baseURL Base [URL] of the Smart Charging API
63+
* @param headers HTTP headers provided to each request
6364
* @param apiKey API key associated with the developer account
6465
* @param authentication An object providing access token to the API
6566
*/
6667
fun configure(
6768
baseURL: URL,
69+
headers: Map<String, String> = emptyMap(),
6870
apiKey: String? = null,
6971
authentication: Authentication
7072
): JedlixSDK {
@@ -74,6 +76,7 @@ class JedlixSDK private constructor(
7476
JedlixSDK(
7577
baseURL.host,
7678
baseURL.path.substringBefore(EndpointBuilder().path),
79+
headers,
7780
apiKey,
7881
authentication
7982
)
@@ -102,6 +105,7 @@ class JedlixSDK private constructor(
102105
KtorApi(
103106
host,
104107
basePath,
108+
headers,
105109
apiKey,
106110
authentication
107111
)

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ abstract class Api {
8080

8181
protected abstract val host: String
8282
protected abstract val basePath: String
83+
protected abstract val headers: Map<String, String>
8384
protected abstract val apiKey: String?
8485
protected abstract val authentication: Authentication
8586

@@ -88,11 +89,11 @@ abstract class Api {
8889
HEADER_AUTHORIZATION to authentication.getAccessToken()
8990
?.let { AUTHORIZATION_FORMAT.format(it) },
9091
HEADER_ACCEPT_LANGUAGE to Locale.getDefault().toLanguageTag(),
91-
HEADER_CLIENT_VERSION to "1.5.0",
92+
HEADER_CLIENT_VERSION to "1.7.0",
9293
HEADER_CORRELATION_ID to UUID.randomUUID().toString()
9394
)
9495
.mapNotNull { (key, value) -> value?.let { key to it } }
95-
.toMap()
96+
.toMap() + headers
9697

9798
/**
9899
* Requests an [EndpointNode] for a [Response] of type [Result]

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

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ import kotlinx.serialization.builtins.serializer
4747
internal class KtorApi(
4848
override val host: String,
4949
override val basePath: String,
50+
override val headers: Map<String, String>,
5051
override val apiKey: String?,
5152
override val authentication: Authentication
5253
) : Api() {

0 commit comments

Comments
 (0)