]> source.dussan.org Git - archiva.git/blob
61dd3f6a4b4455334f9a31d854ce613aaec88faf
[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 com.opensymphony.xwork2.Preparable;
23
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.RemoteRepositoryConfiguration;
27 import org.apache.maven.archiva.repository.audit.AuditEvent;
28 import org.codehaus.plexus.redback.role.RoleManagerException;
29
30 import java.io.IOException;
31
32 /**
33  * EditRemoteRepositoryAction 
34  *
35  * @version $Id$
36  * 
37  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="editRemoteRepositoryAction" instantiation-strategy="per-lookup" 
38  */
39 public class EditRemoteRepositoryAction
40     extends AbstractRemoteRepositoriesAction
41     implements Preparable
42 {
43     /**
44      * The model for this action.
45      */
46     private RemoteRepositoryConfiguration repository;
47
48     /**
49      * The repository id to edit.
50      */
51     private String repoid;
52
53     public void prepare()
54     {
55         String id = repoid;
56         if ( StringUtils.isNotBlank( repoid ) )
57         {
58             this.repository = archivaConfiguration.getConfiguration().findRemoteRepositoryById( id );
59         }
60     }
61
62     public String input()
63     {
64         if ( StringUtils.isBlank( repoid ) )
65         {
66             addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
67             return ERROR;
68         }
69         
70         return INPUT;
71     }
72
73     public String commit()
74     {
75         Configuration configuration = archivaConfiguration.getConfiguration();
76         
77         // We are in edit mode, remove the old repository configuration.
78         removeRepository( repository.getId(), configuration );
79
80         // Save the repository configuration.
81         String result;
82         try
83         {
84             addRepository( repository, configuration );
85             triggerAuditEvent( repository.getId(), null, AuditEvent.MODIFY_REMOTE_REPO );
86             result = saveConfiguration( configuration );
87         }
88         catch ( IOException e )
89         {
90             addActionError( "I/O Exception: " + e.getMessage() );
91             result = INPUT;
92         }
93         catch ( RoleManagerException e )
94         {
95             addActionError( "Role Manager Exception: " + e.getMessage() );
96             result = INPUT;
97         }
98
99         return result;
100     }
101     
102     public RemoteRepositoryConfiguration getRepository()
103     {
104         return repository;
105     }
106
107     public void setRepository( RemoteRepositoryConfiguration repository )
108     {
109         this.repository = repository;
110     }
111
112     public String getRepoid()
113     {
114         return repoid;
115     }
116
117     public void setRepoid( String repoid )
118     {
119         this.repoid = repoid;
120     }
121 }