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