joingroup.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /*
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2012 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. define('INSTALLDIR', dirname(__DIR__));
  20. define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
  21. $shortoptions = 'i:n:g:G:';
  22. $longoptions = array('id=', 'nickname=', 'group=', 'group-id=');
  23. $helptext = <<<END_OF_HELP
  24. joingroup.php [options]
  25. Adds a local user to a local group.
  26. -i --id ID of user to add
  27. -n --nickname nickname of the user to add
  28. -g --group nickname or alias of group
  29. -G --group-id ID of group
  30. END_OF_HELP;
  31. require_once INSTALLDIR.'/scripts/commandline.inc';
  32. try {
  33. $user = getUser();
  34. $lgroup = null;
  35. if (have_option('G', 'group-id')) {
  36. $gid = get_option_value('G', 'group-id');
  37. $lgroup = Local_group::getKV('group_id', $gid);
  38. } else if (have_option('g', 'group')) {
  39. $gnick = get_option_value('g', 'group');
  40. $lgroup = Local_group::getKV('nickname', $gnick);
  41. }
  42. if (!$lgroup instanceof Local_group) {
  43. throw new Exception("No such local group: $gnick");
  44. }
  45. $group = User_group::getKV('id', $lgroup->group_id);
  46. $user->joinGroup($group);
  47. print "OK\n";
  48. } catch (Exception $e) {
  49. print $e->getMessage()."\n";
  50. exit(1);
  51. }