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