moveuser.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. define('INSTALLDIR', dirname(__DIR__));
  20. define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
  21. $shortoptions = 'i:n:r:w:y';
  22. $longoptions = array('id=', 'nickname=', 'remote=', 'password=');
  23. $helptext = <<<END_OF_MOVEUSER_HELP
  24. moveuser.php [options]
  25. Move a local user to a remote account.
  26. -i --id ID of user to move
  27. -n --nickname nickname of the user to move
  28. -r --remote Full ID of remote users
  29. -w --password Password of remote user
  30. -y --yes do not wait for confirmation
  31. Remote user identity must be a Webfinger (nickname@example.com) or
  32. an HTTP or HTTPS URL (http://example.com/social/site/user/nickname).
  33. END_OF_MOVEUSER_HELP;
  34. require_once INSTALLDIR.'/scripts/commandline.inc';
  35. try {
  36. $user = getUser();
  37. $remote = get_option_value('r', 'remote');
  38. if (empty($remote)) {
  39. show_help();
  40. exit(1);
  41. }
  42. $password = get_option_value('w', 'password');
  43. if (!have_option('y', 'yes')) {
  44. print "WARNING: EXPERIMENTAL FEATURE! Moving accounts will delete data from the source site.\n";
  45. print "\n";
  46. print "About to PERMANENTLY move user '{$user->nickname}' to $remote. Are you sure? [y/N] ";
  47. $response = fgets(STDIN);
  48. if (strtolower(trim($response)) != 'y') {
  49. print "Aborting.\n";
  50. exit(0);
  51. }
  52. }
  53. $qm = QueueManager::get();
  54. $qm->enqueue(array($user, $remote, $password), 'acctmove');
  55. } catch (Exception $e) {
  56. print $e->getMessage()."\n";
  57. exit(1);
  58. }