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