]> source.dussan.org Git - archiva.git/blob
5d884f22176b55ecfd26adf3be8d5ee23e5206b8
[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.maven.archiva.configuration.ProxyConnectorConfiguration;
23 import org.springframework.context.annotation.Scope;
24 import org.springframework.stereotype.Controller;
25
26 /**
27  * EditProxyConnectorAction 
28  *
29  * @version $Id$
30  *
31  */
32 @Controller( "editProxyConnectorAction" )
33 @Scope( "prototype")
34 public class EditProxyConnectorAction
35     extends AbstractProxyConnectorFormAction
36 {
37     /**
38      * The proxy connector source id to edit. (used with {@link #target})
39      */
40     private String source;
41
42     /**
43      * The proxy connector target id to edit. (used with {@link #source})
44      */
45     private String target;
46
47     @Override
48     public void prepare()
49     {
50         super.prepare();
51
52         connector = findProxyConnector( source, target );        
53     }
54
55     public String input()
56     {
57         if ( connector == null )
58         {
59             addActionError( "Unable to edit non existant proxy connector with source [" + source + "] and target ["
60                 + target + "]" );
61             return ERROR;
62         }
63         
64         if( connector != null )
65         {
66          // MRM-1135
67             connector.setBlackListPatterns( escapePatterns( connector.getBlackListPatterns() ) );
68             connector.setWhiteListPatterns( escapePatterns( connector.getWhiteListPatterns() ) );
69         }
70
71         return INPUT;
72     }
73
74     public String commit()
75     {
76         validateConnector();
77
78         if ( hasActionErrors() )
79         {
80             return INPUT;
81         }
82
83         String sourceId = connector.getSourceRepoId();
84         String targetId = connector.getTargetRepoId();
85
86         ProxyConnectorConfiguration otherConnector = findProxyConnector( sourceId, targetId );
87         if ( otherConnector != null )
88         {
89             // Remove the previous connector.
90             removeProxyConnector( otherConnector );
91         }
92
93         if ( hasActionErrors() )
94         {
95             return INPUT;
96         }
97
98         // MRM-1135
99         connector.setBlackListPatterns( unescapePatterns( connector.getBlackListPatterns() ) );
100         connector.setWhiteListPatterns( unescapePatterns( connector.getWhiteListPatterns() ) );
101         
102         addProxyConnector( connector );
103         return saveConfiguration();
104     }
105
106     public String getSource()
107     {
108         return source;
109     }
110
111     public void setSource( String source )
112     {
113         this.source = source;
114     }
115
116     public String getTarget()
117     {
118         return target;
119     }
120
121     public void setTarget( String target )
122     {
123         this.target = target;
124     }
125
126 }