]> source.dussan.org Git - archiva.git/blob
d2028d640030a8a6bb772d0f179f11f7a8a1e8ac
[archiva.git] /
1 package org.apache.maven.archiva.security;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.util.List;
23
24 import org.codehaus.plexus.redback.rbac.RBACManager;
25 import org.codehaus.plexus.redback.system.check.EnvironmentCheck;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 /**
30  * ArchivaStandardRolesCheck tests for the existance of expected / standard roles and permissions. 
31  *
32  * @version $Id$
33  * 
34  * @plexus.component role="org.codehaus.plexus.redback.system.check.EnvironmentCheck"
35  *                   role-hint="required-roles"
36  */
37 public class ArchivaStandardRolesCheck
38     implements EnvironmentCheck
39 {
40     private Logger log = LoggerFactory.getLogger( ArchivaStandardRolesCheck.class );
41     
42     /**
43      * @plexus.requirement role-hint="cached"
44      */
45     private RBACManager rbacManager;
46
47     /**
48      * boolean detailing if this environment check has been executed
49      */
50     private boolean checked = false;
51
52     @SuppressWarnings("unchecked")
53     public void validateEnvironment( List violations )
54     {
55         if ( !checked )
56         {
57             String expectedRoles[] = new String[] {
58                 ArchivaRoleConstants.SYSTEM_ADMINISTRATOR_ROLE,
59                 ArchivaRoleConstants.GLOBAL_REPOSITORY_MANAGER_ROLE,
60                 ArchivaRoleConstants.GLOBAL_REPOSITORY_OBSERVER_ROLE,
61                 ArchivaRoleConstants.GUEST_ROLE,
62                 ArchivaRoleConstants.REGISTERED_USER_ROLE,
63                 ArchivaRoleConstants.USER_ADMINISTRATOR_ROLE };
64
65             log.info( "Checking the existance of required roles." );
66
67             for ( String roleName : expectedRoles )
68             {
69                 if ( !rbacManager.roleExists( roleName ) )
70                 {
71                     violations.add( "Unable to validate the existances of the '" + roleName + "' role." );
72                 }
73             }
74
75             String expectedOperations[] = new String[] {
76                 ArchivaRoleConstants.OPERATION_MANAGE_USERS,
77                 ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION,
78                 ArchivaRoleConstants.OPERATION_REGENERATE_INDEX,
79                 ArchivaRoleConstants.OPERATION_RUN_INDEXER,
80                 ArchivaRoleConstants.OPERATION_ACCESS_REPORT,
81                 ArchivaRoleConstants.OPERATION_ADD_REPOSITORY,
82                 ArchivaRoleConstants.OPERATION_DELETE_REPOSITORY,
83                 ArchivaRoleConstants.OPERATION_REPOSITORY_ACCESS,
84                 ArchivaRoleConstants.OPERATION_EDIT_REPOSITORY,
85                 ArchivaRoleConstants.OPERATION_REPOSITORY_UPLOAD,
86                 ArchivaRoleConstants.OPERATION_REPOSITORY_ACCESS,
87                 "archiva-guest" };
88
89             log.info( "Checking the existance of required operations." );
90
91             for ( String operation : expectedOperations )
92             {
93                 if ( !rbacManager.operationExists( operation ) )
94                 {
95                     violations.add( "Unable to validate the existances of the '" + operation + "' operation." );
96                 }
97             }
98
99             checked = true;
100         }
101
102     }
103
104 }