From ace61a10afeeeb05ec7ae7facf3d636cd87f3a9b Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 14 Oct 2010 09:33:09 +0200 Subject: [PATCH] Add posting ability. --- .../net/pterodactylus/sone/web/CreatePostPage.java | 73 ++++++++++++++++++++++ .../net/pterodactylus/sone/web/WebInterface.java | 4 ++ src/main/resources/i18n/sone.en.properties | 9 +++ src/main/resources/templates/createPost.html | 23 +++++++ src/main/resources/templates/index.html | 14 ++++- 5 files changed, 122 insertions(+), 1 deletion(-) create mode 100644 src/main/java/net/pterodactylus/sone/web/CreatePostPage.java create mode 100644 src/main/resources/templates/createPost.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 index 0000000..b6b291e --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/CreatePostPage.java @@ -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 . + */ + +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 David ‘Bombe’ Roden + */ +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; + } + +} diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index d22d94e..d312029 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -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")); diff --git a/src/main/resources/i18n/sone.en.properties b/src/main/resources/i18n/sone.en.properties index d0795ba..4bde225 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -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 index 0000000..92d2acb --- /dev/null +++ b/src/main/resources/templates/createPost.html @@ -0,0 +1,23 @@ +
+ +

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

+ + <%if errorTextEmpty> +
<%= Page.CreatePost.Error.EmptyText|l10n|html>
+ <%/if> + +
+ + +
+ + +
+ +
+ +
+ +
+ +
diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 2647e7f..154ff3e 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -1,5 +1,17 @@
-

Sone

+

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

+ +
+
+
+ + +
+
+ +
+
+
\ No newline at end of file -- 2.7.4