]> source.dussan.org Git - archiva.git/blob
addf50dec137162887cfe9f05b557aea46a833f0
[archiva.git] /
1 package org.apache.archiva.rss.processor;
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 java.util.Calendar;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.TimeZone;
26
27 import com.sun.syndication.feed.synd.SyndFeed;
28 import org.apache.archiva.rss.RssFeedEntry;
29 import org.apache.archiva.rss.RssFeedGenerator;
30 import org.apache.maven.archiva.database.ArchivaDatabaseException;
31 import org.apache.maven.archiva.database.ArtifactDAO;
32 import org.apache.maven.archiva.database.Constraint;
33 import org.apache.maven.archiva.database.constraints.ArtifactsByRepositoryConstraint;
34 import org.apache.maven.archiva.model.ArchivaArtifact;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37
38 /**
39  * Retrieve and process all artifacts of a repository from the database and generate a rss feed.
40  * The artifacts will be grouped by the date when the artifacts were gathered. 
41  * Each group will appear as one entry in the feed.
42  * 
43  * @version
44  * @plexus.component role="org.apache.archiva.rss.processor.RssFeedProcessor" role-hint="new-artifacts"
45  */
46 public class NewArtifactsRssFeedProcessor
47     extends AbstractArtifactsRssFeedProcessor
48 {
49     private int numberOfDaysBeforeNow = 30;
50     
51     private static final String title = "New Artifacts in Repository ";
52
53     private static final String desc = "These are the new artifacts found in the repository ";
54
55     /**
56      * @plexus.requirement
57      */
58     private RssFeedGenerator generator;
59
60     private Logger log = LoggerFactory.getLogger( NewArtifactsRssFeedProcessor.class );
61
62     /**
63      * @plexus.requirement role-hint="jdo"
64      */
65     private ArtifactDAO artifactDAO;
66
67     private static final TimeZone GMT_TIME_ZONE = TimeZone.getTimeZone( "GMT" );
68
69     /**
70      * Process the newly discovered artifacts in the repository. Generate feeds for new artifacts in the repository and
71      * new versions of artifact.
72      */
73     public SyndFeed process( Map<String, String> reqParams ) throws ArchivaDatabaseException
74     {
75         log.debug( "Process new artifacts into rss feeds." );
76
77         String repoId = reqParams.get( RssFeedProcessor.KEY_REPO_ID );
78         if ( repoId != null )
79         {
80             return processNewArtifactsInRepo( repoId );
81         }
82
83         return null;
84     }
85
86     private SyndFeed processNewArtifactsInRepo( String repoId ) throws ArchivaDatabaseException
87     {
88         
89         Calendar greaterThanThisDate = Calendar.getInstance( GMT_TIME_ZONE );
90         greaterThanThisDate.add( Calendar.DATE, -( getNumberOfDaysBeforeNow() ) );
91         
92         Constraint artifactsByRepo = new ArtifactsByRepositoryConstraint( repoId, greaterThanThisDate.getTime(), "whenGathered", false );
93         List<ArchivaArtifact> artifacts = artifactDAO.queryArtifacts( artifactsByRepo );
94
95         List<RssFeedEntry> entries = processData( artifacts, true );
96
97         return generator.generateFeed( getTitle() + "\'" + repoId + "\'", "New artifacts found in repository " +
98             "\'" + repoId + "\'" + " during repository scan.", entries );
99     }
100
101     public String getTitle()
102     {
103         return title;
104     }
105
106     public String getDescription()
107     {
108         return desc;
109     }
110
111     public RssFeedGenerator getGenerator()
112     {
113         return generator;
114     }
115
116     public void setGenerator( RssFeedGenerator generator )
117     {
118         this.generator = generator;
119     }
120
121     public ArtifactDAO getArtifactDAO()
122     {
123         return artifactDAO;
124     }
125
126     public void setArtifactDAO( ArtifactDAO artifactDAO )
127     {
128         this.artifactDAO = artifactDAO;
129     }
130
131     public int getNumberOfDaysBeforeNow()
132     {
133         return numberOfDaysBeforeNow;
134     }
135
136     public void setNumberOfDaysBeforeNow( int numberOfDaysBeforeNow )
137     {
138         this.numberOfDaysBeforeNow = numberOfDaysBeforeNow;
139     }
140     
141 }