]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/command.php
Added 'login' command that gives you a link that can be used to login to the website
[quix0rs-gnu-social.git] / lib / command.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, 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
27     var $user = null;
28
29     function __construct($user=null)
30     {
31         $this->user = $user;
32     }
33
34     function execute($channel)
35     {
36         return false;
37     }
38 }
39
40 class UnimplementedCommand extends Command
41 {
42     function execute($channel)
43     {
44         $channel->error($this->user, _("Sorry, this command is not yet implemented."));
45     }
46 }
47
48 class TrackingCommand extends UnimplementedCommand
49 {
50 }
51
52 class TrackOffCommand extends UnimplementedCommand
53 {
54 }
55
56 class TrackCommand extends UnimplementedCommand
57 {
58     var $word = null;
59     function __construct($user, $word)
60     {
61         parent::__construct($user);
62         $this->word = $word;
63     }
64 }
65
66 class UntrackCommand extends UnimplementedCommand
67 {
68     var $word = null;
69     function __construct($user, $word)
70     {
71         parent::__construct($user);
72         $this->word = $word;
73     }
74 }
75
76 class NudgeCommand extends Command
77 {
78     var $other = null;
79     function __construct($user, $other)
80     {
81         parent::__construct($user);
82         $this->other = $other;
83     }
84     function execute($channel)
85     {
86         $recipient = User::staticGet('nickname', $this->other);
87         if(! $recipient){
88             $channel->error($this->user, sprintf(_('Could not find a user with nickname %s'),
89                                $this->other));
90         }else{
91             if ($recipient->id == $this->user->id) {
92                 $channel->error($this->user, _('It does not make a lot of sense to nudge yourself!'));
93             }else{
94                 if ($recipient->email && $recipient->emailnotifynudge) {
95                     mail_notify_nudge($this->user, $recipient);
96                 }
97                 // XXX: notify by IM
98                 // XXX: notify by SMS
99                 $channel->output($this->user, sprintf(_('Nudge sent to %s'),
100                                $recipient->nickname));
101             }
102         }
103     }
104 }
105
106 class InviteCommand extends UnimplementedCommand
107 {
108     var $other = null;
109     function __construct($user, $other)
110     {
111         parent::__construct($user);
112         $this->other = $other;
113     }
114 }
115
116 class StatsCommand extends Command
117 {
118     function execute($channel)
119     {
120         $profile = $this->user->getProfile();
121
122         $subs_count   = $profile->subscriptionCount();
123         $subbed_count = $profile->subscriberCount();
124         $notice_count = $profile->noticeCount();
125
126         $channel->output($this->user, sprintf(_("Subscriptions: %1\$s\n".
127                                    "Subscribers: %2\$s\n".
128                                    "Notices: %3\$s"),
129                                  $subs_count,
130                                  $subbed_count,
131                                  $notice_count));
132     }
133 }
134
135 class FavCommand extends Command
136 {
137     var $other = null;
138
139     function __construct($user, $other)
140     {
141         parent::__construct($user);
142         $this->other = $other;
143     }
144
145     function execute($channel)
146     {
147         if(substr($this->other,0,1)=='#'){
148             //favoriting a specific notice_id
149
150             $notice = Notice::staticGet(substr($this->other,1));
151             if (!$notice) {
152                 $channel->error($this->user, _('Notice with that id does not exist'));
153                 return;
154             }
155             $recipient = $notice->getProfile();
156         }else{
157             //favoriting a given user's last notice
158
159             $recipient =
160               common_relative_profile($this->user, common_canonical_nickname($this->other));
161
162             if (!$recipient) {
163                 $channel->error($this->user, _('No such user.'));
164                 return;
165             }
166             $notice = $recipient->getCurrentNotice();
167             if (!$notice) {
168                 $channel->error($this->user, _('User has no last notice'));
169                 return;
170             }
171         }
172
173         $fave = Fave::addNew($this->user, $notice);
174
175         if (!$fave) {
176             $channel->error($this->user, _('Could not create favorite.'));
177             return;
178         }
179
180         $other = User::staticGet('id', $recipient->id);
181
182         if ($other && $other->id != $user->id) {
183             if ($other->email && $other->emailnotifyfav) {
184                 mail_notify_fave($other, $this->user, $notice);
185             }
186         }
187
188         $this->user->blowFavesCache();
189
190         $channel->output($this->user, _('Notice marked as fave.'));
191     }
192
193 }
194 class JoinCommand extends Command
195 {
196     var $other = null;
197
198     function __construct($user, $other)
199     {
200         parent::__construct($user);
201         $this->other = $other;
202     }
203
204     function execute($channel)
205     {
206
207         $nickname = common_canonical_nickname($this->other);
208         $group    = User_group::staticGet('nickname', $nickname);
209         $cur      = $this->user;
210
211         if (!$group) {
212             $channel->error($cur, _('No such group.'));
213             return;
214         }
215
216         if ($cur->isMember($group)) {
217             $channel->error($cur, _('You are already a member of that group'));
218             return;
219         }
220         if (Group_block::isBlocked($group, $cur->getProfile())) {
221           $channel->error($cur, _('You have been blocked from that group by the admin.'));
222             return;
223         }
224
225         $member = new Group_member();
226
227         $member->group_id   = $group->id;
228         $member->profile_id = $cur->id;
229         $member->created    = common_sql_now();
230
231         $result = $member->insert();
232         if (!$result) {
233           common_log_db_error($member, 'INSERT', __FILE__);
234           $channel->error($cur, sprintf(_('Could not join user %s to group %s'),
235                                        $cur->nickname, $group->nickname));
236           return;
237         }
238
239         $channel->output($cur, sprintf(_('%s joined group %s'),
240                                               $cur->nickname,
241                                               $group->nickname));
242     }
243
244 }
245 class DropCommand extends Command
246 {
247     var $other = null;
248
249     function __construct($user, $other)
250     {
251         parent::__construct($user);
252         $this->other = $other;
253     }
254
255     function execute($channel)
256     {
257
258         $nickname = common_canonical_nickname($this->other);
259         $group    = User_group::staticGet('nickname', $nickname);
260         $cur      = $this->user;
261
262         if (!$group) {
263             $channel->error($cur, _('No such group.'));
264             return;
265         }
266
267         if (!$cur->isMember($group)) {
268             $channel->error($cur, _('You are not a member of that group.'));
269             return;
270         }
271
272         $member = new Group_member();
273
274         $member->group_id   = $group->id;
275         $member->profile_id = $cur->id;
276
277         if (!$member->find(true)) {
278           $channel->error($cur,_('Could not find membership record.'));
279           return;
280         }
281         $result = $member->delete();
282         if (!$result) {
283           common_log_db_error($member, 'INSERT', __FILE__);
284           $channel->error($cur, sprintf(_('Could not remove user %s to group %s'),
285                                        $cur->nickname, $group->nickname));
286           return;
287         }
288
289         $channel->output($cur, sprintf(_('%s left group %s'),
290                                               $cur->nickname,
291                                               $group->nickname));
292     }
293
294 }
295
296 class WhoisCommand extends Command
297 {
298     var $other = null;
299     function __construct($user, $other)
300     {
301         parent::__construct($user);
302         $this->other = $other;
303     }
304
305     function execute($channel)
306     {
307         $recipient =
308           common_relative_profile($this->user, common_canonical_nickname($this->other));
309
310         if (!$recipient) {
311             $channel->error($this->user, _('No such user.'));
312             return;
313         }
314
315         $whois = sprintf(_("%1\$s (%2\$s)"), $recipient->nickname,
316                          $recipient->profileurl);
317         if ($recipient->fullname) {
318             $whois .= "\n" . sprintf(_('Fullname: %s'), $recipient->fullname);
319         }
320         if ($recipient->location) {
321             $whois .= "\n" . sprintf(_('Location: %s'), $recipient->location);
322         }
323         if ($recipient->homepage) {
324             $whois .= "\n" . sprintf(_('Homepage: %s'), $recipient->homepage);
325         }
326         if ($recipient->bio) {
327             $whois .= "\n" . sprintf(_('About: %s'), $recipient->bio);
328         }
329         $channel->output($this->user, $whois);
330     }
331 }
332
333 class MessageCommand extends Command
334 {
335     var $other = null;
336     var $text = null;
337     function __construct($user, $other, $text)
338     {
339         parent::__construct($user);
340         $this->other = $other;
341         $this->text = $text;
342     }
343
344     function execute($channel)
345     {
346         $other = User::staticGet('nickname', common_canonical_nickname($this->other));
347
348         $len = mb_strlen($this->text);
349
350         if ($len == 0) {
351             $channel->error($this->user, _('No content!'));
352             return;
353         }
354
355         $this->text = common_shorten_links($this->text);
356
357         if (Message::contentTooLong($this->text)) {
358             $channel->error($this->user, sprintf(_('Message too long - maximum is %d characters, you sent %d'),
359                                                  Message::maxContent(), mb_strlen($this->text)));
360             return;
361         }
362
363         if (!$other) {
364             $channel->error($this->user, _('No such user.'));
365             return;
366         } else if (!$this->user->mutuallySubscribed($other)) {
367             $channel->error($this->user, _('You can\'t send a message to this user.'));
368             return;
369         } else if ($this->user->id == $other->id) {
370             $channel->error($this->user, _('Don\'t send a message to yourself; just say it to yourself quietly instead.'));
371             return;
372         }
373         $message = Message::saveNew($this->user->id, $other->id, $this->text, $channel->source());
374         if ($message) {
375             $channel->output($this->user, sprintf(_('Direct message to %s sent'), $this->other));
376         } else {
377             $channel->error($this->user, _('Error sending direct message.'));
378         }
379     }
380 }
381
382 class ReplyCommand extends Command
383 {
384     var $other = null;
385     var $text = null;
386     function __construct($user, $other, $text)
387     {
388         parent::__construct($user);
389         $this->other = $other;
390         $this->text = $text;
391     }
392
393     function execute($channel)
394     {
395         if(substr($this->other,0,1)=='#'){
396             //replying to a specific notice_id
397
398             $notice = Notice::staticGet(substr($this->other,1));
399             if (!$notice) {
400                 $channel->error($this->user, _('Notice with that id does not exist'));
401                 return;
402             }
403             $recipient = $notice->getProfile();
404         }else{
405             //replying to a given user's last notice
406
407             $recipient =
408               common_relative_profile($this->user, common_canonical_nickname($this->other));
409
410             if (!$recipient) {
411                 $channel->error($this->user, _('No such user.'));
412                 return;
413             }
414             $notice = $recipient->getCurrentNotice();
415             if (!$notice) {
416                 $channel->error($this->user, _('User has no last notice'));
417                 return;
418             }
419         }
420
421         $len = mb_strlen($this->text);
422
423         if ($len == 0) {
424             $channel->error($this->user, _('No content!'));
425             return;
426         }
427
428         $this->text = common_shorten_links($this->text);
429
430         if (Notice::contentTooLong($this->text)) {
431             $channel->error($this->user, sprintf(_('Notice too long - maximum is %d characters, you sent %d'),
432                                                  Notice::maxContent(), mb_strlen($this->text)));
433             return;
434         }
435
436         $notice = Notice::saveNew($this->user->id, $this->text, $channel->source(), 1,
437                                   $notice->id);
438         if ($notice) {
439             $channel->output($this->user, sprintf(_('Reply to %s sent'), $recipient->nickname));
440         } else {
441             $channel->error($this->user, _('Error saving notice.'));
442         }
443         common_broadcast_notice($notice);
444     }
445 }
446
447 class GetCommand extends Command
448 {
449
450     var $other = null;
451
452     function __construct($user, $other)
453     {
454         parent::__construct($user);
455         $this->other = $other;
456     }
457
458     function execute($channel)
459     {
460         $target_nickname = common_canonical_nickname($this->other);
461
462         $target =
463           common_relative_profile($this->user, $target_nickname);
464
465         if (!$target) {
466             $channel->error($this->user, _('No such user.'));
467             return;
468         }
469         $notice = $target->getCurrentNotice();
470         if (!$notice) {
471             $channel->error($this->user, _('User has no last notice'));
472             return;
473         }
474         $notice_content = $notice->content;
475
476         $channel->output($this->user, $target_nickname . ": " . $notice_content);
477     }
478 }
479
480 class SubCommand extends Command
481 {
482
483     var $other = null;
484
485     function __construct($user, $other)
486     {
487         parent::__construct($user);
488         $this->other = $other;
489     }
490
491     function execute($channel)
492     {
493
494         if (!$this->other) {
495             $channel->error($this->user, _('Specify the name of the user to subscribe to'));
496             return;
497         }
498
499         $result = subs_subscribe_user($this->user, $this->other);
500
501         if ($result == 'true') {
502             $channel->output($this->user, sprintf(_('Subscribed to %s'), $this->other));
503         } else {
504             $channel->error($this->user, $result);
505         }
506     }
507 }
508
509 class UnsubCommand extends Command
510 {
511
512     var $other = null;
513
514     function __construct($user, $other)
515     {
516         parent::__construct($user);
517         $this->other = $other;
518     }
519
520     function execute($channel)
521     {
522         if(!$this->other) {
523             $channel->error($this->user, _('Specify the name of the user to unsubscribe from'));
524             return;
525         }
526
527         $result=subs_unsubscribe_user($this->user, $this->other);
528
529         if ($result) {
530             $channel->output($this->user, sprintf(_('Unsubscribed from %s'), $this->other));
531         } else {
532             $channel->error($this->user, $result);
533         }
534     }
535 }
536
537 class OffCommand extends Command
538 {
539     var $other = null;
540     function __construct($user, $other=null)
541     {
542         parent::__construct($user);
543         $this->other = $other;
544     }
545     function execute($channel)
546     {
547         if ($other) {
548             $channel->error($this->user, _("Command not yet implemented."));
549         } else {
550             if ($channel->off($this->user)) {
551                 $channel->output($this->user, _('Notification off.'));
552             } else {
553                 $channel->error($this->user, _('Can\'t turn off notification.'));
554             }
555         }
556     }
557 }
558
559 class OnCommand extends Command
560 {
561     var $other = null;
562     function __construct($user, $other=null)
563     {
564         parent::__construct($user);
565         $this->other = $other;
566     }
567
568     function execute($channel)
569     {
570         if ($other) {
571             $channel->error($this->user, _("Command not yet implemented."));
572         } else {
573             if ($channel->on($this->user)) {
574                 $channel->output($this->user, _('Notification on.'));
575             } else {
576                 $channel->error($this->user, _('Can\'t turn on notification.'));
577             }
578         }
579     }
580 }
581
582 class LoginCommand extends Command
583 {
584     function execute($channel)
585     {
586         $login_token = Login_token::staticGet('user_id',$this->user->id);
587         if($login_token){
588             $login_token->delete();
589         }
590         $login_token = new Login_token();
591         $login_token->user_id = $this->user->id;
592         $login_token->token = common_good_rand(16);
593         $login_token->created = common_sql_now();
594         $result = $login_token->insert();
595         if (!$result) {
596           common_log_db_error($login_token, 'INSERT', __FILE__);
597           $channel->error($this->user, sprintf(_('Could not create login token for %s'),
598                                        $this->user->nickname));
599           return;
600         }
601         $channel->output($this->user,
602             sprintf(_('This link is useable only once, and is good for only 2 minutes: %s'),
603                     common_local_url('login',
604                         array('user_id'=>$login_token->user_id, 'token'=>$login_token->token))));
605     }
606 }
607
608 class SubscriptionsCommand extends Command
609 {
610     function execute($channel)
611     {
612         $profile = $this->user->getSubscriptions(0);
613         $nicknames=array();
614         while ($profile->fetch()) {
615             $nicknames[]=$profile->nickname;
616         }
617         if(count($nicknames)==0){
618             $out=_('You are not subscribed to anyone.');
619         }else{
620             $out = ngettext('You are subscribed to this person:',
621                 'You are subscribed to these people:',
622                 count($nicknames));
623             $out .= ' ';
624             $out .= implode(', ',$nicknames);
625         }
626         $channel->output($this->user,$out);
627     }
628 }
629
630 class SubscribersCommand extends Command
631 {
632     function execute($channel)
633     {
634         $profile = $this->user->getSubscribers();
635         $nicknames=array();
636         while ($profile->fetch()) {
637             $nicknames[]=$profile->nickname;
638         }
639         if(count($nicknames)==0){
640             $out=_('No one is subscribed to you.');
641         }else{
642             $out = ngettext('This person is subscribed to you:',
643                 'These people are subscribed to you:',
644                 count($nicknames));
645             $out .= ' ';
646             $out .= implode(', ',$nicknames);
647         }
648         $channel->output($this->user,$out);
649     }
650 }
651
652 class GroupsCommand extends Command
653 {
654     function execute($channel)
655     {
656         $group = $this->user->getGroups();
657         $groups=array();
658         while ($group->fetch()) {
659             $groups[]=$group->nickname;
660         }
661         if(count($groups)==0){
662             $out=_('You are not a member of any groups.');
663         }else{
664             $out = ngettext('You are a member of this group:',
665                 'You are a member of these groups:',
666                 count($nicknames));
667             $out.=implode(', ',$groups);
668         }
669         $channel->output($this->user,$out);
670     }
671 }
672
673 class HelpCommand extends Command
674 {
675     function execute($channel)
676     {
677         $channel->output($this->user,
678                          _("Commands:\n".
679                            "on - turn on notifications\n".
680                            "off - turn off notifications\n".
681                            "help - show this help\n".
682                            "follow <nickname> - subscribe to user\n".
683                            "groups - lists the groups you have joined\n".
684                            "subscriptions - list the people you follow\n".
685                            "subscribers - list the people that follow you\n".
686                            "leave <nickname> - unsubscribe from user\n".
687                            "d <nickname> <text> - direct message to user\n".
688                            "get <nickname> - get last notice from user\n".
689                            "whois <nickname> - get profile info on user\n".
690                            "fav <nickname> - add user's last notice as a 'fave'\n".
691                            "fav #<notice_id> - add notice with the given id as a 'fave'\n".
692                            "reply #<notice_id> - reply to notice with a given id\n".
693                            "reply <nickname> - reply to the last notice from user\n".
694                            "join <group> - join group\n".
695                            "login - Get a link to login to the web interface\n".
696                            "drop <group> - leave group\n".
697                            "stats - get your stats\n".
698                            "stop - same as 'off'\n".
699                            "quit - same as 'off'\n".
700                            "sub <nickname> - same as 'follow'\n".
701                            "unsub <nickname> - same as 'leave'\n".
702                            "last <nickname> - same as 'get'\n".
703                            "on <nickname> - not yet implemented.\n".
704                            "off <nickname> - not yet implemented.\n".
705                            "nudge <nickname> - remind a user to update.\n".
706                            "invite <phone number> - not yet implemented.\n".
707                            "track <word> - not yet implemented.\n".
708                            "untrack <word> - not yet implemented.\n".
709                            "track off - not yet implemented.\n".
710                            "untrack all - not yet implemented.\n".
711                            "tracks - not yet implemented.\n".
712                            "tracking - not yet implemented.\n"));
713     }
714 }