restoreuser.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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:f:';
  21. $longoptions = array('id=', 'nickname=', 'file=');
  22. $helptext = <<<END_OF_RESTOREUSER_HELP
  23. restoreuser.php [options]
  24. Restore a backed-up user file to the database. If
  25. neither ID or name provided, will create a new user.
  26. -i --id ID of user to export
  27. -n --nickname nickname of the user to export
  28. -f --file file to read from (STDIN by default)
  29. END_OF_RESTOREUSER_HELP;
  30. require_once INSTALLDIR.'/scripts/commandline.inc';
  31. function getActivityStreamDocument()
  32. {
  33. $filename = get_option_value('f', 'file');
  34. if (empty($filename)) {
  35. show_help();
  36. exit(1);
  37. }
  38. if (!file_exists($filename)) {
  39. throw new Exception("No such file '$filename'.");
  40. }
  41. if (!is_file($filename)) {
  42. throw new Exception("Not a regular file: '$filename'.");
  43. }
  44. if (!is_readable($filename)) {
  45. throw new Exception("File '$filename' not readable.");
  46. }
  47. // TRANS: Commandline script output. %s is the filename that contains a backup for a user.
  48. printfv(_("Getting backup from file '%s'.")."\n",$filename);
  49. $xml = file_get_contents($filename);
  50. return $xml;
  51. }
  52. try {
  53. try {
  54. $user = getUser();
  55. } catch (NoUserArgumentException $noae) {
  56. $user = null;
  57. }
  58. $xml = getActivityStreamDocument();
  59. $qm = QueueManager::get();
  60. $qm->enqueue(array($user, $xml, true), 'feedimp');
  61. } catch (Exception $e) {
  62. print $e->getMessage()."\n";
  63. exit(1);
  64. }