]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/moveuser.php
Merge branch 'moveaccount' of gitorious.org:~evan/statusnet/evans-mainline into movea...
[quix0rs-gnu-social.git] / scripts / moveuser.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:r:w:';
23 $longoptions = array('id=', 'nickname=', 'remote=', 'password=');
24
25 $helptext = <<<END_OF_MOVEUSER_HELP
26 moveuser.php [options]
27 Move a local user to a remote account.
28
29   -i --id       ID of user to move
30   -n --nickname nickname of the user to move
31   -r --remote   Full ID of remote users
32   -w --password Password of remote user
33
34 Remote user identity must be a Webfinger (nickname@example.com) or 
35 an HTTP or HTTPS URL (http://example.com/social/site/user/nickname).
36
37 END_OF_MOVEUSER_HELP;
38
39 require_once INSTALLDIR.'/scripts/commandline.inc';
40
41 try {
42
43     $user = getUser();
44
45     $remote = get_option_value('r', 'remote');
46
47     if (empty($remote)) {
48         show_help();
49         exit(1);
50     }
51
52     $password = get_option_value('w', 'password');
53
54     $mover = new AccountMover($user, $remote, $password);
55
56     $mover->move();
57
58 } catch (Exception $e) {
59     print $e->getMessage()."\n";
60     exit(1);
61 }