]> source.dussan.org Git - archiva.git/blob
c59bfad456b5ceff9aea5387f3f98524b2f39c35
[archiva.git] /
1 package org.apache.archiva.repository.mock;
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.common.filelock.DefaultFileLockManager;
23 import org.apache.archiva.common.utils.VersionUtil;
24 import org.apache.archiva.metadata.model.ArtifactMetadata;
25 import org.apache.archiva.metadata.maven.model.MavenArtifactFacet;
26 import org.apache.archiva.model.ArtifactReference;
27 import org.apache.archiva.repository.*;
28 import org.apache.archiva.repository.content.Artifact;
29 import org.apache.archiva.repository.content.BaseDataItemTypes;
30 import org.apache.archiva.repository.content.ContentItem;
31 import org.apache.archiva.repository.content.DataItem;
32 import org.apache.archiva.repository.content.ItemNotFoundException;
33 import org.apache.archiva.repository.content.ItemSelector;
34 import org.apache.archiva.repository.content.Namespace;
35 import org.apache.archiva.repository.content.Project;
36 import org.apache.archiva.repository.content.Version;
37 import org.apache.archiva.repository.content.base.ArchivaArtifact;
38 import org.apache.archiva.repository.content.base.ArchivaContentItem;
39 import org.apache.archiva.repository.content.base.ArchivaDataItem;
40 import org.apache.archiva.repository.content.base.ArchivaNamespace;
41 import org.apache.archiva.repository.content.base.ArchivaProject;
42 import org.apache.archiva.repository.content.base.ArchivaVersion;
43 import org.apache.archiva.repository.storage.fs.FilesystemStorage;
44 import org.apache.archiva.repository.storage.RepositoryStorage;
45 import org.apache.archiva.repository.storage.StorageAsset;
46 import org.apache.commons.lang3.StringUtils;
47 import org.springframework.stereotype.Service;
48
49 import java.io.IOException;
50 import java.nio.file.Path;
51 import java.nio.file.Paths;
52 import java.util.HashMap;
53 import java.util.List;
54 import java.util.Map;
55 import java.util.function.Consumer;
56 import java.util.regex.Matcher;
57 import java.util.regex.Pattern;
58 import java.util.stream.Stream;
59
60 /**
61  * @author Martin Stockhammer <martin_s@apache.org>
62  */
63 @Service("managedRepositoryContent#mock")
64 public class ManagedRepositoryContentMock implements BaseRepositoryContentLayout, ManagedRepositoryContent
65 {
66     private static final String PATH_SEPARATOR = "/";
67     private static final String GROUP_SEPARATOR = ".";
68     public static final String MAVEN_METADATA = "maven-metadata.xml";
69
70
71     private ManagedRepository repository;
72     private RepositoryStorage fsStorage;
73
74     ManagedRepositoryContentMock(ManagedRepository repo) {
75         this.repository = repo;
76         this.fsStorage = repo;
77     }
78
79     @Override
80     public <T extends ContentItem> T adaptItem( Class<T> clazz, ContentItem item ) throws LayoutException
81     {
82         if (clazz.isAssignableFrom( Version.class ))
83         {
84             if ( !item.hasCharacteristic( Version.class ) )
85             {
86                 item.setCharacteristic( Version.class, createVersionFromPath( item.getAsset() ) );
87             }
88             return (T) item.adapt( Version.class );
89         } else if ( clazz.isAssignableFrom( Project.class )) {
90             if ( !item.hasCharacteristic( Project.class ) )
91             {
92                 item.setCharacteristic( Project.class, createProjectFromPath( item.getAsset() ) );
93             }
94             return (T) item.adapt( Project.class );
95         } else if ( clazz.isAssignableFrom( Namespace.class )) {
96             if ( !item.hasCharacteristic( Namespace.class ) )
97             {
98                 item.setCharacteristic( Namespace.class, createNamespaceFromPath( item.getAsset() ) );
99             }
100             return (T) item.adapt( Namespace.class );
101         }
102         throw new LayoutException( "Could not convert item to class " + clazz);
103     }
104
105     private Version createVersionFromPath( StorageAsset asset )
106     {
107         Project proj = createProjectFromPath( asset.getParent( ) );
108         return ArchivaVersion.withRepository( this ).withAsset( asset )
109             .withProject( proj ).withVersion( asset.getName( ) ).build();
110     }
111
112     private Project createProjectFromPath( StorageAsset asset)  {
113         Namespace ns = createNamespaceFromPath( asset );
114         return ArchivaProject.withRepository( this ).withAsset( asset )
115             .withNamespace( ns ).withId( asset.getName( ) ).build( );
116     }
117
118     private Namespace createNamespaceFromPath( StorageAsset asset) {
119         String namespace = asset.getPath( ).replace( "/", "." );
120         return ArchivaNamespace.withRepository( this )
121             .withAsset( asset ).withNamespace( namespace ).build();
122     }
123
124     @Override
125     public void deleteAllItems( ItemSelector selector, Consumer<ItemDeleteStatus> consumer ) throws ContentAccessException, IllegalArgumentException
126     {
127
128     }
129
130     @Override
131     public void deleteItem( ContentItem item ) throws ItemNotFoundException, ContentAccessException
132     {
133
134     }
135
136     @Override
137     public ContentItem getItem( ItemSelector selector ) throws ContentAccessException, IllegalArgumentException
138     {
139         return null;
140     }
141
142     @Override
143     public Namespace getNamespace( ItemSelector namespaceSelector ) throws ContentAccessException, IllegalArgumentException
144     {
145         return null;
146     }
147
148     @Override
149     public Project getProject( ItemSelector projectSelector ) throws ContentAccessException, IllegalArgumentException
150     {
151         return null;
152     }
153
154     @Override
155     public Version getVersion( ItemSelector versionCoordinates ) throws ContentAccessException, IllegalArgumentException
156     {
157         return null;
158     }
159
160     @Override
161     public Artifact getArtifact( ItemSelector selector ) throws ContentAccessException
162     {
163         StringBuilder path = new StringBuilder(selector.getNamespace( ).replace( ".", "/" ));
164         path.append( "/" ).append( selector.getProjectId( ) ).append( "/" ).append( selector.getVersion( ) );
165         path.append( "/" ).append( selector.getArtifactId( ) ).append( "-" ).append( selector.getArtifactVersion( ) ).append( "." ).append( selector.getType( ) );
166         StorageAsset asset = fsStorage.getAsset( path.toString( ) );
167         ArchivaNamespace ns = ArchivaNamespace.withRepository( repository.getContent( ) ).withAsset( asset.getParent( ).getParent( ).getParent( ) ).withNamespace( selector.getNamespace( ) ).build( );
168         ArchivaProject project = ArchivaProject.withRepository( repository.getContent( ) ).withAsset( asset.getParent( ).getParent( ) ).withNamespace( ns ).withId( selector.getProjectId( ) ).build( );
169         ArchivaVersion version = ArchivaVersion.withRepository( repository.getContent( ) ).withAsset( asset.getParent( ) ).withProject( project ).withVersion( selector.getVersion( ) ).build( );
170         ArchivaArtifact artifact = ArchivaArtifact.withAsset( asset ).withVersion( version ).withId( selector.getArtifactId( ) ).withArtifactVersion( selector.getArtifactVersion( ) ).withType( selector.getType( ) ).build( );
171         return artifact;
172     }
173
174     @Override
175     public Artifact getArtifact( String path ) throws LayoutException, ContentAccessException
176     {
177         return null;
178     }
179
180     @Override
181     public List<? extends Artifact> getArtifacts( ItemSelector selector ) throws ContentAccessException
182     {
183         return null;
184     }
185
186     @Override
187     public Stream<? extends Artifact> newArtifactStream( ItemSelector selector ) throws ContentAccessException
188     {
189         return null;
190     }
191
192     @Override
193     public Stream<? extends ContentItem> newItemStream( ItemSelector selector, boolean parallel ) throws ContentAccessException, IllegalArgumentException
194     {
195         return null;
196     }
197
198     @Override
199     public List<? extends Project> getProjects( Namespace namespace ) throws ContentAccessException
200     {
201         return null;
202     }
203
204     @Override
205     public List<? extends Project> getProjects( ItemSelector selector ) throws ContentAccessException, IllegalArgumentException
206     {
207         return null;
208     }
209
210     @Override
211     public List<? extends Version> getVersions( Project project ) throws ContentAccessException
212     {
213         return null;
214     }
215
216     @Override
217     public List<? extends Version> getVersions( ItemSelector selector ) throws ContentAccessException, IllegalArgumentException
218     {
219         return null;
220     }
221
222     @Override
223     public List<String> getArtifactVersions( ItemSelector selector ) throws ContentAccessException, IllegalArgumentException
224     {
225         return null;
226     }
227
228     @Override
229     public List<? extends Artifact> getArtifacts( ContentItem item ) throws ContentAccessException
230     {
231         return null;
232     }
233
234     @Override
235     public Stream<? extends Artifact> newArtifactStream( ContentItem item ) throws ContentAccessException
236     {
237         return null;
238     }
239
240     @Override
241     public boolean hasContent( ItemSelector selector )
242     {
243         return false;
244     }
245
246     @Override
247     public ContentItem getParent( ContentItem item )
248     {
249         try
250         {
251             return toItem( item.getAsset( ).getParent( ) );
252         }
253         catch ( LayoutException e )
254         {
255             throw new RuntimeException( "Bad layout conversion " + e.getMessage( ) );
256         }
257     }
258
259     @Override
260     public List<? extends ContentItem> getChildren( ContentItem item )
261     {
262         return null;
263     }
264
265     @Override
266     public <T extends ContentItem> T applyCharacteristic( Class<T> clazz, ContentItem item ) throws LayoutException
267     {
268         return null;
269     }
270
271     @Override
272     public <T extends ManagedRepositoryContentLayout> T getLayout( Class<T> clazz ) throws LayoutException
273     {
274         return (T) this;
275     }
276
277     @Override
278     public <T extends ManagedRepositoryContentLayout> boolean supportsLayout( Class<T> clazz )
279     {
280         return true;
281     }
282
283     @Override
284     public void addArtifact( Path sourceFile, Artifact destination ) throws IllegalArgumentException
285     {
286
287     }
288
289     @Override
290     public DataItem getMetadataItem( Version version )
291     {
292         return ArchivaDataItem.withAsset( version.getAsset( ).resolve( "maven-metadata.xml" ) ).withId( "maven-metadata.xml" )
293             .withDataType( BaseDataItemTypes.METADATA ).build();
294     }
295
296     @Override
297     public DataItem getMetadataItem( Project project )
298     {
299         return ArchivaDataItem.withAsset( project.getAsset( ).resolve( "maven-metadata.xml" ) ).withId( "maven-metadata.xml" )
300             .withDataType( BaseDataItemTypes.METADATA ).build( );
301     }
302
303     @Override
304     public ContentItem toItem( String path ) throws LayoutException
305     {
306         StorageAsset asset = repository.getRoot().resolve( path );
307         return toItem( asset );
308     }
309
310     @Override
311     public ContentItem toItem( StorageAsset asset ) throws LayoutException
312     {
313         if (asset.isLeaf()) {
314             return ArchivaDataItem.withAsset( asset ).withId( asset.getName( ) ).build();
315         } else
316         {
317             return ArchivaContentItem.withRepository( this )
318                 .withAsset( asset )
319                 .build( );
320         }
321     }
322
323     @Override
324     public String toPath( ContentItem item )
325     {
326         return item.getAsset( ).getPath( );
327     }
328
329     @Override
330     public String getId( )
331     {
332         return repository.getId();
333     }
334
335     private StorageAsset getRepoRootAsset() {
336         if (fsStorage==null) {
337             try {
338                 fsStorage = new FilesystemStorage(Paths.get("", "target", "test-repository", "managed"), new DefaultFileLockManager());
339             } catch (IOException e) {
340                 e.printStackTrace();
341             }
342         }
343         return fsStorage.getRoot();
344     }
345
346     @Override
347     public ManagedRepository getRepository( )
348     {
349         return repository;
350     }
351
352     @Override
353     public void setRepository( ManagedRepository repo )
354     {
355         this.repository = repo;
356     }
357
358     private Map<ArtifactReference, String> refs = new HashMap<>();
359
360     @Override
361     public ArtifactReference toArtifactReference( String path ) throws LayoutException
362     {
363         if ( StringUtils.isBlank( path ) )
364         {
365             throw new LayoutException( "Unable to convert blank path." );
366         }
367
368         ArtifactMetadata metadata = getArtifactForPath("test-repository", path);
369
370         ArtifactReference artifact = new ArtifactReference();
371         artifact.setGroupId( metadata.getNamespace() );
372         artifact.setArtifactId( metadata.getProject() );
373         artifact.setVersion( metadata.getVersion() );
374         artifact.setProjectVersion( metadata.getProjectVersion( ) );
375         MavenArtifactFacet facet = (MavenArtifactFacet) metadata.getFacet( MavenArtifactFacet.FACET_ID );
376         if ( facet != null )
377         {
378             artifact.setClassifier( facet.getClassifier() );
379             artifact.setType( facet.getType() );
380         }
381         refs.put(artifact, path);
382         return artifact;
383     }
384
385     public ArtifactMetadata getArtifactForPath( String repoId, String relativePath )
386     {
387         String[] parts = relativePath.replace( '\\', '/' ).split( "/" );
388
389         int len = parts.length;
390         if ( len < 4 )
391         {
392             throw new IllegalArgumentException(
393                     "Not a valid artifact path in a Maven 2 repository, not enough directories: " + relativePath );
394         }
395
396         String id = parts[--len];
397         String baseVersion = parts[--len];
398         String artifactId = parts[--len];
399         StringBuilder groupIdBuilder = new StringBuilder();
400         for ( int i = 0; i < len - 1; i++ )
401         {
402             groupIdBuilder.append( parts[i] );
403             groupIdBuilder.append( '.' );
404         }
405         groupIdBuilder.append( parts[len - 1] );
406
407         return getArtifactFromId( repoId, groupIdBuilder.toString(), artifactId, baseVersion, id );
408     }
409
410     private static final Pattern TIMESTAMP_PATTERN = Pattern.compile( "([0-9]{8}.[0-9]{6})-([0-9]+).*" );
411
412
413
414     public ArtifactMetadata getArtifactFromId( String repoId, String namespace, String projectId, String projectVersion,
415                                                String id )
416     {
417         if ( !id.startsWith( projectId + "-" ) )
418         {
419             throw new IllegalArgumentException( "Not a valid artifact path in a Maven 2 repository, filename '" + id
420                     + "' doesn't start with artifact ID '" + projectId + "'" );
421         }
422
423         MavenArtifactFacet facet = new MavenArtifactFacet();
424
425         int index = projectId.length() + 1;
426         String version;
427         String idSubStrFromVersion = id.substring( index );
428         if ( idSubStrFromVersion.startsWith( projectVersion ) && !VersionUtil.isUniqueSnapshot( projectVersion ) )
429         {
430             // non-snapshot versions, or non-timestamped snapshot versions
431             version = projectVersion;
432         }
433         else if ( VersionUtil.isGenericSnapshot( projectVersion ) )
434         {
435             // timestamped snapshots
436             try
437             {
438                 int mainVersionLength = projectVersion.length() - 8; // 8 is length of "SNAPSHOT"
439                 if ( mainVersionLength == 0 )
440                 {
441                     throw new IllegalArgumentException(
442                             "Timestamped snapshots must contain the main version, filename was '" + id + "'" );
443                 }
444
445                 Matcher m = TIMESTAMP_PATTERN.matcher( idSubStrFromVersion.substring( mainVersionLength ) );
446                 m.matches();
447                 String timestamp = m.group( 1 );
448                 String buildNumber = m.group( 2 );
449                 facet.setTimestamp( timestamp );
450                 facet.setBuildNumber( Integer.parseInt( buildNumber ) );
451                 version = idSubStrFromVersion.substring( 0, mainVersionLength ) + timestamp + "-" + buildNumber;
452             }
453             catch ( IllegalStateException e )
454             {
455                 throw new IllegalArgumentException( "Not a valid artifact path in a Maven 2 repository, filename '" + id
456                         + "' doesn't contain a timestamped version matching snapshot '"
457                         + projectVersion + "'", e);
458             }
459         }
460         else
461         {
462             // invalid
463             throw new IllegalArgumentException(
464                     "Not a valid artifact path in a Maven 2 repository, filename '" + id + "' doesn't contain version '"
465                             + projectVersion + "'" );
466         }
467
468         String classifier;
469         String ext;
470         index += version.length();
471         if ( index == id.length() )
472         {
473             // no classifier or extension
474             classifier = null;
475             ext = null;
476         }
477         else
478         {
479             char c = id.charAt( index );
480             if ( c == '-' )
481             {
482                 // classifier up until '.'
483                 int extIndex = id.indexOf( '.', index );
484                 if ( extIndex >= 0 )
485                 {
486                     classifier = id.substring( index + 1, extIndex );
487                     ext = id.substring( extIndex + 1 );
488                 }
489                 else
490                 {
491                     classifier = id.substring( index + 1 );
492                     ext = null;
493                 }
494             }
495             else if ( c == '.' )
496             {
497                 // rest is the extension
498                 classifier = null;
499                 ext = id.substring( index + 1 );
500             }
501             else
502             {
503                 throw new IllegalArgumentException( "Not a valid artifact path in a Maven 2 repository, filename '" + id
504                         + "' expected classifier or extension but got '"
505                         + id.substring( index ) + "'" );
506             }
507         }
508
509         ArtifactMetadata metadata = new ArtifactMetadata();
510         metadata.setId( id );
511         metadata.setNamespace( namespace );
512         metadata.setProject( projectId );
513         metadata.setRepositoryId( repoId );
514         metadata.setProjectVersion( projectVersion );
515         metadata.setVersion( version );
516
517         facet.setClassifier( classifier );
518
519         // we use our own provider here instead of directly accessing Maven's artifact handlers as it has no way
520         // to select the correct order to apply multiple extensions mappings to a preferred type
521         // TODO: this won't allow the user to decide order to apply them if there are conflicts or desired changes -
522         //       perhaps the plugins could register missing entries in configuration, then we just use configuration
523         //       here?
524
525         String type = null;
526
527
528         // use extension as default
529         if ( type == null )
530         {
531             type = ext;
532         }
533
534         // TODO: should we allow this instead?
535         if ( type == null )
536         {
537             throw new IllegalArgumentException(
538                     "Not a valid artifact path in a Maven 2 repository, filename '" + id + "' does not have a type" );
539         }
540
541         facet.setType( type );
542         metadata.addFacet( facet );
543
544         return metadata;
545     }
546
547
548     private String formatAsDirectory( String directory )
549     {
550         return directory.replace( GROUP_SEPARATOR, PATH_SEPARATOR );
551     }
552
553     @Override
554     public String toPath( ArtifactReference reference )
555     {
556         return null;
557     }
558
559     @Override
560     public String toPath( ItemSelector selector )
561     {
562         return null;
563     }
564
565     @Override
566     public ItemSelector toItemSelector( String path ) throws LayoutException
567     {
568         return null;
569     }
570
571     @Override
572     public ManagedRepositoryContent getGenericContent( )
573     {
574         return null;
575     }
576 }