From: David ‘Bombe’ Roden Date: Wed, 17 Nov 2010 12:45:18 +0000 (+0100) Subject: Add method to download a Sone from a specific URI. X-Git-Tag: 0.3-RC1~32 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=fcaabe0a9b8bb09aabe0e2a1451c3cb00d5cfbf4;hp=5c5ef0964da82ea0f677ea0e7f24901f8e31af88 Add method to download a Sone from a specific URI. --- diff --git a/src/main/java/net/pterodactylus/sone/core/SoneDownloader.java b/src/main/java/net/pterodactylus/sone/core/SoneDownloader.java index 2310aca..46d8540 100644 --- a/src/main/java/net/pterodactylus/sone/core/SoneDownloader.java +++ b/src/main/java/net/pterodactylus/sone/core/SoneDownloader.java @@ -114,11 +114,25 @@ public class SoneDownloader extends AbstractService { * The Sone to fetch */ public void fetchSone(Sone sone) { + fetchSone(sone, sone.getRequestUri()); + } + + /** + * Fetches the updated Sone. This method can be used to fetch a Sone from a + * specific URI (which happens when {@link Core#isSoneRescueMode() „Sone + * rescue mode“} is active). + * + * @param sone + * The Sone to fetch + * @param soneUri + * The URI to fetch the Sone from + */ + public void fetchSone(Sone sone, FreenetURI soneUri) { if (core.getSoneStatus(sone) == SoneStatus.downloading) { return; } - logger.log(Level.FINE, "Starting fetch for Sone “%s” from %s…", new Object[] { sone, sone.getRequestUri().setMetaString(new String[] { "sone.xml" }) }); - FreenetURI requestUri = sone.getRequestUri().setMetaString(new String[] { "sone.xml" }); + logger.log(Level.FINE, "Starting fetch for Sone “%s” from %s…", new Object[] { sone, soneUri }); + FreenetURI requestUri = soneUri.setMetaString(new String[] { "sone.xml" }); core.setSoneStatus(sone, SoneStatus.downloading); try { Pair fetchResults = freenetInterface.fetchUri(requestUri);