aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/main/java/org/onap/portalng/bff/config/clients/KeycloakConfig.java
blob: 2ff3974b0eb9fb026204b09a1816afe235dde871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 *
 * Copyright (c) 2022. Deutsche Telekom AG
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 *
 */

package org.onap.portalng.bff.config.clients;

import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.List;
import java.util.function.Function;
import org.onap.portalng.bff.config.BeansConfig;
import org.onap.portalng.bff.config.BffConfig;
import org.onap.portalng.bff.exceptions.DownstreamApiProblemException;
import org.onap.portalng.bff.openapi.client_keycloak.ApiClient;
import org.onap.portalng.bff.openapi.client_keycloak.api.KeycloakApi;
import org.onap.portalng.bff.openapi.client_keycloak.model.ErrorResponseKeycloakDto;
import org.onap.portalng.bff.openapi.server.model.ProblemApiDto;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpStatusCode;
import org.springframework.http.client.reactive.ClientHttpConnector;
import org.springframework.web.reactive.function.client.ExchangeFilterFunction;
import org.springframework.web.reactive.function.client.WebClient;

@Configuration
public class KeycloakConfig extends AbstractClientConfig<ErrorResponseKeycloakDto> {
  private final ObjectMapper objectMapper;
  private final BffConfig bffConfig;
  private final ExchangeFilterFunction oauth2ExchangeFilterFunction;

  public KeycloakConfig(
      @Qualifier(BeansConfig.OAUTH2_EXCHANGE_FILTER_FUNCTION)
          ExchangeFilterFunction oauth2ExchangeFilterFunction,
      ObjectMapper objectMapper,
      BffConfig bffConfig) {
    super(ErrorResponseKeycloakDto.class);
    this.objectMapper = objectMapper;
    this.bffConfig = bffConfig;
    this.oauth2ExchangeFilterFunction = oauth2ExchangeFilterFunction;
  }

  @Bean
  public KeycloakApi keycloakApi(WebClient.Builder webClientBuilder) {
    return constructApiClient(webClientBuilder, KeycloakApi::new);
  }

  private <T> T constructApiClient(
      WebClient.Builder webClientBuilder, Function<ApiClient, T> apiConstructor) {
    final ApiClient apiClient =
        new ApiClient(
            getWebClient(webClientBuilder, List.of(oauth2ExchangeFilterFunction)),
            objectMapper,
            objectMapper.getDateFormat());

    // Extract service name and version from BasePath
    String urlBasePathPrefix =
        String.format("%s/auth/admin/realms/%s", bffConfig.getKeycloakUrl(), bffConfig.getRealm());

    return apiConstructor.apply(apiClient.setBasePath(urlBasePathPrefix));
  }

  @Override
  protected DownstreamApiProblemException mapException(
      ErrorResponseKeycloakDto errorResponse, HttpStatusCode httpStatusCode) {
    String errorDetail =
        errorResponse.getErrorMessage() != null
            ? errorResponse.getErrorMessage()
            : errorResponse.getError();

    return DownstreamApiProblemException.builder()
        .title(httpStatusCode.toString())
        .detail(errorDetail)
        .downstreamSystem(ProblemApiDto.DownstreamSystemEnum.KEYCLOAK.toString())
        .downstreamMessageId("not set by downstream system")
        .downstreamStatus(httpStatusCode.value())
        .build();
  }

  @Override
  protected ClientHttpConnector getClientHttpConnector() {
    return null;
  }
}