]> source.dussan.org Git - archiva.git/blob
5b1324dd8761ff1129c49957f595d6f02db94a63
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.repositories;
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.configuration.ArchivaConfiguration;
23 import org.apache.maven.archiva.configuration.Configuration;
24 import org.apache.maven.archiva.configuration.IndeterminateConfigurationException;
25 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
26 import org.apache.maven.archiva.security.ArchivaRoleConstants;
27 import org.codehaus.plexus.redback.rbac.Resource;
28 import org.codehaus.redback.integration.interceptor.SecureAction;
29 import org.codehaus.redback.integration.interceptor.SecureActionBundle;
30 import org.codehaus.redback.integration.interceptor.SecureActionException;
31 import org.codehaus.plexus.registry.RegistryException;
32
33 import java.util.ArrayList;
34 import java.util.List;
35 import org.apache.maven.archiva.web.action.PlexusActionSupport;
36
37 /**
38  * Abstract AdminRepositories Action base.
39  * 
40  * Base class for all repository administrative functions.
41  * This should be neutral to the type of action (add/edit/delete) and type of repo (managed/remote)
42  *
43  * @version $Id$
44  */
45 public abstract class AbstractRepositoriesAdminAction
46     extends PlexusActionSupport
47     implements SecureAction
48 {
49     /**
50      * @plexus.requirement
51      */
52     protected ArchivaConfiguration archivaConfiguration;
53
54     public ArchivaConfiguration getArchivaConfiguration()
55     {
56         return archivaConfiguration;
57     }
58
59     public SecureActionBundle getSecureActionBundle()
60         throws SecureActionException
61     {
62         SecureActionBundle bundle = new SecureActionBundle();
63
64         bundle.setRequiresAuthentication( true );
65         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
66
67         return bundle;
68     }
69
70     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
71     {
72         this.archivaConfiguration = archivaConfiguration;
73     }
74
75     /**
76      * Save the configuration.
77      * 
78      * @param configuration the configuration to save.
79      * @return the webwork result code to issue.
80      * @throws IOException thrown if unable to save file to disk.
81      * @throws InvalidConfigurationException thrown if configuration is invalid.
82      * @throws RegistryException thrown if configuration subsystem has a problem saving the configuration to disk.
83      */
84     protected String saveConfiguration( Configuration configuration )
85     {
86         try
87         {
88             archivaConfiguration.save( configuration );
89             addActionMessage( "Successfully saved configuration" );
90         }
91         catch ( IndeterminateConfigurationException e )
92         {
93             addActionError( e.getMessage() );
94             return INPUT;
95         }
96         catch ( RegistryException e )
97         {
98             addActionError( "Configuration Registry Exception: " + e.getMessage() );
99             return INPUT;
100         }
101
102         return SUCCESS;
103     }
104
105     /**
106      * Get the list of ProxyConnectors that are present in the configuration.
107      * 
108      * @return a new list of ProxyConnectors present in the configuration.
109      */
110     protected List<ProxyConnectorConfiguration> getProxyConnectors()
111     {
112         return new ArrayList<ProxyConnectorConfiguration>( archivaConfiguration.getConfiguration().getProxyConnectors() );
113     }
114 }