blob: 601dd8ef8308c023183b4dfb198e06e42c783a1d [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.reports;
import com.fasterxml.jackson.databind.json.JsonMapper;
import java.io.Serializable;
import java.util.stream.Collectors;
import org.apache.syncope.client.console.panels.BeanPanel;
import org.apache.syncope.client.console.panels.search.SearchUtils;
import org.apache.syncope.client.console.rest.ImplementationRestClient;
import org.apache.syncope.client.console.rest.ReportRestClient;
import org.apache.syncope.client.console.wizards.BaseAjaxWizardBuilder;
import org.apache.syncope.client.ui.commons.Constants;
import org.apache.syncope.client.ui.commons.markup.html.form.AjaxDropDownChoicePanel;
import org.apache.syncope.common.lib.report.ReportletConf;
import org.apache.syncope.common.lib.to.EntityTO;
import org.apache.syncope.common.lib.to.ImplementationTO;
import org.apache.syncope.common.lib.to.ReportTO;
import org.apache.syncope.common.lib.types.IdRepoImplementationType;
import org.apache.syncope.common.lib.types.ImplementationEngine;
import org.apache.wicket.PageReference;
import org.apache.wicket.WicketRuntimeException;
import org.apache.wicket.ajax.AjaxEventBehavior;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.extensions.wizard.WizardModel;
import org.apache.wicket.extensions.wizard.WizardStep;
import org.apache.wicket.model.LoadableDetachableModel;
import org.apache.wicket.model.PropertyModel;
import org.springframework.beans.BeanWrapper;
import org.springframework.beans.PropertyAccessorFactory;
public class ReportletWizardBuilder extends BaseAjaxWizardBuilder<ReportletWrapper> {
private static final long serialVersionUID = 5945391813567245081L;
private static final JsonMapper MAPPER = JsonMapper.builder().findAndAddModules().build();
private final String report;
public ReportletWizardBuilder(final String report, final ReportletWrapper reportlet, final PageReference pageRef) {
super(reportlet, pageRef);
this.report = report;
}
@Override
protected Serializable onApplyInternal(final ReportletWrapper modelObject) {
if (modelObject.getImplementationEngine() == ImplementationEngine.JAVA) {
BeanWrapper confWrapper = PropertyAccessorFactory.forBeanPropertyAccess(modelObject.getConf());
modelObject.getSCondWrapper().forEach((fieldName, pair) -> {
confWrapper.setPropertyValue(fieldName, SearchUtils.buildFIQL(pair.getRight(), pair.getLeft()));
});
ImplementationTO reportlet = ImplementationRestClient.read(
IdRepoImplementationType.REPORTLET, modelObject.getImplementationKey());
try {
reportlet.setBody(MAPPER.writeValueAsString(modelObject.getConf()));
ImplementationRestClient.update(reportlet);
} catch (Exception e) {
throw new WicketRuntimeException(e);
}
}
ReportTO reportTO = ReportRestClient.read(report);
if (modelObject.isNew()) {
reportTO.getReportlets().add(modelObject.getImplementationKey());
}
ReportRestClient.update(reportTO);
return modelObject;
}
@Override
protected WizardModel buildModelSteps(final ReportletWrapper modelObject, final WizardModel wizardModel) {
wizardModel.add(new Profile(modelObject));
wizardModel.add(new Configuration(modelObject));
return wizardModel;
}
public static class Profile extends WizardStep {
private static final long serialVersionUID = -3043839139187792810L;
public Profile(final ReportletWrapper reportlet) {
AjaxDropDownChoicePanel<String> conf = new AjaxDropDownChoicePanel<>(
"reportlet", getString("reportlet"), new PropertyModel<>(reportlet, "implementationKey"));
conf.setChoices(ImplementationRestClient.list(IdRepoImplementationType.REPORTLET).stream().
map(EntityTO::getKey).sorted().collect(Collectors.toList()));
conf.addRequiredLabel();
conf.setNullValid(false);
conf.setEnabled(reportlet.isNew());
conf.add(new AjaxEventBehavior(Constants.ON_CHANGE) {
private static final long serialVersionUID = -7133385027739964990L;
@Override
protected void onEvent(final AjaxRequestTarget target) {
ImplementationTO impl = ImplementationRestClient.read(
IdRepoImplementationType.REPORTLET, conf.getModelObject());
reportlet.setImplementationEngine(impl.getEngine());
if (impl.getEngine() == ImplementationEngine.JAVA) {
try {
ReportletConf conf = MAPPER.readValue(impl.getBody(), ReportletConf.class);
reportlet.setConf(conf);
} catch (Exception e) {
LOG.error("During deserialization", e);
}
}
}
});
add(conf);
}
}
public static class Configuration extends WizardStep {
private static final long serialVersionUID = -785981096328637758L;
public Configuration(final ReportletWrapper reportlet) {
LoadableDetachableModel<Serializable> bean = new LoadableDetachableModel<>() {
private static final long serialVersionUID = 2092144708018739371L;
@Override
protected Serializable load() {
return reportlet.getConf();
}
};
add(new BeanPanel<>("bean", bean, reportlet.getSCondWrapper(), Constants.NAME_FIELD_NAME, "reportlet").
setRenderBodyOnly(true));
}
}
}