]> source.dussan.org Git - archiva.git/blob
8cff121d6473d781e9c0a71858b97c991c1d3f48
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.repositories;
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 java.util.List;
23
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.RepositoryGroupConfiguration;
27
28 /**
29  * SortRepositoriesAction
30  * 
31  * @version
32  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="sortRepositoriesAction"
33  */
34 public class SortRepositoriesAction 
35     extends AbstractRepositoriesAdminAction
36 {
37     private String repoGroupId;
38         
39     private String targetRepo;
40         
41     public String sortDown()
42     {
43         Configuration config = archivaConfiguration.getConfiguration();
44                 
45         List<String> repositories = getRepositoriesFromGroup();
46                 
47         int idx = findTargetRepository( repositories, targetRepo );
48                 
49         if ( idx >= 0 && validIndex( repositories, idx + 1 ) )
50         {
51             repositories.remove( idx );
52             repositories.add( idx + 1, targetRepo );
53         }
54                 
55         return saveConfiguration( config );
56     }
57         
58     public String sortUp()
59     {
60         Configuration config = archivaConfiguration.getConfiguration();
61                 
62         List<String> repositories = getRepositoriesFromGroup();
63
64         int idx = findTargetRepository( repositories, targetRepo );
65                 
66         if ( idx >= 0 && validIndex( repositories, idx - 1 ) )
67         {
68             repositories.remove( idx );
69             repositories.add( idx - 1, targetRepo );
70         }
71                 
72         return saveConfiguration( config );
73     }
74         
75     public String getRepoGroupId()
76     {
77         return repoGroupId;
78     }
79         
80     public void setRepoGroupId( String repoGroupId )
81     {
82         this.repoGroupId = repoGroupId;
83     }
84         
85     public String getTargetRepo()
86     {
87         return targetRepo;
88     }
89         
90     public void setTargetRepo( String targetRepo )
91     {
92         this.targetRepo = targetRepo;
93     }
94         
95     private int findTargetRepository( List<String> repositories, String targetRepository )
96     {
97         int idx = ( -1 );
98                 
99         for ( int i = 0; i < repositories.size(); i++ )
100         {
101             if ( StringUtils.equals( targetRepository, repositories.get(i) ) )
102             {
103                 idx = i;
104                 break;
105             }
106         }
107         return idx;
108     }
109         
110     private List<String> getRepositoriesFromGroup()
111     {
112         Configuration config = archivaConfiguration.getConfiguration();
113         RepositoryGroupConfiguration repoGroup = config.findRepositoryGroupById( repoGroupId );
114         return repoGroup.getRepositories();
115     }
116         
117     private boolean validIndex( List<String> repositories, int idx )
118         {
119             return ( idx >= 0 ) && ( idx < repositories.size() );
120         }
121 }