moveuser.php 2.2 KB

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