blob: 4aaff2ea3af0e02d736dac76d6210e64e9f63532 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.controllers;
24
25import org.apache.commons.lang3.exception.ExceptionUtils;
26import org.onap.portalsdk.core.domain.User;
27import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
28import org.onap.portalsdk.core.util.SystemProperties;
29import org.onap.osam.model.ExceptionResponse;
30import org.springframework.http.ResponseEntity;
31
32import javax.servlet.http.HttpServletRequest;
33import javax.servlet.http.HttpSession;
34import javax.ws.rs.WebApplicationException;
35
36import static org.onap.osam.utils.Logging.getMethodName;
37
38public class ControllersUtils {
39
40
41 public static String extractUserId(HttpServletRequest request) {
42 String userId = "";
43 HttpSession session = request.getSession();
44 if (session != null) {
45 User user = (User) session.getAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME));
46 if (user != null) {
47 //userId = user.getHrid();
48 userId = user.getLoginId();
49 if (userId == null)
50 userId = user.getOrgUserId();
51 }
52 }
53 return userId;
54 }
55
56 public static ExceptionResponse handleException(Exception e, EELFLoggerDelegate logger) {
57 logger.error(EELFLoggerDelegate.errorLogger, "{}: {}", getMethodName(), ExceptionUtils.getMessage(e), e);
58
59 ExceptionResponse exceptionResponse = new ExceptionResponse(e);
60 return exceptionResponse;
61 }
62
63 public static ResponseEntity handleWebApplicationException(WebApplicationException e, EELFLoggerDelegate logger) {
64 return ResponseEntity.status(e.getResponse().getStatus()).body(ControllersUtils.handleException(e, logger));
65 }
66
67}