]> source.dussan.org Git - archiva.git/blob
adfd6c0b7fee9f18cfbd3ec783bd660f5e268944
[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 import java.util.List;
28
29 /**
30  * SortProxyConnectorsAction -
31  *
32  * @version $Id$
33  *          <p/>
34  *          plexus.component role="com.opensymphony.xwork2.Action" role-hint="sortProxyConnectorsAction" instantiation-strategy="per-lookup"
35  */
36 @Controller( "sortProxyConnectorsAction" )
37 @Scope( "prototype" )
38 public class SortProxyConnectorsAction
39     extends AbstractProxyConnectorAction
40 {
41     private String source;
42
43     private String target;
44
45     public String getSource()
46     {
47         return source;
48     }
49
50     public String getTarget()
51     {
52         return target;
53     }
54
55     public void setSource( String id )
56     {
57         this.source = id;
58     }
59
60     public void setTarget( String id )
61     {
62         this.target = id;
63     }
64
65     public String sortDown()
66     {
67         List<ProxyConnectorConfiguration> connectors = createProxyConnectorMap().get( source );
68
69         int idx = findTargetConnector( connectors, target );
70
71         if ( idx >= 0 )
72         {
73             incrementConnectorOrder( connectors, idx );
74             decrementConnectorOrder( connectors, idx + 1 );
75         }
76
77         return saveConfiguration();
78     }
79
80     public String sortUp()
81     {
82         List<ProxyConnectorConfiguration> connectors = createProxyConnectorMap().get( source );
83
84         int idx = findTargetConnector( connectors, target );
85
86         if ( idx >= 0 )
87         {
88             decrementConnectorOrder( connectors, idx );
89             incrementConnectorOrder( connectors, idx - 1 );
90         }
91
92         return saveConfiguration();
93     }
94
95     private void decrementConnectorOrder( List<ProxyConnectorConfiguration> connectors, int idx )
96     {
97         if ( !validIndex( connectors, idx ) )
98         {
99             // Do nothing.
100             return;
101         }
102
103         int order = connectors.get( idx ).getOrder();
104         connectors.get( idx ).setOrder( Math.max( 1, order - 1 ) );
105     }
106
107     private int findTargetConnector( List<ProxyConnectorConfiguration> connectors, String targetRepoId )
108     {
109         int idx = ( -1 );
110
111         for ( int i = 0; i < connectors.size(); i++ )
112         {
113             if ( StringUtils.equals( targetRepoId, connectors.get( i ).getTargetRepoId() ) )
114             {
115                 idx = i;
116                 break;
117             }
118         }
119
120         return idx;
121     }
122
123     private void incrementConnectorOrder( List<ProxyConnectorConfiguration> connectors, int idx )
124     {
125         if ( !validIndex( connectors, idx ) )
126         {
127             // Do nothing.
128             return;
129         }
130
131         int order = connectors.get( idx ).getOrder();
132         connectors.get( idx ).setOrder( order + 1 );
133     }
134
135     private boolean validIndex( List<ProxyConnectorConfiguration> connectors, int idx )
136     {
137         return ( idx >= 0 ) && ( idx < connectors.size() );
138     }
139 }