]> source.dussan.org Git - archiva.git/blob
15b3e91208814daeba2626fdc9500c4047fb4b10
[archiva.git] /
1 package org.apache.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 import org.springframework.stereotype.Service;
29
30 import javax.inject.Inject;
31 import javax.inject.Named;
32
33 /**
34  * ArchivaStandardRolesCheck tests for the existance of expected / standard roles and permissions. 
35  *
36  * @version $Id$
37  * 
38  * plexus.component role="org.codehaus.plexus.redback.system.check.EnvironmentCheck"
39  *                   role-hint="required-roles"
40  */
41 @Service("environmentCheck#archiva-required-roles")
42 public class ArchivaStandardRolesCheck
43     implements EnvironmentCheck
44 {
45     private Logger log = LoggerFactory.getLogger( ArchivaStandardRolesCheck.class );
46     
47     /**
48      * plexus.requirement role-hint="cached"
49      */
50     @Inject @Named(value = "rBACManager#cached")
51     private RBACManager rbacManager;
52
53     /**
54      * boolean detailing if this environment check has been executed
55      */
56     private boolean checked = false;
57
58     public void validateEnvironment( List<String> violations )
59     {
60         if ( !checked )
61         {
62             String expectedRoles[] = new String[] {
63                 ArchivaRoleConstants.SYSTEM_ADMINISTRATOR_ROLE,
64                 ArchivaRoleConstants.GLOBAL_REPOSITORY_MANAGER_ROLE,
65                 ArchivaRoleConstants.GLOBAL_REPOSITORY_OBSERVER_ROLE,
66                 ArchivaRoleConstants.GUEST_ROLE,
67                 ArchivaRoleConstants.REGISTERED_USER_ROLE,
68                 ArchivaRoleConstants.USER_ADMINISTRATOR_ROLE };
69
70             log.info( "Checking the existance of required roles." );
71
72             for ( String roleName : expectedRoles )
73             {
74                 if ( !rbacManager.roleExists( roleName ) )
75                 {
76                     violations.add( "Unable to validate the existances of the '" + roleName + "' role." );
77                 }
78             }
79
80             String expectedOperations[] = new String[] {
81                 ArchivaRoleConstants.OPERATION_MANAGE_USERS,
82                 ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION,
83                 ArchivaRoleConstants.OPERATION_REGENERATE_INDEX,
84                 ArchivaRoleConstants.OPERATION_RUN_INDEXER,
85                 ArchivaRoleConstants.OPERATION_ACCESS_REPORT,
86                 ArchivaRoleConstants.OPERATION_ADD_REPOSITORY,
87                 ArchivaRoleConstants.OPERATION_DELETE_REPOSITORY,
88                 ArchivaRoleConstants.OPERATION_REPOSITORY_ACCESS,
89                 ArchivaRoleConstants.OPERATION_EDIT_REPOSITORY,
90                 ArchivaRoleConstants.OPERATION_REPOSITORY_UPLOAD,
91                 ArchivaRoleConstants.OPERATION_REPOSITORY_ACCESS,
92                 "archiva-guest" };
93
94             log.info( "Checking the existance of required operations." );
95
96             for ( String operation : expectedOperations )
97             {
98                 if ( !rbacManager.operationExists( operation ) )
99                 {
100                     violations.add( "Unable to validate the existances of the '" + operation + "' operation." );
101                 }
102             }
103
104             checked = true;
105         }
106
107     }
108
109 }