Bulk upload changes and music health check apis
[portal.git] / ecomp-portal-BE-os / src / main / java / org / onap / portalapp / portal / service / EPAppServiceImpl.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalapp.portal.service;
39
40 import java.net.MalformedURLException;
41 import java.security.GeneralSecurityException;
42 import java.util.ArrayList;
43 import java.util.LinkedList;
44 import java.util.List;
45 import java.util.TreeSet;
46 import java.util.UUID;
47
48 import javax.servlet.http.HttpServletResponse;
49
50 import org.hibernate.Session;
51 import org.hibernate.Transaction;
52 import org.onap.portalapp.portal.domain.EPApp;
53 import org.onap.portalapp.portal.domain.EPUser;
54 import org.onap.portalapp.portal.logging.aop.EPMetricsLog;
55 import org.onap.portalapp.portal.logging.format.EPAppMessagesEnum;
56 import org.onap.portalapp.portal.logging.logic.EPLogUtil;
57 import org.onap.portalapp.portal.service.EPAppCommonServiceImpl;
58 import org.onap.portalapp.portal.service.EPAppService;
59 import org.onap.portalapp.portal.transport.FieldsValidator;
60 import org.onap.portalapp.portal.transport.OnboardingApp;
61 import org.onap.portalapp.portal.utils.EcompPortalUtils;
62 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
63 import org.onap.portalsdk.core.service.DataAccessService;
64 import org.springframework.beans.factory.annotation.Autowired;
65 import org.springframework.context.annotation.EnableAspectJAutoProxy;
66 import org.springframework.stereotype.Service;
67 import org.springframework.transaction.annotation.Transactional;
68
69 import com.att.nsa.cambria.client.CambriaClientFactory;
70 import com.att.nsa.cambria.client.CambriaTopicManager;
71
72 @Service("epAppService")
73 @Transactional
74 @org.springframework.context.annotation.Configuration
75 @EnableAspectJAutoProxy
76 @EPMetricsLog
77 public class EPAppServiceImpl extends EPAppCommonServiceImpl implements EPAppService {
78
79         private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPAppServiceImpl.class);
80
81         private static Object syncRests = new Object();
82
83         @Autowired
84         private DataAccessService dataAccessService;
85
86         @Override
87         public List<EPApp> getUserRemoteApps(String id) {
88                 StringBuilder query = new StringBuilder();
89                 query.append("SELECT * FROM FN_APP join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = FN_APP.APP_ID where ");
90                 query.append("FN_USER_ROLE.USER_ID = " + id + " AND FN_USER_ROLE.ROLE_ID != " + SUPER_ADMIN_ROLE_ID);
91                 query.append(" AND FN_APP.ENABLED = 'Y'");
92                 TreeSet<EPApp> distinctApps = new TreeSet<EPApp>();
93                 @SuppressWarnings("unchecked")
94                 List<EPApp> adminApps = dataAccessService.executeSQLQuery(query.toString(), EPApp.class, null);
95                 for (EPApp app : adminApps) {
96                         distinctApps.add(app);
97                 }
98                 List<EPApp> userApps = new ArrayList<EPApp>();
99                 userApps.addAll(distinctApps);
100                 return userApps;
101         }
102
103
104
105         @Override
106         public CambriaTopicManager getTopicManager(List<String> urlList, String key, String secret)
107                         throws MalformedURLException, GeneralSecurityException {
108                 return CambriaClientFactory.createTopicManager(null, urlList, key, secret);
109         }
110
111 }