]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/command.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / scripts / command.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * StatusNet - a distributed open-source microblogging tool
5  * Copyright (C) 2008, 2009, 2010 StatusNet, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
22
23 $shortoptions = 'i:n:';
24 $longoptions = array('id=', 'nickname=');
25
26 $helptext = <<<END_OF_USERROLE_HELP
27 command.php [options] [command line]
28 Perform commands on behalf of a user, such as sub, unsub, join, drop
29
30   -i --id       ID of the user
31   -n --nickname nickname of the user
32
33 END_OF_USERROLE_HELP;
34
35 require_once INSTALLDIR.'/scripts/commandline.inc';
36
37
38
39 function interpretCommand($user, $body)
40 {
41     $inter = new CommandInterpreter();
42     $chan = new CLIChannel();
43     $cmd = $inter->handle_command($user, $body);
44     if ($cmd) {
45         $cmd->execute($chan);
46         return true;
47     } else {
48         $chan->error($user, "Not a valid command. Try 'help'?");
49         return false;
50     }
51 }
52
53
54
55 if (have_option('i', 'id')) {
56     $id = get_option_value('i', 'id');
57     $user = User::staticGet('id', $id);
58     if (empty($user)) {
59         print "Can't find user with ID $id\n";
60         exit(1);
61     }
62 } else if (have_option('n', 'nickname')) {
63     $nickname = get_option_value('n', 'nickname');
64     $user = User::staticGet('nickname', $nickname);
65     if (empty($user)) {
66         print "Can't find user with nickname '$nickname'\n";
67         exit(1);
68     }
69 } else {
70     print "You must provide either an ID or a nickname.\n\n";
71     print $helptext;
72     exit(1);
73 }
74
75 // @todo refactor the interactive console in console.php and use
76 // that to optionally make an interactive test console here too.
77 // Would be good to help people test commands when XMPP or email
78 // isn't available locally.
79 interpretCommand($user, implode(' ', $args));
80