1
1
package no.nav.tilleggsstonader.libs.http.client
2
2
3
+ import no.nav.security.token.support.client.core.OAuth2ClientException
4
+ import no.nav.security.token.support.client.core.http.OAuth2HttpClient
3
5
import no.nav.security.token.support.client.core.http.OAuth2HttpRequest
4
6
import no.nav.security.token.support.client.core.oauth2.OAuth2AccessTokenResponse
5
7
import no.nav.security.token.support.client.spring.oauth2.DefaultOAuth2HttpClient
8
+ import no.nav.tilleggsstonader.libs.log.SecureLogger.secureLogger
6
9
import org.apache.hc.core5.http.NoHttpResponseException
7
10
import org.slf4j.LoggerFactory
8
11
import org.springframework.core.NestedExceptionUtils
12
+ import org.springframework.http.HttpHeaders
13
+ import org.springframework.util.LinkedMultiValueMap
9
14
import org.springframework.web.client.HttpServerErrorException
10
15
import org.springframework.web.client.RestClient
16
+ import org.springframework.web.client.body
11
17
import java.net.SocketException
12
18
import java.net.SocketTimeoutException
13
19
14
20
class RetryOAuth2HttpClient (
15
- restClient : RestClient ,
21
+ private val restClient : RestClient ,
16
22
private val maxRetries : Int = 2 ,
17
- ) : DefaultOAuth2HttpClient(restClient) {
23
+ ) : OAuth2HttpClient {
18
24
private val logger = LoggerFactory .getLogger(javaClass)
19
- private val secureLogger = LoggerFactory .getLogger(" secureLogger" )
20
25
21
26
// ServiceUnavailable håndteres av apache http-client
22
27
private val retryExceptions =
@@ -32,14 +37,32 @@ class RetryOAuth2HttpClient(
32
37
33
38
while (true ) {
34
39
try {
35
- val response = super .post(req)
36
- return response
40
+ return postRequest(req)
37
41
} catch (e: Exception ) {
38
42
handleException(e, retries++ , req)
39
43
}
40
44
}
41
45
}
42
46
47
+ /* *
48
+ * Kopi fra [DefaultOAuth2HttpClient]
49
+ */
50
+ private fun postRequest (req : OAuth2HttpRequest ): OAuth2AccessTokenResponse =
51
+ restClient
52
+ .post()
53
+ .uri(req.tokenEndpointUrl)
54
+ .headers { it.addAll(headers(req)) }
55
+ .body(
56
+ LinkedMultiValueMap <String , String >().apply {
57
+ setAll(req.formParameters)
58
+ },
59
+ ).retrieve()
60
+ .onStatus({ it.isError }) { _, response ->
61
+ throw OAuth2ClientException (" Received ${response.statusCode} from ${req.tokenEndpointUrl} " )
62
+ }.body<OAuth2AccessTokenResponse >() ? : throw OAuth2ClientException (" No body in response from ${req.tokenEndpointUrl} " )
63
+
64
+ private fun headers (req : OAuth2HttpRequest ): HttpHeaders = HttpHeaders ().apply { putAll(req.oAuth2HttpHeaders.headers) }
65
+
43
66
private fun handleException (
44
67
e : Exception ,
45
68
retries : Int ,
0 commit comments