joingroup.php 1.8 KB

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