--- /dev/null
+/*
+ * 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;
+ }
+
+}
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/")));
--- /dev/null
+<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>