added openlp support
[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 import pnews.EntityStat;
31 import pnews.Feed;
32 import pnews.NER;
33
34 public class ArticleProvider {
35         private static final String CLASS_NAME = ArticleProvider.class.getName();
36         private static final Logger LOG = Logger.getLogger(CLASS_NAME);
37         private final Map<Category, List<Article>> articlesByCategory = new HashMap<>();
38         private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(Runtime.getRuntime().availableProcessors());
39         private final Config config;
40         
41         public ArticleProvider(Config config) {
42                 this.config = config;
43                 for (Category cat: config.getCategories())
44                         scheduler.scheduleAtFixedRate(new Refresher(cat), 2, 600, TimeUnit.SECONDS);
45         }
46         
47         private static SyndFeed getSyndFeed(String u) throws IllegalArgumentException, FeedException, MalformedURLException, IOException {
48                 XmlReader r;
49                 
50                 r = new XmlReader(new URL(u));
51                 
52                 return new SyndFeedInput().build(r);                
53         }
54         
55         private List<Article> getArticlesForUpdate(Category cat) {
56                 List<Article> result;
57                 
58                 synchronized (articlesByCategory) {
59                         result = articlesByCategory.get(cat);
60                         if (result == null) {
61                                 result = new ArrayList<>();
62                                 articlesByCategory.put(cat, result);
63                         }
64                         return result;
65                 }                
66         }
67         
68         private boolean exists(String articleLink, List<Article> articles) {
69                 synchronized (articles) {
70                         for (Article a: articles)
71                                 if (a.link.equals(articleLink))
72                                         return true;
73                 }
74                 return false;
75         }
76         
77         private static Article toArticle(String link, SyndEntry entry, SyndFeed feed, String lang) {
78                 String desc, title, thumbnail, feedTitle, str;
79                 Date date;
80                 List<String> entities;
81                 
82                 feedTitle = feed.getTitle();
83                 if (feedTitle != null) {
84                         feedTitle = feedTitle.trim();
85                 }
86                 
87                 thumbnail = null;
88                 for (SyndEnclosure e: entry.getEnclosures()) {
89                         if (e.getType().startsWith("image/"))
90                                 thumbnail = e.getUrl();    
91                         break;
92                 }
93                 
94                 if (thumbnail == null && feed.getImage() != null)
95                         thumbnail = feed.getImage().getUrl();
96                              
97                 
98                 title = entry.getTitle().trim();
99                 
100                 if (entry.getDescription() != null) {
101                         str = entry.getDescription().getValue();
102                         desc = Jsoup.parse(str).text();
103                 } else {       
104                         desc = null;
105                         LOG.severe("No description for " + feedTitle + " - " + title);
106                 }
107                 
108                 date = entry.getPublishedDate();
109                 if (date == null)
110                         date = entry.getUpdatedDate();
111                 if (date == null)
112                         LOG.severe("The article " + feedTitle + " - " + title + " does not have a date");
113                                      
114                 
115                 entities = new ArrayList<>();
116                 if (desc != null && lang.equals("en"))
117                         try {
118                                 NER.classify(title, entities);
119                                 NER.classify(desc, entities);
120                         } catch (ClassCastException | ClassNotFoundException | IOException e1) {
121                                 LOG.log(Level.SEVERE, "Cannot classify " + feedTitle, e1);                         
122                         }
123                 
124                 return new Article(link, title, desc, thumbnail, date, feedTitle, entities.toArray(new String[0]));
125         }
126         
127         private void addArticles(Category cat, SyndFeed feed) {
128                 String feedTitle;
129                 List<Article> articles;
130                 Article a;
131                 
132                 feedTitle = feed.getTitle().trim();
133                 
134                 LOG.info("addArticles " + cat.getLabel() + " " + feedTitle + " number of articles: " + feed.getEntries().size());
135                 
136                 for (SyndEntry entry: feed.getEntries()) {
137                         String link = entry.getLink().trim();
138                         articles = getArticlesForUpdate(cat);
139                         if (exists(link, articles)) {
140                                 LOG.fine("addArticles " + link + " is already present");
141                                 continue ;
142                         }
143                         
144                         a = ArticleStore.singleton.getArticle(link, ()->toArticle(link, entry, feed, cat.getLanguage()));
145                         
146                         synchronized (articles) {
147                                 articles.add(a);
148
149                                 Collections.sort(articles, new Comparator<Article>() {
150                                         @Override
151                                         public int compare(Article o1, Article o2) {
152                                                 if (o1.publicationDate == o2.publicationDate)
153                                                         return 0;
154                                                 if (o1.publicationDate == null)
155                                                         return 1;
156                                                 if (o2.publicationDate == null)
157                                                         return -1;
158                                                 return o2.publicationDate.compareTo(o1.publicationDate);
159                                         }
160                                 });
161                         }
162                 }          
163                 
164                 LOG.info("addArticles done " + cat.getLabel());
165         }
166              
167         private void retrieveArticles(Category cat) throws IllegalArgumentException, MalformedURLException, FeedException, IOException {
168                 List<Feed> feeds;
169                 
170                 feeds = config.getFeedsByCategory().get(cat);
171                 
172                 if (feeds != null)
173                         for (Feed f: feeds)
174                                 try {
175                                         addArticles(cat, getSyndFeed(f.getURL()));
176                                 } catch (Throwable e) {
177                                         LOG.log(Level.SEVERE,
178                                                 "retrieveArticles failure " + cat.getLabel() + " " + f.toString(),
179                                                 e);
180                                 }
181                 else
182                         LOG.severe("No feed for category " + cat);
183         }
184         
185         /**
186          * Returns a copy.
187          */
188         public List<Article> getArticles(Category cat)
189                         throws IllegalArgumentException, MalformedURLException, FeedException, IOException {
190                 List<Article> articles;
191                 
192                 synchronized (articlesByCategory) {
193                         articles = getArticlesForUpdate(cat);
194                 }
195                 
196                 synchronized (articles) {
197                         return new ArrayList<>(articles);
198                 }
199         }
200         
201         public List<EntityStat> getEntityStats(Category cat) throws IllegalArgumentException, MalformedURLException, FeedException, IOException {
202                 List<Article> articles;
203                 Map<String, EntityStat> entities;
204                 final String FUNCTION_NAME = "getEntities";
205                 EntityStat s;
206                 List<EntityStat> stats;
207                 
208                 LOG.entering(CLASS_NAME, FUNCTION_NAME, cat);
209                 
210                 articles = getArticles(cat);
211                 
212                 entities = new HashMap<>();
213                 for (Article a: articles) 
214                         if (a.getEntities() != null) {
215                                 for (String e: a.getEntities()) {
216                                         s = entities.get(e);
217                                         if (s == null) {
218                                                 s = new EntityStat(e);
219                                                 entities.put(e,  s);
220                                         }
221                                         s.increment();
222                                 }                
223                         }
224                 
225                 stats = new ArrayList<>(entities.values());
226                 stats.sort(new Comparator<EntityStat>() {
227
228                         @Override
229                         public int compare(EntityStat o1, EntityStat o2) {
230                                 return Integer.compare(o2.getCount(), o1.getCount());
231                         }
232                         
233                 });
234                 
235                 LOG.exiting(CLASS_NAME, FUNCTION_NAME, stats);
236                 
237                 return stats;
238         }
239         
240         private class Refresher implements Runnable {
241                 private final Category category;
242                 
243                 public Refresher(Category category) {
244                         this.category = category;
245                 }
246                 
247                 @Override
248                 public void run() {                       
249                         LOG.info("refresher "+ category.getLabel());
250                         
251                         try {
252                                 retrieveArticles(category);
253                         } catch (IllegalArgumentException | FeedException | IOException e) {
254                                 LOG.log(Level.SEVERE, "refresher failure", e);
255                         }                        
256                         
257                         LOG.info("refresher "+ category.getLabel() + " done");
258                 }                
259         }
260 }