-
Notifications
You must be signed in to change notification settings - Fork 198
[SYNCOPE-1901] WA: implement Password Management #1170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
defbedc
[SYNCOPE-1901] Implement PasswordModule for CAS password management i…
9817a35
[SYNCOPE-1901] Implement Neo4j persistence for PasswordModule in Syncope
24673c5
[SYNCOPE-1901] Unit tests and IT tests for PasswordModule. Only imple…
4bd557a
[SYNCOPE-1901] Implemented the UI for configuring password management…
78cdd06
[SYNCOPE-1901] Adding LDAPPasswordModuleConf to configure CAS passwor…
ec3c4ca
[SYNCOPE-1901] Checkstyle
8c1a0de
[SYNCOPE-1901] Adding JDBCPasswordModuleConf to configure CAS passwor…
13d817d
[SYNCOPE-1901] Add PasswordModule implementations and unit/IT tests f…
55d131e
[SYNCOPE-1901] allow defining a single instance of passwordChangeServ…
e7ef873
[SYNCOPE-1901] Fix PasswordModuleState for Neo4j persistence
9537135
Merge branch 'master' into SYNCOPE-1901
d634cc7
[SYNCOPE-1901] Refactoring PasswordModule to PasswordManagement
fd63810
[SYNCOPE-1901] Definition of a validator that checks if multiple pass…
fe7e34f
[SYNCOPE-1901] Add password management configuration for REST source
17f2d14
[SYNCOPE-1901] Update apache syncope documentation
40b5930
Merge branch 'master' into SYNCOPE-1901
46a603e
[SYNCOPE-1901] Checkstyle
74100e9
[SYNCOPE-1901] Fix CodeQL issues: remove unused parameter and replace…
a16fa80
[SYNCOPE-1901] Fix unresolved comments
a53d441
[SYNCOPE-1901] Restore ActionsPanel properties
542acda
Merge remote-tracking branch 'upstream/master' into SYNCOPE-1901
9fd496e
[SYNCOPE-1901] Reflow
8ae6aa4
[SYNCOPE-1901] Reflow
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
269 changes: 269 additions & 0 deletions
269
.../main/java/org/apache/syncope/client/console/panels/PasswordManagementDirectoryPanel.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,269 @@ | ||
/* | ||
* 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 de.agilecoders.wicket.core.markup.html.bootstrap.dialog.Modal; | ||
import java.io.Serializable; | ||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
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.audit.AuditHistoryModal; | ||
import org.apache.syncope.client.console.commons.AMConstants; | ||
import org.apache.syncope.client.console.commons.DirectoryDataProvider; | ||
import org.apache.syncope.client.console.commons.SortableDataProviderComparator; | ||
import org.apache.syncope.client.console.pages.BasePage; | ||
import org.apache.syncope.client.console.panels.PasswordManagementDirectoryPanel.PasswordManagementProvider; | ||
import org.apache.syncope.client.console.rest.AuditRestClient; | ||
import org.apache.syncope.client.console.rest.PasswordManagementRestClient; | ||
import org.apache.syncope.client.console.wicket.extensions.markup.html.repeater.data.table.BooleanPropertyColumn; | ||
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.ActionsPanel; | ||
import org.apache.syncope.client.console.wizards.PasswordManagementWizardBuilder; | ||
import org.apache.syncope.client.ui.commons.Constants; | ||
import org.apache.syncope.client.ui.commons.pages.BaseWebPage; | ||
import org.apache.syncope.client.ui.commons.wizards.AjaxWizard; | ||
import org.apache.syncope.common.lib.to.PasswordManagementTO; | ||
import org.apache.syncope.common.lib.types.AMEntitlement; | ||
import org.apache.syncope.common.lib.types.IdRepoEntitlement; | ||
import org.apache.syncope.common.lib.types.OpEvent; | ||
import org.apache.wicket.PageReference; | ||
import org.apache.wicket.ajax.AjaxRequestTarget; | ||
import org.apache.wicket.authroles.authorization.strategies.role.metadata.MetaDataRoleAuthorizationStrategy; | ||
import org.apache.wicket.event.Broadcast; | ||
import org.apache.wicket.extensions.markup.html.repeater.data.grid.ICellPopulator; | ||
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.markup.html.basic.Label; | ||
import org.apache.wicket.markup.repeater.Item; | ||
import org.apache.wicket.model.CompoundPropertyModel; | ||
import org.apache.wicket.model.IModel; | ||
import org.apache.wicket.model.Model; | ||
import org.apache.wicket.model.ResourceModel; | ||
import org.apache.wicket.model.StringResourceModel; | ||
import org.apache.wicket.spring.injection.annot.SpringBean; | ||
|
||
public class PasswordManagementDirectoryPanel extends DirectoryPanel< | ||
PasswordManagementTO, PasswordManagementTO, PasswordManagementProvider, PasswordManagementRestClient> { | ||
|
||
private static final long serialVersionUID = 1005345990563741296L; | ||
|
||
@SpringBean | ||
protected AuditRestClient auditRestClient; | ||
|
||
protected final BaseModal<Serializable> historyModal; | ||
|
||
public PasswordManagementDirectoryPanel( | ||
final String id, | ||
final PasswordManagementRestClient restClient, | ||
final PageReference pageRef) { | ||
|
||
super(id, restClient, pageRef); | ||
|
||
disableCheckBoxes(); | ||
|
||
addNewItemPanelBuilder(new PasswordManagementWizardBuilder( | ||
new PasswordManagementTO(), restClient, pageRef), true); | ||
|
||
MetaDataRoleAuthorizationStrategy.authorize(addAjaxLink, RENDER, AMEntitlement.AUTH_MODULE_CREATE); | ||
|
||
modal.size(Modal.Size.Extra_large); | ||
initResultTable(); | ||
|
||
historyModal = new BaseModal<>(Constants.OUTER); | ||
historyModal.size(Modal.Size.Large); | ||
addOuterObject(historyModal); | ||
} | ||
|
||
@Override | ||
protected PasswordManagementProvider dataProvider() { | ||
return new PasswordManagementProvider(rows); | ||
} | ||
|
||
@Override | ||
protected String paginatorRowsKey() { | ||
return AMConstants.PREF_AUTHMODULE_PAGINATOR_ROWS; | ||
} | ||
|
||
@Override | ||
protected Collection<ActionLink.ActionType> getBatches() { | ||
return List.of(); | ||
} | ||
|
||
@Override | ||
protected List<IColumn<PasswordManagementTO, String>> getColumns() { | ||
List<IColumn<PasswordManagementTO, String>> columns = new ArrayList<>(); | ||
columns.add(new PropertyColumn<>( | ||
new StringResourceModel(Constants.KEY_FIELD_NAME, this), | ||
Constants.KEY_FIELD_NAME, Constants.KEY_FIELD_NAME)); | ||
columns.add(new PropertyColumn<>(new ResourceModel(Constants.DESCRIPTION_FIELD_NAME), | ||
Constants.DESCRIPTION_FIELD_NAME, Constants.DESCRIPTION_FIELD_NAME)); | ||
columns.add(new PropertyColumn<>(new ResourceModel("type"), "conf") { | ||
|
||
private static final long serialVersionUID = -1822504503325964706L; | ||
|
||
@Override | ||
public void populateItem( | ||
final Item<ICellPopulator<PasswordManagementTO>> item, | ||
final String componentId, | ||
final IModel<PasswordManagementTO> rowModel) { | ||
|
||
item.add(new Label(componentId, rowModel.getObject().getConf() == null | ||
? StringUtils.EMPTY | ||
: StringUtils.substringBefore( | ||
rowModel.getObject().getConf().getClass().getSimpleName(), "PasswordManagementConf"))); | ||
} | ||
}); | ||
columns.add(new BooleanPropertyColumn<>( | ||
new StringResourceModel("enabled", this), | ||
"enabled", | ||
"enabled")); | ||
return columns; | ||
} | ||
|
||
@Override | ||
public ActionsPanel<PasswordManagementTO> getActions(final IModel<PasswordManagementTO> model) { | ||
ActionsPanel<PasswordManagementTO> panel = super.getActions(model); | ||
|
||
panel.add(new ActionLink<>() { | ||
|
||
private static final long serialVersionUID = -3722207913631435501L; | ||
|
||
@Override | ||
public void onClick(final AjaxRequestTarget target, final PasswordManagementTO ignore) { | ||
send(PasswordManagementDirectoryPanel.this, Broadcast.EXACT, new AjaxWizard.EditItemActionEvent<>( | ||
restClient.read(model.getObject().getKey()), target)); | ||
} | ||
}, ActionLink.ActionType.EDIT, AMEntitlement.PASSWORD_MANAGEMENT_UPDATE); | ||
|
||
panel.add(new ActionLink<>() { | ||
|
||
private static final long serialVersionUID = -3722207913631435501L; | ||
|
||
@Override | ||
public void onClick(final AjaxRequestTarget target, final PasswordManagementTO ignore) { | ||
try { | ||
model.setObject(restClient.read(model.getObject().getKey())); | ||
boolean enabled = model.getObject().isEnabled(); | ||
model.getObject().setEnabled(!enabled); | ||
restClient.update(model.getObject()); | ||
|
||
SyncopeConsoleSession.get().success(getString(Constants.OPERATION_SUCCEEDED)); | ||
target.add(container); | ||
} catch (Exception e) { | ||
LOG.error("While actioning object {}", model.getObject().getKey(), e); | ||
SyncopeConsoleSession.get().onException(e); | ||
} | ||
((BasePage) pageRef.getPage()).getNotificationPanel().refresh(target); | ||
} | ||
}, ActionLink.ActionType.ENABLE, AMEntitlement.PASSWORD_MANAGEMENT_UPDATE); | ||
|
||
panel.add(new ActionLink<>() { | ||
|
||
private static final long serialVersionUID = -5432034353017728756L; | ||
|
||
@Override | ||
public void onClick(final AjaxRequestTarget target, final PasswordManagementTO ignore) { | ||
model.setObject(restClient.read(model.getObject().getKey())); | ||
|
||
target.add(historyModal.setContent(new AuditHistoryModal<>( | ||
OpEvent.CategoryType.LOGIC, | ||
"PasswordManagementLogic", | ||
model.getObject(), | ||
AMEntitlement.PASSWORD_MANAGEMENT_UPDATE, | ||
auditRestClient) { | ||
|
||
private static final long serialVersionUID = -3712506022627033822L; | ||
|
||
@Override | ||
protected void restore(final String json, final AjaxRequestTarget target) { | ||
try { | ||
PasswordManagementTO updated = MAPPER.readValue(json, PasswordManagementTO.class); | ||
restClient.update(updated); | ||
|
||
SyncopeConsoleSession.get().success(getString(Constants.OPERATION_SUCCEEDED)); | ||
} catch (Exception e) { | ||
LOG.error("While restoring AuthModule {}", model.getObject().getKey(), e); | ||
SyncopeConsoleSession.get().onException(e); | ||
} | ||
((BasePage) pageRef.getPage()).getNotificationPanel().refresh(target); | ||
} | ||
})); | ||
|
||
historyModal.header(new Model<>(getString("auditHistory.title", new Model<>(model.getObject())))); | ||
|
||
historyModal.show(true); | ||
} | ||
}, ActionLink.ActionType.VIEW_AUDIT_HISTORY, String.format("%s,%s", AMEntitlement.PASSWORD_MANAGEMENT_READ, | ||
IdRepoEntitlement.AUDIT_LIST)); | ||
|
||
panel.add(new ActionLink<>() { | ||
|
||
private static final long serialVersionUID = -3722207913631435501L; | ||
|
||
@Override | ||
public void onClick(final AjaxRequestTarget target, final PasswordManagementTO ignore) { | ||
try { | ||
restClient.delete(model.getObject().getKey()); | ||
|
||
SyncopeConsoleSession.get().success(getString(Constants.OPERATION_SUCCEEDED)); | ||
target.add(container); | ||
} catch (Exception e) { | ||
LOG.error("While deleting {}", model.getObject().getKey(), e); | ||
SyncopeConsoleSession.get().onException(e); | ||
} | ||
((BaseWebPage) pageRef.getPage()).getNotificationPanel().refresh(target); | ||
} | ||
}, ActionLink.ActionType.DELETE, AMEntitlement.PASSWORD_MANAGEMENT_DELETE, true); | ||
|
||
return panel; | ||
} | ||
|
||
protected final class PasswordManagementProvider extends DirectoryDataProvider<PasswordManagementTO> { | ||
|
||
private static final long serialVersionUID = 4972693840864025955L; | ||
|
||
private final SortableDataProviderComparator<PasswordManagementTO> comparator; | ||
|
||
private PasswordManagementProvider(final int paginatorRows) { | ||
super(paginatorRows); | ||
comparator = new SortableDataProviderComparator<>(this); | ||
} | ||
|
||
@Override | ||
public Iterator<PasswordManagementTO> iterator(final long first, final long count) { | ||
List<PasswordManagementTO> passwordManagements = restClient.list(); | ||
passwordManagements.sort(comparator); | ||
return passwordManagements.subList((int) first, (int) first + (int) count).iterator(); | ||
} | ||
|
||
@Override | ||
public long size() { | ||
return restClient.list().size(); | ||
} | ||
|
||
@Override | ||
public IModel<PasswordManagementTO> model(final PasswordManagementTO object) { | ||
return new CompoundPropertyModel<>(object); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.