1 package org.apache.archiva.rest.services.utils;
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License. You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
21 import org.apache.archiva.metadata.model.ArtifactMetadata;
22 import org.apache.archiva.metadata.repository.storage.maven2.MavenArtifactFacet;
23 import org.apache.archiva.model.ArtifactReference;
24 import org.apache.archiva.repository.ManagedRepositoryContent;
25 import org.apache.archiva.rest.api.model.Artifact;
27 import java.text.DecimalFormat;
28 import java.text.DecimalFormatSymbols;
29 import java.util.Locale;
32 * @author Olivier Lamy
35 public class ArtifactDownloadInfoBuilder
38 private ManagedRepositoryContent managedRepositoryContent;
40 private ArtifactMetadata artifactMetadata;
42 public ArtifactDownloadInfoBuilder()
48 public ArtifactDownloadInfoBuilder withManagedRepositoryContent( ManagedRepositoryContent managedRepositoryContent )
50 this.managedRepositoryContent = managedRepositoryContent;
54 public ArtifactDownloadInfoBuilder forArtifactMetadata( ArtifactMetadata artifactMetadata )
56 this.artifactMetadata = artifactMetadata;
60 public Artifact build()
62 ArtifactReference ref = new ArtifactReference();
63 ref.setArtifactId( artifactMetadata.getProject() );
64 ref.setGroupId( artifactMetadata.getNamespace() );
65 ref.setVersion( artifactMetadata.getVersion() );
66 String path = managedRepositoryContent.toPath( ref );
67 //path = path.substring( 0, path.lastIndexOf( "/" ) + 1 ) + artifactMetadata.getId();
69 String type = null, classifier = null;
71 MavenArtifactFacet facet = (MavenArtifactFacet) artifactMetadata.getFacet( MavenArtifactFacet.FACET_ID );
74 type = facet.getType();
75 classifier = facet.getClassifier();
78 Artifact artifactDownloadInfo = new Artifact( ref.getGroupId(), ref.getArtifactId(), ref.getVersion() );
79 artifactDownloadInfo.setClassifier( classifier );
80 artifactDownloadInfo.setPackaging( type );
81 // TODO: find a reusable formatter for this
82 double s = this.artifactMetadata.getSize();
101 artifactDownloadInfo.setContext( managedRepositoryContent.getId() );
102 DecimalFormat df = new DecimalFormat( "#,###.##", new DecimalFormatSymbols( Locale.US ) );
103 artifactDownloadInfo.setSize( df.format( s ) + " " + symbol );
104 return artifactDownloadInfo;