Merge "Issue-ID: PORTAL-913 optimization in git clone using --depth"
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / utils / MusicCookieCsrfTokenRepository.java
index 75c6616..afe5636 100644 (file)
@@ -1,17 +1,39 @@
-/*
- * Copyright 2012-2016 the original author or authors.
+/*-
+ * ============LICENSE_START==========================================
+ * ONAP Portal
+ * ===================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
  *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the "License");
+ * you may not use this software except in compliance with the License.
  * You may obtain a copy of the License at
  *
- *      http://www.apache.org/licenses/LICENSE-2.0
+ *             http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *             https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ============LICENSE_END============================================
+ *
+ * 
  */
 
 package org.onap.portalapp.portal.utils;
@@ -28,6 +50,19 @@ import org.springframework.security.web.csrf.CsrfTokenRepository;
 import org.springframework.security.web.csrf.DefaultCsrfToken;
 import org.springframework.util.StringUtils;
 
+import com.fasterxml.jackson.core.JsonParseException;
+import com.fasterxml.jackson.databind.JsonMappingException;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
+import org.onap.portalsdk.core.onboarding.exception.CipherUtilException;
+import org.onap.portalsdk.core.onboarding.util.CipherUtil;
+
+import java.io.IOException;
+import java.io.UnsupportedEncodingException;
+import java.net.URLDecoder;
+import java.util.HashMap;
+import java.util.Map;
+
 
 public final class MusicCookieCsrfTokenRepository implements CsrfTokenRepository {
        static final String CSRF_COOKIE_NAME = "XSRF-TOKEN";
@@ -35,8 +70,7 @@ public final class MusicCookieCsrfTokenRepository implements CsrfTokenRepository
        static final String CSRF_PARAMETER_NAME = "_csrf";
        static final String EP_SERVICE = "EPService";
        CookieCsrfTokenRepository cookieRepo = null;
-       private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MusicService.class);
-
+       private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MusicCookieCsrfTokenRepository.class);
        public MusicCookieCsrfTokenRepository() {
        }
        
@@ -64,12 +98,14 @@ public final class MusicCookieCsrfTokenRepository implements CsrfTokenRepository
                if(cookieRepoToken==null){ // if cookieRepo does not has the token, check the cassandra for the values stored by other tomcats
                        try { // todo this part of the code needs to be replaced with out depending on EPService cookie
                                String sessionId = getSessionIdFromCookie(request);
+                               if(sessionId == null) 
+                                       return null;
                                String token = MusicService.getAttribute(CSRF_COOKIE_NAME, sessionId);
                                if (token==null || !StringUtils.hasLength(token)) 
                                        return null;
                                cookieRepoToken = new DefaultCsrfToken(CSRF_HEADER_NAME, CSRF_PARAMETER_NAME , token); 
                        } catch (Exception e) {
-                               logger.error(EELFLoggerDelegate.errorLogger, "Error while calling csrf saveToken" , e);
+                               logger.error(EELFLoggerDelegate.errorLogger, "Error while calling csrf loadToken" , e);
                        }
                }
                return cookieRepoToken;
@@ -88,12 +124,22 @@ public final class MusicCookieCsrfTokenRepository implements CsrfTokenRepository
                return new MusicCookieCsrfTokenRepository(result);
        }
        
-       private String getSessionIdFromCookie (HttpServletRequest request){
+       private String getSessionIdFromCookie (HttpServletRequest request) throws JsonParseException, JsonMappingException, UnsupportedEncodingException, IOException, CipherUtilException{
                Cookie cookies[] = request.getCookies();
                if (cookies != null) {
                        for (Cookie cookie : cookies) {
                                if (EP_SERVICE.equals(cookie.getName())) {
-                                       return cookie.getValue();
+                                       ObjectMapper mapper = new ObjectMapper();
+                                       Map<String,String> epServiceCookieValueMap = mapper.readValue(URLDecoder.decode(cookie.getValue(), "UTF-8"),HashMap.class);
+                                       String sessionId = null;
+                                       if(epServiceCookieValueMap!=null) {
+                                               String multifactorauthfrontendurl = EPCommonSystemProperties.getProperty(EPCommonSystemProperties.MULTI_FACTOR_AUTH_FRONTEND_URL);
+                                               String encryptedJSessionId = epServiceCookieValueMap.get(multifactorauthfrontendurl);
+                                               if(encryptedJSessionId != null) {
+                                                       sessionId = CipherUtil.decryptPKC(encryptedJSessionId);
+                                               }
+                                       }
+                                       return sessionId;
                                }
                        }
                }