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