Upgrade spring/camel versions
[clamp.git] / src / main / java / org / onap / clamp / clds / ClampServlet.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.clds;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import java.io.IOException;
30 import java.security.Principal;
31 import java.util.ArrayList;
32 import java.util.List;
33
34 import javax.servlet.ServletException;
35 import javax.servlet.http.HttpServletRequest;
36 import javax.servlet.http.HttpServletResponse;
37
38 import org.apache.camel.component.servlet.CamelHttpTransportServlet;
39 import org.onap.clamp.clds.service.SecureServicePermission;
40 import org.onap.clamp.clds.util.ClampTimer;
41 import org.springframework.context.ApplicationContext;
42 import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
43 import org.springframework.security.core.Authentication;
44 import org.springframework.security.core.GrantedAuthority;
45 import org.springframework.security.core.authority.SimpleGrantedAuthority;
46 import org.springframework.security.core.context.SecurityContextHolder;
47 import org.springframework.security.core.userdetails.User;
48 import org.springframework.web.context.support.WebApplicationContextUtils;
49
50 public class ClampServlet extends CamelHttpTransportServlet {
51
52     protected static final EELFLogger logger = EELFManager.getInstance().getLogger(ClampServlet.class);
53     public static final String PERM_INSTANCE = "clamp.config.security.permission.instance";
54     public static final String PERM_CL = "clamp.config.security.permission.type.cl";
55     public static final String PERM_TEMPLATE = "clamp.config.security.permission.type.template";
56     public static final String PERM_VF = "clamp.config.security.permission.type.filter.vf";
57     public static final String PERM_MANAGE = "clamp.config.security.permission.type.cl.manage";
58
59     @Override
60     protected void doService(HttpServletRequest request, HttpServletResponse response)
61             throws ServletException, IOException {
62         Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
63         List<SecureServicePermission> permissionList = new ArrayList<>();
64
65         // Get Principal info and translate it into Spring Authentication If
66         // authenticataion is null: a) the authentication info was set manually
67         // in the previous thread b) handled by Spring automatically for the 2
68         // cases above, no need for the translation, just skip the following
69         // step
70         if (null == authentication) {
71             logger.debug("Populate Spring Authenticataion info manually.");
72             ApplicationContext applicationContext = WebApplicationContextUtils
73                     .getWebApplicationContext(this.getServletContext());
74             // Start a timer to clear the authentication after 5 mins, so that
75             // the authentication will be reinitialized with AAF DB
76             new ClampTimer(300);
77             String cldsPersmissionTypeCl = applicationContext.getEnvironment().getProperty(PERM_CL);
78             String cldsPermissionTypeTemplate = applicationContext.getEnvironment().getProperty(PERM_TEMPLATE);
79             String cldsPermissionInstance = applicationContext.getEnvironment().getProperty(PERM_INSTANCE);
80             String cldsPermissionTypeFilterVf = applicationContext.getEnvironment().getProperty(PERM_VF);
81             String cldsPermissionTypeClManage = applicationContext.getEnvironment().getProperty(PERM_MANAGE);
82
83             // set the stragety to Mode_Global, so that all thread is able to
84             // see the authentication
85             SecurityContextHolder.setStrategyName(SecurityContextHolder.MODE_GLOBAL);
86             Principal p = request.getUserPrincipal();
87
88             permissionList.add(SecureServicePermission.create(cldsPersmissionTypeCl, cldsPermissionInstance, "read"));
89             permissionList.add(SecureServicePermission.create(cldsPersmissionTypeCl, cldsPermissionInstance, "update"));
90             permissionList
91                     .add(SecureServicePermission.create(cldsPermissionTypeTemplate, cldsPermissionInstance, "read"));
92             permissionList
93                     .add(SecureServicePermission.create(cldsPermissionTypeTemplate, cldsPermissionInstance, "update"));
94             permissionList.add(SecureServicePermission.create(cldsPermissionTypeFilterVf, cldsPermissionInstance, "*"));
95             permissionList.add(SecureServicePermission.create(cldsPermissionTypeClManage, cldsPermissionInstance, "*"));
96
97             List<GrantedAuthority> grantedAuths = new ArrayList<>();
98             for (SecureServicePermission perm : permissionList) {
99                 String permString = perm.toString();
100                 if (request.isUserInRole(permString)) {
101                     grantedAuths.add(new SimpleGrantedAuthority(permString));
102                 }
103             }
104             Authentication auth = new UsernamePasswordAuthenticationToken(new User(p.getName(), "", grantedAuths), "",
105                     grantedAuths);
106             SecurityContextHolder.getContext().setAuthentication(auth);
107         }
108         super.doService(request, response);
109     }
110 }