From 56f162ca85e71c5059de3afc6b61fc7a931bcb9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= <bombe@pterodactylus.net> Date: Thu, 14 Oct 2010 16:42:45 +0200 Subject: [PATCH] Add page that adds a friend. --- .../net/pterodactylus/sone/web/AddFriendPage.java | 72 ++++++++++++++++++++++ .../net/pterodactylus/sone/web/WebInterface.java | 4 ++ src/main/resources/i18n/sone.en.properties | 2 + src/main/resources/templates/addFriend.html | 3 + 4 files changed, 81 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sone/web/AddFriendPage.java create mode 100644 src/main/resources/templates/addFriend.html diff --git a/src/main/java/net/pterodactylus/sone/web/AddFriendPage.java b/src/main/java/net/pterodactylus/sone/web/AddFriendPage.java new file mode 100644 index 0000000..3b0d904 --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/AddFriendPage.java @@ -0,0 +1,72 @@ +/* + * Sone - AddFriendPage.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.Sone; +import net.pterodactylus.sone.data.SoneShell; +import net.pterodactylus.util.template.Template; + +/** + * This page lets the user add another Sone as a friend Sone. + * + * @author <a href="mailto:bombe@pterodactylus.net">David âBombeâ Roden</a> + */ +public class AddFriendPage extends SoneTemplatePage { + + /** + * @param template + * The template to render + * @param webInterface + * The Sone web interface + */ + public AddFriendPage(Template template, WebInterface webInterface) { + super("addFriend.html", template, "Page.AddFriend.Title", webInterface); + } + + // + // TEMPLATEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(Request request, Template template) throws RedirectException { + super.processTemplate(request, template); + String soneId = request.getHttpRequest().getParam("sone"); + Sone sone = webInterface.core().getSone(soneId); + if (!(sone instanceof SoneShell)) { + Sone currentSone = getCurrentSone(request.getToadletContext()); + currentSone.addFriendSone(sone); + } + throw new RedirectException("viewSone.html?sone=" + soneId); + } + + // + // 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 415a251..b3f8865 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -166,6 +166,9 @@ public class WebInterface extends AbstractService { Template viewSoneTemplate = templateFactory.createTemplate(createReader("/templates/viewSone.html")); viewSoneTemplate.set("formPassword", formPassword); + Template addFriendTemplate = templateFactory.createTemplate(createReader("/templates/addFriend.html")); + addFriendTemplate.set("formPassword", formPassword); + Template deleteSoneTemplate = templateFactory.createTemplate(createReader("/templates/deleteSone.html")); deleteSoneTemplate.set("formPassword", formPassword); @@ -177,6 +180,7 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new EditProfilePage(editProfileTemplate, this), "EditProfile")); pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this))); + pageToadlets.add(pageToadletFactory.createPageToadlet(new AddFriendPage(addFriendTemplate, 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 964299e..6e5f9c1 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -74,4 +74,6 @@ Page.ViewSone.PostList.Text.NoPostYet=This Sone has not yet posted anything. Page.ViewSone.RemoveFriend.Text=Remove as Friend Page.ViewSone.AddFriend.Text=Add as Friend +Page.AddFriend.Title=Add Friend - Sone + Page.Logout.Title=Logout - Sone diff --git a/src/main/resources/templates/addFriend.html b/src/main/resources/templates/addFriend.html new file mode 100644 index 0000000..1952790 --- /dev/null +++ b/src/main/resources/templates/addFriend.html @@ -0,0 +1,3 @@ +<div id="sone"> + +</div> -- 2.7.4