]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/command.php
Make attachment fit better in notice: drop text and link
[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', dirname(__DIR__));
22 define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
23
24 $shortoptions = 'i:n:o';
25 $longoptions = array('id=', 'nickname=', 'owner');
26
27 $helptext = <<<END_OF_USERROLE_HELP
28 command.php [options] [command line]
29 Perform commands on behalf of a user, such as sub, unsub, join, drop
30
31   -i --id       ID of the user
32   -n --nickname nickname of the user
33   -o --owner    use the site owner
34
35 END_OF_USERROLE_HELP;
36
37 require_once INSTALLDIR . '/scripts/commandline.inc';
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 if (have_option('i', 'id')) {
54     $id = get_option_value('i', 'id');
55     $user = User::getKV('id', $id);
56     if (empty($user)) {
57         print "Can't find user with ID $id\n";
58         exit(1);
59     }
60 } else if (have_option('n', 'nickname')) {
61     $nickname = get_option_value('n', 'nickname');
62     $user = User::getKV('nickname', $nickname);
63     if (empty($user)) {
64         print "Can't find user with nickname '$nickname'\n";
65         exit(1);
66     }
67 } else if (have_option('o', 'owner')) {
68     try {
69         $user = User::siteOwner();
70     } catch (ServerException $e) {
71         print "Site has no owner.\n";
72         exit(1);
73     }
74 } else {
75     print "You must provide either an ID or a nickname.\n\n";
76     print $helptext;
77     exit(1);
78 }
79
80 // @todo refactor the interactive console in console.php and use
81 // that to optionally make an interactive test console here too.
82 // Would be good to help people test commands when XMPP or email
83 // isn't available locally.
84 interpretCommand($user, implode(' ', $args));
85