add class

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1433554 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-01-15 17:56:08 +00:00
parent 9a014b52dc
commit 772cf2af87
1 changed files with 289 additions and 0 deletions

View File

@ -0,0 +1,289 @@
package org.apache.archiva.web.security;
/*
* 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.
*/
import org.apache.archiva.admin.model.RepositoryAdminException;
import org.apache.archiva.admin.model.runtime.RedbackRuntimeConfigurationAdmin;
import org.apache.archiva.redback.rbac.AbstractRBACManager;
import org.apache.archiva.redback.rbac.Operation;
import org.apache.archiva.redback.rbac.Permission;
import org.apache.archiva.redback.rbac.RBACManager;
import org.apache.archiva.redback.rbac.RbacManagerException;
import org.apache.archiva.redback.rbac.RbacObjectInvalidException;
import org.apache.archiva.redback.rbac.RbacObjectNotFoundException;
import org.apache.archiva.redback.rbac.Resource;
import org.apache.archiva.redback.rbac.Role;
import org.apache.archiva.redback.rbac.UserAssignment;
import org.apache.archiva.redback.users.UserManager;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Service;
import javax.inject.Inject;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* @author Olivier Lamy
* @since 1.4-M4
*/
@Service( "rbacManager#archiva" )
public class ArchivaRbacManager
extends AbstractRBACManager
implements RBACManager
{
private Map<String, RBACManager> rbacManagersPerId;
@Inject
private ApplicationContext applicationContext;
@Inject
private RedbackRuntimeConfigurationAdmin redbackRuntimeConfigurationAdmin;
@Override
public void initialize()
{
try
{
List<String> rbacManagerIds =
redbackRuntimeConfigurationAdmin.getRedbackRuntimeConfiguration().getRbacManagerImpls();
log.info( "use rbacManagerIds: '{}'", rbacManagerIds );
this.rbacManagersPerId = new LinkedHashMap<String, RBACManager>( rbacManagerIds.size() );
for ( String id : rbacManagerIds )
{
RBACManager rbacManager = applicationContext.getBean( "rbacManager#" + id, RBACManager.class );
rbacManagersPerId.put( id, rbacManager );
}
}
catch ( RepositoryAdminException e )
{
// revert to a default one ?
log.error( e.getMessage(), e );
throw new RuntimeException( e.getMessage(), e );
}
}
protected RBACManager getRbacManagerForCommon()
{
return this.rbacManagersPerId.values().iterator().next();
}
public Role createRole( String name )
{
return getRbacManagerForCommon().createRole( name );
}
public Role saveRole( Role role )
throws RbacObjectInvalidException, RbacManagerException
{
return getRbacManagerForCommon().saveRole( role );
}
public void saveRoles( Collection<Role> roles )
throws RbacObjectInvalidException, RbacManagerException
{
getRbacManagerForCommon().saveRoles( roles );
}
public Role getRole( String roleName )
throws RbacObjectNotFoundException, RbacManagerException
{
// iterate until not null ?
return getRbacManagerForCommon().getRole( roleName );
}
public List<Role> getAllRoles()
throws RbacManagerException
{
// iterate and aggregate results ?
return getRbacManagerForCommon().getAllRoles();
}
public void removeRole( Role role )
throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
{
// iterate remove ?
getRbacManagerForCommon().removeRole( role );
}
public Permission createPermission( String name )
throws RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().createPermission( name );
}
public Permission createPermission( String name, String operationName, String resourceIdentifier )
throws RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().createPermission( name, operationName, resourceIdentifier );
}
public Permission savePermission( Permission permission )
throws RbacObjectInvalidException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().savePermission( permission );
}
public Permission getPermission( String permissionName )
throws RbacObjectNotFoundException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().getPermission( permissionName );
}
public List<Permission> getAllPermissions()
throws RbacManagerException
{
// iterate and aggregate ?
return getRbacManagerForCommon().getAllPermissions();
}
public void removePermission( Permission permission )
throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
{
// iterate remove ?
getRbacManagerForCommon().removePermission( permission );
}
public Operation createOperation( String name )
throws RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().createOperation( name );
}
public Operation saveOperation( Operation operation )
throws RbacObjectInvalidException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().saveOperation( operation );
}
public Operation getOperation( String operationName )
throws RbacObjectNotFoundException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().getOperation( operationName );
}
public List<Operation> getAllOperations()
throws RbacManagerException
{
// iterate and aggregate ?
return getRbacManagerForCommon().getAllOperations();
}
public void removeOperation( Operation operation )
throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
{
// iterate ?
getRbacManagerForCommon().removeOperation( operation );
}
public Resource createResource( String identifier )
throws RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().createResource( identifier );
}
public Resource saveResource( Resource resource )
throws RbacObjectInvalidException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().saveResource( resource );
}
public Resource getResource( String resourceIdentifier )
throws RbacObjectNotFoundException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().getResource( resourceIdentifier );
}
public List<Resource> getAllResources()
throws RbacManagerException
{
// iterate and aggregate ?
return getRbacManagerForCommon().getAllResources();
}
public void removeResource( Resource resource )
throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
{
// iterate
getRbacManagerForCommon().removeResource( resource );
}
public UserAssignment createUserAssignment( String principal )
throws RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().createUserAssignment( principal );
}
public UserAssignment saveUserAssignment( UserAssignment userAssignment )
throws RbacObjectInvalidException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().saveUserAssignment( userAssignment );
}
public UserAssignment getUserAssignment( String principal )
throws RbacObjectNotFoundException, RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().getUserAssignment( principal );
}
public List<UserAssignment> getAllUserAssignments()
throws RbacManagerException
{
// iterate
return getRbacManagerForCommon().getAllUserAssignments();
}
public List<UserAssignment> getUserAssignmentsForRoles( Collection<String> roleNames )
throws RbacManagerException
{
// iterate ?
return getRbacManagerForCommon().getUserAssignmentsForRoles( roleNames );
}
public void removeUserAssignment( UserAssignment userAssignment )
throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
{
// iterate ?
getRbacManagerForCommon().removeUserAssignment( userAssignment );
}
public void eraseDatabase()
{
log.warn( "eraseDatabase not implemented" );
}
}