ModHelperPlugin.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /*
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2010, StatusNet, Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. if (!defined('GNUSOCIAL')) { exit(1); }
  20. /**
  21. * @package ModHelperPlugin
  22. * @maintainer Brion Vibber <brion@status.net>
  23. */
  24. class ModHelperPlugin extends Plugin
  25. {
  26. const PLUGIN_VERSION = '2.0.0';
  27. static $rights = array(Right::SILENCEUSER, Right::TRAINSPAM, Right::REVIEWSPAM);
  28. public function onPluginVersion(array &$versions): bool
  29. {
  30. $versions[] = array('name' => 'ModHelper',
  31. 'version' => self::PLUGIN_VERSION,
  32. 'author' => 'Brion Vibber',
  33. 'homepage' => GNUSOCIAL_ENGINE_REPO_URL . 'tree/master/plugins/ModHelper',
  34. 'rawdescription' =>
  35. // TRANS: Plugin description.
  36. _m('Lets users who have been manually marked as "modhelper"s silence accounts.'));
  37. return true;
  38. }
  39. function onUserRightsCheck($profile, $right, &$result)
  40. {
  41. if (in_array($right, self::$rights)) {
  42. // To silence a profile without accidentally silencing other
  43. // privileged users, always call Profile->silenceAs($actor)
  44. // since it checks target's privileges too.
  45. if ($profile->hasRole('modhelper')) {
  46. $result = true;
  47. return false;
  48. }
  49. }
  50. return true;
  51. }
  52. }