]> source.dussan.org Git - archiva.git/blob
606332674a8f677cb22b67db941f0dcfa965c8ad
[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 import org.apache.archiva.admin.repository.RepositoryAdminException;
25 import org.apache.archiva.admin.repository.remote.RemoteRepository;
26 import org.apache.maven.archiva.configuration.Configuration;
27 import org.springframework.context.annotation.Scope;
28 import org.springframework.stereotype.Controller;
29
30 /**
31  * AddRemoteRepositoryAction
32  *
33  * @version $Id$
34  */
35 @Controller( "addRemoteRepositoryAction" )
36 @Scope( "prototype" )
37 public class AddRemoteRepositoryAction
38     extends AbstractRemoteRepositoriesAction
39     implements Preparable, Validateable
40 {
41     /**
42      * The model for this action.
43      */
44     private RemoteRepository repository;
45
46     public void prepare()
47     {
48         this.repository = new RemoteRepository();
49     }
50
51     public String input()
52     {
53         return INPUT;
54     }
55
56     public String commit()
57     {
58
59         String result = SUCCESS;
60         try
61         {
62             getRemoteRepositoryAdmin().addRemoteRepository( repository, getAuditInformation() );
63         }
64         catch ( RepositoryAdminException e )
65         {
66             addActionError( "RepositoryAdminException: " + e.getMessage() );
67             result = INPUT;
68         }
69
70         return result;
71     }
72
73     // FIXME olamy dupe with admin repo component
74     @Override
75     public void validate()
76     {
77         Configuration config = archivaConfiguration.getConfiguration();
78
79         String repoId = repository.getId();
80
81         if ( config.getManagedRepositoriesAsMap().containsKey( repoId ) )
82         {
83             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
84                 + "], that id already exists as a managed repository." );
85         }
86         else if ( config.getRemoteRepositoriesAsMap().containsKey( repoId ) )
87         {
88             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
89                 + "], that id already exists as a remote repository." );
90         }
91         else if ( config.getRepositoryGroupsAsMap().containsKey( repoId ) )
92         {
93             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
94                 + "], that id already exists as a repository group." );
95         }
96     }
97
98     public RemoteRepository getRepository()
99     {
100         return repository;
101     }
102
103     public void setRepository( RemoteRepository repository )
104     {
105         this.repository = repository;
106     }
107 }