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