--- /dev/null
+/*
+ * 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;
+ }
+
+}
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);
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"));
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
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
--- /dev/null
+<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>
<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