]> source.dussan.org Git - archiva.git/blob
2b3c71124af3bcd3e93807be9548a5cf233db669
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin;
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 com.opensymphony.xwork.ModelDriven;
23 import com.opensymphony.xwork.Preparable;
24 import org.apache.maven.archiva.configuration.AbstractRepositoryConfiguration;
25 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
26 import org.apache.maven.archiva.configuration.Configuration;
27 import org.apache.maven.archiva.configuration.InvalidConfigurationException;
28 import org.apache.maven.archiva.security.ArchivaRoleConstants;
29 import org.codehaus.plexus.rbac.profile.RoleProfileException;
30 import org.codehaus.plexus.rbac.profile.RoleProfileManager;
31 import org.codehaus.plexus.registry.RegistryException;
32 import org.codehaus.plexus.security.rbac.RbacManagerException;
33 import org.codehaus.plexus.security.rbac.Resource;
34 import org.codehaus.plexus.security.ui.web.interceptor.SecureAction;
35 import org.codehaus.plexus.security.ui.web.interceptor.SecureActionBundle;
36 import org.codehaus.plexus.security.ui.web.interceptor.SecureActionException;
37 import org.codehaus.plexus.xwork.action.PlexusActionSupport;
38
39 import java.io.IOException;
40
41 /**
42  * Base action for repository configuration actions.
43  *
44  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
45  */
46 public abstract class AbstractConfigureRepositoryAction
47     extends PlexusActionSupport
48     implements ModelDriven, Preparable, SecureAction
49 {
50     /**
51      * @plexus.requirement
52      */
53     private ArchivaConfiguration archivaConfiguration;
54
55     /**
56      * @plexus.requirement role-hint="archiva"
57      */
58     protected RoleProfileManager roleProfileManager;
59
60     /**
61      * The repository.
62      */
63     private AbstractRepositoryConfiguration repository;
64
65     /**
66      * The repository ID to lookup when editing a repository.
67      */
68     private String repoId;
69
70     /**
71      * The previously read configuration.
72      */
73     protected Configuration configuration;
74
75     public String add()
76         throws IOException, InvalidConfigurationException, RbacManagerException, RoleProfileException, RegistryException
77     {
78         // TODO: if this didn't come from the form, go to configure.action instead of going through with re-saving what was just loaded
79
80         AbstractRepositoryConfiguration existingRepository = getRepository( repository.getId() );
81         if ( existingRepository != null )
82         {
83             addFieldError( "id", "A repository with that id already exists" );
84             return INPUT;
85         }
86
87         return saveConfiguration();
88     }
89
90     public String edit()
91         throws IOException, InvalidConfigurationException, RbacManagerException, RoleProfileException, RegistryException
92     {
93         // TODO: if this didn't come from the form, go to configure.action instead of going through with re-saving what was just loaded
94
95         AbstractRepositoryConfiguration existingRepository = getRepository( repository.getId() );
96         removeRepository( existingRepository );
97
98         return saveConfiguration();
99     }
100
101     protected abstract void removeRepository( AbstractRepositoryConfiguration existingRepository );
102
103     protected abstract AbstractRepositoryConfiguration getRepository( String id );
104
105     private String saveConfiguration()
106         throws IOException, InvalidConfigurationException, RbacManagerException, RoleProfileException, RegistryException
107     {
108         addRepository();
109
110         archivaConfiguration.save( configuration );
111
112         // TODO: do we need to check if indexing is needed?
113
114         addActionMessage( "Successfully saved configuration" );
115
116         return SUCCESS;
117     }
118
119     protected abstract void addRepository()
120         throws IOException, RoleProfileException;
121
122     public String input()
123     {
124         return INPUT;
125     }
126
127     public Object getModel()
128     {
129         return repository;
130     }
131
132     protected abstract AbstractRepositoryConfiguration createRepository();
133
134     public void prepare()
135     {
136         configuration = archivaConfiguration.getConfiguration();
137
138         if ( repository == null )
139         {
140             repository = getRepository( repoId );
141         }
142         if ( repository == null )
143         {
144             repository = createRepository();
145         }
146     }
147
148     public String getRepoId()
149     {
150         return repoId;
151     }
152
153     public void setRepoId( String repoId )
154     {
155         this.repoId = repoId;
156     }
157
158     protected AbstractRepositoryConfiguration getRepository()
159     {
160         return repository;
161     }
162
163     public Configuration getConfiguration()
164     {
165         return configuration;
166     }
167
168     public SecureActionBundle getSecureActionBundle()
169         throws SecureActionException
170     {
171         SecureActionBundle bundle = new SecureActionBundle();
172
173         bundle.setRequiresAuthentication( true );
174
175         if ( getRepoId() != null )
176         {
177             // TODO: this is not right. It needs to change based on method. But is this really the right way to restrict this area?
178             // TODO: not right. We only care about this permission on managed repositories. Otherwise, it's configuration
179             bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_EDIT_REPOSITORY, getRepoId() );
180         }
181         else
182         {
183             bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
184         }
185
186         return bundle;
187     }
188 }