]> source.dussan.org Git - archiva.git/blob
732a479a01db7579983ebd72895b59698abf30eb
[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 =
119             new ArrayList<ProxyConnectorConfiguration>( configuration.getProxyConnectors() );
120         for ( ProxyConnectorConfiguration proxyConnector : proxyConnectors )
121         {
122             if ( StringUtils.equals( proxyConnector.getTargetRepoId(), repositoryId ) )
123             {
124                 configuration.removeProxyConnector( proxyConnector );
125             }
126         }
127
128         saveConfiguration( configuration );
129
130         return Boolean.TRUE;
131     }
132
133     public Boolean updateRemoteRepository( RemoteRepository remoteRepository, AuditInformation auditInformation )
134         throws RepositoryAdminException
135     {
136
137         String repositoryId = remoteRepository.getId();
138
139         triggerAuditEvent( repositoryId, null, AuditEvent.MODIFY_REMOTE_REPO, auditInformation );
140
141         // update means : remove and add
142
143         Configuration configuration = getArchivaConfiguration().getConfiguration();
144
145         RemoteRepositoryConfiguration remoteRepositoryConfiguration =
146             configuration.getRemoteRepositoriesAsMap().get( repositoryId );
147         if ( remoteRepositoryConfiguration == null )
148         {
149             throw new RepositoryAdminException(
150                 "remoteRepository with id " + repositoryId + " not exist cannot remove it" );
151         }
152
153         configuration.removeRemoteRepository( remoteRepositoryConfiguration );
154
155         remoteRepositoryConfiguration = getRemoteRepositoryConfiguration( remoteRepository );
156         configuration.addRemoteRepository( remoteRepositoryConfiguration );
157         saveConfiguration( configuration );
158
159         return Boolean.TRUE;
160     }
161
162     private RemoteRepositoryConfiguration getRemoteRepositoryConfiguration( RemoteRepository remoteRepository )
163     {
164         RemoteRepositoryConfiguration remoteRepositoryConfiguration = new RemoteRepositoryConfiguration();
165         remoteRepositoryConfiguration.setId( remoteRepository.getId() );
166         remoteRepositoryConfiguration.setPassword( remoteRepository.getPassword() );
167         remoteRepositoryConfiguration.setTimeout( remoteRepository.getTimeout() );
168         remoteRepositoryConfiguration.setUrl( remoteRepository.getUrl() );
169         remoteRepositoryConfiguration.setUsername( remoteRepository.getUserName() );
170         remoteRepositoryConfiguration.setLayout( remoteRepository.getLayout() );
171         remoteRepositoryConfiguration.setName( remoteRepository.getName() );
172         return remoteRepositoryConfiguration;
173     }
174
175 }