]> source.dussan.org Git - archiva.git/blob
feb0ec67291a3cb3f42bc2e556414413e139b6ed
[archiva.git] /
1 package org.apache.maven.archiva.consumers.database;
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.commons.lang.StringUtils;
23 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
24 import org.apache.maven.archiva.consumers.ConsumerException;
25 import org.apache.maven.archiva.consumers.DatabaseCleanupConsumer;
26 import org.apache.maven.archiva.model.ArchivaArtifact;
27 import org.apache.maven.archiva.model.ArchivaProjectModel;
28 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
29 import org.apache.maven.archiva.repository.RepositoryContentFactory;
30 import org.apache.maven.archiva.repository.RepositoryException;
31 import org.apache.maven.archiva.repository.layout.BidirectionalRepositoryLayout;
32 import org.apache.maven.archiva.repository.layout.LayoutException;
33 import org.apache.maven.archiva.repository.layout.BidirectionalRepositoryLayoutFactory;
34 import org.apache.maven.archiva.database.ProjectModelDAO;
35 import org.apache.maven.archiva.database.ArchivaDatabaseException;
36
37 import java.util.List;
38 import java.util.ArrayList;
39 import java.io.File;
40
41 /**
42  * Consumer for removing or deleting from the database the project models fo artifacts that have been
43  * deleted/removed from the repository.
44  *
45  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
46  *         <a href="mailto:oching@apache.org">Maria Odea Ching</a>
47  * @version $Id$
48  * 
49  * @plexus.component role="org.apache.maven.archiva.consumers.DatabaseCleanupConsumer"
50  *                   role-hint="not-present-remove-db-project"
51  *                   instantiation-strategy="per-lookup"
52  */
53 public class DatabaseCleanupRemoveProjectConsumer
54     extends AbstractMonitoredConsumer
55     implements DatabaseCleanupConsumer
56 {
57     /**
58      * @plexus.configuration default-value="not-present-remove-db-project"
59      */
60     private String id;
61
62     /**
63      * @plexus.configuration default-value="Remove project from database if not present on filesystem."
64      */
65     private String description;
66
67     /**
68      * @plexus.requirement role-hint="jdo"
69      */
70     private ProjectModelDAO projectModelDAO;
71
72     /**
73      * @plexus.requirement
74      */
75     private BidirectionalRepositoryLayoutFactory layoutFactory;
76     
77     /**
78      * @plexus.requirement
79      */
80     private RepositoryContentFactory repositoryFactory;
81
82     public void beginScan()
83     {
84         // TODO Auto-generated method stub
85     }
86
87     public void completeScan()
88     {
89         // TODO Auto-generated method stub
90     }
91
92     public List<String> getIncludedTypes()
93     {           
94         return null;
95     }
96
97     public void processArchivaArtifact( ArchivaArtifact artifact )
98         throws ConsumerException
99     {           
100         if ( !StringUtils.equals( "pom", artifact.getType() ) )
101         {
102             // Not a pom.  Skip it.
103             return;
104         }
105         
106         try
107         {
108                 ManagedRepositoryContent repositoryContent = 
109                         repositoryFactory.getManagedRepositoryContent( artifact.getModel().getRepositoryId() );
110                 
111                 File file = new File( repositoryContent.getRepoRoot(), toPath( artifact ) );
112                 
113                 if( !file.exists() )
114                 {                       
115                         ArchivaProjectModel projectModel = projectModelDAO.getProjectModel( 
116                                         artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion() );   
117                         
118                         projectModelDAO.deleteProjectModel( projectModel );                     
119                 }
120         }
121         catch ( RepositoryException re )
122         {               
123                 throw new ConsumerException( "Can't run database cleanup remove artifact consumer: " + 
124                                 re.getMessage() );
125         }
126         catch ( ArchivaDatabaseException e )
127         {       
128             throw new ConsumerException( e.getMessage() );
129         }       
130       
131     }
132
133     public String getDescription()
134     {
135         return description;
136     }
137
138     public String getId()
139     {
140         return id;
141     }
142
143     public boolean isPermanent()
144     {
145         return false;
146     }    
147
148     private String toPath( ArchivaArtifact artifact )
149     {
150         try
151         {
152             BidirectionalRepositoryLayout layout = layoutFactory.getLayout( artifact );
153
154             return layout.toPath( artifact );
155         }
156         catch ( LayoutException e )
157         {
158             getLogger().warn( "Unable to calculate path for artifact: " + artifact );
159             return null;
160         }
161     }
162
163     public void setProjectModelDAO( ProjectModelDAO projectModelDAO )
164     {
165         this.projectModelDAO = projectModelDAO;
166     }
167
168     public void setBidirectionalRepositoryLayoutFactory( BidirectionalRepositoryLayoutFactory layoutFactory )
169     {
170         this.layoutFactory = layoutFactory;
171     }
172     
173     public void setRepositoryFactory( RepositoryContentFactory repositoryFactory )
174     {
175         this.repositoryFactory = repositoryFactory;
176     }
177     
178 }