]> source.dussan.org Git - archiva.git/blob
886b0415afb1b6de70ec2cd4a3cff7731edb75eb
[archiva.git] /
1 package org.apache.maven.archiva.repository.content;
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.maven.archiva.configuration.RemoteRepositoryConfiguration;
23 import org.apache.maven.archiva.model.ArtifactReference;
24 import org.apache.maven.archiva.model.RepositoryURL;
25 import org.apache.maven.archiva.repository.RemoteRepositoryContent;
26 import org.apache.maven.archiva.repository.layout.LayoutException;
27 import org.springframework.context.annotation.Scope;
28 import org.springframework.stereotype.Service;
29
30 /**
31  * RemoteDefaultRepositoryContent
32  *
33  * @version $Id$
34  */
35 @Service( "remoteRepositoryContent#default" )
36 @Scope( "prototype" )
37 public class RemoteDefaultRepositoryContent
38     extends AbstractDefaultRepositoryContent
39     implements RemoteRepositoryContent
40 {
41     private RemoteRepositoryConfiguration repository;
42
43     public String getId()
44     {
45         return repository.getId();
46     }
47
48     public RemoteRepositoryConfiguration getRepository()
49     {
50         return repository;
51     }
52
53     public RepositoryURL getURL()
54     {
55         return new RepositoryURL( repository.getUrl() );
56     }
57
58     public void setRepository( RemoteRepositoryConfiguration repository )
59     {
60         this.repository = repository;
61     }
62
63     /**
64      * Convert a path to an artifact reference.
65      *
66      * @param path the path to convert. (relative or full url path)
67      * @throws LayoutException if the path cannot be converted to an artifact reference.
68      */
69     @Override
70     public ArtifactReference toArtifactReference( String path )
71         throws LayoutException
72     {
73         if ( ( path != null ) && path.startsWith( repository.getUrl() ) )
74         {
75             return super.toArtifactReference( path.substring( repository.getUrl().length() ) );
76         }
77
78         return super.toArtifactReference( path );
79     }
80
81     public RepositoryURL toURL( ArtifactReference reference )
82     {
83         String url = repository.getUrl() + toPath( reference );
84         return new RepositoryURL( url );
85     }
86 }