4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2008, 2009, 2010 StatusNet, Inc.
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.
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.
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/>.
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
23 $shortoptions = 'i:n:o';
24 $longoptions = array('id=', 'nickname=', 'owner');
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
30 -i --id ID of the user
31 -n --nickname nickname of the user
32 -o --owner use the site owner
36 require_once INSTALLDIR.'/scripts/commandline.inc';
38 function interpretCommand($user, $body)
40 $inter = new CommandInterpreter();
41 $chan = new CLIChannel();
42 $cmd = $inter->handle_command($user, $body);
47 $chan->error($user, "Not a valid command. Try 'help'?");
52 if (have_option('i', 'id')) {
53 $id = get_option_value('i', 'id');
54 $user = User::getKV('id', $id);
56 print "Can't find user with ID $id\n";
59 } else if (have_option('n', 'nickname')) {
60 $nickname = get_option_value('n', 'nickname');
61 $user = User::getKV('nickname', $nickname);
63 print "Can't find user with nickname '$nickname'\n";
66 } else if (have_option('o', 'owner')) {
68 $user = User::siteOwner();
69 } catch (ServerException $e) {
70 print "Site has no owner.\n";
74 print "You must provide either an ID or a nickname.\n\n";
79 // @todo refactor the interactive console in console.php and use
80 // that to optionally make an interactive test console here too.
81 // Would be good to help people test commands when XMPP or email
82 // isn't available locally.
83 interpretCommand($user, implode(' ', $args));