2008-10-04 03:14:42 +01:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-10-04 03:14:42 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2008-10-04 03:14:42 +01:00
|
|
|
|
2009-02-11 20:48:30 +00:00
|
|
|
require_once INSTALLDIR.'/lib/command.php';
|
2008-10-04 16:48:46 +01:00
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class CommandInterpreter
|
|
|
|
{
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle_command($user, $text)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
# XXX: localise
|
2008-10-04 03:14:42 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$text = preg_replace('/\s+/', ' ', trim($text));
|
2009-09-21 05:39:57 +01:00
|
|
|
list($cmd, $arg) = $this->split_arg($text);
|
2008-10-04 03:14:42 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# We try to support all the same commands as Twitter, see
|
|
|
|
# http://getsatisfaction.com/twitter/topics/what_are_the_twitter_commands
|
2009-01-06 22:09:39 +00:00
|
|
|
# There are a few compatibility commands from earlier versions of
|
2009-08-25 23:12:20 +01:00
|
|
|
# StatusNet
|
2009-01-06 22:09:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
switch(strtolower($cmd)) {
|
|
|
|
case 'help':
|
|
|
|
if ($arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
return new HelpCommand($user);
|
2009-12-06 02:03:27 +00:00
|
|
|
case 'login':
|
|
|
|
if ($arg) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new LoginCommand($user);
|
|
|
|
}
|
2009-11-16 16:17:14 +00:00
|
|
|
case 'subscribers':
|
2009-11-16 05:19:47 +00:00
|
|
|
if ($arg) {
|
|
|
|
return null;
|
|
|
|
} else {
|
2009-11-16 16:17:14 +00:00
|
|
|
return new SubscribersCommand($user);
|
2009-11-16 05:19:47 +00:00
|
|
|
}
|
2009-11-16 16:17:14 +00:00
|
|
|
case 'subscriptions':
|
2009-11-16 05:19:47 +00:00
|
|
|
if ($arg) {
|
|
|
|
return null;
|
|
|
|
} else {
|
2009-11-16 16:17:14 +00:00
|
|
|
return new SubscriptionsCommand($user);
|
2009-11-16 05:19:47 +00:00
|
|
|
}
|
2009-11-16 16:23:00 +00:00
|
|
|
case 'groups':
|
|
|
|
if ($arg) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new GroupsCommand($user);
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
case 'on':
|
|
|
|
if ($arg) {
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new OnCommand($user, $other);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return new OnCommand($user);
|
|
|
|
}
|
|
|
|
case 'off':
|
|
|
|
if ($arg) {
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new OffCommand($user, $other);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return new OffCommand($user);
|
|
|
|
}
|
|
|
|
case 'stop':
|
|
|
|
case 'quit':
|
|
|
|
if ($arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new OffCommand($user);
|
|
|
|
}
|
2009-08-12 01:09:51 +01:00
|
|
|
case 'join':
|
|
|
|
if (!$arg) {
|
|
|
|
return null;
|
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2009-08-12 01:09:51 +01:00
|
|
|
if ($extra) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new JoinCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'drop':
|
|
|
|
if (!$arg) {
|
|
|
|
return null;
|
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2009-08-12 01:09:51 +01:00
|
|
|
if ($extra) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new DropCommand($user, $other);
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
case 'follow':
|
|
|
|
case 'sub':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new SubCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'leave':
|
|
|
|
case 'unsub':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new UnsubCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'get':
|
|
|
|
case 'last':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new GetCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'd':
|
2009-01-06 22:09:39 +00:00
|
|
|
case 'dm':
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new MessageCommand($user, $other, $extra);
|
|
|
|
}
|
2009-10-28 02:30:21 +00:00
|
|
|
case 'r':
|
|
|
|
case 'reply':
|
|
|
|
if (!$arg) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
|
|
|
if (!$extra) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new ReplyCommand($user, $other, $extra);
|
|
|
|
}
|
2009-12-13 02:24:38 +00:00
|
|
|
case 'repeat':
|
|
|
|
case 'rp':
|
|
|
|
case 'rt':
|
|
|
|
case 'rd':
|
|
|
|
if (!$arg) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
|
|
|
if ($extra) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new RepeatCommand($user, $other);
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
case 'whois':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new WhoisCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'fav':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new FavCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'nudge':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new NudgeCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'stats':
|
|
|
|
if ($arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
return new StatsCommand($user);
|
|
|
|
case 'invite':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($other, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
return new InviteCommand($user, $other);
|
|
|
|
}
|
|
|
|
case 'track':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($word, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($word == 'off') {
|
|
|
|
return new TrackOffCommand($user);
|
|
|
|
} else {
|
|
|
|
return new TrackCommand($user, $word);
|
|
|
|
}
|
|
|
|
case 'untrack':
|
|
|
|
if (!$arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
list($word, $extra) = $this->split_arg($arg);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($extra) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($word == 'all') {
|
|
|
|
return new TrackOffCommand($user);
|
|
|
|
} else {
|
|
|
|
return new UntrackCommand($user, $word);
|
|
|
|
}
|
|
|
|
case 'tracks':
|
|
|
|
case 'tracking':
|
|
|
|
if ($arg) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
return new TrackingCommand($user);
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2009-09-21 05:39:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Split arguments without triggering a PHP notice warning
|
|
|
|
*/
|
|
|
|
function split_arg($text)
|
|
|
|
{
|
|
|
|
$pieces = explode(' ', $text, 2);
|
|
|
|
if (count($pieces) == 1) {
|
|
|
|
$pieces[] = null;
|
|
|
|
}
|
|
|
|
return $pieces;
|
|
|
|
}
|
2008-10-04 03:14:42 +01:00
|
|
|
}
|
|
|
|
|