org.bonitasoft.engine.page.IsActorInitiatorRule Maven / Gradle / Ivy
/*
* Copyright (C) 2015 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation
* version 2.1 of the License.
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
*/
package org.bonitasoft.engine.page;
import java.io.Serializable;
import java.util.Map;
import org.bonitasoft.engine.actor.mapping.ActorMappingService;
import org.bonitasoft.engine.commons.exceptions.SBonitaException;
import org.bonitasoft.engine.commons.exceptions.SExecutionException;
import org.bonitasoft.engine.core.form.FormMappingService;
import org.bonitasoft.engine.core.form.SFormMapping;
import org.bonitasoft.engine.session.SessionService;
import org.bonitasoft.engine.sessionaccessor.SessionAccessor;
/**
* @author Anthony Birembaut
*/
public class IsActorInitiatorRule implements AuthorizationRule {
ActorMappingService actorMappingService;
SessionAccessor sessionAccessor;
SessionService sessionService;
FormMappingService formMappingService;
public IsActorInitiatorRule(ActorMappingService actorMappingService, SessionAccessor sessionAccessor, SessionService sessionService,
FormMappingService formMappingService) {
this.actorMappingService = actorMappingService;
this.sessionAccessor = sessionAccessor;
this.sessionService = sessionService;
this.formMappingService = formMappingService;
}
@Override
public boolean isAllowed(final String key, final Map context) throws SExecutionException {
try {
SFormMapping formMapping = formMappingService.get(key);
long processDefinitionId = formMapping.getProcessDefinitionId();
final long userId = sessionService.getSession(sessionAccessor.getSessionId()).getUserId();
return actorMappingService.canUserStartProcessDefinition(userId, processDefinitionId);
} catch (final SBonitaException e) {
throw new SExecutionException("Unable to figure out if the logged user is an actor initiator for the process.", e);
}
}
@Override
public String getId() {
return AuthorizationRuleConstants.IS_ACTOR_INITIATOR;
}
}