blob: eb985475d00bf6458b00fdce6ca91c6b6e4dbe82 [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.server.core.authz.support;
import java.util.ArrayList;
import java.util.Collection;
import javax.naming.NamingException;
import org.apache.directory.server.core.entry.ServerEntry;
import org.apache.directory.server.core.partition.PartitionNexusProxy;
import org.apache.directory.server.schema.registries.Registries;
import org.apache.directory.shared.ldap.aci.ACITuple;
import org.apache.directory.shared.ldap.aci.MicroOperation;
import org.apache.directory.shared.ldap.aci.UserClass;
import org.apache.directory.shared.ldap.constants.AuthenticationLevel;
import org.apache.directory.shared.ldap.entry.Value;
import org.apache.directory.shared.ldap.name.LdapDN;
/**
* An {@link ACITupleFilter} that chooses the tuples with the most specific user
* class. (18.8.4.2)
* <p>
* If more than one tuple remains, choose the tuples with the most specific user
* class. If there are any tuples matching the requestor with UserClasses element
* name or thisEntry, discard all other tuples. Otherwise if there are any tuples
* matching UserGroup, discard all other tuples. Otherwise if there are any tuples
* matching subtree, discard all other tuples.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class MostSpecificUserClassFilter implements ACITupleFilter
{
public Collection<ACITuple> filter(
Registries registries,
Collection<ACITuple> tuples,
OperationScope scope,
PartitionNexusProxy proxy,
Collection<LdapDN> userGroupNames,
LdapDN userName,
ServerEntry userEntry,
AuthenticationLevel authenticationLevel,
LdapDN entryName,
String attrId,
Value<?> attrValue,
ServerEntry entry,
Collection<MicroOperation> microOperations,
ServerEntry entryView )
throws NamingException
{
if ( tuples.size() <= 1 )
{
return tuples;
}
Collection<ACITuple> filteredTuples = new ArrayList<ACITuple>();
// If there are any tuples matching the requestor with UserClasses
// element name or thisEntry, discard all other tuples.
for ( ACITuple tuple:tuples )
{
for ( UserClass userClass:tuple.getUserClasses() )
{
if ( userClass instanceof UserClass.Name || userClass instanceof UserClass.ThisEntry )
{
filteredTuples.add( tuple );
break;
}
}
}
if ( filteredTuples.size() > 0 )
{
return filteredTuples;
}
// Otherwise if there are any tuples matching UserGroup,
// discard all other tuples.
for ( ACITuple tuple:tuples )
{
for ( UserClass userClass:tuple.getUserClasses() )
{
if ( userClass instanceof UserClass.UserGroup )
{
filteredTuples.add( tuple );
break;
}
}
}
if ( filteredTuples.size() > 0 )
{
return filteredTuples;
}
// Otherwise if there are any tuples matching subtree,
// discard all other tuples.
for ( ACITuple tuple:tuples )
{
for ( UserClass userClass:tuple.getUserClasses() )
{
if ( userClass instanceof UserClass.Subtree )
{
filteredTuples.add( tuple );
break;
}
}
}
if ( filteredTuples.size() > 0 )
{
return filteredTuples;
}
return tuples;
}
}