Add posting ability.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 07:33:09 +0000 (09:33 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 07:33:09 +0000 (09:33 +0200)
src/main/java/net/pterodactylus/sone/web/CreatePostPage.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/createPost.html [new file with mode: 0644]
src/main/resources/templates/index.html

diff --git a/src/main/java/net/pterodactylus/sone/web/CreatePostPage.java b/src/main/java/net/pterodactylus/sone/web/CreatePostPage.java
new file mode 100644 (file)
index 0000000..b6b291e
--- /dev/null
@@ -0,0 +1,73 @@
+/*
+ * Sone - CreatePostPage.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.util.template.Template;
+
+/**
+ * This page lets the user create a new {@link Post}.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class CreatePostPage extends SoneTemplatePage {
+
+       /**
+        * Creates a new “create post” page.
+        *
+        * @param template
+        *            The template to render
+        * @param webInterface
+        *            The Sone web interface
+        */
+       public CreatePostPage(Template template, WebInterface webInterface) {
+               super("createPost.html", template, "Page.CreatePost.Title", webInterface);
+       }
+
+       //
+       // TEMPLATEPATH METHODS
+       //
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       protected void processTemplate(Request request, Template template) throws RedirectException {
+               super.processTemplate(request, template);
+               String text = request.getHttpRequest().getPartAsStringFailsafe("text", 65536).trim();
+               if (text.length() != 0) {
+                       Post post = new Post(System.currentTimeMillis(), text);
+                       getCurrentSone(request.getToadletContext()).addPost(post);
+                       throw new RedirectException("index.html");
+               }
+               template.set("errorTextEmpty", true);
+       }
+
+       //
+       // SONETEMPLATEPAGE METHODS
+       //
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       protected boolean requiresLogin() {
+               return true;
+       }
+
+}
index d22d94e..d312029 100644 (file)
@@ -147,6 +147,9 @@ public class WebInterface extends AbstractService {
                Template createSoneTemplate = templateFactory.createTemplate(createReader("/templates/createSone.html"));
                createSoneTemplate.set("formPassword", formPassword);
 
+               Template createPostTemplate = templateFactory.createTemplate(createReader("/templates/createPost.html"));
+               createPostTemplate.set("formPassword", formPassword);
+
                Template editProfileTemplate = templateFactory.createTemplate(createReader("/templates/editProfile.html"));
                editProfileTemplate.set("formPassword", formPassword);
 
@@ -159,6 +162,7 @@ public class WebInterface extends AbstractService {
                pageToadlets.add(pageToadletFactory.createPageToadlet(new IndexPage(indexTemplate, this), "Index"));
                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 DeleteSonePage(deleteSoneTemplate, this), "DeleteSone"));
                pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login"));
                pageToadlets.add(pageToadletFactory.createPageToadlet(new LogoutPage(logoutTemplate, this), "Logout"));
index d0795ba..4bde225 100644 (file)
@@ -43,6 +43,9 @@ Page.DeleteSone.Button.Yes=Yes, delete.
 Page.DeleteSone.Button.No=No, do not delete.
 
 Page.Index.Title=Your Sone - Sone
+Page.Index.Page.Title=Your Sone
+Page.Index.Label.Text=Post text:
+Page.Index.Button.Post=Post!
 
 Page.EditProfile.Title=Edit Profile - Sone
 Page.EditProfile.Page.Title=Edit Profile
@@ -54,4 +57,10 @@ Page.EditProfile.Label.LastName=Last name:
 Page.EditProfile.Page.Status.Changed=Your changes have been saved and will be inserted shortly.
 Page.EditProfile.Button.Save=Save Profile
 
+Page.CreatePost.Title=Create Post - Sone
+Page.CreatePost.Page.Title=Create Post
+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.Logout.Title=Logout - Sone
diff --git a/src/main/resources/templates/createPost.html b/src/main/resources/templates/createPost.html
new file mode 100644 (file)
index 0000000..92d2acb
--- /dev/null
@@ -0,0 +1,23 @@
+<div id="sone">
+
+       <h1><%= Page.CreatePost.Page.Title|l10n|html></h1>
+
+       <%if errorTextEmpty>
+               <div><%= Page.CreatePost.Error.EmptyText|l10n|html></div>
+       <%/if>
+
+       <form method="post">
+               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+
+               <div>
+                       <label for="text"><%= Page.CreatePost.Label.Text|l10n|html></label>
+                       <textarea name="text"><% text|html></textarea>
+               </div>
+
+               <div>
+                       <button type="submit"><%= Page.CreatePost.Button.Post|l10n|html></button>
+               </div>
+
+       </form>
+
+</div>
index 2647e7f..154ff3e 100644 (file)
@@ -1,5 +1,17 @@
 <div id="sone">
 
-       <h1>Sone</h1>
+       <h1><%= Page.Index.Page.Title|l10n|html></h1>
+
+       <div>
+               <form action="createPost.html" method="post">
+                       <div>
+                               <label for="text"><%= Page.Index.Label.Text|l10n|html></label>
+                               <textarea name="text"></textarea>
+                       </div>
+                       <div>
+                               <button type="submit"><%= Page.Index.Button.Post|l10n|html></button>
+                       </div>
+               </form>
+       </div>
 
 </div>
\ No newline at end of file