/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ package org.apache.syncope.core.provisioning.camel.producer; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.apache.camel.Endpoint; import org.apache.camel.Exchange; import org.apache.commons.lang3.tuple.ImmutablePair; import org.apache.syncope.common.lib.patch.StatusPatch; import org.apache.syncope.common.lib.patch.UserPatch; import org.apache.syncope.common.lib.types.AnyTypeKind; import org.apache.syncope.common.lib.types.ResourceOperation; import org.apache.syncope.common.lib.types.StatusPatchType; import org.apache.syncope.core.persistence.api.dao.UserDAO; import org.apache.syncope.core.persistence.api.entity.task.PropagationTask; import org.apache.syncope.core.persistence.api.entity.user.User; import org.apache.syncope.core.provisioning.api.PropagationByResource; import org.apache.syncope.core.provisioning.api.WorkflowResult; import org.apache.syncope.core.provisioning.api.propagation.PropagationReporter; import org.apache.syncope.core.workflow.api.UserWorkflowAdapter; public class StatusProducer extends AbstractProducer { private final UserDAO userDAO; private final UserWorkflowAdapter uwfAdapter; public StatusProducer( final Endpoint endpoint, final AnyTypeKind anyTypeKind, final UserDAO userDAO, final UserWorkflowAdapter uwfAdapter) { super(endpoint, anyTypeKind); this.userDAO = userDAO; this.uwfAdapter = uwfAdapter; } @SuppressWarnings("unchecked") @Override public void process(final Exchange exchange) throws Exception { if (getAnyTypeKind() == AnyTypeKind.USER && isPull()) { WorkflowResult<Map.Entry<UserPatch, Boolean>> updated = (WorkflowResult<Entry<UserPatch, Boolean>>) exchange.getIn().getBody(); Boolean enabled = exchange.getProperty("enabled", Boolean.class); String key = exchange.getProperty("key", String.class); if (enabled != null) { User user = userDAO.find(key); WorkflowResult<String> enableUpdate = null; if (user.isSuspended() == null) { enableUpdate = uwfAdapter.activate(key, null); } else if (enabled && user.isSuspended()) { enableUpdate = uwfAdapter.reactivate(key); } else if (!enabled && !user.isSuspended()) { enableUpdate = uwfAdapter.suspend(key); } if (enableUpdate != null) { if (enableUpdate.getPropByRes() != null) { updated.getPropByRes().merge(enableUpdate.getPropByRes()); updated.getPropByRes().purge(); } updated.getPerformedTasks().addAll(enableUpdate.getPerformedTasks()); } } } else if (getAnyTypeKind() == AnyTypeKind.USER) { WorkflowResult<Long> updated = (WorkflowResult<Long>) exchange.getIn().getBody(); StatusPatch statusPatch = exchange.getProperty("statusPatch", StatusPatch.class); Boolean nullPriorityAsync = exchange.getProperty("nullPriorityAsync", Boolean.class); PropagationByResource propByRes = new PropagationByResource(); propByRes.addAll(ResourceOperation.UPDATE, statusPatch.getResources()); List<PropagationTask> tasks = getPropagationManager().getUpdateTasks( AnyTypeKind.USER, statusPatch.getKey(), false, statusPatch.getType() != StatusPatchType.SUSPEND, propByRes, null, null); PropagationReporter propagationReporter = getPropagationTaskExecutor().execute(tasks, nullPriorityAsync); exchange.getOut().setBody(new ImmutablePair<>(updated.getResult(), propagationReporter.getStatuses())); } } }