]> source.dussan.org Git - archiva.git/blob
d624220f627a2f54a34b8c69bab8859561759980
[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 import com.opensymphony.xwork2.Validateable;
24
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  * AddRemoteRepositoryAction 
33  *
34  * @version $Id$
35  * 
36  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="addRemoteRepositoryAction" instantiation-strategy="per-lookup"
37  */
38 public class AddRemoteRepositoryAction
39     extends AbstractRemoteRepositoriesAction
40     implements Preparable, Validateable
41 {
42     /**
43      * The model for this action.
44      */
45     private RemoteRepositoryConfiguration repository;    
46     
47     public void prepare()
48     {
49         this.repository = new RemoteRepositoryConfiguration();
50     }
51
52     public String input()
53     {
54         return INPUT;
55     }
56
57     public String commit()
58     {
59         Configuration configuration = archivaConfiguration.getConfiguration();
60         
61         //MRM-752 - url needs trimming
62         repository.setUrl(repository.getUrl().trim());
63         
64         // Save the repository configuration.
65         String result;
66         try
67         {
68             addRepository( repository, configuration );
69             result = saveConfiguration( configuration );
70         }
71         catch ( IOException e )
72         {
73             addActionError( "I/O Exception: " + e.getMessage() );
74             result = INPUT;
75         }
76         catch ( RoleManagerException e )
77         {
78             addActionError( "Role Manager Exception: " + e.getMessage() );
79             result = INPUT;
80         }
81
82         return result;
83     }
84     
85     @Override
86     public void validate()
87     {
88         Configuration config = archivaConfiguration.getConfiguration();
89         
90         String repoId = repository.getId();
91         
92         if ( config.getManagedRepositoriesAsMap().containsKey( repoId ) )
93         {
94             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
95                 + "], that id already exists as a managed repository." );
96         }
97         else if ( config.getRemoteRepositoriesAsMap().containsKey( repoId ) )
98         {
99             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
100                 + "], that id already exists as a remote repository." );
101         }
102         else if( config.getRepositoryGroupsAsMap().containsKey( repoId ) )
103         {
104             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
105                + "], that id already exists as a repository group." );
106         }
107     }
108     
109     public RemoteRepositoryConfiguration getRepository()
110     {
111         return repository;
112     }
113
114     public void setRepository( RemoteRepositoryConfiguration repository )
115     {
116         this.repository = repository;
117     }
118 }