]> source.dussan.org Git - archiva.git/commitdiff
Add Global Repository Observer Role
authorJesse McConnell <jmcconnell@apache.org>
Wed, 28 Feb 2007 20:54:52 +0000 (20:54 +0000)
committerJesse McConnell <jmcconnell@apache.org>
Wed, 28 Feb 2007 20:54:52 +0000 (20:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@512963 13f79535-47bb-0310-9956-ffa450edef68

archiva-security/src/main/java/org/apache/maven/archiva/security/ArchivaRoleConstants.java
archiva-security/src/main/java/org/apache/maven/archiva/security/GlobalRepositoryObserverRoleProfile.java [new file with mode: 0644]
archiva-security/src/main/java/org/apache/maven/archiva/security/RepositoryObserverDynamicRoleProfile.java

index d837c1a63e37984f07611f654d2fe68b37049847..e21bd68345f6d63f7e3f9f483c97cf72d32674a7 100644 (file)
@@ -30,6 +30,8 @@ public class ArchivaRoleConstants
     
     public static final String GLOBAL_REPOSITORY_MANAGER_ROLE = "Global Repository Manager";
 
+    public static final String GLOBAL_REPOSITORY_OBSERVER_ROLE = "Global Repository Observer";
+    
     public static final String REGISTERED_USER_ROLE = "Registered User";
 
     public static final String GUEST_ROLE = "Guest";
diff --git a/archiva-security/src/main/java/org/apache/maven/archiva/security/GlobalRepositoryObserverRoleProfile.java b/archiva-security/src/main/java/org/apache/maven/archiva/security/GlobalRepositoryObserverRoleProfile.java
new file mode 100644 (file)
index 0000000..34e61dd
--- /dev/null
@@ -0,0 +1,53 @@
+package org.apache.maven.archiva.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.codehaus.plexus.rbac.profile.AbstractRoleProfile;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * @plexus.component role="org.codehaus.plexus.rbac.profile.RoleProfile"
+ * role-hint="archiva-repository-administrator"
+ */
+public class GlobalRepositoryObserverRoleProfile
+    extends AbstractRoleProfile
+{
+    /**
+     * Create the Role name for a Repository Observer, using the provided repository id.
+     *
+     * @param repoId the repository id
+     */
+    public String getRoleName( )
+    {
+        return ArchivaRoleConstants.GLOBAL_REPOSITORY_OBSERVER_ROLE;
+    }  
+
+    public boolean isAssignable()
+    {
+        return true;
+    }
+
+    public List getOperations()
+    {      
+        return null;
+    }
+}
index 753d1695ce3e19dd6b9e04731c4a06eb65b5c5af..84b696db883d7d409c422574a9337a5bde49549b 100644 (file)
@@ -20,6 +20,10 @@ package org.apache.maven.archiva.security;
  */
 
 import org.codehaus.plexus.rbac.profile.AbstractDynamicRoleProfile;
+import org.codehaus.plexus.rbac.profile.RoleProfileException;
+import org.codehaus.plexus.security.rbac.RbacManagerException;
+import org.codehaus.plexus.security.rbac.RbacObjectNotFoundException;
+import org.codehaus.plexus.security.rbac.Role;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -52,4 +56,35 @@ public class RepositoryObserverDynamicRoleProfile
     {
         return true;
     }
+    
+    public Role getRole( String resource )
+    throws RoleProfileException
+{
+    try
+    {
+        if ( rbacManager.roleExists( getRoleName( resource ) ) )
+        {
+            return rbacManager.getRole( getRoleName( resource ) );
+        }
+        else
+        {
+            // first time assign the role to the group administrator since they need the access
+            Role newRole = generateRole( resource );
+
+            Role repoAdmin = rbacManager.getRole( ArchivaRoleConstants.GLOBAL_REPOSITORY_OBSERVER_ROLE );
+            repoAdmin.addChildRoleName( newRole.getName() );
+            rbacManager.saveRole( repoAdmin );
+
+            return newRole;
+        }
+    }
+    catch ( RbacObjectNotFoundException ne )
+    {
+        throw new RoleProfileException( "unable to get role", ne );
+    }
+    catch ( RbacManagerException e )
+    {
+        throw new RoleProfileException( "system error with rbac manager", e );
+    }
+}
 }