From 493797e7123851666afe9aafeb59670dbeece3e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 13 Oct 2010 15:16:24 +0200 Subject: [PATCH] Add Sone creation page. --- .../net/pterodactylus/sone/web/CreateSonePage.java | 100 +++++++++++++++++++++ .../net/pterodactylus/sone/web/WebInterface.java | 4 + src/main/resources/i18n/sone.en.properties | 4 + src/main/resources/static/css/sone.css | 5 ++ src/main/resources/templates/createSone.html | 28 ++++++ 5 files changed, 141 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sone/web/CreateSonePage.java create mode 100644 src/main/resources/templates/createSone.html 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 index 0000000..81f1c34 --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/CreateSonePage.java @@ -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 . + */ + +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 David ‘Bombe’ Roden + */ +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; + } + +} diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index 3c4a662..e025f43 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -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/"))); diff --git a/src/main/resources/i18n/sone.en.properties b/src/main/resources/i18n/sone.en.properties index 500fe43..1f8dfd1 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -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 diff --git a/src/main/resources/static/css/sone.css b/src/main/resources/static/css/sone.css index 137b9ab..6b3d0f1 100644 --- a/src/main/resources/static/css/sone.css +++ b/src/main/resources/static/css/sone.css @@ -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 index 0000000..ad3c6a2 --- /dev/null +++ b/src/main/resources/templates/createSone.html @@ -0,0 +1,28 @@ +
+ +

<%= Page.Login.CreateSone.Title|l10n|html>

+
<%= Page.Login.CreateSone.Description|l10n|html>
+ +
+ + class="error"<%/if>> + + +
+ class="error"<%/if>> + + + + class="error"<%/if>> + + + +
+ +
+
+ +
+ + + -- 2.7.4