]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Hide posts by silenced users
authorEvan Prodromou <evan@status.net>
Sat, 31 Dec 2011 16:56:54 +0000 (08:56 -0800)
committerEvan Prodromou <evan@status.net>
Sat, 31 Dec 2011 16:56:54 +0000 (08:56 -0800)
classes/Notice.php

index 9ee5696e3f47a3cb68a8ccb79ca3422edcaccae4..38e41d29f17634533183d2976921a13a47e4eaab 100644 (file)
@@ -2381,24 +2381,34 @@ class Notice extends Managed_DataObject
             $scope = self::defaultScope();
         }
 
-        // If there's no scope, anyone (even anon) is in scope.
+        $author = $this->getProfile();
 
-        if ($scope == 0) {
+        // Author is always in scope
+
+        if ($author->id == $profile->id) {
             return true;
         }
 
-        // If there's scope, anon cannot be in scope
+        // If the author is silenced, only show to 
+        // folks who can un-silence; note ignores scope
 
-        if (empty($profile)) {
+        if ($author->hasRole(Profile_role::SILENCED) &&
+            (empty($profile) || !$profile->hasRight(Right::SILENCEUSER))) {
             return false;
         }
 
-        // Author is always in scope
+        // If there's no scope, anyone (even anon) is in scope.
 
-        if ($this->profile_id == $profile->id) {
+        if ($scope == 0) {
             return true;
         }
 
+        // If there's scope, anon cannot be in scope
+
+        if (empty($profile)) {
+            return false;
+        }
+
         // Only for users on this site
 
         if ($scope & Notice::SITE_SCOPE) {
@@ -2445,7 +2455,6 @@ class Notice extends Managed_DataObject
         // Only for followers of the author
 
         if ($scope & Notice::FOLLOWER_SCOPE) {
-            $author = $this->getProfile();
             if (!Subscription::exists($profile, $author)) {
                 return false;
             }