]> source.dussan.org Git - archiva.git/blob
8d93a4d2101f89f01ec66de39e958bbb54f0a2bd
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *    http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import com.opensymphony.xwork.ModelDriven;
20 import com.opensymphony.xwork.Preparable;
21 import org.apache.maven.archiva.configuration.AbstractRepositoryConfiguration;
22 import org.apache.maven.archiva.configuration.Configuration;
23 import org.apache.maven.archiva.configuration.ConfigurationChangeException;
24 import org.apache.maven.archiva.configuration.ConfigurationStore;
25 import org.apache.maven.archiva.configuration.ConfigurationStoreException;
26 import org.apache.maven.archiva.configuration.InvalidConfigurationException;
27 import org.apache.maven.archiva.security.ArchivaRoleConstants;
28 import org.codehaus.plexus.rbac.profile.RoleProfileException;
29 import org.codehaus.plexus.rbac.profile.RoleProfileManager;
30 import org.codehaus.plexus.security.rbac.RbacManagerException;
31 import org.codehaus.plexus.security.rbac.Resource;
32 import org.codehaus.plexus.security.ui.web.interceptor.SecureAction;
33 import org.codehaus.plexus.security.ui.web.interceptor.SecureActionBundle;
34 import org.codehaus.plexus.security.ui.web.interceptor.SecureActionException;
35 import org.codehaus.plexus.xwork.action.PlexusActionSupport;
36
37 import java.io.IOException;
38
39 /**
40  * Base action for repository configuration actions.
41  *
42  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
43  */
44 public abstract class AbstractConfigureRepositoryAction
45     extends PlexusActionSupport
46     implements ModelDriven, Preparable, SecureAction
47 {
48     /**
49      * @plexus.requirement
50      */
51     private ConfigurationStore configurationStore;
52
53     /**
54      * @plexus.requirement role-hint="archiva"
55      */
56     protected RoleProfileManager roleProfileManager;
57
58     /**
59      * The repository.
60      */
61     private AbstractRepositoryConfiguration repository;
62
63     /**
64      * The repository ID to lookup when editing a repository.
65      */
66     private String repoId;
67
68     /**
69      * The previously read configuration.
70      */
71     protected Configuration configuration;
72
73     public String add()
74         throws IOException, ConfigurationStoreException, InvalidConfigurationException, ConfigurationChangeException,
75         RbacManagerException, RoleProfileException
76     {
77         // TODO: if this didn't come from the form, go to configure.action instead of going through with re-saving what was just loaded
78
79         AbstractRepositoryConfiguration existingRepository = getRepository( repository.getId() );
80         if ( existingRepository != null )
81         {
82             addFieldError( "id", "A repository with that id already exists" );
83             return INPUT;
84         }
85
86         return saveConfiguration();
87     }
88
89     public String edit()
90         throws IOException, ConfigurationStoreException, InvalidConfigurationException, ConfigurationChangeException,
91         RbacManagerException, RoleProfileException
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, ConfigurationStoreException, InvalidConfigurationException, ConfigurationChangeException,
107         RbacManagerException, RoleProfileException
108     {
109         addRepository();
110
111         configurationStore.storeConfiguration( configuration );
112
113         // TODO: do we need to check if indexing is needed?
114
115         addActionMessage( "Successfully saved configuration" );
116
117         return SUCCESS;
118     }
119
120     protected abstract void addRepository()
121         throws IOException, RoleProfileException;
122
123     public String input()
124     {
125         return INPUT;
126     }
127
128     public Object getModel()
129     {
130         return repository;
131     }
132
133     protected abstract AbstractRepositoryConfiguration createRepository();
134
135     public void prepare()
136         throws ConfigurationStoreException
137     {
138         configuration = configurationStore.getConfigurationFromStore();
139
140         if ( repository == null )
141         {
142             repository = getRepository( repoId );
143         }
144         if ( repository == null )
145         {
146             repository = createRepository();
147         }
148     }
149
150     public String getRepoId()
151     {
152         return repoId;
153     }
154
155     public void setRepoId( String repoId )
156     {
157         this.repoId = repoId;
158     }
159
160     protected AbstractRepositoryConfiguration getRepository()
161     {
162         return repository;
163     }
164
165     public Configuration getConfiguration()
166     {
167         return configuration;
168     }
169
170     public SecureActionBundle getSecureActionBundle()
171         throws SecureActionException
172     {
173         SecureActionBundle bundle = new SecureActionBundle();
174
175         bundle.setRequiresAuthentication( true );
176
177         if ( getRepoId() != null )
178         {
179             // TODO: this is not right. It needs to change based on method. But is this really the right way to restrict this area?
180             // TODO: not right. We only care about this permission on managed repositories. Otherwise, it's configuration
181             bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_EDIT_REPOSITORY, getRepoId() );
182         }
183         else
184         {
185             bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
186         }
187
188         return bundle;
189     }
190 }