]> source.dussan.org Git - archiva.git/blob
9d295cf8885e8226bb220595843fdb622cc22fb2
[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  */
32 @Controller( "addProxyConnectorAction" )
33 @Scope( "prototype" )
34 public class AddProxyConnectorAction
35     extends AbstractProxyConnectorFormAction
36 {
37     @Override
38     public void prepare()
39     {
40         super.prepare();
41         connector = new ProxyConnectorConfiguration();
42     }
43
44     @Override
45     public String input()
46     {
47         if ( connector != null )
48         {
49             // MRM-1135
50             connector.setBlackListPatterns( escapePatterns( connector.getBlackListPatterns() ) );
51             connector.setWhiteListPatterns( escapePatterns( connector.getWhiteListPatterns() ) );
52         }
53
54         return INPUT;
55     }
56
57     public String commit()
58     {
59         /* Too complex for webwork's ${Action}-validation.xml techniques.
60          * Not appropriate for use with webwork's implements Validatable, as that validates regardless of
61          * the request method, such as .addProperty() or .addWhiteList().
62          * 
63          * This validation is ultimately only useful on this one request method.
64          */
65         String sourceId = connector.getSourceRepoId();
66         String targetId = connector.getTargetRepoId();
67
68         ProxyConnectorConfiguration otherConnector = findProxyConnector( sourceId, targetId );
69         if ( otherConnector != null )
70         {
71             addActionError(
72                 "Unable to add proxy connector, as one already exists with source repository id [" + sourceId
73                     + "] and target repository id [" + targetId + "]." );
74         }
75
76         validateConnector();
77
78         if ( hasActionErrors() )
79         {
80             return INPUT;
81         }
82
83         if ( StringUtils.equals( DIRECT_CONNECTION, connector.getProxyId() ) )
84         {
85             connector.setProxyId( null );
86         }
87
88         // MRM-1135
89         connector.setBlackListPatterns( unescapePatterns( connector.getBlackListPatterns() ) );
90         connector.setWhiteListPatterns( unescapePatterns( connector.getWhiteListPatterns() ) );
91
92         addProxyConnector( connector );
93         return saveConfiguration();
94     }
95 }