From: David ‘Bombe’ Roden Date: Wed, 20 Oct 2010 13:28:44 +0000 (+0200) Subject: Implement Sone loading. X-Git-Tag: 0.1-RC1~151 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=40e01cfd2311fa744ece093c1a1d47d44273acc3 Implement Sone loading. --- diff --git a/src/main/java/net/pterodactylus/sone/web/LoadSonePage.java b/src/main/java/net/pterodactylus/sone/web/LoadSonePage.java new file mode 100644 index 0000000..d23a84f --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/LoadSonePage.java @@ -0,0 +1,62 @@ +/* + * Sone - LoadSonePage.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 net.pterodactylus.sone.web.page.Page.Request.Method; +import net.pterodactylus.util.template.Template; + +/** + * This page lets the user a new Sone that has been previously managed on a + * different node or installation. The data of the Sone is loaded from Freenet. + * + * @author David ‘Bombe’ Roden + */ +public class LoadSonePage extends SoneTemplatePage { + + /** + * Creates a new “load Sone” page. + * + * @param template + * The template to render + * @param webInterface + * The Sone web interface + */ + public LoadSonePage(Template template, WebInterface webInterface) { + super("loadSone.html", template, "Page.LoadSone.Title", webInterface); + } + + // + // TEMPLATEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(Request request, Template template) throws RedirectException { + super.processTemplate(request, template); + if (request.getMethod() == Method.POST) { + String requestUri = request.getHttpRequest().getPartAsStringFailsafe("request-uri", 256); + String insertUri = request.getHttpRequest().getPartAsStringFailsafe("insert-uri", 256); + String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); + webInterface.core().loadSone(requestUri, insertUri); + throw new RedirectException(returnPage); + } + } + +} diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index 2120096..e78cdbb 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -157,6 +157,7 @@ public class WebInterface extends AbstractService { Template loginTemplate = templateFactory.createTemplate(createReader("/templates/login.html")); Template indexTemplate = templateFactory.createTemplate(createReader("/templates/index.html")); Template addSoneTemplate = templateFactory.createTemplate(createReader("/templates/addSone.html")); + Template loadSoneTemplate = templateFactory.createTemplate(createReader("/templates/loadSone.html")); Template knownSonesTemplate = templateFactory.createTemplate(createReader("/templates/knownSones.html")); Template createSoneTemplate = templateFactory.createTemplate(createReader("/templates/createSone.html")); Template createPostTemplate = templateFactory.createTemplate(createReader("/templates/createPost.html")); @@ -178,6 +179,7 @@ public class WebInterface extends AbstractService { 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 LoadSonePage(loadSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new AddSonePage(addSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new KnownSonesPage(knownSonesTemplate, this), "KnownSones")); pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile")); diff --git a/src/main/resources/templates/loadSone.html b/src/main/resources/templates/loadSone.html new file mode 100644 index 0000000..196af72 --- /dev/null +++ b/src/main/resources/templates/loadSone.html @@ -0,0 +1,3 @@ +<%include include/head.html> + +<%include include/tail.html> diff --git a/src/main/resources/templates/login.html b/src/main/resources/templates/login.html index 3bb860f..804ac83 100644 --- a/src/main/resources/templates/login.html +++ b/src/main/resources/templates/login.html @@ -17,6 +17,7 @@
<%= Page.Login.LoadSone.Description|l10n|html>
+