userrole.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #!/usr/bin/env php
  2. <?php
  3. /*
  4. * StatusNet - a distributed open-source microblogging tool
  5. * Copyright (C) 2008, 2009, StatusNet, Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. define('INSTALLDIR', dirname(__DIR__));
  21. define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
  22. $shortoptions = 'i:n:r:d';
  23. $longoptions = array('id=', 'nickname=', 'role=', 'delete');
  24. $helptext = <<<END_OF_USERROLE_HELP
  25. userrole.php [options]
  26. modifies a role for the given user
  27. Available roles: owner moderator administrator sandboxed silenced deleted
  28. -d --delete delete the role
  29. -i --id ID of the user
  30. -n --nickname nickname of the user
  31. -r --role role to add (or delete)
  32. END_OF_USERROLE_HELP;
  33. require_once INSTALLDIR.'/scripts/commandline.inc';
  34. if (have_option('i', 'id')) {
  35. $id = get_option_value('i', 'id');
  36. $profile = Profile::getKV('id', $id);
  37. if (empty($profile)) {
  38. print "Can't find user with ID $id\n";
  39. exit(1);
  40. }
  41. } else if (have_option('n', 'nickname')) {
  42. $nickname = get_option_value('n', 'nickname');
  43. $user = User::getKV('nickname', $nickname);
  44. if (empty($user)) {
  45. print "Can't find user with nickname '$nickname'\n";
  46. exit(1);
  47. }
  48. $profile = $user->getProfile();
  49. if (empty($profile)) {
  50. print "User with ID $id has no profile\n";
  51. exit(1);
  52. }
  53. } else {
  54. print "You must provide either an ID or a nickname.\n";
  55. exit(1);
  56. }
  57. $role = get_option_value('r', 'role');
  58. if (empty($role)) {
  59. print "You must provide a role.\n";
  60. exit(1);
  61. }
  62. if (have_option('d', 'delete')) {
  63. print "Revoking role '$role' from user '$profile->nickname' ($profile->id)...";
  64. try {
  65. $profile->revokeRole($role);
  66. print "OK\n";
  67. } catch (Exception $e) {
  68. print "FAIL\n";
  69. print $e->getMessage();
  70. print "\n";
  71. }
  72. } else {
  73. print "Granting role '$role' to user '$profile->nickname' ($profile->id)...";
  74. try {
  75. $profile->grantRole($role);
  76. print "OK\n";
  77. } catch (Exception $e) {
  78. print "FAIL\n";
  79. print $e->getMessage();
  80. print "\n";
  81. }
  82. }