X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCore.java;h=7ddc2470e934e3936db1669a50a38d887d2bce14;hb=fcd011a16b119966906b3137513e9432ab86c3a8;hp=13f158981cfea5a7da63cb34fc78d7f663c1c704;hpb=00adeb7e4a42365d0b5feb4e38338285e91a2301;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index 13f1589..7ddc247 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -26,6 +26,7 @@ import java.util.UUID; import java.util.logging.Level; import java.util.logging.Logger; +import net.pterodactylus.sone.core.SoneException.Type; import net.pterodactylus.sone.data.Sone; import net.pterodactylus.util.config.Configuration; import net.pterodactylus.util.config.ConfigurationException; @@ -94,14 +95,79 @@ public class Core extends AbstractService { * * @return The local Sones */ - public Set localSones() { - return localSones; + public Set getSones() { + return Collections.unmodifiableSet(localSones); } // // ACTIONS // + /** + * Creates a new Sone at a random location. + * + * @param name + * The name of the Sone + * @return The created Sone + * @throws SoneException + * if a Sone error occurs + */ + public Sone createSone(String name) throws SoneException { + return createSone(name, null, null); + } + + /** + * Creates a new Sone at the given location. If one of {@code requestUri} or + * {@code insertUrI} is {@code null}, the Sone is created at a random + * location. + * + * @param name + * The name of the Sone + * @param requestUri + * The request URI of the Sone, or {@link NullPointerException} + * to create a Sone at a random location + * @param insertUri + * The insert URI of the Sone, or {@code null} to create a Sone + * at a random location + * @return The created Sone + * @throws SoneException + * if a Sone error occurs + */ + public Sone createSone(String name, String requestUri, String insertUri) throws SoneException { + if ((name == null) || (name.trim().length() == 0)) { + throw new SoneException(Type.INVALID_SONE_NAME); + } + String finalRequestUri; + String finalInsertUri; + if ((requestUri == null) || (insertUri == null)) { + String[] keyPair = freenetInterface.generateKeyPair(); + finalRequestUri = keyPair[0]; + finalInsertUri = keyPair[1]; + } else { + finalRequestUri = requestUri; + finalInsertUri = insertUri; + } + Sone sone; + try { + logger.log(Level.FINEST, "Creating new Sone “%s” at %s (%s)…", new Object[] { name, finalRequestUri, finalInsertUri }); + sone = new Sone(UUID.randomUUID(), name, new FreenetURI(finalRequestUri), new FreenetURI(finalInsertUri)); + } catch (MalformedURLException mue1) { + throw new SoneException(Type.INVALID_URI); + } + localSones.add(sone); + return sone; + } + + /** + * Deletes the given Sone from this plugin instance. + * + * @param sone + * The sone to delete + */ + public void deleteSone(Sone sone) { + localSones.remove(sone); + } + // // SERVICE METHODS //