[ https://issues.apache.org/jira/browse/SYNCOPE-1145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16083523#comment-16083523 ]
ASF GitHub Bot commented on SYNCOPE-1145: ----------------------------------------- Github user ilgrosso commented on a diff in the pull request: https://github.com/apache/syncope/pull/50#discussion_r126874475 --- Diff: client/console/src/main/java/org/apache/syncope/client/console/panels/ResHistoryConfDirectoryPanel.java --- @@ -0,0 +1,180 @@ +/* + * 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.panels; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.Iterator; +import java.util.List; +import org.apache.commons.lang3.StringUtils; +import org.apache.syncope.client.console.SyncopeConsoleSession; +import org.apache.syncope.client.console.commons.Constants; +import org.apache.syncope.client.console.commons.ResHistoryConfDataProvider; +import org.apache.syncope.client.console.pages.BasePage; +import org.apache.syncope.client.console.wicket.extensions.markup.html.repeater.data.table.DatePropertyColumn; +import org.apache.syncope.client.console.wicket.extensions.markup.html.repeater.data.table.KeyPropertyColumn; +import org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal; +import org.apache.syncope.client.console.wicket.markup.html.form.ActionLink; +import org.apache.syncope.client.console.wicket.markup.html.form.ActionLink.ActionType; +import org.apache.syncope.client.console.wicket.markup.html.form.ActionsPanel; +import org.apache.syncope.common.lib.types.StandardEntitlement; +import org.apache.syncope.common.lib.SyncopeClientException; +import org.apache.syncope.common.lib.to.ResourceHistoryConfTO; +import org.apache.wicket.PageReference; +import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn; +import org.apache.wicket.extensions.markup.html.repeater.data.table.PropertyColumn; +import org.apache.wicket.model.IModel; +import org.apache.wicket.model.StringResourceModel; + +/** + * Connector history configuration instances page. + */ +public abstract class ResHistoryConfDirectoryPanel + extends ResHistoryDirectoryPanel<ResourceHistoryConfTO> implements ModalPanel { + + private static final long serialVersionUID = 7505440790684089152L; + + private final String entityKey; + + protected ResHistoryConfDirectoryPanel( + final BaseModal<?> baseModal, + final MultilevelPanel multiLevelPanelRef, + final String entityKey, + final PageReference pageRef) { + super(baseModal, multiLevelPanelRef, pageRef); + + this.entityKey = entityKey; + initResultTable(); + } + + @Override + protected List<IColumn<ResourceHistoryConfTO, String>> getColumns() { + final List<IColumn<ResourceHistoryConfTO, String>> columns = new ArrayList<>(); + + columns.add(new KeyPropertyColumn<ResourceHistoryConfTO>( + new StringResourceModel("key", this), "key")); + + columns.add(new PropertyColumn<ResourceHistoryConfTO, String>(new StringResourceModel( + "creator", this), "creator", "creator")); + + columns.add(new DatePropertyColumn<ResourceHistoryConfTO>( + new StringResourceModel("creation", this), "creation", "creation")); + + return columns; + } + + @Override + public ActionsPanel<ResourceHistoryConfTO> getActions(final IModel<ResourceHistoryConfTO> model) { + final ActionsPanel<ResourceHistoryConfTO> panel = super.getActions(model); + final ResourceHistoryConfTO connHistoryConfTO = model.getObject(); + + // -- view + panel.add(new ActionLink<ResourceHistoryConfTO>() { + + private static final long serialVersionUID = -6745431735457245600L; + + @Override + public void onClick(final AjaxRequestTarget target, final ResourceHistoryConfTO modelObject) { + + ResHistoryConfDirectoryPanel.this.getTogglePanel().close(target); + viewConfiguration(modelObject, target); + target.add(modal); + } + }, ActionLink.ActionType.VIEW, StandardEntitlement.CONNECTOR_HISTORY_LIST); + + // -- restore + panel.add(new ActionLink<ResourceHistoryConfTO>() { + + private static final long serialVersionUID = -6745431735457245600L; + + @Override + public void onClick(final AjaxRequestTarget target, final ResourceHistoryConfTO modelObject) { + try { + restClient.restore(modelObject.getKey()); + SyncopeConsoleSession.get().info(getString(Constants.OPERATION_SUCCEEDED)); + target.add(container); + ResHistoryConfDirectoryPanel.this.getTogglePanel().close(target); + } catch (SyncopeClientException e) { + LOG.error("While executing {}", connHistoryConfTO.getKey(), e); + SyncopeConsoleSession.get().error(StringUtils.isBlank(e.getMessage()) + ? e.getClass().getName() : e.getMessage()); + } + ((BasePage) pageRef.getPage()).getNotificationPanel().refresh(target); + } + }, ActionLink.ActionType.RELOAD, StandardEntitlement.CONNECTOR_HISTORY_RESTORE, true); + + // -- delete + panel.add(new ActionLink<ResourceHistoryConfTO>() { + + private static final long serialVersionUID = -6745431735457245600L; + + @Override + public void onClick(final AjaxRequestTarget target, final ResourceHistoryConfTO modelObject) { + try { + restClient.delete(modelObject.getKey()); + SyncopeConsoleSession.get().info(getString(Constants.OPERATION_SUCCEEDED)); + target.add(container); + ResHistoryConfDirectoryPanel.this.getTogglePanel().close(target); + } catch (SyncopeClientException e) { + LOG.error("While deleting {}", connHistoryConfTO.getKey(), e); + SyncopeConsoleSession.get().error(StringUtils.isBlank(e.getMessage()) + ? e.getClass().getName() : e.getMessage()); + } + ((BasePage) pageRef.getPage()).getNotificationPanel().refresh(target); + } + }, ActionLink.ActionType.DELETE, StandardEntitlement.CONNECTOR_HISTORY_DELETE, true); + + return panel; + } + + @Override + protected Collection<ActionType> getBulkActions() { + return Collections.<ActionLink.ActionType>emptyList(); + } + + @Override + protected ResHistoryConfDataProvider dataProvider() { + return new ResHistoryConfProvider(rows); + } + + @Override + protected String paginatorRowsKey() { + return Constants.PREF_PROPAGATION_TASKS_PAGINATOR_ROWS; --- End diff -- Define a new constant, do no hijack propagation tasks' paginator. > Connector and Resource configuration versioning > ----------------------------------------------- > > Key: SYNCOPE-1145 > URL: https://issues.apache.org/jira/browse/SYNCOPE-1145 > Project: Syncope > Issue Type: New Feature > Components: common, console, core > Reporter: Francesco Chicchiriccò > Assignee: Francesco Chicchiriccò > Fix For: 2.0.5, 2.1.0 > > > It often happens that, while playing with Connectors' and Resources' > configuration, everything works up until a certain point, then some > misconfiguration happens and errors start appearing. > In such situations, it would be handy to have a simple mechanism to revert to > a previous (working) situation. -- This message was sent by Atlassian JIRA (v6.4.14#64029)