blob: 229dd5038184944529f78c64f7c1397713ee40cc [file] [log] [blame]
/*
* 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.client.console.wizards.resources;
import java.io.Serializable;
import java.util.Collections;
import org.apache.commons.lang3.tuple.Pair;
import org.apache.syncope.client.console.rest.ConnectorRestClient;
import org.apache.syncope.client.console.rest.ResourceRestClient;
import org.apache.syncope.client.console.topology.TopologyNode;
import org.apache.syncope.client.ui.commons.wizards.AjaxWizard;
import org.apache.syncope.common.lib.to.ResourceTO;
import org.apache.wicket.PageReference;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.extensions.wizard.WizardModel;
import org.apache.wicket.markup.ComponentTag;
/**
* Resource wizard builder.
*/
public class ResourceWizardBuilder extends AbstractResourceWizardBuilder<ResourceTO> {
private static final long serialVersionUID = 1734415311027284221L;
private boolean createFlag;
public ResourceWizardBuilder(final ResourceTO resourceTO, final PageReference pageRef) {
super(resourceTO, pageRef);
}
@Override
public AjaxWizard<Serializable> build(final String id, final AjaxWizard.Mode mode) {
this.createFlag = mode == AjaxWizard.Mode.CREATE;
return super.build(id, mode);
}
@Override
protected WizardModel buildModelSteps(final Serializable modelObject, final WizardModel wizardModel) {
ResourceTO resourceTO = ResourceTO.class.cast(modelObject);
wizardModel.add(new ResourceDetailsPanel(resourceTO, createFlag));
wizardModel.add(new ResourceConnConfPanel(resourceTO, createFlag) {
private static final long serialVersionUID = -1128269449868933504L;
@Override
protected Pair<Boolean, String> check(final AjaxRequestTarget target) {
return ResourceRestClient.check(modelObject);
}
@Override
protected void onComponentTag(final ComponentTag tag) {
tag.append("class", "scrollable-tab-content", " ");
}
});
if (resourceTO.getConnector() != null) {
wizardModel.add(new ResourceConnCapabilitiesPanel(
resourceTO, ConnectorRestClient.read(resourceTO.getConnector()).getCapabilities()));
} else {
wizardModel.add(new ResourceConnCapabilitiesPanel(resourceTO, Collections.emptySet()));
}
wizardModel.add(new ResourceSecurityPanel(resourceTO));
return wizardModel;
}
@Override
protected ResourceTO onApplyInternal(final Serializable modelObject) {
ResourceTO resourceTO = (ResourceTO) modelObject;
if (createFlag) {
resourceTO = ResourceRestClient.create(resourceTO);
} else {
ResourceRestClient.update(resourceTO);
}
return resourceTO;
}
@Override
protected Serializable getCreateCustomPayloadEvent(final Serializable afterObject, final AjaxRequestTarget target) {
final ResourceTO actual = ResourceTO.class.cast(afterObject);
return new CreateEvent(
actual.getKey(),
actual.getKey(),
TopologyNode.Kind.RESOURCE,
actual.getConnector(),
target);
}
}