New Auth Service in Mod2
[dcaegen2/platform.git] / mod2 / auth-service / src / main / java / org / onap / dcaegen2 / platform / mod / security / jwt / AuthEntryPointJwt.java
1 /*
2  *
3  *  * ============LICENSE_START=======================================================
4  *  *  org.onap.dcae
5  *  *  ================================================================================
6  *  *  Copyright (c) 2020 AT&T Intellectual Property. All rights 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 package org.onap.dcaegen2.platform.mod.security.jwt;
24
25 import lombok.extern.slf4j.Slf4j;
26 import org.springframework.security.core.AuthenticationException;
27 import org.springframework.security.web.AuthenticationEntryPoint;
28 import org.springframework.stereotype.Component;
29
30 import javax.servlet.ServletException;
31 import javax.servlet.http.HttpServletRequest;
32 import javax.servlet.http.HttpServletResponse;
33 import java.io.IOException;
34
35 /**
36  * @author
37  * @date 09/08/2020
38  * JWT Authentication Entry Point
39  */
40
41 @Slf4j
42 @Component
43 public class AuthEntryPointJwt implements AuthenticationEntryPoint {
44
45     @Override
46     public void commence(HttpServletRequest request, HttpServletResponse response,
47                          AuthenticationException authException) throws IOException, ServletException {
48         log.error("Unauthorized error: {}", authException.getMessage());
49         response.sendError(HttpServletResponse.SC_UNAUTHORIZED, "Error: Unauthorized");
50     }
51 }