]> source.dussan.org Git - archiva.git/blob
8187b7c1fa639bf8c4599391ab042b2f5a03db5c
[archiva.git] /
1 package org.apache.maven.archiva.common.rss;
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.io.File;
23 import java.io.FileWriter;
24 import java.io.IOException;
25 import java.io.Writer;
26 import java.util.ArrayList;
27 import java.util.Calendar;
28 import java.util.List;
29
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 import com.sun.syndication.feed.synd.SyndContent;
34 import com.sun.syndication.feed.synd.SyndContentImpl;
35 import com.sun.syndication.feed.synd.SyndEntry;
36 import com.sun.syndication.feed.synd.SyndEntryImpl;
37 import com.sun.syndication.feed.synd.SyndFeed;
38 import com.sun.syndication.feed.synd.SyndFeedImpl;
39 import com.sun.syndication.io.FeedException;
40 import com.sun.syndication.io.SyndFeedOutput;
41
42 /**
43  * Generates RSS feeds.
44  * 
45  * @plexus.component role="org.apache.maven.archiva.common.rss.RssFeedGenerator"
46  * 
47  * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
48  * @version
49  */
50 public class RssFeedGenerator
51 {
52     private Logger log = LoggerFactory.getLogger( RssFeedGenerator.class );
53
54     // TODO: make configurable
55     public static String DEFAULT_FEEDTYPE = "rss_2.0";
56
57     public static String DEFAULT_LANGUAGE = "en-us";
58
59     public void generateFeed( String title, String link, String description, List<RssFeedEntry> dataEntries,
60                               File outputFile )
61     {
62         SyndFeed feed = new SyndFeedImpl();
63         feed.setFeedType( DEFAULT_FEEDTYPE );
64
65         feed.setTitle( title );
66         feed.setLink( link );
67         feed.setDescription( description );
68         feed.setLanguage( DEFAULT_LANGUAGE );
69         feed.setPublishedDate( Calendar.getInstance().getTime() );
70
71         feed.setEntries( getEntries( dataEntries ) );
72
73         try
74         {
75             Writer writer = new FileWriter( outputFile );
76             SyndFeedOutput output = new SyndFeedOutput();
77             output.output( feed, writer );
78             writer.close();
79         }
80         catch ( IOException ie )
81         {
82             log.error( "Error occurred while generating the feed : " + ie.getMessage() );
83         }
84         catch ( FeedException fe )
85         {
86             log.error( "Error occurred while generating the feed : " + fe.getMessage() );
87         }
88     }
89
90     private List<SyndEntry> getEntries( List<RssFeedEntry> dataEntries )
91     {
92         List<SyndEntry> entries = new ArrayList<SyndEntry>();
93         SyndEntry entry;
94         SyndContent description;
95
96         for ( RssFeedEntry dataEntry : dataEntries )
97         {
98             entry = new SyndEntryImpl();
99             entry.setTitle( dataEntry.getTitle() );
100             entry.setLink( dataEntry.getLink() );
101             entry.setPublishedDate( Calendar.getInstance().getTime() );
102
103             description = new SyndContentImpl();
104             description.setType( "text/plain" );
105             description.setValue( dataEntry.getDescription() );
106             entry.setDescription( description );
107
108             entries.add( entry );
109         }
110
111         return entries;
112     }
113
114 }