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