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