From 66f29561ceb5acbf42a4b8319f1c79ccbfba0979 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 16 Oct 2010 02:36:40 +0200 Subject: [PATCH] =?utf8?q?Create=20=E2=80=9Ccreate=20reply=E2=80=9D=20page?= =?utf8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../pterodactylus/sone/web/CreateReplyPage.java | 80 ++++++++++++++++++++++ .../net/pterodactylus/sone/web/WebInterface.java | 4 ++ src/main/resources/i18n/sone.en.properties | 6 ++ src/main/resources/templates/createReply.html | 24 +++++++ 4 files changed, 114 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java create mode 100644 src/main/resources/templates/createReply.html diff --git a/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java b/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java new file mode 100644 index 0000000..e48232e --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java @@ -0,0 +1,80 @@ +/* + * Sone - CreateReplyPage.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.data.Post; +import net.pterodactylus.sone.data.Sone; +import net.pterodactylus.sone.web.page.Page.Request.Method; +import net.pterodactylus.util.template.Template; + +/** + * This page lets the user post a reply to a post. + * + * @author David ‘Bombe’ Roden + */ +public class CreateReplyPage extends SoneTemplatePage { + + /** + * Creates a new “create reply” page. + * + * @param template + * The template to render + * @param webInterface + * The Sone web interface + */ + public CreateReplyPage(Template template, WebInterface webInterface) { + super("createReply.html", template, "Page.CreateReply.Title", webInterface); + } + + // + // TEMPLATEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(Request request, Template template) throws RedirectException { + String postId = request.getHttpRequest().getPartAsStringFailsafe("postId", 36); + String text = request.getHttpRequest().getPartAsStringFailsafe("text", 65536).trim(); + if (request.getMethod() == Method.POST) { + Post post = webInterface.core().getPost(postId); + if (text.length() > 0) { + Sone currentSone = getCurrentSone(request.getToadletContext()); + webInterface.core().createReply(currentSone, post, text); + throw new RedirectException("viewPost.html?post=" + post.getId()); + } + template.set("errorTextEmpty", true); + } + template.set("postId", postId); + template.set("text", text); + } + + // + // SONETEMPLATEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected boolean requiresLogin() { + 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 994d501..32bd783 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -163,6 +163,9 @@ public class WebInterface extends AbstractService { Template createPostTemplate = templateFactory.createTemplate(createReader("/templates/createPost.html")); createPostTemplate.set("formPassword", formPassword); + Template createReplyTemplate = templateFactory.createTemplate(createReader("/templates/createReply.html")); + createReplyTemplate.set("formPassword", formPassword); + Template editProfileTemplate = templateFactory.createTemplate(createReader("/templates/editProfile.html")); editProfileTemplate.set("formPassword", formPassword); @@ -182,6 +185,7 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateSonePage(createSoneTemplate, this), "CreateSone")); pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile")); pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this))); + pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyPage(createReplyTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSonePage(followSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteSonePage(deleteSoneTemplate, this), "DeleteSone")); diff --git a/src/main/resources/i18n/sone.en.properties b/src/main/resources/i18n/sone.en.properties index 2b6c5a8..1ca46dc 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -65,6 +65,12 @@ Page.CreatePost.Label.Text=Post text: Page.CreatePost.Button.Post=Post! Page.CreatePost.Error.EmptyText=You did not enter any text, which is a pity. You should try writing more! +Page.CreateReply.Title=Create Reply - Sone +Page.CreateReply.Page.Title=Create Reply +Page.CreateReply.Error.EmptyText=You did not enter any text, which is a pity. You should try writing more! +Page.CreateReply.Label.Text=Reply text: +Page.CreateReply.Button.Post=Post Reply! + Page.ViewSone.Title=View Sone - Sone Page.ViewSone.Page.TitleWithoutSone=View unknown Sone Page.ViewSone.Page.TitleWithSone=View Sone “{sone}” diff --git a/src/main/resources/templates/createReply.html b/src/main/resources/templates/createReply.html new file mode 100644 index 0000000..afd0384 --- /dev/null +++ b/src/main/resources/templates/createReply.html @@ -0,0 +1,24 @@ +
+ +

<%= Page.CreateReply.Page.Title|l10n|html>

+ + <%if errorTextEmpty> +
<%= Page.CreateReply.Error.EmptyText|l10n|html>
+ <%/if> + +
+ + + +
+ + +
+ +
+ +
+ +
+ +
-- 2.7.4