From 95a22740635b701511784d477cee57efa75f5f8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 18 Oct 2010 22:08:03 +0200 Subject: [PATCH] Add page that lets the user unfollow a Sone. --- .../pterodactylus/sone/web/UnfollowSonePage.java | 71 ++++++++++++++++++++++ .../net/pterodactylus/sone/web/WebInterface.java | 4 ++ src/main/resources/i18n/sone.en.properties | 2 + src/main/resources/templates/unfollowSone.html | 3 + 4 files changed, 80 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java create mode 100644 src/main/resources/templates/unfollowSone.html diff --git a/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java b/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java new file mode 100644 index 0000000..60f6355 --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/UnfollowSonePage.java @@ -0,0 +1,71 @@ +/* + * Sone - FollowSonePage.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.Sone; +import net.pterodactylus.util.template.Template; + +/** + * This page lets the user unfollow another Sone. + * + * @author David ‘Bombe’ Roden + */ +public class UnfollowSonePage extends SoneTemplatePage { + + /** + * @param template + * The template to render + * @param webInterface + * The Sone web interface + */ + public UnfollowSonePage(Template template, WebInterface webInterface) { + super("unfollowSone.html", template, "Page.UnfollowSone.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 currentSone = getCurrentSone(request.getToadletContext()); + Sone sone = webInterface.core().getSone(soneId); + if (!sone.equals(currentSone)) { + currentSone.removeFriend(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 49084d8..5a404f2 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -202,6 +202,9 @@ public class WebInterface extends AbstractService { Template followSoneTemplate = templateFactory.createTemplate(createReader("/templates/followSone.html")); followSoneTemplate.set("formPassword", formPassword); + Template unfollowSoneTemplate = templateFactory.createTemplate(createReader("/templates/unfollowSone.html")); + unfollowSoneTemplate.set("formPassword", formPassword); + Template deleteSoneTemplate = templateFactory.createTemplate(createReader("/templates/deleteSone.html")); deleteSoneTemplate.set("formPassword", formPassword); @@ -224,6 +227,7 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewPostPage(viewPostTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new DeletePostPage(deletePostTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSonePage(followSoneTemplate, this))); + pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSonePage(unfollowSoneTemplate, 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 f3c4a4a..b87b686 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -121,6 +121,8 @@ Page.DeletePost.Button.No=No, do not delete. Page.FollowSone.Title=Follow Sone - Sone +Page.UnfollowSone.Title=Unfollow Sone - Sone + Page.NoPermission.Title=Unauthorized Access - Sone Page.NoPermission.Page.Title=Unauthorized Access Page.NoPermission.Text.NoPermission=You tried to do something that you do not have sufficient authorization for. Please refrain from such actions in the future or we will be forced to take counter-measures! diff --git a/src/main/resources/templates/unfollowSone.html b/src/main/resources/templates/unfollowSone.html new file mode 100644 index 0000000..196af72 --- /dev/null +++ b/src/main/resources/templates/unfollowSone.html @@ -0,0 +1,3 @@ +<%include include/head.html> + +<%include include/tail.html> -- 2.7.4