]> source.dussan.org Git - archiva.git/blob
d93d0de4e66c3ea6950ebf7e9484e790265bb107
[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  * RemoteLegacyRepositoryContent
32  *
33  * @version $Id$
34  * @todo no need to be a component once legacy path parser is not
35  * plexus.component role="org.apache.maven.archiva.repository.RemoteRepositoryContent"
36  * role-hint="legacy"
37  * instantiation-strategy="per-lookup"
38  */
39 @Service( "remoteRepositoryContent#legacy" )
40 @Scope( "prototype" )
41 public class RemoteLegacyRepositoryContent
42     extends AbstractLegacyRepositoryContent
43     implements RemoteRepositoryContent
44 {
45     private RemoteRepositoryConfiguration repository;
46
47     public String getId()
48     {
49         return repository.getId();
50     }
51
52     public RemoteRepositoryConfiguration getRepository()
53     {
54         return repository;
55     }
56
57     public RepositoryURL getURL()
58     {
59         return new RepositoryURL( repository.getUrl() );
60     }
61
62     public void setRepository( RemoteRepositoryConfiguration repository )
63     {
64         this.repository = repository;
65     }
66
67     /**
68      * Convert a path to an artifact reference.
69      *
70      * @param path the path to convert. (relative or full url path)
71      * @throws LayoutException if the path cannot be converted to an artifact reference.
72      */
73     @Override
74     public ArtifactReference toArtifactReference( String path )
75         throws LayoutException
76     {
77         if ( path.startsWith( repository.getUrl() ) )
78         {
79             return super.toArtifactReference( path.substring( repository.getUrl().length() ) );
80         }
81
82         return super.toArtifactReference( path );
83     }
84
85     public RepositoryURL toURL( ArtifactReference reference )
86     {
87         String url = repository.getUrl() + toPath( reference );
88         return new RepositoryURL( url );
89     }
90 }