backupuser.php 1.9 KB

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