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