d8d88c976b16f1ad63c0715aa604b0e8f1c30b46
[portal.git] / portal-BE / src / main / java / org / onap / portal / service / fn / FnAppService.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.service.fn;
42
43 import java.util.List;
44 import java.util.Optional;
45 import javax.persistence.EntityExistsException;
46 import org.onap.portal.dao.fn.FnAppDao;
47 import org.onap.portal.domain.db.fn.FnApp;
48 import org.onap.portal.domain.dto.transport.OnboardingApp;
49 import org.onap.portal.utils.EPCommonSystemProperties;
50 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
51 import org.onap.portalsdk.core.onboarding.util.CipherUtil;
52 import org.onap.portalsdk.core.util.SystemProperties;
53 import org.springframework.beans.factory.annotation.Autowired;
54 import org.springframework.stereotype.Service;
55
56 @Service
57 public class FnAppService {
58
59        private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FnAppService.class);
60
61        private final FnAppDao fnAppDao;
62
63        @Autowired
64        public FnAppService(final FnAppDao fnAppDao) {
65               this.fnAppDao = fnAppDao;
66        }
67
68        public List<FnApp> getAppsFullList() {
69               return fnAppDao.findAll();
70        }
71
72        public FnApp getById(final Long id){
73               return Optional.of(fnAppDao.getOne(id)).orElseThrow(EntityExistsException::new);
74        }
75
76        public void createOnboardingFromApp(FnApp app, OnboardingApp onboardingApp) {
77               onboardingApp.setId(app.getId());
78               onboardingApp.setName(app.getAppName());
79               onboardingApp.setImageUrl(app.getAppImageUrl());
80               onboardingApp.setDescription(app.getAppDescription());
81               onboardingApp.setNotes(app.getAppNotes());
82               onboardingApp.setUrl(app.getAppUrl());
83               onboardingApp.setAlternateUrl(app.getAppAlternateUrl());
84               onboardingApp.setRestUrl(app.getAppRestEndpoint());
85               onboardingApp.setIsOpen(app.getOpen());
86               onboardingApp.setIsEnabled(app.getEnabled());
87               onboardingApp.setUsername(app.getAppUsername());
88               onboardingApp.setAppPassword((app.getAppPassword().equals(EPCommonSystemProperties.APP_DISPLAY_PASSWORD))
89                       ? EPCommonSystemProperties.APP_DISPLAY_PASSWORD : decryptedPassword(app.getAppPassword(), app));
90               onboardingApp.setUebTopicName(app.getUebTopicName());
91               onboardingApp.setUebKey(app.getUebKey());
92               onboardingApp.setUebSecret(app.getUebSecret());
93               onboardingApp.setIsCentralAuth(app.getAuthCentral());
94               onboardingApp.setNameSpace(app.getAuthNamespace());
95               onboardingApp.setRestrictedApp(app.isRestrictedApp());
96        }
97
98        private String decryptedPassword(String encryptedAppPwd, FnApp app) {
99               String result = "";
100               if (encryptedAppPwd != null && !encryptedAppPwd.isEmpty()) {
101                      try {
102                             result = CipherUtil.decryptPKC(encryptedAppPwd,
103                                     SystemProperties.getProperty(SystemProperties.Decryption_Key));
104                      } catch (Exception e) {
105                             logger.error(EELFLoggerDelegate.errorLogger,
106                                     "decryptedPassword failed for app " + app.getAppName(), e);
107                      }
108               }
109               return result;
110        }
111 }