diff options
author | Evan Prodromou <evan@status.net> | 2009-11-16 19:03:59 +0100 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-16 19:03:59 +0100 |
commit | d2145a5b7f3a95dcfa90edb4bcd5e5b3bf66c116 (patch) | |
tree | ef31dc1aeb9e111fb0ca3e0b44c347e4203561ac /classes/Profile.php | |
parent | 02cc7af1b6a6f8c460550ad0f884bf5e7a18d176 (diff) |
Move rights check to profile and add right for new notices
Added a right for new notices, realized that the hasRight() method
should be on the profile, and moved it.
Makes this a less atomic commit but that's the way it goes sometimes.
Diffstat (limited to 'classes/Profile.php')
-rw-r--r-- | classes/Profile.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index 5b4394d3b..e3b35533a 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -661,4 +661,42 @@ class Profile extends Memcached_DataObject { $this->revokeRole(Profile_role::SILENCED); } + + /** + * Does this user have the right to do X? + * + * With our role-based authorization, this is merely a lookup for whether the user + * has a particular role. The implementation currently uses a switch statement + * to determine if the user has the pre-defined role to exercise the right. Future + * implementations may allow per-site roles, and different mappings of roles to rights. + * + * @param $right string Name of the right, usually a constant in class Right + * @return boolean whether the user has the right in question + */ + + function hasRight($right) + { + $result = false; + if (Event::handle('UserRightsCheck', array($this, $right, &$result))) { + switch ($right) + { + case Right::DELETEOTHERSNOTICE: + case Right::SANDBOXUSER: + case Right::SILENCEUSER: + case Right::DELETEUSER: + $result = $this->hasRole(Profile_role::MODERATOR); + break; + case Right::CONFIGURESITE: + $result = $this->hasRole(Profile_role::ADMINISTRATOR); + break; + case Right::NEWNOTICE: + $result = !$this->isSilenced(); + break; + default: + $result = false; + break; + } + } + return $result; + } } |