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