]> source.dussan.org Git - archiva.git/blob
7509cc651f5d2b0201a68ae98d12b42015b87b1b
[archiva.git] /
1 package org.apache.maven.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.commons.lang.StringUtils;
23 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
24 import org.springframework.context.annotation.Scope;
25 import org.springframework.stereotype.Controller;
26
27 /**
28  * AddProxyConnectorAction
29  *
30  * @version $Id$
31  *          <p/>
32  *          plexus.component role="com.opensymphony.xwork2.Action" role-hint="addProxyConnectorAction" instantiation-strategy="per-lookup"
33  */
34 @Controller( "addProxyConnectorAction" )
35 @Scope( "prototype" )
36 public class AddProxyConnectorAction
37     extends AbstractProxyConnectorFormAction
38 {
39     @Override
40     public void prepare()
41     {
42         super.prepare();
43         connector = new ProxyConnectorConfiguration();
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     {
61         /* Too complex for webwork's ${Action}-validation.xml techniques.
62          * Not appropriate for use with webwork's implements Validatable, as that validates regardless of
63          * the request method, such as .addProperty() or .addWhiteList().
64          * 
65          * This validation is ultimately only useful on this one request method.
66          */
67         String sourceId = connector.getSourceRepoId();
68         String targetId = connector.getTargetRepoId();
69
70         ProxyConnectorConfiguration otherConnector = findProxyConnector( sourceId, targetId );
71         if ( otherConnector != null )
72         {
73             addActionError(
74                 "Unable to add proxy connector, as one already exists with source repository id [" + sourceId
75                     + "] and target repository id [" + targetId + "]." );
76         }
77
78         validateConnector();
79
80         if ( hasActionErrors() )
81         {
82             return INPUT;
83         }
84
85         if ( StringUtils.equals( DIRECT_CONNECTION, connector.getProxyId() ) )
86         {
87             connector.setProxyId( null );
88         }
89
90         // MRM-1135
91         connector.setBlackListPatterns( unescapePatterns( connector.getBlackListPatterns() ) );
92         connector.setWhiteListPatterns( unescapePatterns( connector.getWhiteListPatterns() ) );
93
94         addProxyConnector( connector );
95         return saveConfiguration();
96     }
97 }