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