]> source.dussan.org Git - archiva.git/blob
d0fd226d5e286879d11d7cfdfcee307d5390609f
[archiva.git] /
1 package org.apache.maven.archiva.web.check;
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 org.apache.maven.archiva.database.ArchivaDAO;
23 import org.apache.maven.archiva.database.ArchivaDatabaseException;
24 import org.apache.maven.archiva.database.ObjectNotFoundException;
25 import org.apache.maven.archiva.model.ArchivaRepository;
26 import org.codehaus.plexus.logging.AbstractLogEnabled;
27 import org.codehaus.plexus.redback.role.RoleManager;
28 import org.codehaus.plexus.redback.role.RoleManagerException;
29 import org.codehaus.plexus.redback.system.check.EnvironmentCheck;
30
31 import java.util.Iterator;
32 import java.util.List;
33
34 /**
35  * RoleExistanceEnvironmentCheck:
36  * <p/>
37  * Under certain circumstances it is possible that the user store and/or role store
38  * have been wiped or reset and its important to see if there are repositories already
39  * configured in archiva that need to reinitialized in terms of having their roles created.
40  *
41  * @author: Jesse McConnell <jmcconnell@apache.org>
42  * @version: $ID:
43  * @plexus.component role="org.codehaus.plexus.security.system.check.EnvironmentCheck"
44  * role-hint="repository-role-check"
45  */
46 public class RoleExistanceEnvironmentCheck
47     extends AbstractLogEnabled
48     implements EnvironmentCheck
49 {
50     /**
51      * @plexus.requirement role-hint="jdo"
52      */
53     private ArchivaDAO dao;
54
55     /**
56      * @plexus.requirement role-hint="default"
57      */
58     private RoleManager roleManager;
59
60     private boolean checked;
61
62     public void validateEnvironment( List list )
63     {
64         if ( !checked )
65         {
66             try
67             {
68                 List repos = dao.getRepositoryDAO().getRepositories();
69
70                 // TODO! this be skipping non-managed repos
71                 Iterator it = repos.iterator();
72                 while ( it.hasNext() )
73                 {
74                     ArchivaRepository repository = (ArchivaRepository) it.next();
75
76                     if ( !roleManager.templatedRoleExists( "archiva-repository-manager", repository.getId() ) )
77                     {
78                         roleManager.createTemplatedRole( "archiva-repository-manager", repository.getId() );
79                     }
80
81                     if ( !roleManager.templatedRoleExists( "archiva-repository-observer", repository.getId() ) )
82                     {
83                         roleManager.createTemplatedRole( "archiva-repository-observer", repository.getId() );
84                     }
85                 }
86             }
87             catch ( RoleManagerException rpe )
88             {
89                 list.add( this.getClass().getName() + "error initializing roles: " + rpe.getMessage() );
90                 getLogger().info( "error initializing roles", rpe );
91             }
92             catch ( ObjectNotFoundException e )
93             {
94                 list.add(
95                     this.getClass().getName() + "error initializing roles (repository not found): " + e.getMessage() );
96                 getLogger().info( "error initializing roles", e );
97             }
98             catch ( ArchivaDatabaseException e )
99             {
100                 list.add( this.getClass().getName() + "error initializing roles (database error): " + e.getMessage() );
101                 getLogger().info( "error initializing roles", e );
102             }
103
104             checked = true;
105         }
106     }
107
108 }