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