Don’t watch local Sones for updates, we already have those.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
index 0091265..8570e9a 100644 (file)
@@ -39,6 +39,7 @@ import net.pterodactylus.util.config.Configuration;
 import net.pterodactylus.util.config.ConfigurationException;
 import net.pterodactylus.util.logging.Logging;
 import net.pterodactylus.util.service.AbstractService;
+import freenet.client.FetchResult;
 import freenet.keys.FreenetURI;
 
 /**
@@ -134,6 +135,7 @@ public class Core extends AbstractService {
        public Sone getSone(String soneId) {
                if (!soneCache.containsKey(soneId)) {
                        Sone sone = new Sone(soneId);
+                       soneDownloader.addSone(sone);
                        soneCache.put(soneId, sone);
                }
                return soneCache.get(soneId);
@@ -217,7 +219,7 @@ public class Core extends AbstractService {
                if (localSones.add(sone)) {
                        SoneInserter soneInserter = new SoneInserter(freenetInterface, sone);
                        soneInserter.start();
-                       soneDownloader.addSone(sone);
+                       soneDownloader.removeSone(sone);
                        soneInserters.put(sone, soneInserter);
                }
        }
@@ -281,6 +283,20 @@ public class Core extends AbstractService {
        }
 
        /**
+        * Loads the Sone from the given request URI.
+        *
+        * @param requestUri
+        *            The request URI to load the Sone from
+        */
+       public void loadSone(String requestUri) {
+               try {
+                       FetchResult fetchResult = freenetInterface.fetchUri(new FreenetURI(requestUri).setMetaString(new String[] { "sone.xml" }));
+               } catch (MalformedURLException mue1) {
+                       logger.log(Level.INFO, "Could not create URI from “" + requestUri + "”.", mue1);
+               }
+       }
+
+       /**
         * Deletes the given Sone from this plugin instance.
         *
         * @param sone