Update license; improve coverage; add docs dir
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / service / EPRoleFunctionServiceCentralizedImpl.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.portalapp.portal.service;
39
40 import java.util.ArrayList;
41 import java.util.HashMap;
42 import java.util.HashSet;
43 import java.util.List;
44 import java.util.Map;
45 import java.util.Set;
46
47 import javax.servlet.http.HttpServletRequest;
48 import javax.servlet.http.HttpSession;
49
50 import org.hibernate.SessionFactory;
51 import org.openecomp.portalapp.portal.domain.CentralRoleFunction;
52 import org.openecomp.portalapp.portal.domain.EPUser;
53 import org.openecomp.portalsdk.core.domain.RoleFunction;
54 import org.openecomp.portalsdk.core.service.DataAccessService;
55 import org.openecomp.portalsdk.core.util.SystemProperties;
56 import org.springframework.beans.factory.annotation.Autowired;
57 import org.springframework.transaction.annotation.Transactional;
58
59
60 @Transactional
61 public class EPRoleFunctionServiceCentralizedImpl implements EPRoleFunctionService{
62
63         
64         @Autowired
65         private DataAccessService dataAccessService;
66         
67         @Autowired
68         private  SessionFactory sessionFactory;
69         
70         @SuppressWarnings({ "unchecked"})
71         @Override
72         public List<RoleFunction> getRoleFunctions() {
73                 List<CentralRoleFunction> getRoleFuncList = null;
74                 List<RoleFunction> getRoleFuncListOfPortal = new ArrayList<>();
75                 final Map<String, Long> params = new HashMap<>();
76                 params.put("appId", (long) 1);
77                 //Sync all functions from external system into Ecomp portal DB
78                 getRoleFuncList = dataAccessService.executeNamedQuery("getAllRoleFunctions", params, null);
79                 for(CentralRoleFunction roleFunction : getRoleFuncList)
80                 {
81                         RoleFunction roleFun = new RoleFunction();
82                         roleFun.setCode(roleFunction.getCode());
83                         roleFun.setName(roleFunction.getName());
84                         getRoleFuncListOfPortal.add(roleFun);
85                 }
86                 return getRoleFuncListOfPortal;
87         }
88
89         @SuppressWarnings("unchecked")
90         @Override
91         public Set getRoleFunctions(HttpServletRequest request, EPUser user) {
92                 HttpSession session = request.getSession();
93                 String userId = user.getId().toString();
94                 final Map<String, String> params = new HashMap<>();
95                 params.put("userId", userId);
96                 @SuppressWarnings("unchecked")
97                 List getRoleFuncListOfPortal =   dataAccessService.executeNamedQuery("getRoleFunctionsOfUser", params, null);
98                 Set<String> getRoleFuncListOfPortalSet = new HashSet<>(getRoleFuncListOfPortal);        
99                 session.setAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME),
100                                 getRoleFuncListOfPortalSet);
101                 return getRoleFuncListOfPortalSet;
102                                 
103         }
104
105         
106         
107 }