blob: 74080f8df22c7319da62d34c752e94ac60003f8a [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.directory.fortress.web.model;
import org.apache.commons.collections.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.wicket.injection.Injector;
import org.apache.wicket.model.Model;
import org.apache.wicket.spring.injection.annot.SpringBean;
import org.apache.directory.fortress.core.PwPolicyMgr;
import org.apache.directory.fortress.core.model.PwPolicy;
import org.apache.directory.fortress.core.model.Session;
import org.apache.directory.fortress.core.SecurityException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
/**
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
public class PwPolicyListModel extends Model<SerializableList<PwPolicy>>
{
/** Default serialVersionUID */
private static final long serialVersionUID = 1L;
@SpringBean
private PwPolicyMgr pwPolicyMgr;
private static final Logger LOG = LoggerFactory.getLogger(PwPolicyListModel.class.getName());
private PwPolicy policy;
private SerializableList<PwPolicy> policies = null;
/**
* Default constructor
*/
public PwPolicyListModel( Session session )
{
Injector.get().inject(this);
// TODO: enable this after search permission added:
//this.pwPolicyMgr.setAdmin( session );
}
/**
* User contains the search arguments.
*
* @param policy
*/
public PwPolicyListModel( PwPolicy policy, Session session )
{
Injector.get().inject( this );
this.policy = policy;
// TODO: enable this after search permission added:
//this.pwPolicyMgr.setAdmin( session );
}
/**
* This data is bound for RoleListPanel
*
* @return T extends List<Role> roles data will be bound to panel data view component.
*/
@Override
public SerializableList<PwPolicy> getObject()
{
if ( policies != null )
{
LOG.debug( ".getObject count: " + policies.size() );
return policies;
}
if ( policy == null )
{
LOG.debug( ".getObject null" );
policies = new SerializableList<>( new ArrayList<PwPolicy>() );
}
else
{
LOG.debug( ".getObject policyNm: " + policy.getName() );
policies = new SerializableList<>( getList( policy ) );
}
return policies;
}
@Override
public void setObject( SerializableList<PwPolicy> object )
{
LOG.debug( ".setObject count: " + (object).size() );
policies = object;
}
@Override
public void detach()
{
//log.debug(".detach");
policies = null;
policy = null;
}
private List<PwPolicy> getList( PwPolicy policy )
{
List<PwPolicy> policiesList = null;
try
{
String szPolicyNm = policy != null ? policy.getName() : "";
LOG.debug( ".getList policyNm: " + szPolicyNm );
policiesList = pwPolicyMgr.search( szPolicyNm );
// sort list by policy name:
if( CollectionUtils.isNotEmpty( policiesList ))
{
Collections.sort( policiesList, new Comparator<PwPolicy>()
{
@Override
public int compare(PwPolicy p1, PwPolicy p2)
{
return p1.getName().compareToIgnoreCase( p2.getName() );
}
} );
}
}
catch ( SecurityException se )
{
String error = ".getList caught SecurityException=" + se;
LOG.warn( error );
}
return policiesList;
}
}