/** * Copyright French Prime minister Office/SGMAP/DINSIC/Vitam Program (2015-2019) * <p> * contact.vitam@culture.gouv.fr * <p> * This software is a computer program whose purpose is to implement a digital archiving back-office system managing * high volumetry securely and efficiently. * <p> * This software is governed by the CeCILL 2.1 license under French law and abiding by the rules of distribution of free * software. You can use, modify and/ or redistribute the software under the terms of the CeCILL 2.1 license as * circulated by CEA, CNRS and INRIA at the following URL "http://www.cecill.info". * <p> * As a counterpart to the access to the source code and rights to copy, modify and redistribute granted by the license, * users are provided only with a limited warranty and the software's author, the holder of the economic rights, and the * successive licensors have only limited liability. * <p> * In this respect, the user's attention is drawn to the risks associated with loading, using, modifying and/or * developing or reproducing the software by the user in light of its specific status of free software, that may mean * that it is complicated to manipulate, and that also therefore means that it is reserved for developers and * experienced professionals having in-depth computer knowledge. Users are therefore encouraged to load and test the * software's suitability as regards their requirements in conditions enabling the security of their systems and/or data * to be ensured and, more generally, to use and operate it in the same conditions as regards security. * <p> * The fact that you are presently reading this means that you have had knowledge of the CeCILL 2.1 license and that you * accept its terms. */ package fr.gouv.vitam.common.server; import javax.ws.rs.core.MultivaluedMap; import fr.gouv.vitam.common.GlobalDataRest; import fr.gouv.vitam.common.exception.VitamThreadAccessException; import fr.gouv.vitam.common.logging.SysErrLogger; import fr.gouv.vitam.common.logging.VitamLogger; import fr.gouv.vitam.common.logging.VitamLoggerFactory; import fr.gouv.vitam.common.model.VitamSession; import fr.gouv.vitam.common.thread.VitamThreadUtils; /** * Helper class to manage the X_TENANT_ID and VitamSession links */ public class TenantIdHeaderHelper { /** * Context of request */ public enum Context { REQUEST, RESPONSE; @Override public String toString() { return name().toLowerCase(); } } private static final VitamLogger LOGGER = VitamLoggerFactory.getInstance(TenantIdHeaderHelper.class); /** * Helper class, so not instanciable. */ private TenantIdHeaderHelper() { throw new UnsupportedOperationException("Helper class"); } /** * Extracts the X-TENANT-ID from the headers to save it through the VitamSession * * @param requestHeaders Complete list of HTTP message headers ; will not be changed. * @param ctx Context, or rather http message type (request or response) */ public static void putTenantIdFromHeaderInSession(MultivaluedMap<String, String> requestHeaders, Context ctx) { try { // TODO: find a better check ; we should detect and act accordingly with multiple incoming headers String headerTenantId = requestHeaders.getFirst(GlobalDataRest.X_TENANT_ID); Integer tenantId = null; /* * Note : jetty seems NOT to correctly unserialize multiple headers declaration in only one header, with * values separated by commas Example : X-TENAT-ID: header-1,header-2-should-not-be-take Note : Cf. the * last paragraph in https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2 TODO: Jetty bug ? */ // KWA TODO: beurk. if (headerTenantId != null) { headerTenantId = headerTenantId.split(",")[0]; tenantId = Integer.parseInt(headerTenantId); } // KWA TODO: end beurk. final VitamSession vitamSession = VitamThreadUtils.getVitamSession(); if (vitamSession.getTenantId() != null && !vitamSession.getTenantId().equals(tenantId)) { LOGGER.info( "Note : the tenantId stored in session was not empty and different from the received " + "tenantId before {} handling ! Some cleanup must have failed... " + "Old tenantId will be discarded in session.", ctx); } vitamSession.setTenantId(tenantId); if (tenantId != null) { LOGGER.debug("Got tenantId {} from {} headers ; setting it in the current VitamSession", tenantId, ctx); } else { LOGGER.debug("No tenantId found in {} ; setting it as empty in the current VitamSession", ctx); } } catch (final VitamThreadAccessException e) { SysErrLogger.FAKE_LOGGER.ignoreLog(e); LOGGER.warn( "Got an exception while trying to set the tenantId {} in the current session ; exception was : {}", requestHeaders, e.getMessage()); // the processing should not be interrupted by this exception } } /** * Retrieves the tenant id from the VitamSession and add a X-TENANT-ID header * * @param headers List of target HTTP headers ; required header will be added to this list. * @param ctx Context, or rather http message type (request or response) */ public static void putTenantIdFromSessionInHeader(MultivaluedMap<String, Object> headers, Context ctx) { try { final Integer tenantId = VitamThreadUtils.getVitamSession().getTenantId(); if (tenantId != null) { if (headers.containsKey(GlobalDataRest.X_TENANT_ID)) { // TODO: should be warn here. LOGGER.info("{} header was already present in the headers of the {} ; this header will be kept.", GlobalDataRest.X_TENANT_ID, ctx); // TODO: is it really the best way to react to this situation ? } else { headers.add(GlobalDataRest.X_TENANT_ID, tenantId); LOGGER.debug("tenantId {} found in session and set in the {} header.", tenantId, ctx); } } else { // TODO: should be warn here. LOGGER.info( "No tenantId found in session (somebody should have set it) ! " + "{} header will not be set in the http {}.", GlobalDataRest.X_TENANT_ID, ctx); } } catch (final VitamThreadAccessException e) { LOGGER.warn( "Got an exception while trying to get the tenantId from the current session ; exception was : {}", e.getMessage()); // the processing should not be interrupted by this exception } } }