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