]> source.dussan.org Git - archiva.git/blob
6203fc9ea5faeb6014b55a27e74e2e349824cd76
[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                 re.printStackTrace();
124                 throw new ConsumerException( "Can't run database cleanup remove artifact consumer: " + 
125                                 re.getMessage() );
126         }
127         catch ( ArchivaDatabaseException e )
128         {
129                 e.printStackTrace();
130             throw new ConsumerException( e.getMessage() );
131         }       
132       
133     }
134
135     public String getDescription()
136     {
137         return description;
138     }
139
140     public String getId()
141     {
142         return id;
143     }
144
145     public boolean isPermanent()
146     {
147         return false;
148     }    
149
150     private String toPath( ArchivaArtifact artifact )
151     {
152         try
153         {
154             BidirectionalRepositoryLayout layout = layoutFactory.getLayout( artifact );
155
156             return layout.toPath( artifact );
157         }
158         catch ( LayoutException e )
159         {
160             getLogger().warn( "Unable to calculate path for artifact: " + artifact );
161             return null;
162         }
163     }
164
165     public void setProjectModelDAO( ProjectModelDAO projectModelDAO )
166     {
167         this.projectModelDAO = projectModelDAO;
168     }
169
170     public void setBidirectionalRepositoryLayoutFactory( BidirectionalRepositoryLayoutFactory layoutFactory )
171     {
172         this.layoutFactory = layoutFactory;
173     }
174     
175     public void setRepositoryFactory( RepositoryContentFactory repositoryFactory )
176     {
177         this.repositoryFactory = repositoryFactory;
178     }
179     
180 }