X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fnotify%2FListNotificationFilters.java;h=0a2a518078297a0407ef24acdc41f9a2d3f117e4;hp=8a423c2c8b9db40e3823199e56f09795e21e8da3;hb=3da1daa6488c642430858a4baacc0aa986a6ebc1;hpb=9f562b1024a26cd8841447c6e29c3d89039d7a22 diff --git a/src/main/java/net/pterodactylus/sone/notify/ListNotificationFilters.java b/src/main/java/net/pterodactylus/sone/notify/ListNotificationFilters.java index 8a423c2..0a2a518 100644 --- a/src/main/java/net/pterodactylus/sone/notify/ListNotificationFilters.java +++ b/src/main/java/net/pterodactylus/sone/notify/ListNotificationFilters.java @@ -17,18 +17,18 @@ package net.pterodactylus.sone.notify; -import static com.google.common.base.Preconditions.checkNotNull; +import static com.google.common.collect.FluentIterable.from; import java.util.ArrayList; import java.util.Collection; import java.util.List; +import javax.annotation.Nonnull; +import javax.inject.Inject; +import javax.inject.Singleton; import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.data.PostReply; -import net.pterodactylus.sone.data.Reply; import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.freenet.wot.OwnIdentity; -import net.pterodactylus.sone.freenet.wot.Trust; import net.pterodactylus.util.notify.Notification; import com.google.common.base.Optional; @@ -38,8 +38,18 @@ import com.google.common.base.Optional; * * @author David ‘Bombe’ Roden */ +@Singleton public class ListNotificationFilters { + private final PostVisibilityFilter postVisibilityFilter; + private final ReplyVisibilityFilter replyVisibilityFilter; + + @Inject + public ListNotificationFilters(@Nonnull PostVisibilityFilter postVisibilityFilter, @Nonnull ReplyVisibilityFilter replyVisibilityFilter) { + this.postVisibilityFilter = postVisibilityFilter; + this.replyVisibilityFilter = replyVisibilityFilter; + } + /** * Filters new-post and new-reply notifications in the given list of * notifications. If {@code currentSone} is null, new-post and @@ -49,13 +59,13 @@ public class ListNotificationFilters { * itself will be retained in the notifications. * * @param notifications - * The notifications to filter + * The notifications to filter * @param currentSone - * The current Sone, or {@code null} if not logged in + * The current Sone, or {@code null} if not logged in * @return The filtered notifications */ @SuppressWarnings("unchecked") - public static List filterNotifications(Collection notifications, Sone currentSone) { + public List filterNotifications(Collection notifications, Sone currentSone) { List filteredNotifications = new ArrayList(); for (Notification notification : notifications) { if (notification.getId().equals("new-sone-notification")) { @@ -64,23 +74,30 @@ public class ListNotificationFilters { } filteredNotifications.add(notification); } else if (notification.getId().equals("new-post-notification")) { - if ((currentSone != null) && !currentSone.getOptions().isShowNewPostNotifications()) { + if (currentSone == null) { continue; } - Optional> filteredNotification = filterNewPostNotification((ListNotification) notification, currentSone, true); + if (!currentSone.getOptions().isShowNewPostNotifications()) { + continue; + } + Optional> filteredNotification = filterNewPostNotification((ListNotification) notification, currentSone); if (filteredNotification.isPresent()) { filteredNotifications.add(filteredNotification.get()); } } else if (notification.getId().equals("new-reply-notification")) { - if ((currentSone != null) && !currentSone.getOptions().isShowNewReplyNotifications()) { + if (currentSone == null) { continue; } - Optional> filteredNotification = filterNewReplyNotification((ListNotification) notification, currentSone); + if (!currentSone.getOptions().isShowNewReplyNotifications()) { + continue; + } + Optional> filteredNotification = + filterNewReplyNotification((ListNotification) notification, currentSone); if (filteredNotification.isPresent()) { filteredNotifications.add(filteredNotification.get()); } } else if (notification.getId().equals("mention-notification")) { - Optional> filteredNotification = filterNewPostNotification((ListNotification) notification, null, false); + Optional> filteredNotification = filterNewPostNotification((ListNotification) notification, null); if (filteredNotification.isPresent()) { filteredNotifications.add(filteredNotification.get()); } @@ -99,25 +116,16 @@ public class ListNotificationFilters { * other posts are removed. * * @param newPostNotification - * The new-post notification + * The new-post notification * @param currentSone - * The current Sone, or {@code null} if not logged in - * @param soneRequired - * Whether a non-{@code null} Sone in {@code currentSone} is - * required + * The current Sone, or {@code null} if not logged in * @return The filtered new-post notification, or {@code null} if the - * notification should be removed + * notification should be removed */ - private static Optional> filterNewPostNotification(ListNotification newPostNotification, Sone currentSone, boolean soneRequired) { - if (soneRequired && (currentSone == null)) { - return Optional.absent(); - } - List newPosts = new ArrayList(); - for (Post post : newPostNotification.getElements()) { - if (isPostVisible(currentSone, post)) { - newPosts.add(post); - } - } + @Nonnull + private Optional> filterNewPostNotification(@Nonnull ListNotification newPostNotification, + @Nonnull Sone currentSone) { + List newPosts = from(newPostNotification.getElements()).filter(postVisibilityFilter.isVisible(currentSone)).toList(); if (newPosts.isEmpty()) { return Optional.absent(); } @@ -138,22 +146,15 @@ public class ListNotificationFilters { * replies are removed. * * @param newReplyNotification - * The new-reply notification + * The new-reply notification * @param currentSone - * The current Sone, or {@code null} if not logged in + * The current Sone, or {@code null} if not logged in * @return The filtered new-reply notification, or {@code null} if the - * notification should be removed + * notification should be removed */ - private static Optional> filterNewReplyNotification(ListNotification newReplyNotification, Sone currentSone) { - if (currentSone == null) { - return Optional.absent(); - } - List newReplies = new ArrayList(); - for (PostReply reply : newReplyNotification.getElements()) { - if (isReplyVisible(currentSone, reply)) { - newReplies.add(reply); - } - } + private Optional> filterNewReplyNotification(ListNotification newReplyNotification, + @Nonnull Sone currentSone) { + List newReplies = from(newReplyNotification.getElements()).filter(replyVisibilityFilter.isVisible(currentSone)).toList(); if (newReplies.isEmpty()) { return Optional.absent(); } @@ -166,128 +167,4 @@ public class ListNotificationFilters { return Optional.of(filteredNotification); } - /** - * Filters the given posts, using {@link #isPostVisible(Sone, Post)} to - * decide whether a post should be contained in the returned list. If - * {@code currentSone} is not {@code null} it is used to filter out posts - * that are from Sones that are not followed or not trusted by the given - * Sone. - * - * @param posts - * The posts to filter - * @param currentSone - * The current Sone (may be {@code null}) - * @return The filtered posts - */ - public static List filterPosts(Collection posts, Sone currentSone) { - List filteredPosts = new ArrayList(); - for (Post post : posts) { - if (isPostVisible(currentSone, post)) { - filteredPosts.add(post); - } - } - return filteredPosts; - } - - /** - * Checks whether a post is visible to the given Sone. A post is not - * considered visible if one of the following statements is true: - *
    - *
  • The post does not have a Sone.
  • - *
  • The post’s {@link Post#getTime() time} is in the future.
  • - *
- *

- * If {@code post} is not {@code null} more checks are performed, and the - * post will be invisible if: - *

- *
    - *
  • The Sone of the post is not the given Sone, the given Sone does not - * follow the post’s Sone, and the given Sone is not the recipient of the - * post.
  • - *
  • The trust relationship between the two Sones can not be retrieved.
  • - *
  • The given Sone has explicitely assigned negative trust to the post’s - * Sone.
  • - *
  • The given Sone has not explicitely assigned negative trust to the - * post’s Sone but the implicit trust is negative.
  • - *
- * If none of these statements is true the post is considered visible. - * - * @param sone - * The Sone that checks for a post’s visibility (may be - * {@code null} to skip Sone-specific checks, such as trust) - * @param post - * The post to check for visibility - * @return {@code true} if the post is considered visible, {@code false} - * otherwise - */ - public static boolean isPostVisible(Sone sone, Post post) { - checkNotNull(post, "post must not be null"); - if (!post.isLoaded()) { - return false; - } - Sone postSone = post.getSone(); - if (sone != null) { - Trust trust = postSone.getIdentity().getTrust((OwnIdentity) sone.getIdentity()); - if (trust != null) { - if ((trust.getExplicit() != null) && (trust.getExplicit() < 0)) { - return false; - } - if ((trust.getExplicit() == null) && (trust.getImplicit() != null) && (trust.getImplicit() < 0)) { - return false; - } - } else { - /* - * a null trust means that the trust updater has not yet - * received a trust value for this relation. if we return false, - * the post feed will stay empty until the trust updater has - * received trust values. to prevent this we simply assume that - * posts are visible if there is no trust. - */ - } - if ((!postSone.equals(sone)) && !sone.hasFriend(postSone.getId()) && !sone.getId().equals(post.getRecipientId().orNull())) { - return false; - } - } - return post.getTime() <= System.currentTimeMillis(); - } - - /** - * Checks whether a reply is visible to the given Sone. A reply is not - * considered visible if one of the following statements is true: - *
    - *
  • The reply does not have a post.
  • - *
  • The reply’s post does not have a Sone.
  • - *
  • The Sone of the reply’s post is not the given Sone, the given Sone - * does not follow the reply’s post’s Sone, and the given Sone is not the - * recipient of the reply’s post.
  • - *
  • The trust relationship between the two Sones can not be retrieved.
  • - *
  • The given Sone has explicitely assigned negative trust to the post’s - * Sone.
  • - *
  • The given Sone has not explicitely assigned negative trust to the - * reply’s post’s Sone but the implicit trust is negative.
  • - *
  • The reply’s post’s {@link Post#getTime() time} is in the future.
  • - *
  • The reply’s {@link Reply#getTime() time} is in the future.
  • - *
- * If none of these statements is true the reply is considered visible. - * - * @param sone - * The Sone that checks for a post’s visibility (may be - * {@code null} to skip Sone-specific checks, such as trust) - * @param reply - * The reply to check for visibility - * @return {@code true} if the reply is considered visible, {@code false} - * otherwise - */ - public static boolean isReplyVisible(Sone sone, PostReply reply) { - checkNotNull(reply, "reply must not be null"); - Optional post = reply.getPost(); - if (!post.isPresent()) { - return false; - } - if (!isPostVisible(sone, post.get())) { - return false; - } - return reply.getTime() <= System.currentTimeMillis(); - } - }