From 8e73d78985dbf9b12257bcd1408d17cef98394c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 30 Oct 2010 05:09:45 +0200 Subject: [PATCH] Remove blocking, blacklisting, and distribution of known Sones. --- .../java/net/pterodactylus/sone/core/Core.java | 165 +-------------------- .../net/pterodactylus/sone/core/SoneInserter.java | 6 +- .../java/net/pterodactylus/sone/data/Sone.java | 49 ------ .../pterodactylus/sone/template/SoneAccessor.java | 5 - .../net/pterodactylus/sone/web/BlacklistPage.java | 70 --------- .../pterodactylus/sone/web/BlacklistSonePage.java | 62 -------- .../net/pterodactylus/sone/web/BlockSonePage.java | 60 -------- .../sone/web/UnblacklistSonePage.java | 62 -------- .../pterodactylus/sone/web/UnblockSonePage.java | 62 -------- .../net/pterodactylus/sone/web/WebInterface.java | 18 --- .../sone/web/ajax/BlacklistSoneAjaxPage.java | 55 ------- .../sone/web/ajax/BlockSoneAjaxPage.java | 58 -------- .../sone/web/ajax/UnblacklistSoneAjaxPage.java | 55 ------- .../sone/web/ajax/UnblockSoneAjaxPage.java | 58 -------- src/main/resources/i18n/sone.en.properties | 19 --- src/main/resources/templates/blacklist.html | 20 --- src/main/resources/templates/blacklistSone.html | 3 - src/main/resources/templates/blockSone.html | 3 - src/main/resources/templates/include/viewSone.html | 37 +---- src/main/resources/templates/insert/sone.xml | 10 -- src/main/resources/templates/unblacklistSone.html | 3 - src/main/resources/templates/unblockSone.html | 3 - 22 files changed, 9 insertions(+), 874 deletions(-) delete mode 100644 src/main/java/net/pterodactylus/sone/web/BlacklistPage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/BlacklistSonePage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/BlockSonePage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/UnblacklistSonePage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/UnblockSonePage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/ajax/BlacklistSoneAjaxPage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/ajax/BlockSoneAjaxPage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/ajax/UnblacklistSoneAjaxPage.java delete mode 100644 src/main/java/net/pterodactylus/sone/web/ajax/UnblockSoneAjaxPage.java delete mode 100644 src/main/resources/templates/blacklist.html delete mode 100644 src/main/resources/templates/blacklistSone.html delete mode 100644 src/main/resources/templates/blockSone.html delete mode 100644 src/main/resources/templates/unblacklistSone.html delete mode 100644 src/main/resources/templates/unblockSone.html diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index 6ceede0..1a1c6df 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -105,9 +105,6 @@ public class Core extends AbstractService { /** The Sone downloader. */ private SoneDownloader soneDownloader; - /** The Sone blacklist. */ - private final Set blacklistedSones = Collections.synchronizedSet(new HashSet()); - /** The local Sones. */ private final Set localSones = Collections.synchronizedSet(new HashSet()); @@ -201,17 +198,7 @@ public class Core extends AbstractService { * @return The local Sones */ public Set getSones() { - return Filters.filteredSet(localSones, new Filter() { - - /** - * {@inheritDoc} - */ - @Override - @SuppressWarnings("synthetic-access") - public boolean filterObject(Sone sone) { - return !blacklistedSones.contains(sone); - } - }); + return Collections.unmodifiableSet(localSones); } /** @@ -237,17 +224,7 @@ public class Core extends AbstractService { * @return All known sones */ public Collection getKnownSones() { - return Filters.filteredCollection(soneCache.values(), new Filter() { - - /** - * {@inheritDoc} - */ - @Override - @SuppressWarnings("synthetic-access") - public boolean filterObject(Sone sone) { - return !blacklistedSones.contains(sone); - } - }); + return Collections.unmodifiableCollection(soneCache.values()); } /** @@ -256,34 +233,7 @@ public class Core extends AbstractService { * @return All remote Sones */ public Collection getRemoteSones() { - return Filters.filteredCollection(getKnownSones(), new Filter() { - - @Override - @SuppressWarnings("synthetic-access") - public boolean filterObject(Sone sone) { - return !blacklistedSones.contains(sone) && !localSones.contains(sone); - } - }); - } - - /** - * Returns all blacklisted Sones. - * - * @return All blacklisted Sones - */ - public Collection getBlacklistedSones() { - return Collections.unmodifiableCollection(blacklistedSones); - } - - /** - * Checks whether the given Sone is blacklisted. - * - * @param sone - * The Sone to check - * @return {@code true} if this Sone is blacklisted, {@code false} otherwise - */ - public boolean isBlacklistedSone(Sone sone) { - return blacklistedSones.contains(sone); + return Collections.unmodifiableCollection(getKnownSones()); } /** @@ -407,38 +357,6 @@ public class Core extends AbstractService { } /** - * Blackslists the given Sone. - * - * @param sone - * The Sone to blacklist - */ - public void blacklistSone(Sone sone) { - if (blacklistedSones.add(sone)) { - soneDownloader.removeSone(sone); - if (localSones.remove(sone)) { - SoneInserter soneInserter = soneInserters.remove(sone); - soneInserter.stop(); - } - } - } - - /** - * Unblacklists the given Sone. - * - * @param sone - * The Sone to unblacklist - */ - public void unblacklistSone(Sone sone) { - if (blacklistedSones.remove(sone)) { - if (sone.getInsertUri() != null) { - addLocalSone(sone); - } else { - addSone(sone); - } - } - } - - /** * Creates a new Sone at a random location. * * @param name @@ -871,17 +789,6 @@ public class Core extends AbstractService { sone.addFriend(friendSone); } - /* load blocked Sone IDs. */ - int blockedSoneCounter = 0; - while (true) { - String blockedSonePrefix = sonePrefix + "/BlockedSone." + blockedSoneCounter++; - String blockedSoneId = configuration.getStringValue(blockedSonePrefix + "/ID").getValue(null); - if (blockedSoneId == null) { - break; - } - sone.addBlockedSoneId(blockedSoneId); - } - /* load liked post IDs. */ int likedPostIdCounter = 0; while (true) { @@ -912,41 +819,6 @@ public class Core extends AbstractService { } while (true); logger.log(Level.INFO, "Loaded %d Sones.", getSones().size()); - /* load all known Sones. */ - int knownSonesCounter = 0; - while (true) { - String knownSonePrefix = "KnownSone." + knownSonesCounter++; - String knownSoneId = configuration.getStringValue(knownSonePrefix + "/ID").getValue(null); - if (knownSoneId == null) { - break; - } - String knownSoneName = configuration.getStringValue(knownSonePrefix + "/Name").getValue(null); - String knownSoneKey = configuration.getStringValue(knownSonePrefix + "/Key").getValue(null); - try { - getSone(knownSoneId).setName(knownSoneName).setRequestUri(new FreenetURI(knownSoneKey)); - } catch (MalformedURLException mue1) { - logger.log(Level.WARNING, "Could not create Sone from requestUri (“" + knownSoneKey + "”)!", mue1); - } - } - - /* load all blacklisted Sones. */ - int blacklistedSonesCounter = 0; - while (true) { - String blacklistedSonePrefix = "BlacklistedSone." + blacklistedSonesCounter++; - String blacklistedSoneId = configuration.getStringValue(blacklistedSonePrefix + "/ID").getValue(null); - if (blacklistedSoneId == null) { - break; - } - String blacklistedSoneName = configuration.getStringValue(blacklistedSonePrefix + "/Name").getValue(null); - String blacklistedSoneKey = configuration.getStringValue(blacklistedSonePrefix + "/Key").getValue(null); - String blacklistedSoneInsertKey = configuration.getStringValue(blacklistedSonePrefix + "/InsertKey").getValue(null); - try { - blacklistSone(getSone(blacklistedSoneId).setName(blacklistedSoneName).setRequestUri(new FreenetURI(blacklistedSoneKey)).setInsertUri((blacklistedSoneInsertKey != null) ? new FreenetURI(blacklistedSoneInsertKey) : null)); - } catch (MalformedURLException mue1) { - logger.log(Level.WARNING, "Could not create blacklisted Sone from requestUri (“" + blacklistedSoneKey + "”)!", mue1); - } - } - /* load all remote Sones. */ for (Sone remoteSone : getRemoteSones()) { loadSone(remoteSone); @@ -1016,14 +888,6 @@ public class Core extends AbstractService { /* write null ID as terminator. */ configuration.getStringValue(sonePrefix + "/Friend." + friendId + "/ID").setValue(null); - /* write all blocked Sones. */ - int blockedSoneCounter = 0; - for (String blockedSoneId : sone.getBlockedSoneIds()) { - String blockedSonePrefix = sonePrefix + "/BlockedSone." + blockedSoneCounter++; - configuration.getStringValue(blockedSonePrefix + "/ID").setValue(blockedSoneId); - } - configuration.getStringValue(sonePrefix + "/BlockedSone." + blockedSoneCounter + "/ID").setValue(null); - /* write all liked posts. */ int likedPostIdCounter = 0; for (String soneLikedPostId : sone.getLikedPostIds()) { @@ -1044,29 +908,6 @@ public class Core extends AbstractService { /* write null ID as terminator. */ configuration.getStringValue("Sone/Sone." + soneId + "/ID").setValue(null); - /* write all known Sones. */ - int knownSonesCounter = 0; - for (Sone knownSone : getRemoteSones()) { - String knownSonePrefix = "KnownSone." + knownSonesCounter++; - configuration.getStringValue(knownSonePrefix + "/ID").setValue(knownSone.getId()); - configuration.getStringValue(knownSonePrefix + "/Name").setValue(knownSone.getName()); - configuration.getStringValue(knownSonePrefix + "/Key").setValue(knownSone.getRequestUri().toString()); - /* TODO - store all known stuff? */ - } - configuration.getStringValue("KnownSone." + knownSonesCounter + "/ID").setValue(null); - - /* write all blacklisted Sones. */ - int blacklistedSonesCounter = 0; - for (Sone blacklistedSone : getBlacklistedSones()) { - String blacklistedSonePrefix = "BlacklistedSone." + blacklistedSonesCounter++; - configuration.getStringValue(blacklistedSonePrefix + "/ID").setValue(blacklistedSone.getId()); - configuration.getStringValue(blacklistedSonePrefix + "/Name").setValue(blacklistedSone.getName()); - configuration.getStringValue(blacklistedSonePrefix + "/Key").setValue(blacklistedSone.getRequestUri().toString()); - configuration.getStringValue(blacklistedSonePrefix + "/InsertKey").setValue((blacklistedSone.getInsertUri() != null) ? blacklistedSone.getInsertUri().toString() : null); - /* TODO - store all known stuff? */ - } - configuration.getStringValue("BlacklistedSone." + blacklistedSonesCounter + "/ID").setValue(null); - } catch (ConfigurationException ce1) { logger.log(Level.WARNING, "Could not store configuration!", ce1); } diff --git a/src/main/java/net/pterodactylus/sone/core/SoneInserter.java b/src/main/java/net/pterodactylus/sone/core/SoneInserter.java index 05e3600..1136973 100644 --- a/src/main/java/net/pterodactylus/sone/core/SoneInserter.java +++ b/src/main/java/net/pterodactylus/sone/core/SoneInserter.java @@ -25,7 +25,6 @@ import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.Map; -import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; @@ -201,7 +200,6 @@ public class SoneInserter extends AbstractService { soneProperties.put("profile", sone.getProfile()); soneProperties.put("posts", new ArrayList(sone.getPosts())); soneProperties.put("replies", new HashSet(sone.getReplies())); - soneProperties.put("blockedSoneIds", new HashSet(sone.getBlockedSoneIds())); soneProperties.put("likedPostIds", new HashSet(sone.getLikedPostIds())); soneProperties.put("likeReplyIds", new HashSet(sone.getLikedReplyIds())); } @@ -267,8 +265,6 @@ public class SoneInserter extends AbstractService { } finally { Closer.close(templateInputStreamReader); } - @SuppressWarnings("unchecked") - final Set blockedSoneIds = (Set) soneProperties.get("blockedSoneIds"); Collection knownSones = Filters.filteredCollection(core.getKnownSones(), new Filter() { /** @@ -276,7 +272,7 @@ public class SoneInserter extends AbstractService { */ @Override public boolean filterObject(Sone object) { - return !blockedSoneIds.contains(object.getId()) && !object.getId().equals(soneProperties.get("id")); + return !object.getId().equals(soneProperties.get("id")); } }); diff --git a/src/main/java/net/pterodactylus/sone/data/Sone.java b/src/main/java/net/pterodactylus/sone/data/Sone.java index 129293c..fd1deda 100644 --- a/src/main/java/net/pterodactylus/sone/data/Sone.java +++ b/src/main/java/net/pterodactylus/sone/data/Sone.java @@ -73,9 +73,6 @@ public class Sone { /** All replies. */ private final Set replies = Collections.synchronizedSet(new HashSet()); - /** The IDs of all blocked Sones. */ - private final Set blockedSoneIds = Collections.synchronizedSet(new HashSet()); - /** The IDs of all liked posts. */ private final Set likedPostIds = Collections.synchronizedSet(new HashSet()); @@ -420,52 +417,6 @@ public class Sone { } /** - * Returns the IDs of all blocked Sones. These Sones will not propagated - * using the “known Sones” mechanism. - * - * @return The IDs of all blocked Sones - */ - public Set getBlockedSoneIds() { - return Collections.unmodifiableSet(blockedSoneIds); - } - - /** - * Returns whether the given Sone ID is blocked. - * - * @param soneId - * The Sone ID to check - * @return {@code true} if the given Sone ID is blocked, {@code false} - * otherwise - */ - public boolean isSoneBlocked(String soneId) { - return blockedSoneIds.contains(soneId); - } - - /** - * Adds the given ID to the list of blocked IDs. - * - * @param soneId - * The Sone ID to block - */ - public synchronized void addBlockedSoneId(String soneId) { - if (blockedSoneIds.add(soneId)) { - modificationCounter++; - } - } - - /** - * Removes the given ID from the list of blocked IDs. - * - * @param soneId - * The Sone ID to unblock - */ - public synchronized void removeBlockedSoneId(String soneId) { - if (blockedSoneIds.remove(soneId)) { - modificationCounter++; - } - } - - /** * Returns the IDs of all liked posts. * * @return All liked posts’ IDs diff --git a/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java b/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java index bb03306..5b787a9 100644 --- a/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java +++ b/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java @@ -73,11 +73,6 @@ public class SoneAccessor extends ReflectionAccessor { } else if (member.equals("current")) { Sone currentSone = (Sone) dataProvider.getData("currentSone"); return (currentSone != null) && currentSone.equals(sone); - } else if (member.equals("blocked")) { - Sone currentSone = (Sone) dataProvider.getData("currentSone"); - return (currentSone != null) && currentSone.isSoneBlocked(sone.getId()); - } else if (member.equals("blacklisted")) { - return core.isBlacklistedSone(sone); } else if (member.equals("modified")) { return sone.getModificationCounter() > 0; } else if (member.equals("status")) { diff --git a/src/main/java/net/pterodactylus/sone/web/BlacklistPage.java b/src/main/java/net/pterodactylus/sone/web/BlacklistPage.java deleted file mode 100644 index d8818bd..0000000 --- a/src/main/java/net/pterodactylus/sone/web/BlacklistPage.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Sone - BlacklistPage.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 java.util.ArrayList; -import java.util.Collections; -import java.util.Comparator; -import java.util.List; - -import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.template.SoneAccessor; -import net.pterodactylus.util.template.Template; - -/** - * This page lets the user manage Sone’s global blacklist. - * - * @author David ‘Bombe’ Roden - */ -public class BlacklistPage extends SoneTemplatePage { - - /** - * Creates a new blacklist management page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public BlacklistPage(Template template, WebInterface webInterface) { - super("blacklist.html", template, "Page.Blacklist.Title", webInterface, false); - } - - // - // TEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - List blacklistedSones = new ArrayList(webInterface.core().getBlacklistedSones()); - Collections.sort(blacklistedSones, new Comparator() { - - @Override - public int compare(Sone leftSone, Sone rightSone) { - return SoneAccessor.getNiceName(leftSone).compareToIgnoreCase(SoneAccessor.getNiceName(rightSone)); - } - - }); - template.set("blacklistedSones", blacklistedSones); - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/BlacklistSonePage.java b/src/main/java/net/pterodactylus/sone/web/BlacklistSonePage.java deleted file mode 100644 index b16f4a0..0000000 --- a/src/main/java/net/pterodactylus/sone/web/BlacklistSonePage.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Sone - BlacklistSonePage.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.sone.web.page.Page.Request.Method; -import net.pterodactylus.util.template.Template; - -/** - * This page lets the user blacklist a {@link Sone}. - * - * @author David ‘Bombe’ Roden - */ -public class BlacklistSonePage extends SoneTemplatePage { - - /** - * Creates a new “blacklist Sone” page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public BlacklistSonePage(Template template, WebInterface webInterface) { - super("blacklistSone.html", template, "Page.BlacklistSone.Title", webInterface, false); - } - - // - // TEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - if (request.getMethod() == Method.POST) { - String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 36); - String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); - Sone sone = webInterface.core().getSone(soneId); - webInterface.core().blacklistSone(sone); - throw new RedirectException(returnPage); - } - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/BlockSonePage.java b/src/main/java/net/pterodactylus/sone/web/BlockSonePage.java deleted file mode 100644 index 328d6f0..0000000 --- a/src/main/java/net/pterodactylus/sone/web/BlockSonePage.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Sone - BlockSonePage.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.web.page.Page.Request.Method; -import net.pterodactylus.util.template.Template; - -/** - * This page lets the user block a Sone for propagation. - * - * @author David ‘Bombe’ Roden - */ -public class BlockSonePage extends SoneTemplatePage { - - /** - * Creates a new “block Sone” page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public BlockSonePage(Template template, WebInterface webInterface) { - super("blockSone.html", template, "Page.BlockSone.Title", webInterface, true); - } - - // - // TEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - if (request.getMethod() == Method.POST) { - String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 36); - String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); - getCurrentSone(request.getToadletContext()).addBlockedSoneId(soneId); - throw new RedirectException(returnPage); - } - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/UnblacklistSonePage.java b/src/main/java/net/pterodactylus/sone/web/UnblacklistSonePage.java deleted file mode 100644 index e6be115..0000000 --- a/src/main/java/net/pterodactylus/sone/web/UnblacklistSonePage.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Sone - UnblacklistSonePage.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.sone.web.page.Page.Request.Method; -import net.pterodactylus.util.template.Template; - -/** - * This page lets the user unblacklist a {@link Sone}. - * - * @author David ‘Bombe’ Roden - */ -public class UnblacklistSonePage extends SoneTemplatePage { - - /** - * Creates a new “unblacklist Sone” page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public UnblacklistSonePage(Template template, WebInterface webInterface) { - super("unblacklistSone.html", template, "Page.UnblacklistSone.Title", webInterface, false); - } - - // - // TEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - if (request.getMethod() == Method.POST) { - String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 36); - String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); - Sone sone = webInterface.core().getSone(soneId); - webInterface.core().unblacklistSone(sone); - throw new RedirectException(returnPage); - } - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/UnblockSonePage.java b/src/main/java/net/pterodactylus/sone/web/UnblockSonePage.java deleted file mode 100644 index cc88cce..0000000 --- a/src/main/java/net/pterodactylus/sone/web/UnblockSonePage.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Sone - BlockSonePage.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.web.page.Page.Request.Method; -import net.pterodactylus.util.template.Template; - -/** - * This page lets the user unblock a Sone for propagation. - * - * @author David ‘Bombe’ Roden - */ -public class UnblockSonePage extends SoneTemplatePage { - - /** - * Creates a new “unblock Sone” page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public UnblockSonePage(Template template, WebInterface webInterface) { - super("unblockSone.html", template, "Page.UnblockSone.Title", webInterface, true); - } - - // - // TEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected void processTemplate(Request request, Template template) throws RedirectException { - super.processTemplate(request, template); - if (request.getMethod() == Method.POST) { - String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone", 36); - String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); - if (request.getMethod() == Method.POST) { - getCurrentSone(request.getToadletContext()).removeBlockedSoneId(soneId); - } - throw new RedirectException(returnPage); - } - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index fd4365e..0d3c9b7 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -40,8 +40,6 @@ import net.pterodactylus.sone.template.ReplyAccessor; import net.pterodactylus.sone.template.RequestChangeFilter; import net.pterodactylus.sone.template.SoneAccessor; import net.pterodactylus.sone.template.SubstringFilter; -import net.pterodactylus.sone.web.ajax.BlacklistSoneAjaxPage; -import net.pterodactylus.sone.web.ajax.BlockSoneAjaxPage; import net.pterodactylus.sone.web.ajax.DeletePostAjaxPage; import net.pterodactylus.sone.web.ajax.DeleteReplyAjaxPage; import net.pterodactylus.sone.web.ajax.FollowSoneAjaxPage; @@ -49,8 +47,6 @@ import net.pterodactylus.sone.web.ajax.GetLikesAjaxPage; import net.pterodactylus.sone.web.ajax.GetSoneStatusPage; import net.pterodactylus.sone.web.ajax.GetTranslationPage; import net.pterodactylus.sone.web.ajax.LikeAjaxPage; -import net.pterodactylus.sone.web.ajax.UnblacklistSoneAjaxPage; -import net.pterodactylus.sone.web.ajax.UnblockSoneAjaxPage; import net.pterodactylus.sone.web.ajax.UnfollowSoneAjaxPage; import net.pterodactylus.sone.web.ajax.UnlikeAjaxPage; import net.pterodactylus.sone.web.page.PageToadlet; @@ -205,8 +201,6 @@ public class WebInterface extends AbstractService { Template editProfileTemplate = templateFactory.createTemplate(createReader("/templates/editProfile.html")); Template backupProfileTemplate = templateFactory.createTemplate(createReader("/templates/backup.xml")); Template viewSoneTemplate = templateFactory.createTemplate(createReader("/templates/viewSone.html")); - Template blockSoneTemplate = templateFactory.createTemplate(createReader("/templates/blockSone.html")); - Template unblockSoneTemplate = templateFactory.createTemplate(createReader("/templates/unblockSone.html")); Template viewPostTemplate = templateFactory.createTemplate(createReader("/templates/viewPost.html")); Template likePostTemplate = templateFactory.createTemplate(createReader("/templates/like.html")); Template unlikePostTemplate = templateFactory.createTemplate(createReader("/templates/unlike.html")); @@ -218,9 +212,6 @@ public class WebInterface extends AbstractService { Template noPermissionTemplate = templateFactory.createTemplate(createReader("/templates/noPermission.html")); Template logoutTemplate = templateFactory.createTemplate(createReader("/templates/logout.html")); Template optionsTemplate = templateFactory.createTemplate(createReader("/templates/options.html")); - Template blacklistTemplate = templateFactory.createTemplate(createReader("/templates/blacklist.html")); - Template blacklistSoneTemplate = templateFactory.createTemplate(createReader("/templates/blacklistSone.html")); - Template unblacklistSoneTemplate = templateFactory.createTemplate(createReader("/templates/unblacklistSone.html")); Template aboutTemplate = templateFactory.createTemplate(createReader("/templates/about.html")); Template helpTemplate = templateFactory.createTemplate(createReader("/templates/help.html")); @@ -236,8 +227,6 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new CreatePostPage(createPostTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new CreateReplyPage(createReplyTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewSonePage(viewSoneTemplate, this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new BlockSonePage(blockSoneTemplate, this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblockSonePage(unblockSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new ViewPostPage(viewPostTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new LikePage(likePostTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikePage(unlikePostTemplate, this))); @@ -249,9 +238,6 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new LoginPage(loginTemplate, this), "Login")); pageToadlets.add(pageToadletFactory.createPageToadlet(new LogoutPage(logoutTemplate, this), "Logout")); pageToadlets.add(pageToadletFactory.createPageToadlet(new OptionsPage(optionsTemplate, this), "Options")); - pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistPage(blacklistTemplate, this), "Blacklist")); - pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistSonePage(blacklistSoneTemplate, this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblacklistSonePage(unblacklistSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new AboutPage(aboutTemplate, this, SonePlugin.VERSION), "About")); pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("help.html", helpTemplate, "Page.Help.Title", this), "Help")); pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("noPermission.html", noPermissionTemplate, "Page.NoPermission.Title", this))); @@ -264,10 +250,6 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new DeleteReplyAjaxPage(this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new FollowSoneAjaxPage(this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new UnfollowSoneAjaxPage(this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new BlockSoneAjaxPage(this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblockSoneAjaxPage(this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistSoneAjaxPage(this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblacklistSoneAjaxPage(this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new LikeAjaxPage(this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new UnlikeAjaxPage(this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new GetLikesAjaxPage(this))); diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/BlacklistSoneAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/BlacklistSoneAjaxPage.java deleted file mode 100644 index 83a38e4..0000000 --- a/src/main/java/net/pterodactylus/sone/web/ajax/BlacklistSoneAjaxPage.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Sone - BlacklistSoneAjaxPage.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.ajax; - -import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; - -/** - * AJAX page that blacklists a Sone. - * - * @author David ‘Bombe’ Roden - */ -public class BlacklistSoneAjaxPage extends JsonPage { - - /** - * Creates a new “blacklist Sone” AJAX page. - * - * @param webInterface - * The Sone web interface - */ - public BlacklistSoneAjaxPage(WebInterface webInterface) { - super("ajax/blacklistSone.ajax", webInterface); - } - - /** - * {@inheritDoc} - */ - @Override - protected JsonObject createJsonObject(Request request) { - String soneId = request.getHttpRequest().getParam("sone"); - if (soneId == null) { - return new JsonObject().put("success", false).put("error", "invalid-sone-id"); - } - Sone sone = webInterface.core().getSone(soneId); - webInterface.core().blacklistSone(sone); - return new JsonObject().put("success", true); - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/BlockSoneAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/BlockSoneAjaxPage.java deleted file mode 100644 index e4ffe2b..0000000 --- a/src/main/java/net/pterodactylus/sone/web/ajax/BlockSoneAjaxPage.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Sone - BlockSoneAjaxPage.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.ajax; - -import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; - -/** - * AJAX page that lets the user block another Sone. - * - * @author David ‘Bombe’ Roden - */ -public class BlockSoneAjaxPage extends JsonPage { - - /** - * Creates a new “block Sone” AJAX page. - * - * @param webInterface - * The Sone web interface - */ - public BlockSoneAjaxPage(WebInterface webInterface) { - super("ajax/blockSone.ajax", webInterface); - } - - /** - * {@inheritDoc} - */ - @Override - protected JsonObject createJsonObject(Request request) { - String soneId = request.getHttpRequest().getParam("sone"); - if (soneId == null) { - return new JsonObject().put("success", false).put("error", "invalid-sone-id"); - } - Sone currentSone = getCurrentSone(request.getToadletContext()); - if (currentSone == null) { - return new JsonObject().put("success", false).put("error", "auth-required"); - } - currentSone.addBlockedSoneId(soneId); - return new JsonObject().put("success", true); - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/UnblacklistSoneAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/UnblacklistSoneAjaxPage.java deleted file mode 100644 index 751efb6..0000000 --- a/src/main/java/net/pterodactylus/sone/web/ajax/UnblacklistSoneAjaxPage.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Sone - UnblacklistSoneAjaxPage.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.ajax; - -import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; - -/** - * AJAX page that unblacklists a Sone. - * - * @author David ‘Bombe’ Roden - */ -public class UnblacklistSoneAjaxPage extends JsonPage { - - /** - * Creates a new “unblacklist Sone” AJAX page. - * - * @param webInterface - * The Sone web interface - */ - public UnblacklistSoneAjaxPage(WebInterface webInterface) { - super("ajax/unblacklistSone.ajax", webInterface); - } - - /** - * {@inheritDoc} - */ - @Override - protected JsonObject createJsonObject(Request request) { - String soneId = request.getHttpRequest().getParam("sone"); - if (soneId == null) { - return new JsonObject().put("success", false).put("error", "invalid-sone-id"); - } - Sone sone = webInterface.core().getSone(soneId); - webInterface.core().unblacklistSone(sone); - return new JsonObject().put("success", true); - } - -} diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/UnblockSoneAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/UnblockSoneAjaxPage.java deleted file mode 100644 index 9012aee..0000000 --- a/src/main/java/net/pterodactylus/sone/web/ajax/UnblockSoneAjaxPage.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Sone - UnblockSoneAjaxPage.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.ajax; - -import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; - -/** - * AJAX page that lets the user unblock another Sone. - * - * @author David ‘Bombe’ Roden - */ -public class UnblockSoneAjaxPage extends JsonPage { - - /** - * Creates a new “unblock Sone” AJAX page. - * - * @param webInterface - * The Sone web interface - */ - public UnblockSoneAjaxPage(WebInterface webInterface) { - super("ajax/unblockSone.ajax", webInterface); - } - - /** - * {@inheritDoc} - */ - @Override - protected JsonObject createJsonObject(Request request) { - String soneId = request.getHttpRequest().getParam("sone"); - if (soneId == null) { - return new JsonObject().put("success", false).put("error", "invalid-sone-id"); - } - Sone currentSone = getCurrentSone(request.getToadletContext()); - if (currentSone == null) { - return new JsonObject().put("success", false).put("error", "auth-required"); - } - currentSone.removeBlockedSoneId(soneId); - return new JsonObject().put("success", true); - } - -} diff --git a/src/main/resources/i18n/sone.en.properties b/src/main/resources/i18n/sone.en.properties index 9f63a64..53e69e2 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -18,8 +18,6 @@ Navigation.Menu.Item.Logout.Name=Logout Navigation.Menu.Item.Logout.Tooltip=Logs you out of the current Sone Navigation.Menu.Item.Options.Name=Options Navigation.Menu.Item.Options.Tooltip=Options for the Sone plugin -Navigation.Menu.Item.Blacklist.Name=Blacklist -Navigation.Menu.Item.Blacklist.Tooltip=Manages the global blacklist Navigation.Menu.Item.About.Name=About Navigation.Menu.Item.About.Tooltip=Information about Sone Navigation.Menu.Item.Help.Name=Help @@ -44,15 +42,6 @@ Page.Options.Option.ClearOnNextRestart.Description=Resets the configuration of t Page.Options.Option.ReallyClearOnNextRestart.Description=This option needs to be set to “yes” if you really, {strong}really{/strong} want to clear the plugin configuration on the next restart. Page.Options.Button.Save=Save -Page.Blacklist.Title=Blacklist - Sone -Page.Blacklist.Page.Title=Blacklist -Page.Blacklist.Text.Description=The Sone on the blacklist are prevented from being distributed with your next Sone updates, and there will be no updates fetched for these Sones. -Page.Blacklist.Text.Empty=There are currently no Sones in the blacklist. - -Page.BlacklistSone.Title=Blacklist Sone - Sone - -Page.UnblacklistSone.Title=Unblacklist Sone - Sone - Page.Login.Title=Login - Sone Page.Login.Page.Title=Login Page.Login.Label.SelectSone=Select Sone: @@ -156,10 +145,6 @@ Page.ViewSone.FollowSone.Text=Follow this Sone Page.ViewSone.Following.Title=This Sone follows Page.ViewSone.Following.FollowingNone.Text=Apparently, this Sone does not yet follow any other Sone. -Page.BlockSone.Title=Block Sone - Sone - -Page.UnblockSone.Title=Block Sone - Sone - Page.ViewPost.Title=View Post - Sone Page.ViewPost.Page.Title=View Post by {sone} Page.ViewPost.Button.PostReply=Post Reply! @@ -193,10 +178,6 @@ Page.Tail.Text.KeyOfSone=Key of this Sone (give this to other people): View.Sone.Label.LastUpdate=Last update: View.Sone.Button.UnfollowSone=unfollow View.Sone.Button.FollowSone=follow -View.Sone.Button.UnblockSone=unblock -View.Sone.Button.BlockSone=block -View.Sone.Button.BlacklistSone=blacklist -View.Sone.Button.UnblacklistSone=unblacklist View.Sone.Status.Modified=This Sone was modified and waits to be inserted. View.Sone.Status.Unknown=This Sone has not yet been retrieved. View.Sone.Status.Idle=This Sone is idle, i.e. not being inserted or downloaded. diff --git a/src/main/resources/templates/blacklist.html b/src/main/resources/templates/blacklist.html deleted file mode 100644 index 4968cae..0000000 --- a/src/main/resources/templates/blacklist.html +++ /dev/null @@ -1,20 +0,0 @@ -<%include include/head.html> - -

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

- -

<%= Page.Blacklist.Text.Description|l10n|html>

- -
- <%getpage> - <%paginate list=blacklistedSones pagesize=25> - <%= page|store key=pageParameter> - <%include include/pagination.html> - <%foreach pagination.items sone> - <%include include/viewSone.html> - <%foreachelse> -

<%= Page.Blacklist.Text.Empty|l10n|html>

- <%/foreach> - <%include include/pagination.html> -
- -<%include include/tail.html> diff --git a/src/main/resources/templates/blacklistSone.html b/src/main/resources/templates/blacklistSone.html deleted file mode 100644 index 196af72..0000000 --- a/src/main/resources/templates/blacklistSone.html +++ /dev/null @@ -1,3 +0,0 @@ -<%include include/head.html> - -<%include include/tail.html> diff --git a/src/main/resources/templates/blockSone.html b/src/main/resources/templates/blockSone.html deleted file mode 100644 index 196af72..0000000 --- a/src/main/resources/templates/blockSone.html +++ /dev/null @@ -1,3 +0,0 @@ -<%include include/head.html> - -<%include include/tail.html> diff --git a/src/main/resources/templates/include/viewSone.html b/src/main/resources/templates/include/viewSone.html index 39d42da..d4e5b67 100644 --- a/src/main/resources/templates/include/viewSone.html +++ b/src/main/resources/templates/include/viewSone.html @@ -10,45 +10,18 @@
<% sone.requestUri|substring start=4 length=43|html>
<%if ! sone.current> - <%if ! sone.blacklisted> -
+ <%ifnull ! currentSone> + - +
- <%ifnull ! currentSone> -
- - - - -
-
- - - - -
-
- - - - -
-
- - - - -
- <%/if> - <%else> -
+ - +
<%/if> <%/if> diff --git a/src/main/resources/templates/insert/sone.xml b/src/main/resources/templates/insert/sone.xml index 782eccd..c80dbe7 100644 --- a/src/main/resources/templates/insert/sone.xml +++ b/src/main/resources/templates/insert/sone.xml @@ -47,14 +47,4 @@ <%/foreach> - - <%foreach knownSones sone> - - <% sone.id|xml> - <% sone.requestUri|xml> - <% sone.name|xml> - - <%/foreach> - -
diff --git a/src/main/resources/templates/unblacklistSone.html b/src/main/resources/templates/unblacklistSone.html deleted file mode 100644 index 196af72..0000000 --- a/src/main/resources/templates/unblacklistSone.html +++ /dev/null @@ -1,3 +0,0 @@ -<%include include/head.html> - -<%include include/tail.html> diff --git a/src/main/resources/templates/unblockSone.html b/src/main/resources/templates/unblockSone.html deleted file mode 100644 index 196af72..0000000 --- a/src/main/resources/templates/unblockSone.html +++ /dev/null @@ -1,3 +0,0 @@ -<%include include/head.html> - -<%include include/tail.html> -- 2.7.4