]> source.dussan.org Git - archiva.git/blob
99d80cf5041378aa7c7618a19a506afcc7df3741
[archiva.git] /
1 package org.apache.archiva.admin.repository.remote;
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.AuditInformation;
22 import org.apache.archiva.admin.repository.AbstractRepositoryAdmin;
23 import org.apache.archiva.admin.repository.RepositoryAdminException;
24 import org.apache.archiva.audit.AuditEvent;
25 import org.apache.commons.lang.StringUtils;
26 import org.apache.maven.archiva.configuration.Configuration;
27 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
28 import org.apache.maven.archiva.configuration.RemoteRepositoryConfiguration;
29 import org.springframework.stereotype.Service;
30
31 import java.util.ArrayList;
32 import java.util.List;
33
34 /**
35  * @author Olivier Lamy
36  * @since 1.4
37  */
38 @Service( "remoteRepositoryAdmin#default" )
39 public class DefaultRemoteRepositoryAdmin
40     extends AbstractRepositoryAdmin
41     implements RemoteRepositoryAdmin
42 {
43
44
45     public List<RemoteRepository> getRemoteRepositories()
46         throws RepositoryAdminException
47     {
48         List<RemoteRepository> remoteRepositories = new ArrayList<RemoteRepository>();
49         for ( RemoteRepositoryConfiguration repositoryConfiguration : getArchivaConfiguration().getConfiguration().getRemoteRepositories() )
50         {
51             remoteRepositories.add(
52                 new RemoteRepository( repositoryConfiguration.getId(), repositoryConfiguration.getName(),
53                                       repositoryConfiguration.getUrl(), repositoryConfiguration.getLayout(),
54                                       repositoryConfiguration.getUsername(), repositoryConfiguration.getPassword(),
55                                       repositoryConfiguration.getTimeout() ) );
56         }
57         return remoteRepositories;
58     }
59
60     public RemoteRepository getRemoteRepository( String repositoryId )
61         throws RepositoryAdminException
62     {
63         for ( RemoteRepository remoteRepository : getRemoteRepositories() )
64         {
65             if ( StringUtils.equals( repositoryId, remoteRepository.getId() ) )
66             {
67                 return remoteRepository;
68             }
69         }
70         return null;
71     }
72
73     public Boolean addRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
74         throws RepositoryAdminException
75     {
76         triggerAuditEvent( remoteRepository.getId(), null, AuditEvent.ADD_REMOTE_REPO, auditInformation );
77         getRepositoryCommonValidator().basicValidation( remoteRepository, false );
78
79         //TODO we can validate it's a good uri/url
80         if ( StringUtils.isEmpty( remoteRepository.getUrl() ) )
81         {
82             throw new RepositoryAdminException( "url cannot be null" );
83         }
84
85         //MRM-752 - url needs trimming
86         remoteRepository.setUrl( StringUtils.trim( remoteRepository.getUrl() ) );
87
88         RemoteRepositoryConfiguration remoteRepositoryConfiguration =
89             getRemoteRepositoryConfiguration( remoteRepository );
90
91         Configuration configuration = getArchivaConfiguration().getConfiguration();
92         configuration.addRemoteRepository( remoteRepositoryConfiguration );
93         saveConfiguration( configuration );
94
95         return Boolean.TRUE;
96     }
97
98     public Boolean deleteRemoteRepository( String repositoryId, AuditInformation auditInformation )
99         throws RepositoryAdminException
100     {
101
102         triggerAuditEvent( repositoryId, null, AuditEvent.DELETE_REMOTE_REPO, auditInformation );
103
104         Configuration configuration = getArchivaConfiguration().getConfiguration();
105
106         RemoteRepositoryConfiguration remoteRepositoryConfiguration =
107             configuration.getRemoteRepositoriesAsMap().get( repositoryId );
108         if ( remoteRepositoryConfiguration == null )
109         {
110             throw new RepositoryAdminException(
111                 "remoteRepository with id " + repositoryId + " not exist cannot remove it" );
112         }
113
114         configuration.removeRemoteRepository( remoteRepositoryConfiguration );
115
116         // TODO use ProxyConnectorAdmin interface ?
117         // [MRM-520] Proxy Connectors are not deleted with the deletion of a Repository.
118         List<ProxyConnectorConfiguration> proxyConnectors = configuration.getProxyConnectors();
119         for ( ProxyConnectorConfiguration proxyConnector : proxyConnectors )
120         {
121             if ( StringUtils.equals( proxyConnector.getTargetRepoId(), repositoryId ) )
122             {
123                 configuration.removeProxyConnector( proxyConnector );
124             }
125         }
126
127         saveConfiguration( configuration );
128
129         return Boolean.TRUE;
130     }
131
132     public Boolean updateRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
133         throws RepositoryAdminException
134     {
135
136         String repositoryId = remoteRepository.getId();
137
138         triggerAuditEvent( repositoryId, null, AuditEvent.MODIFY_REMOTE_REPO, auditInformation );
139
140         // update means : remove and add
141
142         Configuration configuration = getArchivaConfiguration().getConfiguration();
143
144         RemoteRepositoryConfiguration remoteRepositoryConfiguration =
145             configuration.getRemoteRepositoriesAsMap().get( repositoryId );
146         if ( remoteRepositoryConfiguration == null )
147         {
148             throw new RepositoryAdminException(
149                 "remoteRepository with id " + repositoryId + " not exist cannot remove it" );
150         }
151
152         configuration.removeRemoteRepository( remoteRepositoryConfiguration );
153
154         remoteRepositoryConfiguration = getRemoteRepositoryConfiguration( remoteRepository );
155         configuration.addRemoteRepository( remoteRepositoryConfiguration );
156         saveConfiguration( configuration );
157
158         return Boolean.TRUE;
159     }
160
161     private RemoteRepositoryConfiguration getRemoteRepositoryConfiguration( RemoteRepository remoteRepository )
162     {
163         RemoteRepositoryConfiguration remoteRepositoryConfiguration = new RemoteRepositoryConfiguration();
164         remoteRepositoryConfiguration.setId( remoteRepository.getId() );
165         remoteRepositoryConfiguration.setPassword( remoteRepository.getPassword() );
166         remoteRepositoryConfiguration.setTimeout( remoteRepository.getTimeout() );
167         remoteRepositoryConfiguration.setUrl( remoteRepository.getUrl() );
168         remoteRepositoryConfiguration.setUsername( remoteRepository.getUserName() );
169         remoteRepositoryConfiguration.setLayout( remoteRepository.getLayout() );
170         remoteRepositoryConfiguration.setName( remoteRepository.getName() );
171         return remoteRepositoryConfiguration;
172     }
173
174 }