Convert the URI a Sone was downloaded from to USK before setting it.
[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.IOException;
21 import java.io.InputStream;
22 import java.net.MalformedURLException;
23 import java.util.HashSet;
24 import java.util.Set;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
27
28 import net.pterodactylus.sone.core.Core.SoneStatus;
29 import net.pterodactylus.sone.data.Client;
30 import net.pterodactylus.sone.data.Post;
31 import net.pterodactylus.sone.data.Profile;
32 import net.pterodactylus.sone.data.Reply;
33 import net.pterodactylus.sone.data.Sone;
34 import net.pterodactylus.util.collection.Pair;
35 import net.pterodactylus.util.io.Closer;
36 import net.pterodactylus.util.logging.Logging;
37 import net.pterodactylus.util.number.Numbers;
38 import net.pterodactylus.util.service.AbstractService;
39 import net.pterodactylus.util.xml.SimpleXML;
40 import net.pterodactylus.util.xml.XML;
41
42 import org.w3c.dom.Document;
43
44 import freenet.client.FetchResult;
45 import freenet.keys.FreenetURI;
46 import freenet.support.api.Bucket;
47
48 /**
49  * The Sone downloader is responsible for download Sones as they are updated.
50  *
51  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
52  */
53 public class SoneDownloader extends AbstractService {
54
55         /** The logger. */
56         private static final Logger logger = Logging.getLogger(SoneDownloader.class);
57
58         /** The core. */
59         private final Core core;
60
61         /** The Freenet interface. */
62         private final FreenetInterface freenetInterface;
63
64         /** The sones to update. */
65         private final Set<Sone> sones = new HashSet<Sone>();
66
67         /**
68          * Creates a new Sone downloader.
69          *
70          * @param core
71          *            The core
72          * @param freenetInterface
73          *            The Freenet interface
74          */
75         public SoneDownloader(Core core, FreenetInterface freenetInterface) {
76                 super("Sone Downloader", false);
77                 this.core = core;
78                 this.freenetInterface = freenetInterface;
79         }
80
81         //
82         // ACTIONS
83         //
84
85         /**
86          * Adds the given Sone to the set of Sones that will be watched for updates.
87          *
88          * @param sone
89          *            The Sone to add
90          */
91         public void addSone(Sone sone) {
92                 if (sones.add(sone)) {
93                         freenetInterface.registerUsk(sone, this);
94                 }
95         }
96
97         /**
98          * Removes the given Sone from the downloader.
99          *
100          * @param sone
101          *            The Sone to stop watching
102          */
103         public void removeSone(Sone sone) {
104                 if (sones.remove(sone)) {
105                         freenetInterface.unregisterUsk(sone);
106                 }
107         }
108
109         /**
110          * Fetches the updated Sone. This method is a callback method for
111          * {@link FreenetInterface#registerUsk(Sone, SoneDownloader)}.
112          *
113          * @param sone
114          *            The Sone to fetch
115          */
116         public void fetchSone(Sone sone) {
117                 if (core.getSoneStatus(sone) == SoneStatus.downloading) {
118                         return;
119                 }
120                 logger.log(Level.FINE, "Starting fetch for Sone “%s” from %s…", new Object[] { sone, sone.getRequestUri().setMetaString(new String[] { "sone.xml" }) });
121                 FreenetURI requestUri = sone.getRequestUri().setMetaString(new String[] { "sone.xml" });
122                 core.setSoneStatus(sone, SoneStatus.downloading);
123                 try {
124                         Pair<FreenetURI, FetchResult> fetchResults = freenetInterface.fetchUri(requestUri);
125                         if (fetchResults == null) {
126                                 /* TODO - mark Sone as bad. */
127                                 return;
128                         }
129                         logger.log(Level.FINEST, "Got %d bytes back.", fetchResults.getRight().size());
130                         Sone parsedSone = parseSone(sone, fetchResults.getRight(), fetchResults.getLeft());
131                         if (parsedSone != null) {
132                                 core.updateSone(parsedSone);
133                         }
134                 } finally {
135                         core.setSoneStatus(sone, (sone.getTime() == 0) ? SoneStatus.unknown : SoneStatus.idle);
136                 }
137         }
138
139         /**
140          * Parses a Sone from a fetch result.
141          *
142          * @param originalSone
143          *            The sone to parse, or {@code null} if the Sone is yet unknown
144          * @param fetchResult
145          *            The fetch result
146          * @param requestUri
147          *            The requested URI
148          * @return The parsed Sone, or {@code null} if the Sone could not be parsed
149          */
150         public Sone parseSone(Sone originalSone, FetchResult fetchResult, FreenetURI requestUri) {
151                 logger.log(Level.FINEST, "Parsing FetchResult (%d bytes, %s) for %s…", new Object[] { fetchResult.size(), fetchResult.getMimeType(), originalSone });
152                 Bucket soneBucket = fetchResult.asBucket();
153                 InputStream soneInputStream = null;
154                 try {
155                         soneInputStream = soneBucket.getInputStream();
156                         Sone parsedSone = parseSone(originalSone, soneInputStream);
157                         if (parsedSone != null) {
158                                 if (requestUri.getKeyType().equals("USK")) {
159                                         parsedSone.setRequestUri(requestUri.setMetaString(new String[0]));
160                                 } else {
161                                         parsedSone.setRequestUri(requestUri.setKeyType("USK").setDocName("Sone").setMetaString(new String[0]));
162                                 }
163                         }
164                         return parsedSone;
165                 } catch (IOException ioe1) {
166                         logger.log(Level.WARNING, "Could not parse Sone from " + requestUri + "!", ioe1);
167                 } finally {
168                         Closer.close(soneInputStream);
169                         soneBucket.free();
170                 }
171                 return null;
172         }
173
174         /**
175          * Parses a Sone from the given input stream and creates a new Sone from the
176          * parsed data.
177          *
178          * @param originalSone
179          *            The Sone to update
180          * @param soneInputStream
181          *            The input stream to parse the Sone from
182          * @return The parsed Sone
183          */
184         public Sone parseSone(Sone originalSone, InputStream soneInputStream) {
185                 /* TODO - impose a size limit? */
186
187                 Document document;
188                 /* XML parsing is not thread-safe. */
189                 synchronized (this) {
190                         document = XML.transformToDocument(soneInputStream);
191                 }
192                 if (document == null) {
193                         /* TODO - mark Sone as bad. */
194                         logger.log(Level.WARNING, "Could not parse XML for Sone %s!", new Object[] { originalSone });
195                         return null;
196                 }
197
198                 Sone sone = new Sone(originalSone.getId()).setIdentity(originalSone.getIdentity());
199
200                 SimpleXML soneXml;
201                 try {
202                         soneXml = SimpleXML.fromDocument(document);
203                 } catch (NullPointerException npe1) {
204                         /* for some reason, invalid XML can cause NPEs. */
205                         logger.log(Level.WARNING, "XML for Sone " + sone + " can not be parsed!", npe1);
206                         return null;
207                 }
208
209                 String soneTime = soneXml.getValue("time", null);
210                 if (soneTime == null) {
211                         /* TODO - mark Sone as bad. */
212                         logger.log(Level.WARNING, "Downloaded time for Sone %s was null!", new Object[] { sone });
213                         return null;
214                 }
215                 try {
216                         sone.setTime(Long.parseLong(soneTime));
217                 } catch (NumberFormatException nfe1) {
218                         /* TODO - mark Sone as bad. */
219                         logger.log(Level.WARNING, "Downloaded Sone %s with invalid time: %s", new Object[] { sone, soneTime });
220                         return null;
221                 }
222
223                 SimpleXML clientXml = soneXml.getNode("client");
224                 if (clientXml != null) {
225                         String clientName = clientXml.getValue("name", null);
226                         String clientVersion = clientXml.getValue("version", null);
227                         if ((clientName == null) || (clientVersion == null)) {
228                                 logger.log(Level.WARNING, "Download Sone %s with client XML but missing name or version!", sone);
229                                 return null;
230                         }
231                         sone.setClient(new Client(clientName, clientVersion));
232                 }
233
234                 String soneRequestUri = soneXml.getValue("request-uri", null);
235                 if (soneRequestUri != null) {
236                         try {
237                                 sone.setRequestUri(new FreenetURI(soneRequestUri));
238                         } catch (MalformedURLException mue1) {
239                                 /* TODO - mark Sone as bad. */
240                                 logger.log(Level.WARNING, "Downloaded Sone " + sone + " has invalid request URI: " + soneRequestUri, mue1);
241                                 return null;
242                         }
243                 }
244
245                 String soneInsertUri = soneXml.getValue("insert-uri", null);
246                 if ((soneInsertUri != null) && (sone.getInsertUri() == null)) {
247                         try {
248                                 sone.setInsertUri(new FreenetURI(soneInsertUri));
249                                 sone.setLatestEdition(Math.max(sone.getRequestUri().getSuggestedEdition(), sone.getInsertUri().getSuggestedEdition()));
250                         } catch (MalformedURLException mue1) {
251                                 /* TODO - mark Sone as bad. */
252                                 logger.log(Level.WARNING, "Downloaded Sone " + sone + " has invalid insert URI: " + soneInsertUri, mue1);
253                                 return null;
254                         }
255                 }
256
257                 SimpleXML profileXml = soneXml.getNode("profile");
258                 if (profileXml == null) {
259                         /* TODO - mark Sone as bad. */
260                         logger.log(Level.WARNING, "Downloaded Sone %s has no profile!", new Object[] { sone });
261                         return null;
262                 }
263
264                 /* parse profile. */
265                 String profileFirstName = profileXml.getValue("first-name", null);
266                 String profileMiddleName = profileXml.getValue("middle-name", null);
267                 String profileLastName = profileXml.getValue("last-name", null);
268                 Integer profileBirthDay = Numbers.safeParseInteger(profileXml.getValue("birth-day", null));
269                 Integer profileBirthMonth = Numbers.safeParseInteger(profileXml.getValue("birth-month", null));
270                 Integer profileBirthYear = Numbers.safeParseInteger(profileXml.getValue("birth-year", null));
271                 Profile profile = new Profile().setFirstName(profileFirstName).setMiddleName(profileMiddleName).setLastName(profileLastName);
272                 profile.setBirthDay(profileBirthDay).setBirthMonth(profileBirthMonth).setBirthYear(profileBirthYear);
273
274                 /* parse posts. */
275                 SimpleXML postsXml = soneXml.getNode("posts");
276                 Set<Post> posts = new HashSet<Post>();
277                 if (postsXml == null) {
278                         /* TODO - mark Sone as bad. */
279                         logger.log(Level.WARNING, "Downloaded Sone %s has no posts!", new Object[] { sone });
280                 } else {
281                         for (SimpleXML postXml : postsXml.getNodes("post")) {
282                                 String postId = postXml.getValue("id", null);
283                                 String postTime = postXml.getValue("time", null);
284                                 String postText = postXml.getValue("text", null);
285                                 if ((postId == null) || (postTime == null) || (postText == null)) {
286                                         /* TODO - mark Sone as bad. */
287                                         logger.log(Level.WARNING, "Downloaded post for Sone %s with missing data! ID: %s, Time: %s, Text: %s", new Object[] { sone, postId, postTime, postText });
288                                         return null;
289                                 }
290                                 try {
291                                         posts.add(core.getPost(postId).setSone(sone).setTime(Long.parseLong(postTime)).setText(postText));
292                                 } catch (NumberFormatException nfe1) {
293                                         /* TODO - mark Sone as bad. */
294                                         logger.log(Level.WARNING, "Downloaded post for Sone %s with invalid time: %s", new Object[] { sone, postTime });
295                                         return null;
296                                 }
297                         }
298                 }
299
300                 /* parse replies. */
301                 SimpleXML repliesXml = soneXml.getNode("replies");
302                 Set<Reply> replies = new HashSet<Reply>();
303                 if (repliesXml == null) {
304                         /* TODO - mark Sone as bad. */
305                         logger.log(Level.WARNING, "Downloaded Sone %s has no replies!", new Object[] { sone });
306                 } else {
307                         for (SimpleXML replyXml : repliesXml.getNodes("reply")) {
308                                 String replyId = replyXml.getValue("id", null);
309                                 String replyPostId = replyXml.getValue("post-id", null);
310                                 String replyTime = replyXml.getValue("time", null);
311                                 String replyText = replyXml.getValue("text", null);
312                                 if ((replyId == null) || (replyPostId == null) || (replyTime == null) || (replyText == null)) {
313                                         /* TODO - mark Sone as bad. */
314                                         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 });
315                                         return null;
316                                 }
317                                 try {
318                                         replies.add(core.getReply(replyId).setSone(sone).setPost(core.getPost(replyPostId)).setTime(Long.parseLong(replyTime)).setText(replyText));
319                                 } catch (NumberFormatException nfe1) {
320                                         /* TODO - mark Sone as bad. */
321                                         logger.log(Level.WARNING, "Downloaded reply for Sone %s with invalid time: %s", new Object[] { sone, replyTime });
322                                         return null;
323                                 }
324                         }
325                 }
326
327                 /* parse liked post IDs. */
328                 SimpleXML likePostIdsXml = soneXml.getNode("post-likes");
329                 Set<String> likedPostIds = new HashSet<String>();
330                 if (likePostIdsXml == null) {
331                         /* TODO - mark Sone as bad. */
332                         logger.log(Level.WARNING, "Downloaded Sone %s has no post likes!", new Object[] { sone });
333                 } else {
334                         for (SimpleXML likedPostIdXml : likePostIdsXml.getNodes("post-like")) {
335                                 String postId = likedPostIdXml.getValue();
336                                 likedPostIds.add(postId);
337                         }
338                 }
339
340                 /* parse liked reply IDs. */
341                 SimpleXML likeReplyIdsXml = soneXml.getNode("reply-likes");
342                 Set<String> likedReplyIds = new HashSet<String>();
343                 if (likeReplyIdsXml == null) {
344                         /* TODO - mark Sone as bad. */
345                         logger.log(Level.WARNING, "Downloaded Sone %s has no reply likes!", new Object[] { sone });
346                 } else {
347                         for (SimpleXML likedReplyIdXml : likeReplyIdsXml.getNodes("reply-like")) {
348                                 String replyId = likedReplyIdXml.getValue();
349                                 likedReplyIds.add(replyId);
350                         }
351                 }
352
353                 /* okay, apparently everything was parsed correctly. Now import. */
354                 /* atomic setter operation on the Sone. */
355                 synchronized (sone) {
356                         sone.setProfile(profile);
357                         sone.setPosts(posts);
358                         sone.setReplies(replies);
359                         sone.setLikePostIds(likedPostIds);
360                 }
361
362                 return sone;
363         }
364
365         //
366         // SERVICE METHODS
367         //
368
369         /**
370          * {@inheritDoc}
371          */
372         @Override
373         protected void serviceStop() {
374                 for (Sone sone : sones) {
375                         freenetInterface.unregisterUsk(sone);
376                 }
377         }
378
379 }