Hide posts by silenced users
This commit is contained in:
parent
bff89bc864
commit
d22fc7423c
@ -2381,6 +2381,22 @@ class Notice extends Managed_DataObject
|
|||||||
$scope = self::defaultScope();
|
$scope = self::defaultScope();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$author = $this->getProfile();
|
||||||
|
|
||||||
|
// Author is always in scope
|
||||||
|
|
||||||
|
if ($author->id == $profile->id) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the author is silenced, only show to
|
||||||
|
// folks who can un-silence; note ignores scope
|
||||||
|
|
||||||
|
if ($author->hasRole(Profile_role::SILENCED) &&
|
||||||
|
(empty($profile) || !$profile->hasRight(Right::SILENCEUSER))) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// If there's no scope, anyone (even anon) is in scope.
|
// If there's no scope, anyone (even anon) is in scope.
|
||||||
|
|
||||||
if ($scope == 0) {
|
if ($scope == 0) {
|
||||||
@ -2393,12 +2409,6 @@ class Notice extends Managed_DataObject
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Author is always in scope
|
|
||||||
|
|
||||||
if ($this->profile_id == $profile->id) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Only for users on this site
|
// Only for users on this site
|
||||||
|
|
||||||
if ($scope & Notice::SITE_SCOPE) {
|
if ($scope & Notice::SITE_SCOPE) {
|
||||||
@ -2445,7 +2455,6 @@ class Notice extends Managed_DataObject
|
|||||||
// Only for followers of the author
|
// Only for followers of the author
|
||||||
|
|
||||||
if ($scope & Notice::FOLLOWER_SCOPE) {
|
if ($scope & Notice::FOLLOWER_SCOPE) {
|
||||||
$author = $this->getProfile();
|
|
||||||
if (!Subscription::exists($profile, $author)) {
|
if (!Subscription::exists($profile, $author)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user