dd47bad50c53c7b1e2c001b78f7faba78a45395a
[so/adapters/so-cnf-adapter.git] /
1 /*-
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
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
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.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.cnfm.lcm.bpmn.flows.extclients.sdc;
21
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;
29
30 /**
31  * @author Waqas Ikram (waqas.ikram@est.tech)
32  *
33  */
34 @Configuration
35 public class SdcClientConfigurationProvider {
36
37     @Value("${sdc.username:mso}")
38     private String sdcUsername;
39
40     @Value("${sdc.password:76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F}")
41     private String sdcPassword;
42
43     @Value("${sdc.key:566B754875657232314F5548556D3665}")
44     private String sdcKey;
45
46     @Value("${sdc.endpoint:https://sdc-be.onap:8443}")
47     private String baseUrl;
48
49     private static String basicAuth = null;
50
51     public synchronized String getBasicAuth() {
52         if (basicAuth == null) {
53             try {
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);
59             }
60         }
61         return basicAuth;
62     }
63
64     public String getSdcPackageUrl(final String packageId) {
65         return baseUrl + "/sdc/v1/catalog/resources/" + packageId + "/toscaModel";
66
67     }
68
69 }