Skip to content

Commit

Permalink
Dont add vector if already present in url. (#43)
Browse files Browse the repository at this point in the history
This PR prevent vector to be added twice if already present in the URL.

Fix issue #42
  • Loading branch information
Loic-Dumas committed Jun 11, 2024
1 parent 62ddb7b commit 0effa7a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Config {

const val major = 0
const val minor = 10
const val patch = 0
const val patch = 1
const val versionName = "$major.$minor.$patch"

const val maven_group = "ch.srg.data.provider"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,19 @@ import okhttp3.Response
class VectorInterceptor(private val vector: String) : Interceptor {

override fun intercept(chain: Interceptor.Chain): Response {
val original = chain.request()
val originalHttpUrl = original.url
val originalRequest = chain.request()
val originalHttpUrl = originalRequest.url

if (originalHttpUrl.queryParameter("vector") != null) {
return chain.proceed(originalRequest)
}

val url = originalHttpUrl.newBuilder()
.addQueryParameter("vector", vector)
.build()

// Request customization: add request headers
val requestBuilder = original.newBuilder()
val requestBuilder = originalRequest.newBuilder()
.url(url)
val request = requestBuilder.build()
return chain.proceed(request)
Expand Down

0 comments on commit 0effa7a

Please sign in to comment.