]> source.dussan.org Git - archiva.git/blob
bc1a16f1e71be64d781baf237764389c57462254
[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> getArtifacts( Namespace namespace, boolean recurse ) 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> getArtifactStream( Namespace namespace, boolean recurse ) 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, ContentItem destination ) throws IllegalArgumentException
184     {
185
186     }
187
188     @Override
189     public ContentItem toItem( String path ) throws LayoutException
190     {
191         return null;
192     }
193
194     @Override
195     public ContentItem toItem( StorageAsset assetPath ) throws LayoutException
196     {
197         return null;
198     }
199
200     @Override
201     public void deleteVersion( VersionedReference reference ) throws ContentNotFoundException, ContentAccessException
202     {
203
204     }
205
206     @Override
207     public void deleteArtifact( ArtifactReference artifactReference ) throws ContentNotFoundException, ContentAccessException
208     {
209
210     }
211
212     @Override
213     public void deleteGroupId( String groupId ) throws ContentNotFoundException, ContentAccessException
214     {
215
216     }
217
218     @Override
219     public void deleteProject( String namespace, String projectId ) throws ContentNotFoundException, ContentAccessException
220     {
221
222     }
223
224     @Override
225     public void deleteProject( ProjectReference reference ) throws ContentNotFoundException, ContentAccessException
226     {
227
228     }
229
230     @Override
231     public String getId( )
232     {
233         return repository.getId();
234     }
235
236     @Override
237     public List<ArtifactReference> getRelatedArtifacts( ArtifactReference reference ) throws ContentNotFoundException, LayoutException, ContentAccessException
238     {
239         return null;
240     }
241
242     @Override
243     public List<ArtifactReference> getRelatedArtifacts( VersionedReference reference ) throws ContentNotFoundException, LayoutException, ContentAccessException
244     {
245         return null;
246     }
247
248     @Override
249     public List<StorageAsset> getRelatedAssets( ArtifactReference reference ) throws ContentNotFoundException, LayoutException, ContentAccessException
250     {
251         return null;
252     }
253
254     @Override
255     public List<ArtifactReference> getArtifacts( VersionedReference reference ) throws ContentNotFoundException, LayoutException, ContentAccessException
256     {
257         return null;
258     }
259
260     @Override
261     public String getRepoRoot( )
262     {
263         return getRepoRootAsset().getFilePath().toString();
264     }
265
266     private StorageAsset getRepoRootAsset() {
267         if (fsStorage==null) {
268             try {
269                 fsStorage = new FilesystemStorage(Paths.get("", "target", "test-repository", "managed"), new DefaultFileLockManager());
270             } catch (IOException e) {
271                 e.printStackTrace();
272             }
273         }
274         return fsStorage.getAsset("");
275     }
276
277     @Override
278     public ManagedRepository getRepository( )
279     {
280         return repository;
281     }
282
283     @Override
284     public Set<String> getVersions( ProjectReference reference ) throws ContentNotFoundException, LayoutException, ContentAccessException
285     {
286         return null;
287     }
288
289     @Override
290     public Set<String> getVersions( VersionedReference reference ) throws ContentNotFoundException, ContentAccessException, LayoutException
291     {
292         return null;
293     }
294
295     @Override
296     public boolean hasContent( ArtifactReference reference ) throws ContentAccessException
297     {
298         return false;
299     }
300
301     @Override
302     public boolean hasContent( ProjectReference reference ) throws ContentAccessException
303     {
304         return false;
305     }
306
307     @Override
308     public boolean hasContent( VersionedReference reference ) throws ContentAccessException
309     {
310         return false;
311     }
312
313     @Override
314     public void setRepository( ManagedRepository repo )
315     {
316         this.repository = repo;
317     }
318
319     @Override
320     public StorageAsset toFile( VersionedReference reference )
321     {
322         return null;
323     }
324
325     private Map<ArtifactReference, String> refs = new HashMap<>();
326
327     @Override
328     public ArtifactReference toArtifactReference( String path ) throws LayoutException
329     {
330         if ( StringUtils.isBlank( path ) )
331         {
332             throw new LayoutException( "Unable to convert blank path." );
333         }
334
335         ArtifactMetadata metadata = getArtifactForPath("test-repository", path);
336
337         ArtifactReference artifact = new ArtifactReference();
338         artifact.setGroupId( metadata.getNamespace() );
339         artifact.setArtifactId( metadata.getProject() );
340         artifact.setVersion( metadata.getVersion() );
341         MavenArtifactFacet facet = (MavenArtifactFacet) metadata.getFacet( MavenArtifactFacet.FACET_ID );
342         if ( facet != null )
343         {
344             artifact.setClassifier( facet.getClassifier() );
345             artifact.setType( facet.getType() );
346         }
347         refs.put(artifact, path);
348         return artifact;
349     }
350
351     public ArtifactMetadata getArtifactForPath( String repoId, String relativePath )
352     {
353         String[] parts = relativePath.replace( '\\', '/' ).split( "/" );
354
355         int len = parts.length;
356         if ( len < 4 )
357         {
358             throw new IllegalArgumentException(
359                     "Not a valid artifact path in a Maven 2 repository, not enough directories: " + relativePath );
360         }
361
362         String id = parts[--len];
363         String baseVersion = parts[--len];
364         String artifactId = parts[--len];
365         StringBuilder groupIdBuilder = new StringBuilder();
366         for ( int i = 0; i < len - 1; i++ )
367         {
368             groupIdBuilder.append( parts[i] );
369             groupIdBuilder.append( '.' );
370         }
371         groupIdBuilder.append( parts[len - 1] );
372
373         return getArtifactFromId( repoId, groupIdBuilder.toString(), artifactId, baseVersion, id );
374     }
375
376     private static final Pattern TIMESTAMP_PATTERN = Pattern.compile( "([0-9]{8}.[0-9]{6})-([0-9]+).*" );
377
378
379
380     public ArtifactMetadata getArtifactFromId( String repoId, String namespace, String projectId, String projectVersion,
381                                                String id )
382     {
383         if ( !id.startsWith( projectId + "-" ) )
384         {
385             throw new IllegalArgumentException( "Not a valid artifact path in a Maven 2 repository, filename '" + id
386                     + "' doesn't start with artifact ID '" + projectId + "'" );
387         }
388
389         MavenArtifactFacet facet = new MavenArtifactFacet();
390
391         int index = projectId.length() + 1;
392         String version;
393         String idSubStrFromVersion = id.substring( index );
394         if ( idSubStrFromVersion.startsWith( projectVersion ) && !VersionUtil.isUniqueSnapshot( projectVersion ) )
395         {
396             // non-snapshot versions, or non-timestamped snapshot versions
397             version = projectVersion;
398         }
399         else if ( VersionUtil.isGenericSnapshot( projectVersion ) )
400         {
401             // timestamped snapshots
402             try
403             {
404                 int mainVersionLength = projectVersion.length() - 8; // 8 is length of "SNAPSHOT"
405                 if ( mainVersionLength == 0 )
406                 {
407                     throw new IllegalArgumentException(
408                             "Timestamped snapshots must contain the main version, filename was '" + id + "'" );
409                 }
410
411                 Matcher m = TIMESTAMP_PATTERN.matcher( idSubStrFromVersion.substring( mainVersionLength ) );
412                 m.matches();
413                 String timestamp = m.group( 1 );
414                 String buildNumber = m.group( 2 );
415                 facet.setTimestamp( timestamp );
416                 facet.setBuildNumber( Integer.parseInt( buildNumber ) );
417                 version = idSubStrFromVersion.substring( 0, mainVersionLength ) + timestamp + "-" + buildNumber;
418             }
419             catch ( IllegalStateException e )
420             {
421                 throw new IllegalArgumentException( "Not a valid artifact path in a Maven 2 repository, filename '" + id
422                         + "' doesn't contain a timestamped version matching snapshot '"
423                         + projectVersion + "'", e);
424             }
425         }
426         else
427         {
428             // invalid
429             throw new IllegalArgumentException(
430                     "Not a valid artifact path in a Maven 2 repository, filename '" + id + "' doesn't contain version '"
431                             + projectVersion + "'" );
432         }
433
434         String classifier;
435         String ext;
436         index += version.length();
437         if ( index == id.length() )
438         {
439             // no classifier or extension
440             classifier = null;
441             ext = null;
442         }
443         else
444         {
445             char c = id.charAt( index );
446             if ( c == '-' )
447             {
448                 // classifier up until '.'
449                 int extIndex = id.indexOf( '.', index );
450                 if ( extIndex >= 0 )
451                 {
452                     classifier = id.substring( index + 1, extIndex );
453                     ext = id.substring( extIndex + 1 );
454                 }
455                 else
456                 {
457                     classifier = id.substring( index + 1 );
458                     ext = null;
459                 }
460             }
461             else if ( c == '.' )
462             {
463                 // rest is the extension
464                 classifier = null;
465                 ext = id.substring( index + 1 );
466             }
467             else
468             {
469                 throw new IllegalArgumentException( "Not a valid artifact path in a Maven 2 repository, filename '" + id
470                         + "' expected classifier or extension but got '"
471                         + id.substring( index ) + "'" );
472             }
473         }
474
475         ArtifactMetadata metadata = new ArtifactMetadata();
476         metadata.setId( id );
477         metadata.setNamespace( namespace );
478         metadata.setProject( projectId );
479         metadata.setRepositoryId( repoId );
480         metadata.setProjectVersion( projectVersion );
481         metadata.setVersion( version );
482
483         facet.setClassifier( classifier );
484
485         // we use our own provider here instead of directly accessing Maven's artifact handlers as it has no way
486         // to select the correct order to apply multiple extensions mappings to a preferred type
487         // TODO: this won't allow the user to decide order to apply them if there are conflicts or desired changes -
488         //       perhaps the plugins could register missing entries in configuration, then we just use configuration
489         //       here?
490
491         String type = null;
492
493
494         // use extension as default
495         if ( type == null )
496         {
497             type = ext;
498         }
499
500         // TODO: should we allow this instead?
501         if ( type == null )
502         {
503             throw new IllegalArgumentException(
504                     "Not a valid artifact path in a Maven 2 repository, filename '" + id + "' does not have a type" );
505         }
506
507         facet.setType( type );
508         metadata.addFacet( facet );
509
510         return metadata;
511     }
512
513
514     @Override
515     public StorageAsset toFile( ArtifactReference reference )
516     {
517         return getRepoRootAsset().resolve( refs.get(reference));
518     }
519
520     @Override
521     public StorageAsset toFile( ArchivaArtifact reference )
522     {
523         return null;
524     }
525
526     private String formatAsDirectory( String directory )
527     {
528         return directory.replace( GROUP_SEPARATOR, PATH_SEPARATOR );
529     }
530
531     public String toMetadataPath( ProjectReference reference )
532     {
533         StringBuilder path = new StringBuilder();
534
535         path.append( formatAsDirectory( reference.getGroupId() ) ).append( PATH_SEPARATOR );
536         path.append( reference.getArtifactId() ).append( PATH_SEPARATOR );
537         path.append( MAVEN_METADATA );
538
539         return path.toString();
540     }
541
542     public String toMetadataPath( VersionedReference reference )
543     {
544         StringBuilder path = new StringBuilder();
545
546         path.append( formatAsDirectory( reference.getGroupId() ) ).append( PATH_SEPARATOR );
547         path.append( reference.getArtifactId() ).append( PATH_SEPARATOR );
548         if ( reference.getVersion() != null )
549         {
550             // add the version only if it is present
551             path.append( VersionUtil.getBaseVersion( reference.getVersion() ) ).append( PATH_SEPARATOR );
552         }
553         path.append( MAVEN_METADATA );
554
555         return path.toString();
556     }
557
558     @Override
559     public String toPath( ArtifactReference reference )
560     {
561         return null;
562     }
563
564     @Override
565     public String toPath( ItemSelector selector )
566     {
567         return null;
568     }
569
570     @Override
571     public ItemSelector toItemSelector( String path ) throws LayoutException
572     {
573         return null;
574     }
575
576     @Override
577     public String toPath( ArchivaArtifact reference )
578     {
579         return null;
580     }
581
582 }