]> source.dussan.org Git - archiva.git/blob
073a34a67e618431b455bb52f8247a20ffd51594
[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.model.maven2.MavenArtifactFacet;
23 import org.apache.archiva.model.ArtifactReference;
24 import org.apache.archiva.repository.ManagedRepositoryContent;
25 import org.apache.archiva.maven2.model.Artifact;
26 import org.apache.commons.io.FilenameUtils;
27
28 import java.io.File;
29 import java.text.DecimalFormat;
30 import java.text.DecimalFormatSymbols;
31 import java.util.Locale;
32
33 /**
34  * @author Olivier Lamy
35  * @since 1.4-M3
36  */
37 public class ArtifactBuilder
38 {
39
40     private ManagedRepositoryContent managedRepositoryContent;
41
42     private ArtifactMetadata artifactMetadata;
43
44     public ArtifactBuilder()
45     {
46         // no op
47     }
48
49
50     public ArtifactBuilder withManagedRepositoryContent( ManagedRepositoryContent managedRepositoryContent )
51     {
52         this.managedRepositoryContent = managedRepositoryContent;
53         return this;
54     }
55
56     public ArtifactBuilder forArtifactMetadata( ArtifactMetadata artifactMetadata )
57     {
58         this.artifactMetadata = artifactMetadata;
59         return this;
60     }
61
62     public Artifact build()
63     {
64         ArtifactReference ref = new ArtifactReference();
65         ref.setArtifactId( artifactMetadata.getProject() );
66         ref.setGroupId( artifactMetadata.getNamespace() );
67         ref.setVersion( artifactMetadata.getVersion() );
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         ref.setClassifier( classifier );
79         ref.setType( type );
80         File file = managedRepositoryContent.toFile( ref );
81
82         String extension = FilenameUtils.getExtension( file.getName() );
83
84         Artifact artifact = new Artifact( ref.getGroupId(), ref.getArtifactId(), ref.getVersion() );
85         artifact.setRepositoryId( artifactMetadata.getRepositoryId() );
86         artifact.setClassifier( classifier );
87         artifact.setPackaging( type );
88         artifact.setType( type );
89         artifact.setFileExtension( extension );
90         artifact.setPath( managedRepositoryContent.toPath( ref ) );
91         // TODO: find a reusable formatter for this
92         double s = this.artifactMetadata.getSize();
93         String symbol = "b";
94         if ( s > 1024 )
95         {
96             symbol = "K";
97             s /= 1024;
98
99             if ( s > 1024 )
100             {
101                 symbol = "M";
102                 s /= 1024;
103
104                 if ( s > 1024 )
105                 {
106                     symbol = "G";
107                     s /= 1024;
108                 }
109             }
110         }
111         artifact.setContext( managedRepositoryContent.getId() );
112         DecimalFormat df = new DecimalFormat( "#,###.##", new DecimalFormatSymbols( Locale.US ) );
113         artifact.setSize( df.format( s ) + " " + symbol );
114
115         artifact.setId( ref.getArtifactId() + "-" + ref.getVersion() + "." + ref.getType() );
116
117         return artifact;
118
119     }
120
121
122 }