]> source.dussan.org Git - archiva.git/blob
da877988cf0ec55640a123cc13e616dc3483f647
[archiva.git] /
1 package org.apache.archiva.web.action.admin.connectors.proxy;
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 org.apache.archiva.admin.model.RepositoryAdminException;
23 import org.apache.archiva.admin.model.beans.ProxyConnector;
24 import org.apache.commons.lang.StringUtils;
25 import org.springframework.context.annotation.Scope;
26 import org.springframework.stereotype.Controller;
27
28 /**
29  * AddProxyConnectorAction
30  *
31  *
32  */
33 @Controller( "addProxyConnectorAction" )
34 @Scope( "prototype" )
35 public class AddProxyConnectorAction
36     extends AbstractProxyConnectorFormAction
37 {
38     @Override
39     public void prepare()
40         throws RepositoryAdminException
41     {
42         super.prepare();
43         connector = new ProxyConnector();
44     }
45
46     @Override
47     public String input()
48     {
49         return INPUT;
50     }
51
52     public String commit()
53         throws RepositoryAdminException
54     {
55         /* Too complex for webwork's ${Action}-validation.xml techniques.
56          * Not appropriate for use with webwork's implements Validatable, as that validates regardless of
57          * the request method, such as .addProperty() or .addWhiteList().
58          * 
59          * This validation is ultimately only useful on this one request method.
60          */
61         String sourceId = connector.getSourceRepoId();
62         String targetId = connector.getTargetRepoId();
63
64         ProxyConnector otherConnector = findProxyConnector( sourceId, targetId );
65         if ( otherConnector != null )
66         {
67             addActionError(
68                 "Unable to add proxy connector, as one already exists with source repository id [" + sourceId
69                     + "] and target repository id [" + targetId + "]." );
70         }
71
72         validateConnector();
73
74         if ( hasActionErrors() )
75         {
76             return INPUT;
77         }
78
79         if ( StringUtils.equals( DIRECT_CONNECTION, connector.getProxyId() ) )
80         {
81             connector.setProxyId( null );
82         }
83
84         addProxyConnector( connector );
85         return SUCCESS;
86     }
87 }