Merge branch 'release-0.7.3'
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneDownloader.java
1 /*
2  * Sone - SoneDownloader.java - Copyright © 2010 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.core;
19
20 import java.io.InputStream;
21 import java.net.MalformedURLException;
22 import java.util.ArrayList;
23 import java.util.HashSet;
24 import java.util.List;
25 import java.util.Set;
26 import java.util.logging.Level;
27 import java.util.logging.Logger;
28
29 import net.pterodactylus.sone.core.Core.SoneStatus;
30 import net.pterodactylus.sone.data.Album;
31 import net.pterodactylus.sone.data.Client;
32 import net.pterodactylus.sone.data.Image;
33 import net.pterodactylus.sone.data.Post;
34 import net.pterodactylus.sone.data.PostReply;
35 import net.pterodactylus.sone.data.Profile;
36 import net.pterodactylus.sone.data.Sone;
37 import net.pterodactylus.util.collection.Pair;
38 import net.pterodactylus.util.io.Closer;
39 import net.pterodactylus.util.logging.Logging;
40 import net.pterodactylus.util.number.Numbers;
41 import net.pterodactylus.util.service.AbstractService;
42 import net.pterodactylus.util.xml.SimpleXML;
43 import net.pterodactylus.util.xml.XML;
44
45 import org.w3c.dom.Document;
46
47 import freenet.client.FetchResult;
48 import freenet.keys.FreenetURI;
49 import freenet.support.api.Bucket;
50
51 /**
52  * The Sone downloader is responsible for download Sones as they are updated.
53  *
54  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
55  */
56 public class SoneDownloader extends AbstractService {
57
58         /** The logger. */
59         private static final Logger logger = Logging.getLogger(SoneDownloader.class);
60
61         /** The maximum protocol version. */
62         private static final int MAX_PROTOCOL_VERSION = 0;
63
64         /** The core. */
65         private final Core core;
66
67         /** The Freenet interface. */
68         private final FreenetInterface freenetInterface;
69
70         /** The sones to update. */
71         private final Set<Sone> sones = new HashSet<Sone>();
72
73         /**
74          * Creates a new Sone downloader.
75          *
76          * @param core
77          *            The core
78          * @param freenetInterface
79          *            The Freenet interface
80          */
81         public SoneDownloader(Core core, FreenetInterface freenetInterface) {
82                 super("Sone Downloader", false);
83                 this.core = core;
84                 this.freenetInterface = freenetInterface;
85         }
86
87         //
88         // ACTIONS
89         //
90
91         /**
92          * Adds the given Sone to the set of Sones that will be watched for updates.
93          *
94          * @param sone
95          *            The Sone to add
96          */
97         public void addSone(Sone sone) {
98                 if (!sones.add(sone)) {
99                         freenetInterface.unregisterUsk(sone);
100                 }
101                 freenetInterface.registerUsk(sone, this);
102         }
103
104         /**
105          * Removes the given Sone from the downloader.
106          *
107          * @param sone
108          *            The Sone to stop watching
109          */
110         public void removeSone(Sone sone) {
111                 if (sones.remove(sone)) {
112                         freenetInterface.unregisterUsk(sone);
113                 }
114         }
115
116         /**
117          * Fetches the updated Sone. This method is a callback method for
118          * {@link FreenetInterface#registerUsk(Sone, SoneDownloader)}.
119          *
120          * @param sone
121          *            The Sone to fetch
122          */
123         public void fetchSone(Sone sone) {
124                 fetchSone(sone, sone.getRequestUri().sskForUSK());
125         }
126
127         /**
128          * Fetches the updated Sone. This method can be used to fetch a Sone from a
129          * specific URI.
130          *
131          * @param sone
132          *            The Sone to fetch
133          * @param soneUri
134          *            The URI to fetch the Sone from
135          */
136         public void fetchSone(Sone sone, FreenetURI soneUri) {
137                 fetchSone(sone, soneUri, false);
138         }
139
140         /**
141          * Fetches the Sone from the given URI.
142          *
143          * @param sone
144          *            The Sone to fetch
145          * @param soneUri
146          *            The URI of the Sone to fetch
147          * @param fetchOnly
148          *            {@code true} to only fetch and parse the Sone, {@code false}
149          *            to {@link Core#updateSone(Sone) update} it in the core
150          * @return The downloaded Sone, or {@code null} if the Sone could not be
151          *         downloaded
152          */
153         public Sone fetchSone(Sone sone, FreenetURI soneUri, boolean fetchOnly) {
154                 logger.log(Level.FINE, "Starting fetch for Sone “%s” from %s…", new Object[] { sone, soneUri });
155                 FreenetURI requestUri = soneUri.setMetaString(new String[] { "sone.xml" });
156                 core.setSoneStatus(sone, SoneStatus.downloading);
157                 try {
158                         Pair<FreenetURI, FetchResult> fetchResults = freenetInterface.fetchUri(requestUri);
159                         if (fetchResults == null) {
160                                 /* TODO - mark Sone as bad. */
161                                 return null;
162                         }
163                         logger.log(Level.FINEST, "Got %d bytes back.", fetchResults.getRight().size());
164                         Sone parsedSone = parseSone(sone, fetchResults.getRight(), fetchResults.getLeft());
165                         if (parsedSone != null) {
166                                 if (!fetchOnly) {
167                                         core.updateSone(parsedSone);
168                                         addSone(parsedSone);
169                                 }
170                         }
171                         return parsedSone;
172                 } finally {
173                         core.setSoneStatus(sone, (sone.getTime() == 0) ? SoneStatus.unknown : SoneStatus.idle);
174                 }
175         }
176
177         /**
178          * Parses a Sone from a fetch result.
179          *
180          * @param originalSone
181          *            The sone to parse, or {@code null} if the Sone is yet unknown
182          * @param fetchResult
183          *            The fetch result
184          * @param requestUri
185          *            The requested URI
186          * @return The parsed Sone, or {@code null} if the Sone could not be parsed
187          */
188         public Sone parseSone(Sone originalSone, FetchResult fetchResult, FreenetURI requestUri) {
189                 logger.log(Level.FINEST, "Parsing FetchResult (%d bytes, %s) for %s…", new Object[] { fetchResult.size(), fetchResult.getMimeType(), originalSone });
190                 Bucket soneBucket = fetchResult.asBucket();
191                 InputStream soneInputStream = null;
192                 try {
193                         soneInputStream = soneBucket.getInputStream();
194                         Sone parsedSone = parseSone(originalSone, soneInputStream);
195                         if (parsedSone != null) {
196                                 parsedSone.setLatestEdition(requestUri.getEdition());
197                                 if (requestUri.getKeyType().equals("USK")) {
198                                         parsedSone.setRequestUri(requestUri.setMetaString(new String[0]));
199                                 } else {
200                                         parsedSone.setRequestUri(requestUri.setKeyType("USK").setDocName("Sone").setMetaString(new String[0]));
201                                 }
202                         }
203                         return parsedSone;
204                 } catch (Exception e1) {
205                         logger.log(Level.WARNING, "Could not parse Sone from " + requestUri + "!", e1);
206                 } finally {
207                         Closer.close(soneInputStream);
208                         soneBucket.free();
209                 }
210                 return null;
211         }
212
213         /**
214          * Parses a Sone from the given input stream and creates a new Sone from the
215          * parsed data.
216          *
217          * @param originalSone
218          *            The Sone to update
219          * @param soneInputStream
220          *            The input stream to parse the Sone from
221          * @return The parsed Sone
222          * @throws SoneException
223          *             if a parse error occurs, or the protocol is invalid
224          */
225         public Sone parseSone(Sone originalSone, InputStream soneInputStream) throws SoneException {
226                 /* TODO - impose a size limit? */
227
228                 Document document;
229                 /* XML parsing is not thread-safe. */
230                 synchronized (this) {
231                         document = XML.transformToDocument(soneInputStream);
232                 }
233                 if (document == null) {
234                         /* TODO - mark Sone as bad. */
235                         logger.log(Level.WARNING, "Could not parse XML for Sone %s!", new Object[] { originalSone });
236                         return null;
237                 }
238
239                 Sone sone = new Sone(originalSone.getId()).setIdentity(originalSone.getIdentity());
240
241                 SimpleXML soneXml;
242                 try {
243                         soneXml = SimpleXML.fromDocument(document);
244                 } catch (NullPointerException npe1) {
245                         /* for some reason, invalid XML can cause NPEs. */
246                         logger.log(Level.WARNING, "XML for Sone " + sone + " can not be parsed!", npe1);
247                         return null;
248                 }
249
250                 Integer protocolVersion = null;
251                 String soneProtocolVersion = soneXml.getValue("protocol-version", null);
252                 if (soneProtocolVersion != null) {
253                         protocolVersion = Numbers.safeParseInteger(soneProtocolVersion);
254                 }
255                 if (protocolVersion == null) {
256                         logger.log(Level.INFO, "No protocol version found, assuming 0.");
257                         protocolVersion = 0;
258                 }
259
260                 if (protocolVersion < 0) {
261                         logger.log(Level.WARNING, "Invalid protocol version: " + protocolVersion + "! Not parsing Sone.");
262                         return null;
263                 }
264
265                 /* check for valid versions. */
266                 if (protocolVersion > MAX_PROTOCOL_VERSION) {
267                         logger.log(Level.WARNING, "Unknown protocol version: " + protocolVersion + "! Not parsing Sone.");
268                         return null;
269                 }
270
271                 String soneTime = soneXml.getValue("time", null);
272                 if (soneTime == null) {
273                         /* TODO - mark Sone as bad. */
274                         logger.log(Level.WARNING, "Downloaded time for Sone %s was null!", new Object[] { sone });
275                         return null;
276                 }
277                 try {
278                         sone.setTime(Long.parseLong(soneTime));
279                 } catch (NumberFormatException nfe1) {
280                         /* TODO - mark Sone as bad. */
281                         logger.log(Level.WARNING, "Downloaded Sone %s with invalid time: %s", new Object[] { sone, soneTime });
282                         return null;
283                 }
284
285                 SimpleXML clientXml = soneXml.getNode("client");
286                 if (clientXml != null) {
287                         String clientName = clientXml.getValue("name", null);
288                         String clientVersion = clientXml.getValue("version", null);
289                         if ((clientName == null) || (clientVersion == null)) {
290                                 logger.log(Level.WARNING, "Download Sone %s with client XML but missing name or version!", sone);
291                                 return null;
292                         }
293                         sone.setClient(new Client(clientName, clientVersion));
294                 }
295
296                 String soneRequestUri = soneXml.getValue("request-uri", null);
297                 if (soneRequestUri != null) {
298                         try {
299                                 sone.setRequestUri(new FreenetURI(soneRequestUri));
300                         } catch (MalformedURLException mue1) {
301                                 /* TODO - mark Sone as bad. */
302                                 logger.log(Level.WARNING, "Downloaded Sone " + sone + " has invalid request URI: " + soneRequestUri, mue1);
303                                 return null;
304                         }
305                 }
306
307                 String soneInsertUri = soneXml.getValue("insert-uri", null);
308                 if ((soneInsertUri != null) && (sone.getInsertUri() == null)) {
309                         try {
310                                 sone.setInsertUri(new FreenetURI(soneInsertUri));
311                                 sone.setLatestEdition(Math.max(sone.getRequestUri().getEdition(), sone.getInsertUri().getEdition()));
312                         } catch (MalformedURLException mue1) {
313                                 /* TODO - mark Sone as bad. */
314                                 logger.log(Level.WARNING, "Downloaded Sone " + sone + " has invalid insert URI: " + soneInsertUri, mue1);
315                                 return null;
316                         }
317                 }
318
319                 SimpleXML profileXml = soneXml.getNode("profile");
320                 if (profileXml == null) {
321                         /* TODO - mark Sone as bad. */
322                         logger.log(Level.WARNING, "Downloaded Sone %s has no profile!", new Object[] { sone });
323                         return null;
324                 }
325
326                 /* parse profile. */
327                 String profileFirstName = profileXml.getValue("first-name", null);
328                 String profileMiddleName = profileXml.getValue("middle-name", null);
329                 String profileLastName = profileXml.getValue("last-name", null);
330                 Integer profileBirthDay = Numbers.safeParseInteger(profileXml.getValue("birth-day", null));
331                 Integer profileBirthMonth = Numbers.safeParseInteger(profileXml.getValue("birth-month", null));
332                 Integer profileBirthYear = Numbers.safeParseInteger(profileXml.getValue("birth-year", null));
333                 Profile profile = new Profile().setFirstName(profileFirstName).setMiddleName(profileMiddleName).setLastName(profileLastName);
334                 profile.setBirthDay(profileBirthDay).setBirthMonth(profileBirthMonth).setBirthYear(profileBirthYear);
335
336                 /* parse profile fields. */
337                 SimpleXML profileFieldsXml = profileXml.getNode("fields");
338                 if (profileFieldsXml != null) {
339                         for (SimpleXML fieldXml : profileFieldsXml.getNodes("field")) {
340                                 String fieldName = fieldXml.getValue("field-name", null);
341                                 String fieldValue = fieldXml.getValue("field-value", "");
342                                 if (fieldName == null) {
343                                         logger.log(Level.WARNING, "Downloaded profile field for Sone %s with missing data! Name: %s, Value: %s", new Object[] { sone, fieldName, fieldValue });
344                                         return null;
345                                 }
346                                 try {
347                                         profile.addField(fieldName).setValue(fieldValue);
348                                 } catch (IllegalArgumentException iae1) {
349                                         logger.log(Level.WARNING, "Duplicate field: " + fieldName, iae1);
350                                         return null;
351                                 }
352                         }
353                 }
354
355                 /* parse posts. */
356                 SimpleXML postsXml = soneXml.getNode("posts");
357                 Set<Post> posts = new HashSet<Post>();
358                 if (postsXml == null) {
359                         /* TODO - mark Sone as bad. */
360                         logger.log(Level.WARNING, "Downloaded Sone %s has no posts!", new Object[] { sone });
361                 } else {
362                         for (SimpleXML postXml : postsXml.getNodes("post")) {
363                                 String postId = postXml.getValue("id", null);
364                                 String postRecipientId = postXml.getValue("recipient", null);
365                                 String postTime = postXml.getValue("time", null);
366                                 String postText = postXml.getValue("text", null);
367                                 if ((postId == null) || (postTime == null) || (postText == null)) {
368                                         /* TODO - mark Sone as bad. */
369                                         logger.log(Level.WARNING, "Downloaded post for Sone %s with missing data! ID: %s, Time: %s, Text: %s", new Object[] { sone, postId, postTime, postText });
370                                         return null;
371                                 }
372                                 try {
373                                         Post post = core.getPost(postId).setSone(sone).setTime(Long.parseLong(postTime)).setText(postText);
374                                         if ((postRecipientId != null) && (postRecipientId.length() == 43)) {
375                                                 post.setRecipient(core.getSone(postRecipientId));
376                                         }
377                                         posts.add(post);
378                                 } catch (NumberFormatException nfe1) {
379                                         /* TODO - mark Sone as bad. */
380                                         logger.log(Level.WARNING, "Downloaded post for Sone %s with invalid time: %s", new Object[] { sone, postTime });
381                                         return null;
382                                 }
383                         }
384                 }
385
386                 /* parse replies. */
387                 SimpleXML repliesXml = soneXml.getNode("replies");
388                 Set<PostReply> replies = new HashSet<PostReply>();
389                 if (repliesXml == null) {
390                         /* TODO - mark Sone as bad. */
391                         logger.log(Level.WARNING, "Downloaded Sone %s has no replies!", new Object[] { sone });
392                 } else {
393                         for (SimpleXML replyXml : repliesXml.getNodes("reply")) {
394                                 String replyId = replyXml.getValue("id", null);
395                                 String replyPostId = replyXml.getValue("post-id", null);
396                                 String replyTime = replyXml.getValue("time", null);
397                                 String replyText = replyXml.getValue("text", null);
398                                 if ((replyId == null) || (replyPostId == null) || (replyTime == null) || (replyText == null)) {
399                                         /* TODO - mark Sone as bad. */
400                                         logger.log(Level.WARNING, "Downloaded reply for Sone %s with missing data! ID: %s, Post: %s, Time: %s, Text: %s", new Object[] { sone, replyId, replyPostId, replyTime, replyText });
401                                         return null;
402                                 }
403                                 try {
404                                         replies.add(core.getReply(replyId).setSone(sone).setPost(core.getPost(replyPostId)).setTime(Long.parseLong(replyTime)).setText(replyText));
405                                 } catch (NumberFormatException nfe1) {
406                                         /* TODO - mark Sone as bad. */
407                                         logger.log(Level.WARNING, "Downloaded reply for Sone %s with invalid time: %s", new Object[] { sone, replyTime });
408                                         return null;
409                                 }
410                         }
411                 }
412
413                 /* parse liked post IDs. */
414                 SimpleXML likePostIdsXml = soneXml.getNode("post-likes");
415                 Set<String> likedPostIds = new HashSet<String>();
416                 if (likePostIdsXml == null) {
417                         /* TODO - mark Sone as bad. */
418                         logger.log(Level.WARNING, "Downloaded Sone %s has no post likes!", new Object[] { sone });
419                 } else {
420                         for (SimpleXML likedPostIdXml : likePostIdsXml.getNodes("post-like")) {
421                                 String postId = likedPostIdXml.getValue();
422                                 likedPostIds.add(postId);
423                         }
424                 }
425
426                 /* parse liked reply IDs. */
427                 SimpleXML likeReplyIdsXml = soneXml.getNode("reply-likes");
428                 Set<String> likedReplyIds = new HashSet<String>();
429                 if (likeReplyIdsXml == null) {
430                         /* TODO - mark Sone as bad. */
431                         logger.log(Level.WARNING, "Downloaded Sone %s has no reply likes!", new Object[] { sone });
432                 } else {
433                         for (SimpleXML likedReplyIdXml : likeReplyIdsXml.getNodes("reply-like")) {
434                                 String replyId = likedReplyIdXml.getValue();
435                                 likedReplyIds.add(replyId);
436                         }
437                 }
438
439                 /* parse albums. */
440                 SimpleXML albumsXml = soneXml.getNode("albums");
441                 List<Album> topLevelAlbums = new ArrayList<Album>();
442                 if (albumsXml != null) {
443                         for (SimpleXML albumXml : albumsXml.getNodes("album")) {
444                                 String id = albumXml.getValue("id", null);
445                                 String parentId = albumXml.getValue("parent", null);
446                                 String title = albumXml.getValue("title", null);
447                                 String description = albumXml.getValue("description", "");
448                                 String albumImageId = albumXml.getValue("album-image", null);
449                                 if ((id == null) || (title == null) || (description == null)) {
450                                         logger.log(Level.WARNING, "Downloaded Sone %s contains invalid album!", new Object[] { sone });
451                                         return null;
452                                 }
453                                 Album parent = null;
454                                 if (parentId != null) {
455                                         parent = core.getAlbum(parentId, false);
456                                         if (parent == null) {
457                                                 logger.log(Level.WARNING, "Downloaded Sone %s has album with invalid parent!", new Object[] { sone });
458                                                 return null;
459                                         }
460                                 }
461                                 Album album = core.getAlbum(id).setSone(sone).setTitle(title).setDescription(description);
462                                 if (parent != null) {
463                                         parent.addAlbum(album);
464                                 } else {
465                                         topLevelAlbums.add(album);
466                                 }
467                                 SimpleXML imagesXml = albumXml.getNode("images");
468                                 if (imagesXml != null) {
469                                         for (SimpleXML imageXml : imagesXml.getNodes("image")) {
470                                                 String imageId = imageXml.getValue("id", null);
471                                                 String imageCreationTimeString = imageXml.getValue("creation-time", null);
472                                                 String imageKey = imageXml.getValue("key", null);
473                                                 String imageTitle = imageXml.getValue("title", null);
474                                                 String imageDescription = imageXml.getValue("description", "");
475                                                 String imageWidthString = imageXml.getValue("width", null);
476                                                 String imageHeightString = imageXml.getValue("height", null);
477                                                 if ((imageId == null) || (imageCreationTimeString == null) || (imageKey == null) || (imageTitle == null) || (imageWidthString == null) || (imageHeightString == null)) {
478                                                         logger.log(Level.WARNING, "Downloaded Sone %s contains invalid images!", new Object[] { sone });
479                                                         return null;
480                                                 }
481                                                 long creationTime = Numbers.safeParseLong(imageCreationTimeString, 0L);
482                                                 int imageWidth = Numbers.safeParseInteger(imageWidthString, 0);
483                                                 int imageHeight = Numbers.safeParseInteger(imageHeightString, 0);
484                                                 if ((imageWidth < 1) || (imageHeight < 1)) {
485                                                         logger.log(Level.WARNING, "Downloaded Sone %s contains image %s with invalid dimensions (%s, %s)!", new Object[] { sone, imageId, imageWidthString, imageHeightString });
486                                                         return null;
487                                                 }
488                                                 Image image = core.getImage(imageId).setSone(sone).setKey(imageKey).setCreationTime(creationTime);
489                                                 image.setTitle(imageTitle).setDescription(imageDescription);
490                                                 image.setWidth(imageWidth).setHeight(imageHeight);
491                                                 album.addImage(image);
492                                         }
493                                 }
494                                 album.setAlbumImage(albumImageId);
495                         }
496                 }
497
498                 /* okay, apparently everything was parsed correctly. Now import. */
499                 /* atomic setter operation on the Sone. */
500                 synchronized (sone) {
501                         sone.setProfile(profile);
502                         sone.setPosts(posts);
503                         sone.setReplies(replies);
504                         sone.setLikePostIds(likedPostIds);
505                         sone.setLikeReplyIds(likedReplyIds);
506                         sone.setAlbums(topLevelAlbums);
507                 }
508
509                 return sone;
510         }
511
512         //
513         // SERVICE METHODS
514         //
515
516         /**
517          * {@inheritDoc}
518          */
519         @Override
520         protected void serviceStop() {
521                 for (Sone sone : sones) {
522                         freenetInterface.unregisterUsk(sone);
523                 }
524         }
525
526 }