]> source.dussan.org Git - archiva.git/blob
eb2767ac3414b570d3b08e3afed56e45c01d2843
[archiva.git] /
1 package org.apache.archiva.rest.services;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.repository.RepositoryAdminException;
22 import org.apache.archiva.admin.repository.group.RepositoryGroupAdmin;
23 import org.apache.archiva.rest.api.model.RepositoryGroup;
24 import org.apache.archiva.rest.api.services.RepositoryGroupService;
25 import org.apache.commons.lang.StringUtils;
26
27 import javax.inject.Inject;
28 import java.util.ArrayList;
29 import java.util.List;
30
31 /**
32  * @author Olivier Lamy
33  */
34 public class DefaultRepositoryGroupService
35     extends AbstractRestService
36     implements RepositoryGroupService
37 {
38
39     @Inject
40     private RepositoryGroupAdmin repositoryGroupAdmin;
41
42     public List<RepositoryGroup> getRepositoriesGroups()
43         throws RepositoryAdminException
44     {
45         List<RepositoryGroup> repositoriesGroups = new ArrayList<RepositoryGroup>();
46         for ( org.apache.archiva.admin.repository.group.RepositoryGroup repoGroup : repositoryGroupAdmin.getRepositoriesGroups() )
47         {
48             repositoriesGroups.add(
49                 new RepositoryGroup( repoGroup.getId(), new ArrayList<String>( repoGroup.getRepositories() ) ) );
50         }
51         return repositoriesGroups;
52     }
53
54     public RepositoryGroup getRepositoryGroup( String repositoryGroupId )
55         throws RepositoryAdminException
56     {
57         for ( RepositoryGroup repositoryGroup : getRepositoriesGroups() )
58         {
59             if ( StringUtils.equals( repositoryGroupId, repositoryGroup.getId() ) )
60             {
61                 return repositoryGroup;
62             }
63         }
64         return null;
65     }
66
67     public Boolean addRepositoryGroup( RepositoryGroup repoGroup )
68         throws RepositoryAdminException
69     {
70         return repositoryGroupAdmin.addRepositoryGroup(
71             new org.apache.archiva.admin.repository.group.RepositoryGroup( repoGroup.getId(), new ArrayList<String>(
72                 repoGroup.getRepositories() ) ), getAuditInformation() );
73     }
74
75     public Boolean updateRepositoryGroup( RepositoryGroup repoGroup )
76         throws RepositoryAdminException
77     {
78         return repositoryGroupAdmin.updateRepositoryGroup(
79             new org.apache.archiva.admin.repository.group.RepositoryGroup( repoGroup.getId(), new ArrayList<String>(
80                 repoGroup.getRepositories() ) ), getAuditInformation() );
81     }
82
83     public Boolean deleteRepositoryGroup( String repositoryGroupId )
84         throws RepositoryAdminException
85     {
86         return repositoryGroupAdmin.deleteRepositoryGroup( repositoryGroupId, getAuditInformation() );
87     }
88
89     public Boolean addRepositoryToGroup( String repositoryGroupId, String repositoryId )
90         throws RepositoryAdminException
91     {
92         return repositoryGroupAdmin.addRepositoryToGroup( repositoryGroupId, repositoryId, getAuditInformation() );
93     }
94
95     public Boolean deleteRepositoryFromGroup( String repositoryGroupId, String repositoryId )
96         throws RepositoryAdminException
97     {
98         return repositoryGroupAdmin.deleteRepositoryFromGroup( repositoryGroupId, repositoryId, getAuditInformation() );
99     }
100 }