]> source.dussan.org Git - archiva.git/blob
7d94e112bac6e9fff46968f5ec101f8ea6257aca
[archiva.git] /
1 package org.apache.archiva.web.api;
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 com.google.common.base.Predicate;
22 import com.google.common.collect.Iterables;
23 import org.apache.archiva.admin.model.RepositoryAdminException;
24 import org.apache.archiva.admin.model.admin.ArchivaAdministration;
25 import org.apache.archiva.admin.model.beans.ManagedRepository;
26 import org.apache.archiva.admin.model.managed.ManagedRepositoryAdmin;
27 import org.apache.archiva.audit.AuditEvent;
28 import org.apache.archiva.checksum.ChecksumAlgorithm;
29 import org.apache.archiva.checksum.ChecksummedFile;
30 import org.apache.archiva.common.utils.VersionComparator;
31 import org.apache.archiva.common.utils.VersionUtil;
32 import org.apache.archiva.maven2.metadata.MavenMetadataReader;
33 import org.apache.archiva.model.ArchivaRepositoryMetadata;
34 import org.apache.archiva.model.ArtifactReference;
35 import org.apache.archiva.model.SnapshotVersion;
36 import org.apache.archiva.redback.components.taskqueue.TaskQueueException;
37 import org.apache.archiva.repository.ManagedRepositoryContent;
38 import org.apache.archiva.repository.RepositoryContentFactory;
39 import org.apache.archiva.repository.RepositoryException;
40 import org.apache.archiva.repository.RepositoryNotFoundException;
41 import org.apache.archiva.repository.metadata.MetadataTools;
42 import org.apache.archiva.repository.metadata.RepositoryMetadataException;
43 import org.apache.archiva.repository.metadata.RepositoryMetadataWriter;
44 import org.apache.archiva.rest.api.services.ArchivaRestServiceException;
45 import org.apache.archiva.rest.services.AbstractRestService;
46 import org.apache.archiva.scheduler.ArchivaTaskScheduler;
47 import org.apache.archiva.scheduler.repository.model.RepositoryTask;
48 import org.apache.archiva.web.model.FileMetadata;
49 import org.apache.archiva.xml.XMLException;
50 import org.apache.commons.io.FilenameUtils;
51 import org.apache.commons.io.IOUtils;
52 import org.apache.commons.lang.BooleanUtils;
53 import org.apache.commons.lang.StringUtils;
54 import org.apache.commons.lang.SystemUtils;
55 import org.apache.cxf.jaxrs.ext.multipart.Attachment;
56 import org.apache.cxf.jaxrs.ext.multipart.MultipartBody;
57 import org.apache.maven.model.Model;
58 import org.apache.maven.model.io.xpp3.MavenXpp3Writer;
59 import org.slf4j.Logger;
60 import org.slf4j.LoggerFactory;
61 import org.springframework.stereotype.Service;
62
63
64 import javax.inject.Inject;
65 import javax.inject.Named;
66 import javax.servlet.http.HttpServletRequest;
67 import javax.ws.rs.core.Context;
68 import javax.ws.rs.core.Response;
69 import java.io.File;
70 import java.io.FileInputStream;
71 import java.io.FileOutputStream;
72 import java.io.FileWriter;
73 import java.io.IOException;
74 import java.text.DateFormat;
75 import java.text.SimpleDateFormat;
76 import java.util.ArrayList;
77 import java.util.Calendar;
78 import java.util.Collections;
79 import java.util.Date;
80 import java.util.Iterator;
81 import java.util.List;
82 import java.util.TimeZone;
83 import java.util.concurrent.CopyOnWriteArrayList;
84
85 /**
86  * @author Olivier Lamy
87  */
88 @Service( "fileUploadService#rest" )
89 public class DefaultFileUploadService
90     extends AbstractRestService
91     implements FileUploadService
92 {
93     private Logger log = LoggerFactory.getLogger( getClass() );
94
95     @Context
96     private HttpServletRequest httpServletRequest;
97
98     @Inject
99     private ManagedRepositoryAdmin managedRepositoryAdmin;
100
101     @Inject
102     private RepositoryContentFactory repositoryFactory;
103
104     @Inject
105     private ArchivaAdministration archivaAdministration;
106
107     private ChecksumAlgorithm[] algorithms = new ChecksumAlgorithm[]{ ChecksumAlgorithm.SHA1, ChecksumAlgorithm.MD5 };
108
109     @Inject
110     @Named( value = "archivaTaskScheduler#repository" )
111     private ArchivaTaskScheduler scheduler;
112
113     private String getStringValue( MultipartBody multipartBody, String attachmentId )
114         throws IOException
115     {
116         Attachment attachment = multipartBody.getAttachment( attachmentId );
117         return attachment == null ? "" : IOUtils.toString( attachment.getDataHandler().getInputStream() );
118     }
119
120     public FileMetadata post( MultipartBody multipartBody )
121         throws ArchivaRestServiceException
122     {
123
124         try
125         {
126
127             String classifier = getStringValue( multipartBody, "classifier" );
128             // skygo: http header form pomFile was once sending 1 for true and void for false
129             // leading to permanent false value for pomFile if using toBoolean(); use , "1", ""
130             boolean pomFile = BooleanUtils.toBoolean( getStringValue( multipartBody, "pomFile" ) );
131
132             Attachment file = multipartBody.getAttachment( "files[]" );
133
134             //Content-Disposition: form-data; name="files[]"; filename="org.apache.karaf.features.command-2.2.2.jar"
135             String fileName = file.getContentDisposition().getParameter( "filename" );
136
137             File tmpFile = File.createTempFile( "upload-artifact", ".tmp" );
138             tmpFile.deleteOnExit();
139             IOUtils.copy( file.getDataHandler().getInputStream(), new FileOutputStream( tmpFile ) );
140             FileMetadata fileMetadata = new FileMetadata( fileName, tmpFile.length(), "theurl" );
141             fileMetadata.setServerFileName( tmpFile.getPath() );
142             fileMetadata.setClassifier( classifier );
143             fileMetadata.setDeleteUrl( tmpFile.getName() );
144             fileMetadata.setPomFile( pomFile );
145
146             log.info( "uploading file: {}", fileMetadata );
147
148             List<FileMetadata> fileMetadatas = getSessionFilesList();
149
150             fileMetadatas.add( fileMetadata );
151
152             return fileMetadata;
153         }
154         catch ( IOException e )
155         {
156             throw new ArchivaRestServiceException( e.getMessage(),
157                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), e );
158         }
159
160     }
161
162     /**
163      * FIXME must be per session synchronized not globally
164      *
165      * @return
166      */
167     protected synchronized List<FileMetadata> getSessionFilesList()
168     {
169         List<FileMetadata> fileMetadatas =
170             (List<FileMetadata>) httpServletRequest.getSession().getAttribute( FILES_SESSION_KEY );
171         if ( fileMetadatas == null )
172         {
173             fileMetadatas = new CopyOnWriteArrayList<FileMetadata>();
174             httpServletRequest.getSession().setAttribute( FILES_SESSION_KEY, fileMetadatas );
175         }
176         return fileMetadatas;
177     }
178
179     public Boolean deleteFile( String fileName )
180         throws ArchivaRestServiceException
181     {
182         File file = new File( SystemUtils.getJavaIoTmpDir(), fileName );
183         log.debug( "delete file:{},exists:{}", file.getPath(), file.exists() );
184         boolean removed = getSessionFileMetadatas().remove(
185             new FileMetadata( SystemUtils.getJavaIoTmpDir().getPath() + "/" + fileName ) );
186         if ( file.exists() )
187         {
188             return file.delete();
189         }
190         return Boolean.FALSE;
191     }
192
193     public Boolean clearUploadedFiles()
194         throws ArchivaRestServiceException
195     {
196         List<FileMetadata> fileMetadatas = new ArrayList( getSessionFileMetadatas() );
197         for ( FileMetadata fileMetadata : fileMetadatas )
198         {
199             deleteFile( new File( fileMetadata.getServerFileName() ).getName() );
200         }
201         return Boolean.TRUE;
202     }
203
204     public List<FileMetadata> getSessionFileMetadatas()
205         throws ArchivaRestServiceException
206     {
207         List<FileMetadata> fileMetadatas =
208             (List<FileMetadata>) httpServletRequest.getSession().getAttribute( FILES_SESSION_KEY );
209
210         return fileMetadatas == null ? Collections.<FileMetadata>emptyList() : fileMetadatas;
211     }
212
213     public Boolean save( String repositoryId, final String groupId, final String artifactId, String version,
214                          String packaging, final boolean generatePom )
215         throws ArchivaRestServiceException
216     {
217         List<FileMetadata> fileMetadatas = getSessionFilesList();
218         if ( fileMetadatas == null || fileMetadatas.isEmpty() )
219         {
220             return Boolean.FALSE;
221         }
222
223         try
224         {
225             ManagedRepository managedRepository = managedRepositoryAdmin.getManagedRepository( repositoryId );
226
227             if ( managedRepository == null )
228             {
229                 // TODO i18n ?
230                 throw new ArchivaRestServiceException( "Cannot find managed repository with id " + repositoryId,
231                                                        Response.Status.BAD_REQUEST.getStatusCode(), null );
232             }
233
234             if ( VersionUtil.isSnapshot( version ) && !managedRepository.isSnapshots() )
235             {
236                 // TODO i18n ?
237                 throw new ArchivaRestServiceException(
238                     "Managed repository with id " + repositoryId + " do not accept snapshots",
239                     Response.Status.BAD_REQUEST.getStatusCode(), null );
240             }
241         }
242         catch ( RepositoryAdminException e )
243         {
244             throw new ArchivaRestServiceException( e.getMessage(),
245                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), e );
246         }
247
248         // get from the session file with groupId/artifactId
249
250         Iterable<FileMetadata> filesToAdd = Iterables.filter( fileMetadatas, new Predicate<FileMetadata>()
251         {
252             public boolean apply( FileMetadata fileMetadata )
253             {
254                 return fileMetadata != null && !fileMetadata.isPomFile();
255             }
256         } );
257         Iterator<FileMetadata> iterator = filesToAdd.iterator();
258         boolean pomGenerated = false;
259         while ( iterator.hasNext() )
260         {
261             FileMetadata fileMetadata = iterator.next();
262             log.debug( "fileToAdd: {}", fileMetadata );
263             saveFile( repositoryId, fileMetadata, generatePom && !pomGenerated, groupId, artifactId, version,
264                       packaging );
265             pomGenerated = true;
266             deleteFile( fileMetadata.getServerFileName() );
267         }
268
269         filesToAdd = Iterables.filter( fileMetadatas, new Predicate<FileMetadata>()
270         {
271             public boolean apply( FileMetadata fileMetadata )
272             {
273                 return fileMetadata != null && fileMetadata.isPomFile();
274             }
275         } );
276
277         iterator = filesToAdd.iterator();
278         while ( iterator.hasNext() )
279         {
280             FileMetadata fileMetadata = iterator.next();
281             log.debug( "fileToAdd: {}", fileMetadata );
282             savePomFile( repositoryId, fileMetadata, groupId, artifactId, version, packaging );
283             deleteFile( fileMetadata.getServerFileName() );
284         }
285
286         return Boolean.TRUE;
287     }
288
289     protected void savePomFile( String repositoryId, FileMetadata fileMetadata, String groupId, String artifactId,
290                                 String version, String packaging )
291         throws ArchivaRestServiceException
292     {
293
294         try
295         {
296             boolean fixChecksums =
297                 !( archivaAdministration.getKnownContentConsumers().contains( "create-missing-checksums" ) );
298
299             ManagedRepository repoConfig = managedRepositoryAdmin.getManagedRepository( repositoryId );
300
301             ArtifactReference artifactReference = new ArtifactReference();
302             artifactReference.setArtifactId( artifactId );
303             artifactReference.setGroupId( groupId );
304             artifactReference.setVersion( version );
305             artifactReference.setClassifier( fileMetadata.getClassifier() );
306             artifactReference.setType( packaging );
307
308             ManagedRepositoryContent repository = repositoryFactory.getManagedRepositoryContent( repositoryId );
309
310             String artifactPath = repository.toPath( artifactReference );
311
312             int lastIndex = artifactPath.lastIndexOf( '/' );
313
314             String path = artifactPath.substring( 0, lastIndex );
315             File targetPath = new File( repoConfig.getLocation(), path );
316
317             String pomFilename = artifactPath.substring( lastIndex + 1 );
318             if ( StringUtils.isNotEmpty( fileMetadata.getClassifier() ) )
319             {
320                 pomFilename = StringUtils.remove( pomFilename, "-" + fileMetadata.getClassifier() );
321             }
322             pomFilename = FilenameUtils.removeExtension( pomFilename ) + ".pom";
323
324             copyFile( new File( fileMetadata.getServerFileName() ), targetPath, pomFilename, fixChecksums );
325             triggerAuditEvent( repoConfig.getId(), path + "/" + pomFilename, AuditEvent.UPLOAD_FILE );
326             queueRepositoryTask( repoConfig.getId(), new File( targetPath, pomFilename ) );
327         }
328         catch ( IOException ie )
329         {
330             throw new ArchivaRestServiceException( "Error encountered while uploading pom file: " + ie.getMessage(),
331                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), ie );
332         }
333         catch ( RepositoryException rep )
334         {
335             throw new ArchivaRestServiceException( "Repository exception: " + rep.getMessage(),
336                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), rep );
337         }
338         catch ( RepositoryAdminException e )
339         {
340             throw new ArchivaRestServiceException( "RepositoryAdmin exception: " + e.getMessage(),
341                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), e );
342         }
343     }
344
345     protected void saveFile( String repositoryId, FileMetadata fileMetadata, boolean generatePom, String groupId,
346                              String artifactId, String version, String packaging )
347         throws ArchivaRestServiceException
348     {
349         try
350         {
351
352             ManagedRepository repoConfig = managedRepositoryAdmin.getManagedRepository( repositoryId );
353
354             ArtifactReference artifactReference = new ArtifactReference();
355             artifactReference.setArtifactId( artifactId );
356             artifactReference.setGroupId( groupId );
357             artifactReference.setVersion( version );
358             artifactReference.setClassifier( fileMetadata.getClassifier() );
359             artifactReference.setType( packaging );
360
361             ManagedRepositoryContent repository = repositoryFactory.getManagedRepositoryContent( repositoryId );
362
363             String artifactPath = repository.toPath( artifactReference );
364
365             int lastIndex = artifactPath.lastIndexOf( '/' );
366
367             String path = artifactPath.substring( 0, lastIndex );
368             File targetPath = new File( repoConfig.getLocation(), path );
369
370             log.debug( "artifactPath: {} found targetPath: {}", artifactPath, targetPath );
371
372             Date lastUpdatedTimestamp = Calendar.getInstance().getTime();
373             int newBuildNumber = -1;
374             String timestamp = null;
375
376             File versionMetadataFile = new File( targetPath, MetadataTools.MAVEN_METADATA );
377             ArchivaRepositoryMetadata versionMetadata = getMetadata( versionMetadataFile );
378
379             if ( VersionUtil.isSnapshot( version ) )
380             {
381                 TimeZone timezone = TimeZone.getTimeZone( "UTC" );
382                 DateFormat fmt = new SimpleDateFormat( "yyyyMMdd.HHmmss" );
383                 fmt.setTimeZone( timezone );
384                 timestamp = fmt.format( lastUpdatedTimestamp );
385                 if ( versionMetadata.getSnapshotVersion() != null )
386                 {
387                     newBuildNumber = versionMetadata.getSnapshotVersion().getBuildNumber() + 1;
388                 }
389                 else
390                 {
391                     newBuildNumber = 1;
392                 }
393             }
394
395             if ( !targetPath.exists() )
396             {
397                 targetPath.mkdirs();
398             }
399
400             String filename = artifactPath.substring( lastIndex + 1 );
401             if ( VersionUtil.isSnapshot( version ) )
402             {
403                 filename = filename.replaceAll( VersionUtil.SNAPSHOT, timestamp + "-" + newBuildNumber );
404             }
405
406             boolean fixChecksums =
407                 !( archivaAdministration.getKnownContentConsumers().contains( "create-missing-checksums" ) );
408
409             try
410             {
411                 File targetFile = new File( targetPath, filename );
412                 if ( targetFile.exists() && !VersionUtil.isSnapshot( version ) && repoConfig.isBlockRedeployments() )
413                 {
414                     throw new ArchivaRestServiceException(
415                         "Overwriting released artifacts in repository '" + repoConfig.getId() + "' is not allowed.",
416                         Response.Status.BAD_REQUEST.getStatusCode(), null );
417                 }
418                 else
419                 {
420                     copyFile( new File( fileMetadata.getServerFileName() ), targetPath, filename, fixChecksums );
421                     triggerAuditEvent( repository.getId(), path + "/" + filename, AuditEvent.UPLOAD_FILE );
422                     queueRepositoryTask( repository.getId(), targetFile );
423                 }
424             }
425             catch ( IOException ie )
426             {
427                 throw new ArchivaRestServiceException(
428                     "Overwriting released artifacts in repository '" + repoConfig.getId() + "' is not allowed.",
429                     Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), ie );
430             }
431
432             if ( generatePom )
433             {
434                 String pomFilename = filename;
435                 if ( StringUtils.isNotEmpty( fileMetadata.getClassifier() ) )
436                 {
437                     pomFilename = StringUtils.remove( pomFilename, "-" + fileMetadata.getClassifier() );
438                 }
439                 pomFilename = FilenameUtils.removeExtension( pomFilename ) + ".pom";
440
441                 try
442                 {
443                     File generatedPomFile =
444                         createPom( targetPath, pomFilename, fileMetadata, groupId, artifactId, version, packaging );
445                     triggerAuditEvent( repoConfig.getId(), path + "/" + pomFilename, AuditEvent.UPLOAD_FILE );
446                     if ( fixChecksums )
447                     {
448                         fixChecksums( generatedPomFile );
449                     }
450                     queueRepositoryTask( repoConfig.getId(), generatedPomFile );
451                 }
452                 catch ( IOException ie )
453                 {
454                     throw new ArchivaRestServiceException(
455                         "Error encountered while writing pom file: " + ie.getMessage(),
456                         Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), ie );
457                 }
458             }
459
460             // explicitly update only if metadata-updater consumer is not enabled!
461             if ( !archivaAdministration.getKnownContentConsumers().contains( "metadata-updater" ) )
462             {
463                 updateProjectMetadata( targetPath.getAbsolutePath(), lastUpdatedTimestamp, timestamp, newBuildNumber,
464                                        fixChecksums, fileMetadata, groupId, artifactId, version, packaging );
465
466                 if ( VersionUtil.isSnapshot( version ) )
467                 {
468                     updateVersionMetadata( versionMetadata, versionMetadataFile, lastUpdatedTimestamp, timestamp,
469                                            newBuildNumber, fixChecksums, fileMetadata, groupId, artifactId, version,
470                                            packaging );
471                 }
472             }
473         }
474         catch ( RepositoryNotFoundException re )
475         {
476             throw new ArchivaRestServiceException( "Target repository cannot be found: " + re.getMessage(),
477                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), re );
478         }
479         catch ( RepositoryException rep )
480         {
481             throw new ArchivaRestServiceException( "Repository exception: " + rep.getMessage(),
482                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), rep );
483         }
484         catch ( RepositoryAdminException e )
485         {
486             throw new ArchivaRestServiceException( "RepositoryAdmin exception: " + e.getMessage(),
487                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), e );
488         }
489     }
490
491     private ArchivaRepositoryMetadata getMetadata( File metadataFile )
492         throws RepositoryMetadataException
493     {
494         ArchivaRepositoryMetadata metadata = new ArchivaRepositoryMetadata();
495         if ( metadataFile.exists() )
496         {
497             try
498             {
499                 metadata = MavenMetadataReader.read( metadataFile );
500             }
501             catch ( XMLException e )
502             {
503                 throw new RepositoryMetadataException( e.getMessage(), e );
504             }
505         }
506         return metadata;
507     }
508
509     private File createPom( File targetPath, String filename, FileMetadata fileMetadata, String groupId,
510                             String artifactId, String version, String packaging )
511         throws IOException
512     {
513         Model projectModel = new Model();
514         projectModel.setModelVersion( "4.0.0" );
515         projectModel.setGroupId( groupId );
516         projectModel.setArtifactId( artifactId );
517         projectModel.setVersion( version );
518         projectModel.setPackaging( packaging );
519
520         File pomFile = new File( targetPath, filename );
521         MavenXpp3Writer writer = new MavenXpp3Writer();
522         FileWriter w = new FileWriter( pomFile );
523         try
524         {
525             writer.write( w, projectModel );
526         }
527         finally
528         {
529             IOUtils.closeQuietly( w );
530         }
531
532         return pomFile;
533     }
534
535     private void fixChecksums( File file )
536     {
537         ChecksummedFile checksum = new ChecksummedFile( file );
538         checksum.fixChecksums( algorithms );
539     }
540
541     private void queueRepositoryTask( String repositoryId, File localFile )
542     {
543         RepositoryTask task = new RepositoryTask();
544         task.setRepositoryId( repositoryId );
545         task.setResourceFile( localFile );
546         task.setUpdateRelatedArtifacts( true );
547         task.setScanAll( false );
548
549         try
550         {
551             scheduler.queueTask( task );
552         }
553         catch ( TaskQueueException e )
554         {
555             log.error( "Unable to queue repository task to execute consumers on resource file ['" + localFile.getName()
556                            + "']." );
557         }
558     }
559
560     private void copyFile( File sourceFile, File targetPath, String targetFilename, boolean fixChecksums )
561         throws IOException
562     {
563         FileOutputStream out = new FileOutputStream( new File( targetPath, targetFilename ) );
564         FileInputStream input = new FileInputStream( sourceFile );
565
566         try
567         {
568             IOUtils.copy( input, out );
569         }
570         finally
571         {
572             out.close();
573             input.close();
574         }
575
576         if ( fixChecksums )
577         {
578             fixChecksums( new File( targetPath, targetFilename ) );
579         }
580     }
581
582     /**
583      * Update artifact level metadata. If it does not exist, create the metadata and fix checksums if necessary.
584      */
585     private void updateProjectMetadata( String targetPath, Date lastUpdatedTimestamp, String timestamp, int buildNumber,
586                                         boolean fixChecksums, FileMetadata fileMetadata, String groupId,
587                                         String artifactId, String version, String packaging )
588         throws RepositoryMetadataException
589     {
590         List<String> availableVersions = new ArrayList<String>();
591         String latestVersion = version;
592
593         File projectDir = new File( targetPath ).getParentFile();
594         File projectMetadataFile = new File( projectDir, MetadataTools.MAVEN_METADATA );
595
596         ArchivaRepositoryMetadata projectMetadata = getMetadata( projectMetadataFile );
597
598         if ( projectMetadataFile.exists() )
599         {
600             availableVersions = projectMetadata.getAvailableVersions();
601
602             Collections.sort( availableVersions, VersionComparator.getInstance() );
603
604             if ( !availableVersions.contains( version ) )
605             {
606                 availableVersions.add( version );
607             }
608
609             latestVersion = availableVersions.get( availableVersions.size() - 1 );
610         }
611         else
612         {
613             availableVersions.add( version );
614
615             projectMetadata.setGroupId( groupId );
616             projectMetadata.setArtifactId( artifactId );
617         }
618
619         if ( projectMetadata.getGroupId() == null )
620         {
621             projectMetadata.setGroupId( groupId );
622         }
623
624         if ( projectMetadata.getArtifactId() == null )
625         {
626             projectMetadata.setArtifactId( artifactId );
627         }
628
629         projectMetadata.setLatestVersion( latestVersion );
630         projectMetadata.setLastUpdatedTimestamp( lastUpdatedTimestamp );
631         projectMetadata.setAvailableVersions( availableVersions );
632
633         if ( !VersionUtil.isSnapshot( version ) )
634         {
635             projectMetadata.setReleasedVersion( latestVersion );
636         }
637
638         RepositoryMetadataWriter.write( projectMetadata, projectMetadataFile );
639
640         if ( fixChecksums )
641         {
642             fixChecksums( projectMetadataFile );
643         }
644     }
645
646     /**
647      * Update version level metadata for snapshot artifacts. If it does not exist, create the metadata and fix checksums
648      * if necessary.
649      */
650     private void updateVersionMetadata( ArchivaRepositoryMetadata metadata, File metadataFile,
651                                         Date lastUpdatedTimestamp, String timestamp, int buildNumber,
652                                         boolean fixChecksums, FileMetadata fileMetadata, String groupId,
653                                         String artifactId, String version, String packaging )
654         throws RepositoryMetadataException
655     {
656         if ( !metadataFile.exists() )
657         {
658             metadata.setGroupId( groupId );
659             metadata.setArtifactId( artifactId );
660             metadata.setVersion( version );
661         }
662
663         if ( metadata.getSnapshotVersion() == null )
664         {
665             metadata.setSnapshotVersion( new SnapshotVersion() );
666         }
667
668         metadata.getSnapshotVersion().setBuildNumber( buildNumber );
669         metadata.getSnapshotVersion().setTimestamp( timestamp );
670         metadata.setLastUpdatedTimestamp( lastUpdatedTimestamp );
671
672         RepositoryMetadataWriter.write( metadata, metadataFile );
673
674         if ( fixChecksums )
675         {
676             fixChecksums( metadataFile );
677         }
678     }
679
680
681 }