/* * 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.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Date; import java.util.Iterator; import java.util.List; import org.apache.commons.lang3.StringUtils; import org.apache.cxf.rs.security.jose.jws.JwsJwtCompactConsumer; import org.apache.syncope.client.console.SyncopeConsoleSession; import org.apache.syncope.client.console.commons.Constants; 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.AccessTokenDirectoryPanel.AccessTokenDataProvider; import org.apache.syncope.client.console.rest.AccessTokenRestClient; 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.form.ActionLink; import org.apache.syncope.client.console.wicket.markup.html.form.ActionsPanel; import org.apache.syncope.client.console.wizards.WizardMgtPanel; import org.apache.syncope.common.lib.SyncopeClientException; import org.apache.syncope.common.lib.to.AccessTokenTO; import org.apache.syncope.common.lib.types.StandardEntitlement; import org.apache.wicket.PageReference; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.extensions.markup.html.repeater.data.grid.ICellPopulator; import org.apache.wicket.extensions.markup.html.repeater.data.sort.SortOrder; import org.apache.wicket.extensions.markup.html.repeater.data.table.AbstractColumn; 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.ResourceModel; import org.apache.wicket.model.StringResourceModel; public class AccessTokenDirectoryPanel extends DirectoryPanel<AccessTokenTO, AccessTokenTO, AccessTokenDataProvider, AccessTokenRestClient> { private static final long serialVersionUID = -6903586269155682961L; protected AccessTokenDirectoryPanel(final String id, final Builder builder) { super(id, builder); setShowResultPage(true); modal.size(Modal.Size.Large); initResultTable(); } @Override protected AccessTokenDataProvider dataProvider() { return new AccessTokenDataProvider(rows); } @Override protected String paginatorRowsKey() { return Constants.PREF_ACCESS_TOKEN_PAGINATOR_ROWS; } @Override protected List<IColumn<AccessTokenTO, String>> getColumns() { List<IColumn<AccessTokenTO, String>> columns = new ArrayList<>(); columns.add(new KeyPropertyColumn<AccessTokenTO>( new StringResourceModel(Constants.KEY_FIELD_NAME, this), Constants.KEY_FIELD_NAME, Constants.KEY_FIELD_NAME)); columns.add(new PropertyColumn<AccessTokenTO, String>(new ResourceModel("owner"), "owner", "owner")); columns.add(new AbstractColumn<AccessTokenTO, String>(new ResourceModel("issuedAt", "")) { private static final long serialVersionUID = -1822504503325964706L; @Override public void populateItem( final Item<ICellPopulator<AccessTokenTO>> cellItem, final String componentId, final IModel<AccessTokenTO> model) { JwsJwtCompactConsumer consumer = new JwsJwtCompactConsumer(model.getObject().getBody()); cellItem.add(new Label(componentId, SyncopeConsoleSession.get().getDateFormat().format( new Date(consumer.getJwtClaims().getIssuedAt())))); } }); columns.add(new DatePropertyColumn<AccessTokenTO>(new ResourceModel("expiryTime"), "expiryTime", "expiryTime")); return columns; } @Override public ActionsPanel<AccessTokenTO> getActions(final IModel<AccessTokenTO> model) { final ActionsPanel<AccessTokenTO> panel = super.getActions(model); panel.add(new ActionLink<AccessTokenTO>() { private static final long serialVersionUID = -7978723352517770644L; @Override public void onClick(final AjaxRequestTarget target, final AccessTokenTO ignore) { try { restClient.delete(model.getObject().getKey()); SyncopeConsoleSession.get().info(getString(Constants.OPERATION_SUCCEEDED)); target.add(container); } catch (SyncopeClientException e) { LOG.error("While deleting object {}", model.getObject().getKey(), e); SyncopeConsoleSession.get().error(StringUtils.isBlank(e.getMessage()) ? e.getClass(). getName() : e.getMessage()); } ((BasePage) pageRef.getPage()).getNotificationPanel().refresh(target); } }, ActionLink.ActionType.DELETE, StandardEntitlement.ACCESS_TOKEN_DELETE, true); return panel; } @Override protected Collection<ActionLink.ActionType> getBulkActions() { return Collections.emptyList(); } public abstract static class Builder extends DirectoryPanel.Builder<AccessTokenTO, AccessTokenTO, AccessTokenRestClient> { private static final long serialVersionUID = 5088962796986706805L; public Builder(final PageReference pageRef) { super(new AccessTokenRestClient(), pageRef); } @Override protected WizardMgtPanel<AccessTokenTO> newInstance(final String id, final boolean wizardInModal) { return new AccessTokenDirectoryPanel(id, this); } } protected class AccessTokenDataProvider extends DirectoryDataProvider<AccessTokenTO> { private static final long serialVersionUID = 6267494272884913376L; private final SortableDataProviderComparator<AccessTokenTO> comparator; private final AccessTokenRestClient restClient = new AccessTokenRestClient(); public AccessTokenDataProvider(final int paginatorRows) { super(paginatorRows); setSort("owner", SortOrder.ASCENDING); this.comparator = new SortableDataProviderComparator<>(this); } @Override public Iterator<AccessTokenTO> iterator(final long first, final long count) { int page = ((int) first / paginatorRows); List<AccessTokenTO> tasks = restClient.list((page < 0 ? 0 : page) + 1, paginatorRows, getSort()); Collections.sort(tasks, comparator); return tasks.iterator(); } @Override public long size() { return restClient.count(); } @Override public IModel<AccessTokenTO> model(final AccessTokenTO object) { return new CompoundPropertyModel<>(object); } } }