/* * (C) Copyright 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * 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. * * Contributors: * Florent Guillaume */ package org.nuxeo.ecm.core.api; import java.security.Principal; import javax.security.auth.login.LoginContext; import javax.security.auth.login.LoginException; import org.nuxeo.ecm.core.api.security.SecurityConstants; import org.nuxeo.runtime.api.Framework; /** * Helper class to run code with an unrestricted session. * <p> * The caller must implement the {@link #run} method, and call {@link #runUnrestricted}. * * @author Florent Guillaume */ public abstract class UnrestrictedSessionRunner { protected String originatingUsername; protected CoreSession session; protected final boolean sessionIsAlreadyUnrestricted; protected final String repositoryName; /** True if a call to {@link #runUnrestricted} is in progress. */ public boolean isUnrestricted; /** * Constructs a {@link UnrestrictedSessionRunner} given an existing session (which may or may not be already * unrestricted). * <p> * Originating user is taken on given session. * * @param session the available session */ protected UnrestrictedSessionRunner(CoreSession session) { this.session = session; sessionIsAlreadyUnrestricted = isUnrestricted(session); if (sessionIsAlreadyUnrestricted) { repositoryName = null; } else { repositoryName = session.getRepositoryName(); } Principal pal = session.getPrincipal(); if (pal != null) { originatingUsername = pal.getName(); } } /** * Constructs a {@link UnrestrictedSessionRunner} given a repository name. * * @param repositoryName the repository name */ protected UnrestrictedSessionRunner(String repositoryName) { session = null; sessionIsAlreadyUnrestricted = false; this.repositoryName = repositoryName; } /** * Constructs a {@link UnrestrictedSessionRunner} given a repository name and an originating user name. * * @param repositoryName the repository name * @param originatingUser the user name behind the system user */ protected UnrestrictedSessionRunner(String repositoryName, String originatingUser) { session = null; sessionIsAlreadyUnrestricted = false; this.repositoryName = repositoryName; originatingUsername = originatingUser; } public String getOriginatingUsername() { return originatingUsername; } public void setOriginatingUsername(String originatingUsername) { this.originatingUsername = originatingUsername; } protected boolean isUnrestricted(CoreSession session) { return SecurityConstants.SYSTEM_USERNAME.equals(session.getPrincipal().getName()) || (session.getPrincipal() instanceof NuxeoPrincipal && ((NuxeoPrincipal) session.getPrincipal()).isAdministrator()); } /** * Calls the {@link #run()} method with an unrestricted {@link #session}. During this call, {@link #isUnrestricted} * is set to {@code true}. */ public void runUnrestricted() { isUnrestricted = true; try { if (sessionIsAlreadyUnrestricted) { run(); return; } LoginContext loginContext; try { loginContext = Framework.loginAs(originatingUsername); } catch (LoginException e) { throw new NuxeoException(e); } try { CoreSession baseSession = session; session = CoreInstance.openCoreSession(repositoryName); try { run(); } finally { try { session.close(); } finally { session = baseSession; } } } finally { try { // loginContext may be null in tests if (loginContext != null) { loginContext.logout(); } } catch (LoginException e) { throw new NuxeoException(e); } } } finally { isUnrestricted = false; } } /** * This method will be called by {@link #runUnrestricted()} with {@link #session} available as an unrestricted * session. * <p> * It can also be called directly in which case the {@link #session} available will be the one passed to * {@code #UnrestrictedSessionRunner(CoreSession)}. */ public abstract void run(); }