backupuser.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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:f:a:j';
  22. $longoptions = array('id=', 'nickname=', 'file=', 'after=', 'json');
  23. $helptext = <<<END_OF_EXPORTACTIVITYSTREAM_HELP
  24. exportactivitystream.php [options]
  25. Export a StatusNet user history to a file
  26. -i --id ID of user to export
  27. -n --nickname nickname of the user to export
  28. -j --json Output JSON (default Atom)
  29. -a --after Only activities after the given date
  30. END_OF_EXPORTACTIVITYSTREAM_HELP;
  31. require_once INSTALLDIR.'/scripts/commandline.inc';
  32. try {
  33. $user = getUser();
  34. if (have_option('a', 'after')) {
  35. $afterStr = get_option_value('a', 'after');
  36. $after = strtotime($afterStr);
  37. $actstr = new UserActivityStream($user, true, UserActivityStream::OUTPUT_RAW, $after);
  38. } else {
  39. $actstr = new UserActivityStream($user, true, UserActivityStream::OUTPUT_RAW);
  40. }
  41. if (have_option('j', 'json')) {
  42. $actstr->writeJSON(STDOUT);
  43. } else {
  44. print $actstr->getString();
  45. }
  46. } catch (Exception $e) {
  47. print $e->getMessage()."\n";
  48. exit(1);
  49. }