Add Sone creation page.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 13 Oct 2010 13:16:24 +0000 (15:16 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 13 Oct 2010 13:16:24 +0000 (15:16 +0200)
src/main/java/net/pterodactylus/sone/web/CreateSonePage.java [new file with mode: 0644]
src/main/java/net/pterodactylus/sone/web/WebInterface.java
src/main/resources/i18n/sone.en.properties
src/main/resources/static/css/sone.css
src/main/resources/templates/createSone.html [new file with mode: 0644]

diff --git a/src/main/java/net/pterodactylus/sone/web/CreateSonePage.java b/src/main/java/net/pterodactylus/sone/web/CreateSonePage.java
new file mode 100644 (file)
index 0000000..81f1c34
--- /dev/null
@@ -0,0 +1,100 @@
+/*
+ * FreenetSone - CreateSonePage.java - Copyright © 2010 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.web;
+
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import net.pterodactylus.sone.core.SoneException;
+import net.pterodactylus.sone.core.SoneException.Type;
+import net.pterodactylus.sone.data.Sone;
+import net.pterodactylus.sone.web.page.Page.Request.Method;
+import net.pterodactylus.util.logging.Logging;
+import net.pterodactylus.util.template.Template;
+import freenet.clients.http.ToadletContext;
+
+/**
+ * The “create Sone” page lets the user create a new Sone.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class CreateSonePage extends SoneTemplatePage {
+
+       /** The logger. */
+       private static final Logger logger = Logging.getLogger(CreateSonePage.class);
+
+       /**
+        * Creates a new “create Sone” page.
+        *
+        * @param template
+        *            The template to render
+        * @param webInterface
+        *            The Sone web interface
+        */
+       public CreateSonePage(Template template, WebInterface webInterface) {
+               super("createSone.html", template, "Page.CreateSone.Title", webInterface);
+       }
+
+       //
+       // TEMPLATEPAGE METHODS
+       //
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       protected void processTemplate(Request request, Template template) throws RedirectException {
+               String name = "";
+               String requestUri = null;
+               String insertUri = null;
+               if (request.getMethod() == Method.POST) {
+                       name = request.getHttpRequest().getPartAsStringFailsafe("name", 100);
+                       if (request.getHttpRequest().getParam("create-from-uri").length() > 0) {
+                               requestUri = request.getHttpRequest().getPartAsStringFailsafe("request-uri", 256);
+                               insertUri = request.getHttpRequest().getPartAsStringFailsafe("insert-uri", 256);
+                       }
+                       try {
+                               /* create Sone. */
+                               Sone sone = webInterface.core().createSone(name, requestUri, insertUri);
+
+                               /* log in the new Sone. */
+                               setCurrentSone(request.getToadletContext(), sone);
+                               throw new RedirectException("index.html");
+                       } catch (SoneException se1) {
+                               logger.log(Level.FINE, "Could not create Sone “%s” at (“%s”, “%s”), %s!", new Object[] { name, requestUri, insertUri, se1.getType() });
+                               if (se1.getType() == Type.INVALID_SONE_NAME) {
+                                       template.set("errorName", true);
+                               } else if (se1.getType() == Type.INVALID_URI) {
+                                       template.set("errorUri", true);
+                               }
+                       }
+               }
+               template.set("name", name);
+               template.set("requestUri", requestUri);
+               template.set("insertUri", insertUri);
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public boolean isEnabled(ToadletContext toadletContext) {
+               return true;
+       }
+
+}
index 3c4a662..e025f43 100644 (file)
@@ -144,8 +144,12 @@ public class WebInterface extends AbstractService {
                Template indexTemplate = templateFactory.createTemplate(createReader("/templates/index.html"));
                indexTemplate.set("formPassword", formPassword);
 
+               Template createSoneTemplate = templateFactory.createTemplate(createReader("/templates/createSone.html"));
+               createSoneTemplate.set("formPassword", formPassword);
+
                PageToadletFactory pageToadletFactory = new PageToadletFactory(sonePlugin.pluginRespirator().getHLSimpleClient(), "/Sone/");
                pageToadlets.add(pageToadletFactory.createPageToadlet(new IndexPage(indexTemplate, this), "Index"));
+               pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateSonePage(createSoneTemplate, this), "CreateSone"));
                pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login"));
                pageToadlets.add(pageToadletFactory.createPageToadlet(new CSSPage("css/", "/static/css/")));
 
index 500fe43..1f8dfd1 100644 (file)
@@ -4,6 +4,8 @@ Navigation.Menu.Item.Login.Name=Login
 Navigation.Menu.Item.Login.Tooltip=Login to your Sone
 Navigation.Menu.Item.Index.Name=Your Sone
 Navigation.Menu.Item.Index.Tooltip=Show your Sone
+Navigation.Menu.Item.CreateSone.Name=Create Sone
+Navigation.Menu.Item.CreateSone.Tooltip=Create a new Sone
 
 Page.Login.Title=Login - Sone
 Page.Login.Page.Title=Login
@@ -24,4 +26,6 @@ Page.Login.CreateSone.Label.Name=Sone name:
 Page.Login.CreateSone.Button.CreateFromURI=Create at given URI
 Page.Login.CreateSone.Button.CreateRandom=Create new Sone
 
+Page.CreateSone.Title=Create Sone - Sone
+
 Page.Index.Title=Your Sone - Sone
index 137b9ab..6b3d0f1 100644 (file)
@@ -5,3 +5,8 @@
        font-size: 200%;
        font-weight: bold;
 }
+
+#sone .error label {
+       color: red;
+       font-weight: bold;
+}
diff --git a/src/main/resources/templates/createSone.html b/src/main/resources/templates/createSone.html
new file mode 100644 (file)
index 0000000..ad3c6a2
--- /dev/null
@@ -0,0 +1,28 @@
+<div id="sone">
+
+       <h1><%= Page.Login.CreateSone.Title|l10n|html></h1>
+       <div><%= Page.Login.CreateSone.Description|l10n|html></div>
+
+       <form action="createSone.html" method="post">
+               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+               <div<%if errorName> class="error"<%/if>>
+                       <label for="name"><%= Page.Login.CreateSone.Label.Name|l10n|html></label>
+                       <input type="text" name="name" value="<% name|html>"/>
+               </div>
+               <div<%if errorUri> class="error"<%/if>>
+                       <label for="insert-uri"><%= Page.Login.CreateSone.Label.RequestURI|l10n|html></label>
+                       <input type="text" name="insert-uri" value="<% insertUri|html>" />
+               </div>
+               <div<%if errorUri> class="error"<%/if>>
+                       <label for="insert-uri"><%= Page.Login.CreateSone.Label.InsertURI|l10n|html></label>
+                       <input type="text" name="insert-uri" value="<% requestUri|html>" />
+               </div>
+               <div>
+                       <button type="submit" name="create-from-uri" value="1"><%= Page.Login.CreateSone.Button.CreateFromURI|l10n|html></button>
+               </div>
+               <div>
+                       <button type="submit" name="create-random" value="1"><%= Page.Login.CreateSone.Button.CreateRandom|l10n|html></button>
+               </div>
+       </form>
+
+</div>