]> source.dussan.org Git - archiva.git/blob
17f707bf28c56e98288b398065cc994612e1f1d0
[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.InvalidConfigurationException;
26 import org.apache.maven.archiva.security.ArchivaRoleConstants;
27 import org.codehaus.plexus.redback.rbac.Resource;
28 import org.codehaus.plexus.redback.xwork.interceptor.SecureAction;
29 import org.codehaus.plexus.redback.xwork.interceptor.SecureActionBundle;
30 import org.codehaus.plexus.redback.xwork.interceptor.SecureActionException;
31 import org.codehaus.plexus.registry.RegistryException;
32 import org.codehaus.plexus.xwork.action.PlexusActionSupport;
33
34 import java.io.IOException;
35
36 /**
37  * Abstract AdminRepositories Action base.
38  * 
39  * Base class for all repository administrative functions.
40  * This should be neutral to the type of action (add/edit/delete) and type of repo (managed/remote)
41  *
42  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
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 }