Create “create reply” page.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 16 Oct 2010 00:36:40 +0000 (02:36 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 16 Oct 2010 00:36:40 +0000 (02:36 +0200)
src/main/java/net/pterodactylus/sone/web/CreateReplyPage.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/templates/createReply.html [new file with mode: 0644]

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 (file)
index 0000000..e48232e
--- /dev/null
@@ -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 <http://www.gnu.org/licenses/>.
+ */
+
+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 <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+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;
+       }
+
+}
index 994d501..32bd783 100644 (file)
@@ -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"));
index 2b6c5a8..1ca46dc 100644 (file)
@@ -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 (file)
index 0000000..afd0384
--- /dev/null
@@ -0,0 +1,24 @@
+<div id="sone">
+
+       <h1><%= Page.CreateReply.Page.Title|l10n|html></h1>
+
+       <%if errorTextEmpty>
+               <div><%= Page.CreateReply.Error.EmptyText|l10n|html></div>
+       <%/if>
+
+       <form method="post">
+               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+               <input type="hidden" name="postId" value="<% postId>" />
+
+               <div>
+                       <label for="text"><%= Page.CreateReply.Label.Text|l10n|html></label>
+                       <textarea name="text"><% text|html></textarea>
+               </div>
+
+               <div>
+                       <button type="submit"><%= Page.CreateReply.Button.Post|l10n|html></button>
+               </div>
+
+       </form>
+
+</div>