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