blob: 65386d91524929950cad25a21d5a8ad73b0be981 [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.enduser.panels.any;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
import org.apache.syncope.client.enduser.SyncopeEnduserSession;
import org.apache.syncope.client.enduser.layout.CustomizationOption;
import org.apache.syncope.client.enduser.markup.html.form.MultiFieldPanel;
import org.apache.syncope.client.ui.commons.markup.html.form.AbstractFieldPanel;
import org.apache.syncope.client.ui.commons.markup.html.form.AjaxTextFieldPanel;
import org.apache.syncope.client.ui.commons.wicket.markup.html.bootstrap.tabs.Accordion;
import org.apache.syncope.client.ui.commons.wizards.any.AnyWrapper;
import org.apache.syncope.common.lib.Attr;
import org.apache.syncope.common.lib.EntityTOUtils;
import org.apache.syncope.common.lib.to.AnyTO;
import org.apache.syncope.common.lib.to.GroupableRelatableTO;
import org.apache.syncope.common.lib.to.MembershipTO;
import org.apache.syncope.common.lib.to.VirSchemaTO;
import org.apache.syncope.common.lib.types.SchemaType;
import org.apache.wicket.extensions.markup.html.tabs.AbstractTab;
import org.apache.wicket.extensions.markup.html.tabs.ITab;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.list.ListItem;
import org.apache.wicket.markup.html.list.ListView;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.apache.wicket.model.PropertyModel;
import org.apache.wicket.model.StringResourceModel;
import org.apache.wicket.model.util.ListModel;
import java.util.stream.Collectors;
public class VirAttrs extends AbstractAttrs<VirSchemaTO> {
private static final long serialVersionUID = -7982691107029848579L;
public <T extends AnyTO> VirAttrs(
final String id,
final AnyWrapper<T> modelObject,
final List<String> anyTypeClasses,
final Map<String, CustomizationOption> whichVirAttrs) {
super(id, modelObject, anyTypeClasses, whichVirAttrs);
add(new VirAttrs.VirSchemas("virSchemas", schemas, attrs).setOutputMarkupId(true));
add(new ListView<MembershipTO>("membershipsVirSchemas", membershipTOs) {
private static final long serialVersionUID = 9101744072914090143L;
@Override
protected void populateItem(final ListItem<MembershipTO> item) {
final MembershipTO membershipTO = item.getModelObject();
item.add(new Accordion("membershipVirSchemas",
Collections.<ITab>singletonList(new AbstractTab(new StringResourceModel(
"attributes.membership.accordion", VirAttrs.this, Model.of(membershipTO))) {
private static final long serialVersionUID = 1037272333056449378L;
@Override
public WebMarkupContainer getPanel(final String panelId) {
return new VirAttrs.VirSchemas(
panelId,
membershipTO.getGroupName(),
membershipSchemas.get(membershipTO.getGroupKey()),
new ListModel<>(getAttrsFromTO(membershipTO)));
}
}), Model.of(-1)).setOutputMarkupId(true));
}
}).setOutputMarkupId(true);
}
@Override
protected SchemaType getSchemaType() {
return SchemaType.VIRTUAL;
}
@Override
protected List<Attr> getAttrsFromTO() {
return anyTO.getVirAttrs().stream().sorted(attrComparator).collect(Collectors.toList());
}
@Override
protected List<Attr> getAttrsFromTO(final MembershipTO membershipTO) {
return membershipTO.getVirAttrs().stream().sorted(attrComparator).collect(Collectors.toList());
}
@Override
protected void setAttrs() {
List<Attr> virAttrs = new ArrayList<>();
Map<String, Attr> attrMap = EntityTOUtils.buildAttrMap(anyTO.getVirAttrs());
virAttrs.addAll(schemas.values().stream().map(schema -> {
Attr attrTO = new Attr();
attrTO.setSchema(schema.getKey());
if (attrMap.containsKey(schema.getKey())) {
attrTO.getValues().addAll(attrMap.get(schema.getKey()).getValues());
} else {
attrTO.getValues().add(StringUtils.EMPTY);
}
return attrTO;
}).collect(Collectors.toList()));
anyTO.getVirAttrs().clear();
anyTO.getVirAttrs().addAll(virAttrs);
}
@Override
protected void setAttrs(final MembershipTO membershipTO) {
List<Attr> virAttrs = new ArrayList<>();
final Map<String, Attr> attrMap;
if (GroupableRelatableTO.class.cast(anyTO).getMembership(membershipTO.getGroupKey()).isPresent()) {
attrMap = EntityTOUtils.buildAttrMap(GroupableRelatableTO.class.cast(anyTO)
.getMembership(membershipTO.getGroupKey()).get().getVirAttrs());
} else {
attrMap = new HashMap<>();
}
virAttrs.addAll(membershipSchemas.get(membershipTO.getGroupKey()).values().stream().map(schema -> {
Attr attrTO = new Attr();
attrTO.setSchema(schema.getKey());
if (attrMap.containsKey(schema.getKey())) {
attrTO.getValues().addAll(attrMap.get(schema.getKey()).getValues());
} else {
attrTO.getValues().add(StringUtils.EMPTY);
}
return attrTO;
}).collect(Collectors.toList()));
membershipTO.getVirAttrs().clear();
membershipTO.getVirAttrs().addAll(virAttrs);
}
public class VirSchemas extends Schemas {
private static final long serialVersionUID = -4730563859116024676L;
public VirSchemas(
final String id,
final Map<String, VirSchemaTO> schemas,
final IModel<List<Attr>> attrTOs) {
this(id, null, schemas, attrTOs);
}
public VirSchemas(
final String id,
final String groupName,
final Map<String, VirSchemaTO> schemas,
final IModel<List<Attr>> attrTOs) {
super(id);
add(new ListView<Attr>("schemas", attrTOs) {
private static final long serialVersionUID = 9101744072914090143L;
@Override
@SuppressWarnings("unchecked")
protected void populateItem(final ListItem<Attr> item) {
Attr attrTO = item.getModelObject();
// set default values, if any
if (attrTO.getValues().stream().filter(StringUtils::isNotBlank)
.collect(Collectors.toList()).isEmpty()) {
attrTO.getValues().clear();
attrTO.getValues().addAll(getDefaultValues(attrTO.getSchema(), groupName));
}
VirSchemaTO virSchemaTO = schemas.get(attrTO.getSchema());
AbstractFieldPanel<?> panel = new AjaxTextFieldPanel(
"panel",
virSchemaTO.getLabel(SyncopeEnduserSession.get().getLocale()),
new Model<>(),
false);
panel = new MultiFieldPanel.Builder<>(
new PropertyModel<List<String>>(attrTO, "values")).build(
"panel",
virSchemaTO.getLabel(SyncopeEnduserSession.get().getLocale()),
AjaxTextFieldPanel.class.cast(panel));
panel.setEnabled(!virSchemaTO.isReadonly() && !renderAsReadonly(attrTO.getSchema(), groupName));
item.add(panel);
}
});
}
}
}