]> source.dussan.org Git - archiva.git/blob
382edce1c376c9d9c13fd5fbc461110f6d5e10aa
[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  * @version $Id$
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         if ( connector != null )
50         {
51             // MRM-1135
52             connector.setBlackListPatterns( escapePatterns( connector.getBlackListPatterns() ) );
53             connector.setWhiteListPatterns( escapePatterns( connector.getWhiteListPatterns() ) );
54         }
55
56         return INPUT;
57     }
58
59     public String commit()
60         throws RepositoryAdminException
61     {
62         /* Too complex for webwork's ${Action}-validation.xml techniques.
63          * Not appropriate for use with webwork's implements Validatable, as that validates regardless of
64          * the request method, such as .addProperty() or .addWhiteList().
65          * 
66          * This validation is ultimately only useful on this one request method.
67          */
68         String sourceId = connector.getSourceRepoId();
69         String targetId = connector.getTargetRepoId();
70
71         ProxyConnector otherConnector = findProxyConnector( sourceId, targetId );
72         if ( otherConnector != null )
73         {
74             addActionError(
75                 "Unable to add proxy connector, as one already exists with source repository id [" + sourceId
76                     + "] and target repository id [" + targetId + "]." );
77         }
78
79         validateConnector();
80
81         if ( hasActionErrors() )
82         {
83             return INPUT;
84         }
85
86         if ( StringUtils.equals( DIRECT_CONNECTION, connector.getProxyId() ) )
87         {
88             connector.setProxyId( null );
89         }
90
91         // MRM-1135
92         connector.setBlackListPatterns( unescapePatterns( connector.getBlackListPatterns() ) );
93         connector.setWhiteListPatterns( unescapePatterns( connector.getWhiteListPatterns() ) );
94
95         addProxyConnector( connector );
96         return SUCCESS;
97     }
98 }