re base code
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / onboarding-rest-war / src / main / java / org / openecomp / server / filters / ActionAuthorizationFilter.java
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.server.filters;
18
19 import javax.servlet.*;
20 import javax.servlet.http.HttpServletRequest;
21 import javax.servlet.http.HttpServletResponse;
22 import java.io.IOException;
23
24 public class ActionAuthorizationFilter implements Filter {
25
26
27   @Override
28   public void destroy() {
29     //destroy() is not implemented for ActionAuthorizationFilter
30
31   }
32
33   @Override
34   public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse,
35                        FilterChain filterChain)
36       throws IOException, ServletException {
37
38     HttpServletRequest httpRequest = (HttpServletRequest) servletRequest;
39     if (httpRequest.isUserInRole(httpRequest.getMethod().toUpperCase())) {
40       filterChain.doFilter(servletRequest, servletResponse);
41     } else {
42       setResponseStatus((HttpServletResponse) servletResponse, HttpServletResponse.SC_FORBIDDEN);
43     }
44   }
45
46   private void setResponseStatus(HttpServletResponse response, int status) {
47     response.setStatus(status);
48   }
49
50   @Override
51   public void init(FilterConfig arg0) throws ServletException {
52     //init() is not implemented for ActionAuthorizationFilter
53   }
54
55 }