Add helper for Sone URIs.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / SoneUri.java
diff --git a/src/main/java/net/pterodactylus/sone/core/SoneUri.java b/src/main/java/net/pterodactylus/sone/core/SoneUri.java
new file mode 100644 (file)
index 0000000..6c5bf16
--- /dev/null
@@ -0,0 +1,55 @@
+/*
+ * Sone - SoneUri.java - Copyright © 2013 David Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.core;
+
+import java.net.MalformedURLException;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import net.pterodactylus.util.logging.Logging;
+import freenet.keys.FreenetURI;
+
+/**
+ * Helper class that creates {@link FreenetURI}s for Sone to insert to and
+ * request from.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class SoneUri {
+
+       /** The logger. */
+       private static final Logger logger = Logging.getLogger(SoneUri.class);
+
+       /**
+        * Generate a Sone URI from the given URI.
+        *
+        * @param uri
+        *            The URI to derive the Sone URI from
+        * @return The derived URI
+        */
+       public static FreenetURI create(String uri) {
+               try {
+                       return new FreenetURI(uri).setDocName("Sone").setMetaString(new String[0]);
+               } catch (MalformedURLException mue1) {
+                       /* this should never happen. */
+                       logger.log(Level.WARNING, String.format("Could not create Sone URI from URI: %s", uri), mue1);
+                       return null;
+               }
+       }
+
+}