93c9339ebbd086e1aed46dd39952a513b61029e2
[pnews.git] / war / src / main / java / pnews / servlet / ArticleProvider.java
1 package pnews.servlet;
2
3 import java.io.IOException;
4 import java.net.MalformedURLException;
5 import java.net.URL;
6 import java.util.ArrayList;
7 import java.util.Collections;
8 import java.util.Comparator;
9 import java.util.Date;
10 import java.util.HashMap;
11 import java.util.List;
12 import java.util.Map;
13 import java.util.concurrent.Executors;
14 import java.util.concurrent.ScheduledExecutorService;
15 import java.util.concurrent.TimeUnit;
16 import java.util.logging.Level;
17 import java.util.logging.Logger;
18
19 import org.jsoup.Jsoup;
20
21 import com.rometools.rome.feed.synd.SyndEnclosure;
22 import com.rometools.rome.feed.synd.SyndEntry;
23 import com.rometools.rome.feed.synd.SyndFeed;
24 import com.rometools.rome.io.FeedException;
25 import com.rometools.rome.io.SyndFeedInput;
26 import com.rometools.rome.io.XmlReader;
27
28 import pnews.Article;
29 import pnews.Category;
30
31 public class ArticleProvider {
32         public final static ArticleProvider singleton = new ArticleProvider();
33         private static final Logger LOG = Logger.getLogger(ArticleProvider.class.getName());
34         private final Map<Category, List<Article>> articlesByCategory = new HashMap<>();
35         private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(2);
36         
37         private ArticleProvider() {      
38                 for (Category cat:Category.values())
39                         scheduler.scheduleAtFixedRate(new Refresher(cat), 2, 600, TimeUnit.SECONDS);
40         }
41         
42         private static SyndFeed getSyndFeed(String u) throws IllegalArgumentException, FeedException, MalformedURLException, IOException {
43                 XmlReader r;
44                 
45                 r = new XmlReader(new URL(u));
46                 
47                 return new SyndFeedInput().build(r);                
48         }
49         
50         private static Map<Category, String[]> getFeeds() {
51                 Map<Category, String[]> result;
52                 
53                 result = new HashMap<>();
54                 
55                 result.put(Category.TOP,
56                            new String[] {
57                                            "http://www.francetvinfo.fr/titres.rss",
58                                            "http://www.rfi.fr/general/rss",
59                                            "http://www.cnews.fr/rss/une",
60                                            "http://www.ladepeche.fr/rss/a-la-une.rss",
61                                            "https://www.franceinter.fr/rss/a-la-une.xml",
62                                            "https://www.francebleu.fr/rss/a-la-une.xml",
63                                            "http://www.bfmtv.com/rss/info/flux-rss/flux-toutes-les-actualites/"
64                            });
65                 
66                 result.put(Category.SPORT,
67                                 new String[] { "http://www.france24.com/fr/sports/rss" });
68                 
69                 result.put(Category.FRANCE,
70                                 new String[] { "http://www.france24.com/fr/france/rss",
71                                                "http://www.rfi.fr/france/rss"});
72                 
73                 result.put(Category.EUROPE,
74                                 new String[] { "http://www.france24.com/fr/europe/rss" });
75
76                 result.put(Category.MONDE, 
77                            new String[] { "http://www.france24.com/fr/actualites/rss" });                                           
78
79                 
80                 result.put(Category.ECO,
81                                 new String[] { "http://www.france24.com/fr/economie/rss",
82                                                "http://www.rfi.fr/economie/rss" });
83                 
84                 result.put(Category.ESSONNE,
85                                 new String[] { "http://www.tourisme-essonne.com/rss/actus/",
86                                                "http://www.ville-palaiseau.fr/rss/actualites.htm" });
87                 
88                 result.put(Category.PEOPLE,
89                                 new String[] { "http://www.premiere.fr/rss/actu-live",
90                                                "http://www.purepeople.com/rss/news_t0.xml"                                               
91                 });
92                 
93                 result.put(Category.TECHNOLOGIE,
94                                 new String[] { "http://feeds.feedburner.com/lesnumeriques/news",
95                                                "http://www.zdnet.fr/feeds/rss/actualites/"});
96                 
97                 return result;
98         }
99         
100         private List<Article> getArticlesForUpdate(Category cat) {
101                 List<Article> result;
102                 
103                 synchronized (articlesByCategory) {
104                         result = articlesByCategory.get(cat);
105                         if (result == null) {
106                                 result = new ArrayList<>();
107                                 articlesByCategory.put(cat, result);
108                         }
109                         return result;
110                 }                
111         }
112         
113         private boolean exists(String articleLink, List<Article> articles) {
114                 synchronized (articles) {
115                         for (Article a: articles)
116                                 if (a.link.equals(articleLink))
117                                         return true;
118                 }
119                 return false;
120         }
121         
122         private static Article toArticle(String link, SyndEntry entry, SyndFeed feed) {
123                 String desc, title, thumbnail, feedTitle, str;
124                 Date date;
125                 
126                 feedTitle = feed.getTitle();
127                 if (feedTitle != null) {
128                         feedTitle = feedTitle.trim();
129                 }
130                 
131                 thumbnail = null;
132                 for (SyndEnclosure e: entry.getEnclosures()) {
133                         if (e.getType().startsWith("image/"))
134                                 thumbnail = e.getUrl();    
135                         break;
136                 }
137                 
138                 if (thumbnail == null && feed.getImage() != null)
139                         thumbnail = feed.getImage().getUrl();
140                              
141                 
142                 title = entry.getTitle().trim();
143                 
144                 if (entry.getDescription() != null) {
145                         str = entry.getDescription().getValue();
146                         desc = Jsoup.parse(str).text();
147                 } else {       
148                         desc = null;
149                         LOG.severe("No description for " + feedTitle + " - " + title);
150                 }
151                 
152                 date = entry.getPublishedDate();
153                 if (date == null)
154                         date = entry.getUpdatedDate();
155                 if (date == null)
156                         LOG.severe("The article " + feedTitle + " - " + title + " does not have a date");
157                                      
158                 return new Article(link, title, desc, thumbnail, date, feedTitle);
159         }
160         
161         private void addArticles(Category cat, SyndFeed feed) {
162                 String feedTitle;
163                 List<Article> articles;
164                 Article a;
165                 
166                 feedTitle = feed.getTitle().trim();
167                 
168                 LOG.info("addArticles " + cat.getId() + " " + feedTitle + " number of articles: " + feed.getEntries().size());
169                 
170                 for (SyndEntry entry: feed.getEntries()) {
171                         String link = entry.getLink().trim();
172                         articles = getArticlesForUpdate(cat);
173                         if (exists(link, articles)) {
174                                 LOG.fine("addArticles " + link + " is already present");
175                                 continue ;
176                         }
177                         
178                         a = ArticleStore.singleton.getArticle(link, ()->toArticle(link, entry, feed));
179                         
180                         synchronized (articles) {
181                                 articles.add(a);
182
183                                 Collections.sort(articles, new Comparator<Article>() {
184                                         @Override
185                                         public int compare(Article o1, Article o2) {
186                                                 if (o1.publicationDate == o2.publicationDate)
187                                                         return 0;
188                                                 if (o1.publicationDate == null)
189                                                         return 1;
190                                                 if (o2.publicationDate == null)
191                                                         return -1;
192                                                 return o2.publicationDate.compareTo(o1.publicationDate);
193                                         }
194                                 });
195                         }
196                 }          
197                 
198                 LOG.info("addArticles done " + cat.getId());
199         }
200              
201         private void retrieveArticles(Category cat) throws IllegalArgumentException, MalformedURLException, FeedException, IOException {
202                 String[] feeds;
203                 
204                 feeds = getFeeds().get(cat);
205                 
206                 if (feeds != null)
207                         for (String str: feeds)
208                                 try {
209                                         addArticles(cat, getSyndFeed(str));
210                                 } catch (Throwable e) {
211                                         LOG.log(Level.SEVERE,
212                                                 "retrieveArticles failure " + cat.getId() + " " + str,
213                                                 e);
214                                 }
215                 else
216                         LOG.severe("No feed for category " + cat);
217         }
218         
219         /**
220          * Returns a copy.
221          */
222         public List<Article> getArticles(Category cat)
223                         throws IllegalArgumentException, MalformedURLException, FeedException, IOException {
224                 List<Article> articles;
225                 
226                 synchronized (articlesByCategory) {
227                         articles = getArticlesForUpdate(cat);
228                 }
229                 
230                 synchronized (articles) {
231                         return new ArrayList<>(articles);
232                 }
233         }
234         
235         private class Refresher implements Runnable {
236                 private final Category category;
237                 
238                 public Refresher(Category category) {
239                         this.category = category;
240                 }
241                 
242                 @Override
243                 public void run() {                       
244                         LOG.info("refresher "+ category.getId());
245                         
246                         try {
247                                 retrieveArticles(category);
248                         } catch (IllegalArgumentException | FeedException | IOException e) {
249                                 LOG.log(Level.SEVERE, "refresher failure", e);
250                         }                        
251                         
252                         LOG.info("refresher "+ category.getId() + " done");
253                 }                
254         }
255 }