Add method to reload a known Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 16 Oct 2010 16:01:57 +0000 (18:01 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 16 Oct 2010 16:01:57 +0000 (18:01 +0200)
src/main/java/net/pterodactylus/sone/core/Core.java

index b0dadbe..d098456 100644 (file)
@@ -350,6 +350,28 @@ public class Core extends AbstractService {
        }
 
        /**
+        * Loads and updates the given Sone.
+        *
+        * @param sone
+        *            The Sone to load
+        */
+       public void loadSone(final Sone sone) {
+               new Thread(new Runnable() {
+
+                       @Override
+                       @SuppressWarnings("synthetic-access")
+                       public void run() {
+                               FreenetURI realRequestUri = sone.getRequestUri().setMetaString(new String[] { "sone.xml" });
+                               FetchResult fetchResult = freenetInterface.fetchUri(realRequestUri);
+                               Sone parsedSone = soneDownloader.parseSone(sone, fetchResult, realRequestUri);
+                               if (parsedSone != null) {
+                                       addSone(parsedSone);
+                               }
+                       }
+               }, "Sone Downloader").start();
+       }
+
+       /**
         * Deletes the given Sone from this plugin instance.
         *
         * @param sone