]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/command.php
Merge branch 'limitdist2' into 1.0.x
[quix0rs-gnu-social.git] / lib / command.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, 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 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/channel.php');
23
24 class Command
25 {
26     var $user = null;
27
28     function __construct($user=null)
29     {
30         $this->user = $user;
31     }
32
33     /**
34      * Execute the command and send success or error results
35      * back via the given communications channel.
36      *
37      * @param Channel
38      */
39     public function execute($channel)
40     {
41         try {
42             $this->handle($channel);
43         } catch (CommandException $e) {
44             $channel->error($this->user, $e->getMessage());
45         } catch (Exception $e) {
46             common_log(LOG_ERR, "Error handling " . get_class($this) . ": " . $e->getMessage());
47             $channel->error($this->user, $e->getMessage());
48         }
49     }
50
51     /**
52      * Override this with the meat!
53      *
54      * An error to send back to the user may be sent by throwing
55      * a CommandException with a formatted message.
56      *
57      * @param Channel
58      * @throws CommandException
59      */
60     function handle($channel)
61     {
62         return false;
63     }
64
65     /**
66      * Look up a notice from an argument, by poster's name to get last post
67      * or notice_id prefixed with #.
68      *
69      * @return Notice
70      * @throws CommandException
71      */
72     function getNotice($arg)
73     {
74         $notice = null;
75         if (Event::handle('StartCommandGetNotice', array($this, $arg, &$notice))) {
76             if(substr($this->other,0,1)=='#'){
77                 // A specific notice_id #123
78
79                 $notice = Notice::staticGet(substr($arg,1));
80                 if (!$notice) {
81                     // TRANS: Command exception text shown when a notice ID is requested that does not exist.
82                     throw new CommandException(_('Notice with that id does not exist.'));
83                 }
84             }
85
86             if (Validate::uri($this->other)) {
87                 // A specific notice by URI lookup
88                 $notice = Notice::staticGet('uri', $arg);
89             }
90
91             if (!$notice) {
92                 // Local or remote profile name to get their last notice.
93                 // May throw an exception and report 'no such user'
94                 $recipient = $this->getProfile($arg);
95
96                 $notice = $recipient->getCurrentNotice();
97                 if (!$notice) {
98                     // TRANS: Command exception text shown when a last user notice is requested and it does not exist.
99                     throw new CommandException(_('User has no last notice.'));
100                 }
101             }
102         }
103         Event::handle('EndCommandGetNotice', array($this, $arg, &$notice));
104         if (!$notice) {
105             // TRANS: Command exception text shown when a notice ID is requested that does not exist.
106             throw new CommandException(_('Notice with that id does not exist.'));
107         }
108         return $notice;
109     }
110
111     /**
112      * Look up a local or remote profile by nickname.
113      *
114      * @return Profile
115      * @throws CommandException
116      */
117     function getProfile($arg)
118     {
119         $profile = null;
120         if (Event::handle('StartCommandGetProfile', array($this, $arg, &$profile))) {
121             $profile =
122               common_relative_profile($this->user, common_canonical_nickname($arg));
123         }
124         Event::handle('EndCommandGetProfile', array($this, $arg, &$profile));
125         if (!$profile) {
126             // TRANS: Message given requesting a profile for a non-existing user.
127             // TRANS: %s is the nickname of the user for which the profile could not be found.
128             throw new CommandException(sprintf(_('Could not find a user with nickname %s.'), $arg));
129         }
130         return $profile;
131     }
132
133     /**
134      * Get a local user by name
135      * @return User
136      * @throws CommandException
137      */
138     function getUser($arg)
139     {
140         $user = null;
141         if (Event::handle('StartCommandGetUser', array($this, $arg, &$user))) {
142             $user = User::staticGet('nickname', Nickname::normalize($arg));
143         }
144         Event::handle('EndCommandGetUser', array($this, $arg, &$user));
145         if (!$user){
146             // TRANS: Message given getting a non-existing user.
147             // TRANS: %s is the nickname of the user that could not be found.
148             throw new CommandException(sprintf(_('Could not find a local user with nickname %s.'),
149                                $arg));
150         }
151         return $user;
152     }
153
154     /**
155      * Get a local or remote group by name.
156      * @return User_group
157      * @throws CommandException
158      */
159     function getGroup($arg)
160     {
161         $group = null;
162         if (Event::handle('StartCommandGetGroup', array($this, $arg, &$group))) {
163             $group = User_group::getForNickname($arg, $this->user->getProfile());
164         }
165         Event::handle('EndCommandGetGroup', array($this, $arg, &$group));
166         if (!$group) {
167             // TRANS: Command exception text shown when a group is requested that does not exist.
168             throw new CommandException(_('No such group.'));
169         }
170         return $group;
171     }
172 }
173
174 class CommandException extends Exception
175 {
176 }
177
178 class UnimplementedCommand extends Command
179 {
180     function handle($channel)
181     {
182         // TRANS: Error text shown when an unimplemented command is given.
183         $channel->error($this->user, _("Sorry, this command is not yet implemented."));
184     }
185 }
186
187 class TrackingCommand extends UnimplementedCommand
188 {
189 }
190
191 class TrackOffCommand extends UnimplementedCommand
192 {
193 }
194
195 class TrackCommand extends UnimplementedCommand
196 {
197     var $word = null;
198     function __construct($user, $word)
199     {
200         parent::__construct($user);
201         $this->word = $word;
202     }
203 }
204
205 class UntrackCommand extends UnimplementedCommand
206 {
207     var $word = null;
208     function __construct($user, $word)
209     {
210         parent::__construct($user);
211         $this->word = $word;
212     }
213 }
214
215 class NudgeCommand extends Command
216 {
217     var $other = null;
218     function __construct($user, $other)
219     {
220         parent::__construct($user);
221         $this->other = $other;
222     }
223
224     function handle($channel)
225     {
226         $recipient = $this->getUser($this->other);
227         if ($recipient->id == $this->user->id) {
228             // TRANS: Command exception text shown when a user tries to nudge themselves.
229             throw new CommandException(_('It does not make a lot of sense to nudge yourself!'));
230         } else {
231             if ($recipient->email && $recipient->emailnotifynudge) {
232                 mail_notify_nudge($this->user, $recipient);
233             }
234             // XXX: notify by IM
235             // XXX: notify by SMS
236             // TRANS: Message given having nudged another user.
237             // TRANS: %s is the nickname of the user that was nudged.
238             $channel->output($this->user, sprintf(_('Nudge sent to %s.'),
239                            $recipient->nickname));
240         }
241     }
242 }
243
244 class InviteCommand extends UnimplementedCommand
245 {
246     var $other = null;
247     function __construct($user, $other)
248     {
249         parent::__construct($user);
250         $this->other = $other;
251     }
252 }
253
254 class StatsCommand extends Command
255 {
256     function handle($channel)
257     {
258         $profile = $this->user->getProfile();
259
260         $subs_count   = $profile->subscriptionCount();
261         $subbed_count = $profile->subscriberCount();
262         $notice_count = $profile->noticeCount();
263
264         // TRANS: User statistics text.
265         // TRANS: %1$s is the number of other user the user is subscribed to.
266         // TRANS: %2$s is the number of users that are subscribed to the user.
267         // TRANS: %3$s is the number of notices the user has sent.
268         $channel->output($this->user, sprintf(_("Subscriptions: %1\$s\n".
269                                    "Subscribers: %2\$s\n".
270                                    "Notices: %3\$s"),
271                                  $subs_count,
272                                  $subbed_count,
273                                  $notice_count));
274     }
275 }
276
277 class FavCommand extends Command
278 {
279     var $other = null;
280
281     function __construct($user, $other)
282     {
283         parent::__construct($user);
284         $this->other = $other;
285     }
286
287     function handle($channel)
288     {
289         $notice = $this->getNotice($this->other);
290
291         $fave            = new Fave();
292         $fave->user_id   = $this->user->id;
293         $fave->notice_id = $notice->id;
294         $fave->find();
295
296         if ($fave->fetch()) {
297             // TRANS: Error message text shown when a favorite could not be set because it has already been favorited.
298             $channel->error($this->user, _('Could not create favorite: already favorited.'));
299             return;
300         }
301
302         $fave = Fave::addNew($this->user->getProfile(), $notice);
303
304         if (!$fave) {
305             // TRANS: Error message text shown when a favorite could not be set.
306             $channel->error($this->user, _('Could not create favorite.'));
307             return;
308         }
309
310         // @fixme favorite notification should be triggered
311         // at a lower level
312
313         $other = User::staticGet('id', $notice->profile_id);
314
315         if ($other && $other->id != $this->user->id) {
316             if ($other->email && $other->emailnotifyfav) {
317                 mail_notify_fave($other, $this->user, $notice);
318             }
319         }
320
321         $this->user->blowFavesCache();
322
323         // TRANS: Text shown when a notice has been marked as favourite successfully.
324         $channel->output($this->user, _('Notice marked as fave.'));
325     }
326 }
327
328 class JoinCommand extends Command
329 {
330     var $other = null;
331
332     function __construct($user, $other)
333     {
334         parent::__construct($user);
335         $this->other = $other;
336     }
337
338     function handle($channel)
339     {
340         $group = $this->getGroup($this->other);
341         $cur   = $this->user;
342
343         if ($cur->isMember($group)) {
344             // TRANS: Error text shown a user tries to join a group they already are a member of.
345             $channel->error($cur, _('You are already a member of that group.'));
346             return;
347         }
348         if (Group_block::isBlocked($group, $cur->getProfile())) {
349             // TRANS: Error text shown when a user tries to join a group they are blocked from joining.
350           $channel->error($cur, _('You have been blocked from that group by the admin.'));
351             return;
352         }
353
354         try {
355             $cur->joinGroup($group);
356         } catch (Exception $e) {
357             // TRANS: Message given having failed to add a user to a group.
358             // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
359             $channel->error($cur, sprintf(_('Could not join user %1$s to group %2$s.'),
360                                           $cur->nickname, $group->nickname));
361             return;
362         }
363
364         // TRANS: Message given having added a user to a group.
365         // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
366         $channel->output($cur, sprintf(_('%1$s joined group %2$s.'),
367                                               $cur->nickname,
368                                               $group->nickname));
369     }
370 }
371
372 class DropCommand extends Command
373 {
374     var $other = null;
375
376     function __construct($user, $other)
377     {
378         parent::__construct($user);
379         $this->other = $other;
380     }
381
382     function handle($channel)
383     {
384         $group = $this->getGroup($this->other);
385         $cur   = $this->user;
386
387         if (!$group) {
388             // TRANS: Error text shown when trying to leave a group that does not exist.
389             $channel->error($cur, _('No such group.'));
390             return;
391         }
392
393         if (!$cur->isMember($group)) {
394             // TRANS: Error text shown when trying to leave an existing group the user is not a member of.
395             $channel->error($cur, _('You are not a member of that group.'));
396             return;
397         }
398
399         try {
400             $cur->leaveGroup($group);
401         } catch (Exception $e) {
402             // TRANS: Message given having failed to remove a user from a group.
403             // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
404             $channel->error($cur, sprintf(_('Could not remove user %1$s from group %2$s.'),
405                                           $cur->nickname, $group->nickname));
406             return;
407         }
408
409         // TRANS: Message given having removed a user from a group.
410         // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
411         $channel->output($cur, sprintf(_('%1$s left group %2$s.'),
412                                               $cur->nickname,
413                                               $group->nickname));
414     }
415 }
416
417 class WhoisCommand extends Command
418 {
419     var $other = null;
420     function __construct($user, $other)
421     {
422         parent::__construct($user);
423         $this->other = $other;
424     }
425
426     function handle($channel)
427     {
428         $recipient = $this->getProfile($this->other);
429
430         // TRANS: Whois output.
431         // TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
432         $whois = sprintf(_m('WHOIS',"%1\$s (%2\$s)"), $recipient->nickname,
433                          $recipient->profileurl);
434         if ($recipient->fullname) {
435             // TRANS: Whois output. %s is the full name of the queried user.
436             $whois .= "\n" . sprintf(_('Fullname: %s'), $recipient->fullname);
437         }
438         if ($recipient->location) {
439             // TRANS: Whois output. %s is the location of the queried user.
440             $whois .= "\n" . sprintf(_('Location: %s'), $recipient->location);
441         }
442         if ($recipient->homepage) {
443             // TRANS: Whois output. %s is the homepage of the queried user.
444             $whois .= "\n" . sprintf(_('Homepage: %s'), $recipient->homepage);
445         }
446         if ($recipient->bio) {
447             // TRANS: Whois output. %s is the bio information of the queried user.
448             $whois .= "\n" . sprintf(_('About: %s'), $recipient->bio);
449         }
450         $channel->output($this->user, $whois);
451     }
452 }
453
454 class MessageCommand extends Command
455 {
456     var $other = null;
457     var $text = null;
458     function __construct($user, $other, $text)
459     {
460         parent::__construct($user);
461         $this->other = $other;
462         $this->text = $text;
463     }
464
465     function handle($channel)
466     {
467         try {
468             $other = $this->getUser($this->other);
469         } catch (CommandException $e) {
470             try {
471                 $profile = $this->getProfile($this->other);
472             } catch (CommandException $f) {
473                 throw $e;
474             }
475             // TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
476             // TRANS: %s is a remote profile.
477             throw new CommandException(sprintf(_('%s is a remote profile; you can only send direct messages to users on the same server.'), $this->other));
478         }
479
480         $len = mb_strlen($this->text);
481
482         if ($len == 0) {
483             // TRANS: Command exception text shown when trying to send a direct message to another user without content.
484             $channel->error($this->user, _('No content!'));
485             return;
486         }
487
488         $this->text = $this->user->shortenLinks($this->text);
489
490         if (Message::contentTooLong($this->text)) {
491             // XXX: i18n. Needs plural support.
492             // TRANS: Message given if content is too long. %1$sd is used for plural.
493             // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
494             $channel->error($this->user, sprintf(_m('Message too long - maximum is %1$d character, you sent %2$d.',
495                                                     'Message too long - maximum is %1$d characters, you sent %2$d.',
496                                                     Message::maxContent()),
497                                                  Message::maxContent(), mb_strlen($this->text)));
498             return;
499         }
500
501         if (!$other) {
502             // TRANS: Error text shown when trying to send a direct message to a user that does not exist.
503             $channel->error($this->user, _('No such user.'));
504             return;
505         } else if (!$this->user->mutuallySubscribed($other)) {
506             // TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other).
507             $channel->error($this->user, _('You can\'t send a message to this user.'));
508             return;
509         } else if ($this->user->id == $other->id) {
510             // TRANS: Error text shown when trying to send a direct message to self.
511             $channel->error($this->user, _('Don\'t send a message to yourself; just say it to yourself quietly instead.'));
512             return;
513         }
514         $message = Message::saveNew($this->user->id, $other->id, $this->text, $channel->source());
515         if ($message) {
516             $message->notify();
517             // TRANS: Message given have sent a direct message to another user.
518             // TRANS: %s is the name of the other user.
519             $channel->output($this->user, sprintf(_('Direct message to %s sent.'), $this->other));
520         } else {
521             // TRANS: Error text shown sending a direct message fails with an unknown reason.
522             $channel->error($this->user, _('Error sending direct message.'));
523         }
524     }
525 }
526
527 class RepeatCommand extends Command
528 {
529     var $other = null;
530     function __construct($user, $other)
531     {
532         parent::__construct($user);
533         $this->other = $other;
534     }
535
536     function handle($channel)
537     {
538         $notice = $this->getNotice($this->other);
539
540         if($this->user->id == $notice->profile_id)
541         {
542             // TRANS: Error text shown when trying to repeat an own notice.
543             $channel->error($this->user, _('Cannot repeat your own notice.'));
544             return;
545         }
546
547         // Is it OK to repeat that notice (general enough scope)?
548
549         if ($notice->scope != Notice::SITE_SCOPE &&
550             $notice->scope != Notice::PUBLIC_SCOPE) {
551             $channel->error($this->user, _('You may not repeat a private notice.'));
552         }
553
554         $profile = $this->user->getProfile();
555
556         // Can the profile actually see that notice?
557
558         if (!$notice->inScope($profile)) {
559             $channel->error($this->user, _('You have no access to that notice.'));
560         }
561
562         if ($profile->hasRepeated($notice->id)) {
563             // TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
564             $channel->error($this->user, _('Already repeated that notice.'));
565             return;
566         }
567
568         $repeat = $notice->repeat($this->user->id, $channel->source);
569
570         if ($repeat) {
571
572             // TRANS: Message given having repeated a notice from another user.
573             // TRANS: %s is the name of the user for which the notice was repeated.
574             $channel->output($this->user, sprintf(_('Notice from %s repeated.'), $recipient->nickname));
575         } else {
576             // TRANS: Error text shown when repeating a notice fails with an unknown reason.
577             $channel->error($this->user, _('Error repeating notice.'));
578         }
579     }
580 }
581
582 class ReplyCommand extends Command
583 {
584     var $other = null;
585     var $text = null;
586     function __construct($user, $other, $text)
587     {
588         parent::__construct($user);
589         $this->other = $other;
590         $this->text = $text;
591     }
592
593     function handle($channel)
594     {
595         $notice = $this->getNotice($this->other);
596         $recipient = $notice->getProfile();
597
598         $len = mb_strlen($this->text);
599
600         if ($len == 0) {
601             // TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
602             $channel->error($this->user, _('No content!'));
603             return;
604         }
605
606         $this->text = $this->user->shortenLinks($this->text);
607
608         if (Notice::contentTooLong($this->text)) {
609             // XXX: i18n. Needs plural support.
610             // TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
611             // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
612             $channel->error($this->user, sprintf(_m('Notice too long - maximum is %1$d character, you sent %2$d.',
613                                                     'Notice too long - maximum is %1$d characters, you sent %2$d.',
614                                                     Notice::maxContent()),
615                                                  Notice::maxContent(), mb_strlen($this->text)));
616             return;
617         }
618
619         $notice = Notice::saveNew($this->user->id, $this->text, $channel->source(),
620                                   array('reply_to' => $notice->id));
621
622         if ($notice) {
623             // TRANS: Text shown having sent a reply to a notice successfully.
624             // TRANS: %s is the nickname of the user of the notice the reply was sent to.
625             $channel->output($this->user, sprintf(_('Reply to %s sent.'), $recipient->nickname));
626         } else {
627             // TRANS: Error text shown when a reply to a notice fails with an unknown reason.
628             $channel->error($this->user, _('Error saving notice.'));
629         }
630
631     }
632 }
633
634 class GetCommand extends Command
635 {
636     var $other = null;
637
638     function __construct($user, $other)
639     {
640         parent::__construct($user);
641         $this->other = $other;
642     }
643
644     function handle($channel)
645     {
646         $target = $this->getProfile($this->other);
647
648         $notice = $target->getCurrentNotice();
649         if (!$notice) {
650             // TRANS: Error text shown when a last user notice is requested and it does not exist.
651             $channel->error($this->user, _('User has no last notice.'));
652             return;
653         }
654         $notice_content = $notice->content;
655
656         $channel->output($this->user, $target->nickname . ": " . $notice_content);
657     }
658 }
659
660 class SubCommand extends Command
661 {
662     var $other = null;
663
664     function __construct($user, $other)
665     {
666         parent::__construct($user);
667         $this->other = $other;
668     }
669
670     function handle($channel)
671     {
672
673         if (!$this->other) {
674             // TRANS: Error text shown when no username was provided when issuing a subscribe command.
675             $channel->error($this->user, _('Specify the name of the user to subscribe to.'));
676             return;
677         }
678
679         $target = $this->getProfile($this->other);
680
681         $remote = Remote_profile::staticGet('id', $target->id);
682         if ($remote) {
683             // TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command.
684             throw new CommandException(_("Can't subscribe to OMB profiles by command."));
685         }
686
687         try {
688             Subscription::start($this->user->getProfile(),
689                                 $target);
690             // TRANS: Text shown after having subscribed to another user successfully.
691             // TRANS: %s is the name of the user the subscription was requested for.
692             $channel->output($this->user, sprintf(_('Subscribed to %s.'), $this->other));
693         } catch (Exception $e) {
694             $channel->error($this->user, $e->getMessage());
695         }
696     }
697 }
698
699 class UnsubCommand extends Command
700 {
701     var $other = null;
702
703     function __construct($user, $other)
704     {
705         parent::__construct($user);
706         $this->other = $other;
707     }
708
709     function handle($channel)
710     {
711         if(!$this->other) {
712             // TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
713             $channel->error($this->user, _('Specify the name of the user to unsubscribe from.'));
714             return;
715         }
716
717         $target = $this->getProfile($this->other);
718
719         try {
720             Subscription::cancel($this->user->getProfile(),
721                                  $target);
722             // TRANS: Text shown after having unsubscribed from another user successfully.
723             // TRANS: %s is the name of the user the unsubscription was requested for.
724             $channel->output($this->user, sprintf(_('Unsubscribed from %s.'), $this->other));
725         } catch (Exception $e) {
726             $channel->error($this->user, $e->getMessage());
727         }
728     }
729 }
730
731 class OffCommand extends Command
732 {
733     var $other = null;
734
735     function __construct($user, $other=null)
736     {
737         parent::__construct($user);
738         $this->other = $other;
739     }
740     function handle($channel)
741     {
742         if ($this->other) {
743             // TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
744             $channel->error($this->user, _("Command not yet implemented."));
745         } else {
746             if ($channel->off($this->user)) {
747                 // TRANS: Text shown when issuing the command "off" successfully.
748                 $channel->output($this->user, _('Notification off.'));
749             } else {
750                 // TRANS: Error text shown when the command "off" fails for an unknown reason.
751                 $channel->error($this->user, _('Can\'t turn off notification.'));
752             }
753         }
754     }
755 }
756
757 class OnCommand extends Command
758 {
759     var $other = null;
760     function __construct($user, $other=null)
761     {
762         parent::__construct($user);
763         $this->other = $other;
764     }
765
766     function handle($channel)
767     {
768         if ($this->other) {
769             // TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
770             $channel->error($this->user, _("Command not yet implemented."));
771         } else {
772             if ($channel->on($this->user)) {
773                 // TRANS: Text shown when issuing the command "on" successfully.
774                 $channel->output($this->user, _('Notification on.'));
775             } else {
776                 // TRANS: Error text shown when the command "on" fails for an unknown reason.
777                 $channel->error($this->user, _('Can\'t turn on notification.'));
778             }
779         }
780     }
781 }
782
783 class LoginCommand extends Command
784 {
785     function handle($channel)
786     {
787         $disabled = common_config('logincommand','disabled');
788         $disabled = isset($disabled) && $disabled;
789         if($disabled) {
790             // TRANS: Error text shown when issuing the login command while login is disabled.
791             $channel->error($this->user, _('Login command is disabled.'));
792             return;
793         }
794
795         try {
796             $login_token = Login_token::makeNew($this->user);
797         } catch (Exception $e) {
798             $channel->error($this->user, $e->getMessage());
799         }
800
801         $channel->output($this->user,
802             // TRANS: Text shown after issuing the login command successfully.
803             // TRANS: %s is a logon link..
804             sprintf(_('This link is useable only once and is valid for only 2 minutes: %s.'),
805                     common_local_url('otp',
806                         array('user_id' => $login_token->user_id, 'token' => $login_token->token))));
807     }
808 }
809
810 class LoseCommand extends Command
811 {
812     var $other = null;
813
814     function __construct($user, $other)
815     {
816         parent::__construct($user);
817         $this->other = $other;
818     }
819
820     function execute($channel)
821     {
822         if(!$this->other) {
823             // TRANS: Error text shown when no username was provided when issuing the command.
824             $channel->error($this->user, _('Specify the name of the user to unsubscribe from.'));
825             return;
826         }
827
828         $result = Subscription::cancel($this->getProfile($this->other), $this->user->getProfile());
829
830         if ($result) {
831             // TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
832             // TRANS: %s is the name of the user the unsubscription was requested for.
833             $channel->output($this->user, sprintf(_('Unsubscribed %s.'), $this->other));
834         } else {
835             $channel->error($this->user, $result);
836         }
837     }
838 }
839
840 class SubscriptionsCommand extends Command
841 {
842     function handle($channel)
843     {
844         $profile = $this->user->getSubscriptions(0);
845         $nicknames=array();
846         while ($profile->fetch()) {
847             $nicknames[]=$profile->nickname;
848         }
849         if(count($nicknames)==0){
850             // TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
851             $out=_('You are not subscribed to anyone.');
852         }else{
853             // TRANS: Text shown after requesting other users a user is subscribed to.
854             // TRANS: This message supports plural forms. This message is followed by a
855             // TRANS: hard coded space and a comma separated list of subscribed users.
856             $out = ngettext('You are subscribed to this person:',
857                 'You are subscribed to these people:',
858                 count($nicknames));
859             $out .= ' ';
860             $out .= implode(', ',$nicknames);
861         }
862         $channel->output($this->user,$out);
863     }
864 }
865
866 class SubscribersCommand extends Command
867 {
868     function handle($channel)
869     {
870         $profile = $this->user->getSubscribers();
871         $nicknames=array();
872         while ($profile->fetch()) {
873             $nicknames[]=$profile->nickname;
874         }
875         if(count($nicknames)==0){
876             // TRANS: Text shown after requesting other users that are subscribed to a user
877             // TRANS: (followers) without having any subscribers.
878             $out=_('No one is subscribed to you.');
879         }else{
880             // TRANS: Text shown after requesting other users that are subscribed to a user (followers).
881             // TRANS: This message supports plural forms. This message is followed by a
882             // TRANS: hard coded space and a comma separated list of subscribing users.
883             $out = ngettext('This person is subscribed to you:',
884                 'These people are subscribed to you:',
885                 count($nicknames));
886             $out .= ' ';
887             $out .= implode(', ',$nicknames);
888         }
889         $channel->output($this->user,$out);
890     }
891 }
892
893 class GroupsCommand extends Command
894 {
895     function handle($channel)
896     {
897         $group = $this->user->getGroups();
898         $groups=array();
899         while ($group->fetch()) {
900             $groups[]=$group->nickname;
901         }
902         if(count($groups)==0){
903             // TRANS: Text shown after requesting groups a user is subscribed to without having
904             // TRANS: any group subscriptions.
905             $out=_('You are not a member of any groups.');
906         }else{
907             // TRANS: Text shown after requesting groups a user is subscribed to.
908             // TRANS: This message supports plural forms. This message is followed by a
909             // TRANS: hard coded space and a comma separated list of subscribed groups.
910             $out = ngettext('You are a member of this group:',
911                 'You are a member of these groups:',
912                 count($nicknames));
913             $out.=implode(', ',$groups);
914         }
915         $channel->output($this->user,$out);
916     }
917 }
918
919 class HelpCommand extends Command
920 {
921     function handle($channel)
922     {
923         // TRANS: Header line of help text for commands.
924         $out = array(_m('COMMANDHELP', "Commands:"));
925         $commands = array(// TRANS: Help message for IM/SMS command "on"
926                           "on" => _m('COMMANDHELP', "turn on notifications"),
927                           // TRANS: Help message for IM/SMS command "off"
928                           "off" => _m('COMMANDHELP', "turn off notifications"),
929                           // TRANS: Help message for IM/SMS command "help"
930                           "help" => _m('COMMANDHELP', "show this help"),
931                           // TRANS: Help message for IM/SMS command "follow <nickname>"
932                           "follow <nickname>" => _m('COMMANDHELP', "subscribe to user"),
933                           // TRANS: Help message for IM/SMS command "groups"
934                           "groups" => _m('COMMANDHELP', "lists the groups you have joined"),
935                           // TRANS: Help message for IM/SMS command "subscriptions"
936                           "subscriptions" => _m('COMMANDHELP', "list the people you follow"),
937                           // TRANS: Help message for IM/SMS command "subscribers"
938                           "subscribers" => _m('COMMANDHELP', "list the people that follow you"),
939                           // TRANS: Help message for IM/SMS command "leave <nickname>"
940                           "leave <nickname>" => _m('COMMANDHELP', "unsubscribe from user"),
941                           // TRANS: Help message for IM/SMS command "d <nickname> <text>"
942                           "d <nickname> <text>" => _m('COMMANDHELP', "direct message to user"),
943                           // TRANS: Help message for IM/SMS command "get <nickname>"
944                           "get <nickname>" => _m('COMMANDHELP', "get last notice from user"),
945                           // TRANS: Help message for IM/SMS command "whois <nickname>"
946                           "whois <nickname>" => _m('COMMANDHELP', "get profile info on user"),
947                           // TRANS: Help message for IM/SMS command "lose <nickname>"
948                           "lose <nickname>" => _m('COMMANDHELP', "force user to stop following you"),
949                           // TRANS: Help message for IM/SMS command "fav <nickname>"
950                           "fav <nickname>" => _m('COMMANDHELP', "add user's last notice as a 'fave'"),
951                           // TRANS: Help message for IM/SMS command "fav #<notice_id>"
952                           "fav #<notice_id>" => _m('COMMANDHELP', "add notice with the given id as a 'fave'"),
953                           // TRANS: Help message for IM/SMS command "repeat #<notice_id>"
954                           "repeat #<notice_id>" => _m('COMMANDHELP', "repeat a notice with a given id"),
955                           // TRANS: Help message for IM/SMS command "repeat <nickname>"
956                           "repeat <nickname>" => _m('COMMANDHELP', "repeat the last notice from user"),
957                           // TRANS: Help message for IM/SMS command "reply #<notice_id>"
958                           "reply #<notice_id>" => _m('COMMANDHELP', "reply to notice with a given id"),
959                           // TRANS: Help message for IM/SMS command "reply <nickname>"
960                           "reply <nickname>" => _m('COMMANDHELP', "reply to the last notice from user"),
961                           // TRANS: Help message for IM/SMS command "join <group>"
962                           "join <group>" => _m('COMMANDHELP', "join group"),
963                           // TRANS: Help message for IM/SMS command "login"
964                           "login" => _m('COMMANDHELP', "Get a link to login to the web interface"),
965                           // TRANS: Help message for IM/SMS command "drop <group>"
966                           "drop <group>" => _m('COMMANDHELP', "leave group"),
967                           // TRANS: Help message for IM/SMS command "stats"
968                           "stats" => _m('COMMANDHELP', "get your stats"),
969                           // TRANS: Help message for IM/SMS command "stop"
970                           "stop" => _m('COMMANDHELP', "same as 'off'"),
971                           // TRANS: Help message for IM/SMS command "quit"
972                           "quit" => _m('COMMANDHELP', "same as 'off'"),
973                           // TRANS: Help message for IM/SMS command "sub <nickname>"
974                           "sub <nickname>" => _m('COMMANDHELP', "same as 'follow'"),
975                           // TRANS: Help message for IM/SMS command "unsub <nickname>"
976                           "unsub <nickname>" => _m('COMMANDHELP', "same as 'leave'"),
977                           // TRANS: Help message for IM/SMS command "last <nickname>"
978                           "last <nickname>" => _m('COMMANDHELP', "same as 'get'"),
979                           // TRANS: Help message for IM/SMS command "on <nickname>"
980                           "on <nickname>" => _m('COMMANDHELP', "not yet implemented."),
981                           // TRANS: Help message for IM/SMS command "off <nickname>"
982                           "off <nickname>" => _m('COMMANDHELP', "not yet implemented."),
983                           // TRANS: Help message for IM/SMS command "nudge <nickname>"
984                           "nudge <nickname>" => _m('COMMANDHELP', "remind a user to update."),
985                           // TRANS: Help message for IM/SMS command "invite <phone number>"
986                           "invite <phone number>" => _m('COMMANDHELP', "not yet implemented."),
987                           // TRANS: Help message for IM/SMS command "track <word>"
988                           "track <word>" => _m('COMMANDHELP', "not yet implemented."),
989                           // TRANS: Help message for IM/SMS command "untrack <word>"
990                           "untrack <word>" => _m('COMMANDHELP', "not yet implemented."),
991                           // TRANS: Help message for IM/SMS command "track off"
992                           "track off" => _m('COMMANDHELP', "not yet implemented."),
993                           // TRANS: Help message for IM/SMS command "untrack all"
994                           "untrack all" => _m('COMMANDHELP', "not yet implemented."),
995                           // TRANS: Help message for IM/SMS command "tracks"
996                           "tracks" => _m('COMMANDHELP', "not yet implemented."),
997                           // TRANS: Help message for IM/SMS command "tracking"
998                           "tracking" => _m('COMMANDHELP', "not yet implemented."));
999
1000         // Give plugins a chance to add or override...
1001         Event::handle('HelpCommandMessages', array($this, &$commands));
1002         foreach ($commands as $command => $help) {
1003             $out[] = "$command - $help";
1004         }
1005         $channel->output($this->user, implode("\n", $out));
1006     }
1007 }