2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2023 Nordix Foundation.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
20 package org.onap.so.cnfm.lcm.bpmn.flows.extclients.sdc;
22 import java.nio.charset.StandardCharsets;
23 import java.security.GeneralSecurityException;
24 import org.apache.commons.codec.binary.Base64;
25 import org.onap.so.cnfm.lcm.bpmn.flows.exceptions.BasicAuthConfigException;
26 import org.onap.so.utils.CryptoUtils;
27 import org.springframework.beans.factory.annotation.Value;
28 import org.springframework.context.annotation.Configuration;
31 * @author Waqas Ikram (waqas.ikram@est.tech)
35 public class SdcClientConfigurationProvider {
37 @Value("${sdc.username:mso}")
38 private String sdcUsername;
40 @Value("${sdc.password:76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F}")
41 private String sdcPassword;
43 @Value("${sdc.key:566B754875657232314F5548556D3665}")
44 private String sdcKey;
46 @Value("${sdc.endpoint:https://sdc-be.onap:8443}")
47 private String baseUrl;
49 private static String basicAuth = null;
51 public synchronized String getBasicAuth() {
52 if (basicAuth == null) {
54 final String auth = sdcUsername + ":" + CryptoUtils.decrypt(sdcPassword, sdcKey);
55 final byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(StandardCharsets.ISO_8859_1));
56 basicAuth = "Basic " + new String(encodedAuth);
57 } catch (final GeneralSecurityException exception) {
58 throw new BasicAuthConfigException("Unable to process basic auth information", exception);
64 public String getSdcPackageUrl(final String packageId) {
65 return baseUrl + "/sdc/v1/catalog/resources/" + packageId + "/toscaModel";