]> source.dussan.org Git - archiva.git/blob
2dd413f44faccf9d059ea036861f85928c01c6fa
[archiva.git] /
1 package org.apache.archiva.rest.services.utils;
2 /*
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
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
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
18  * under the License.
19  */
20
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;
26
27 import java.text.DecimalFormat;
28 import java.text.DecimalFormatSymbols;
29 import java.util.Locale;
30
31 /**
32  * @author Olivier Lamy
33  * @since 1.4-M3
34  */
35 public class ArtifactDownloadInfoBuilder
36 {
37
38     private ManagedRepositoryContent managedRepositoryContent;
39
40     private ArtifactMetadata artifactMetadata;
41
42     public ArtifactDownloadInfoBuilder()
43     {
44         // no op
45     }
46
47
48     public ArtifactDownloadInfoBuilder withManagedRepositoryContent( ManagedRepositoryContent managedRepositoryContent )
49     {
50         this.managedRepositoryContent = managedRepositoryContent;
51         return this;
52     }
53
54     public ArtifactDownloadInfoBuilder forArtifactMetadata( ArtifactMetadata artifactMetadata )
55     {
56         this.artifactMetadata = artifactMetadata;
57         return this;
58     }
59
60     public Artifact build()
61     {
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();
68
69         String type = null, classifier = null;
70
71         MavenArtifactFacet facet = (MavenArtifactFacet) artifactMetadata.getFacet( MavenArtifactFacet.FACET_ID );
72         if ( facet != null )
73         {
74             type = facet.getType();
75             classifier = facet.getClassifier();
76         }
77
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();
83         String symbol = "b";
84         if ( s > 1024 )
85         {
86             symbol = "K";
87             s /= 1024;
88
89             if ( s > 1024 )
90             {
91                 symbol = "M";
92                 s /= 1024;
93
94                 if ( s > 1024 )
95                 {
96                     symbol = "G";
97                     s /= 1024;
98                 }
99             }
100         }
101         artifactDownloadInfo.setContext( managedRepositoryContent.getId() );
102         DecimalFormat df = new DecimalFormat( "#,###.##", new DecimalFormatSymbols( Locale.US ) );
103         artifactDownloadInfo.setSize( df.format( s ) + " " + symbol );
104         return artifactDownloadInfo;
105
106     }
107
108
109 }