@@ -45,8 +45,10 @@ internal class TokenRequest(
45
45
" \n\n $body "
46
46
47
47
private fun Map <String , String >.toKeyValueString (entrySeparator : String ): String =
48
- this .map { " ${it.key} =${it.value} " }
49
- .toList().joinToString(entrySeparator)
48
+ this
49
+ .map { " ${it.key} =${it.value} " }
50
+ .toList()
51
+ .joinToString(entrySeparator)
50
52
}
51
53
52
54
internal data class ClientAuthentication (
@@ -79,21 +81,26 @@ internal data class ClientAuthentication(
79
81
internal fun String.urlEncode (): String = URLEncoder .encode(this , StandardCharsets .UTF_8 )
80
82
81
83
internal fun OkHttpClient.post (tokenRequest : TokenRequest ): String =
82
- this .newCall(
83
- Request .Builder ()
84
- .headers(tokenRequest.headers)
85
- .url(tokenRequest.url)
86
- .post(tokenRequest.body.toRequestBody(" application/x-www-form-urlencoded" .toMediaType()))
87
- .build(),
88
- ).execute().body?.string() ? : throw RuntimeException (" could not get response body from url=${tokenRequest.url} " )
84
+ this
85
+ .newCall(
86
+ Request
87
+ .Builder ()
88
+ .headers(tokenRequest.headers)
89
+ .url(tokenRequest.url)
90
+ .post(tokenRequest.body.toRequestBody(" application/x-www-form-urlencoded" .toMediaType()))
91
+ .build(),
92
+ ).execute()
93
+ .body
94
+ ?.string() ? : throw RuntimeException (" could not get response body from url=${tokenRequest.url} " )
89
95
90
96
fun OkHttpClient.withSsl (
91
97
ssl : Ssl ,
92
98
followRedirects : Boolean = false,
93
99
): OkHttpClient =
94
- newBuilder().apply {
95
- followRedirects(followRedirects)
96
- val trustManagerFactory = TrustManagerFactory .getInstance(TrustManagerFactory .getDefaultAlgorithm()).apply { init (ssl.sslKeystore.keyStore) }
97
- val sslContext = SSLContext .getInstance(" TLS" ).apply { init (null , trustManagerFactory.trustManagers, null ) }
98
- sslSocketFactory(sslContext.socketFactory, trustManagerFactory.trustManagers[0 ] as X509TrustManager )
99
- }.build()
100
+ newBuilder()
101
+ .apply {
102
+ followRedirects(followRedirects)
103
+ val trustManagerFactory = TrustManagerFactory .getInstance(TrustManagerFactory .getDefaultAlgorithm()).apply { init (ssl.sslKeystore.keyStore) }
104
+ val sslContext = SSLContext .getInstance(" TLS" ).apply { init (null , trustManagerFactory.trustManagers, null ) }
105
+ sslSocketFactory(sslContext.socketFactory, trustManagerFactory.trustManagers[0 ] as X509TrustManager )
106
+ }.build()
0 commit comments