1 package org.apache.archiva.repository.content.maven2;
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.archiva.metadata.repository.storage.maven2.ArtifactMappingProvider;
23 import org.apache.archiva.model.ArtifactReference;
24 import org.apache.archiva.model.RepositoryURL;
25 import org.apache.archiva.repository.LayoutException;
26 import org.apache.archiva.repository.RemoteRepository;
27 import org.apache.archiva.repository.RemoteRepositoryContent;
28
29 import java.util.List;
30
31 /**
32 * RemoteDefaultRepositoryContent
33 */
34 public class RemoteDefaultRepositoryContent
35 extends AbstractDefaultRepositoryContent
36 implements RemoteRepositoryContent
37 {
38 private RemoteRepository repository;
39
40
41 public RemoteDefaultRepositoryContent( List<? extends ArtifactMappingProvider> artifactMappingProviders ) {
42 super(artifactMappingProviders);
43 }
44
45 @Override
46 public String getId( )
47 {
48 return repository.getId( );
49 }
50
51 @Override
52 public RemoteRepository getRepository( )
53 {
54 return repository;
55 }
56
57 @Override
58 public RepositoryURL getURL( )
59 {
60 try
61 {
62 return new RepositoryURL( repository.getLocation( ).toString( ) );
63 }
64 catch ( Exception e )
65 {
66 log.error( "Could not convert location url {}", repository.getLocation( ) );
67 return new RepositoryURL( "" );
68 }
69 }
70
71 @Override
72 public void setRepository( RemoteRepository repository )
73 {
74 this.repository = repository;
75 }
76
77 /**
78 * Convert a path to an artifact reference.
79 *
80 * @param path the path to convert. (relative or full url path)
81 * @throws LayoutException if the path cannot be converted to an artifact reference.
82 */
83 @Override
84 public ArtifactReference toArtifactReference( String path )
85 throws LayoutException
86 {
87
88 if ( ( path != null ) && repository.getLocation()!=null && path.startsWith( repository.getLocation().toString() ) )
89 {
90 return super.toArtifactReference( path.substring( repository.getLocation().toString().length( ) ) );
91 }
92
93 return super.toArtifactReference( path );
94 }
95
96 @Override
97 public RepositoryURL toURL( ArtifactReference reference )
98 {
99 String url = repository.getLocation( ) + toPath( reference );
100 return new RepositoryURL( url );
101 }
102 }