source: root_commands.c @ 4aa0f6b

Last change on this file since 4aa0f6b was 36562b0, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-06-07T00:44:45Z

Added "channel list" command and the ability to use only part of the
channel name or a number in "chan set"/etc.

  • Property mode set to 100644
File size: 27.1 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2010 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* User manager (root) commands                                         */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23  Suite 330, Boston, MA  02111-1307  USA
24*/
25
26#define BITLBEE_CORE
27#include "commands.h"
28#include "bitlbee.h"
29#include "help.h"
30#include "chat.h"
31
32#include <string.h>
33
34void root_command_string( irc_t *irc, char *command )
35{
36        root_command( irc, split_command_parts( command ) );
37}
38
39#define MIN_ARGS( x, y... )                                                    \
40        do                                                                     \
41        {                                                                      \
42                int blaat;                                                     \
43                for( blaat = 0; blaat <= x; blaat ++ )                         \
44                        if( cmd[blaat] == NULL )                               \
45                        {                                                      \
46                                irc_usermsg( irc, "Not enough parameters given (need %d).", x ); \
47                                return y;                                      \
48                        }                                                      \
49        } while( 0 )
50
51void root_command( irc_t *irc, char *cmd[] )
52{       
53        int i, len;
54       
55        if( !cmd[0] )
56                return;
57       
58        len = strlen( cmd[0] );
59        for( i = 0; commands[i].command; i++ )
60                if( g_strncasecmp( commands[i].command, cmd[0], len ) == 0 )
61                {
62                        if( commands[i+1].command &&
63                            g_strncasecmp( commands[i+1].command, cmd[0], len ) == 0 )
64                                /* Only match on the first letters if the match is unique. */
65                                break;
66                       
67                        MIN_ARGS( commands[i].required_parameters );
68                       
69                        commands[i].execute( irc, cmd );
70                        return;
71                }
72       
73        irc_usermsg( irc, "Unknown command: %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[0] );
74}
75
76static void cmd_help( irc_t *irc, char **cmd )
77{
78        char param[80];
79        int i;
80        char *s;
81       
82        memset( param, 0, sizeof(param) );
83        for ( i = 1; (cmd[i] != NULL && ( strlen(param) < (sizeof(param)-1) ) ); i++ ) {
84                if ( i != 1 )   // prepend space except for the first parameter
85                        strcat(param, " ");
86                strncat( param, cmd[i], sizeof(param) - strlen(param) - 1 );
87        }
88
89        s = help_get( &(global.help), param );
90        if( !s ) s = help_get( &(global.help), "" );
91       
92        if( s )
93        {
94                irc_usermsg( irc, "%s", s );
95                g_free( s );
96        }
97        else
98        {
99                irc_usermsg( irc, "Error opening helpfile." );
100        }
101}
102
103static void cmd_account( irc_t *irc, char **cmd );
104
105static void cmd_identify( irc_t *irc, char **cmd )
106{
107        storage_status_t status;
108        char *account_on[] = { "account", "on", NULL };
109        gboolean load = TRUE;
110        char *password = cmd[1];
111       
112        if( irc->status & USTATUS_IDENTIFIED )
113        {
114                irc_usermsg( irc, "You're already logged in." );
115                return;
116        }
117       
118        if( strncmp( cmd[1], "-no", 3 ) == 0 )
119        {
120                load = FALSE;
121                password = cmd[2];
122        }
123        else if( strncmp( cmd[1], "-force", 6 ) == 0 )
124        {
125                password = cmd[2];
126        }
127        else if( irc->b->accounts != NULL )
128        {
129                irc_usermsg( irc,
130                             "You're trying to identify yourself, but already have "
131                             "at least one IM account set up. "
132                             "Use \x02identify -noload\x02 or \x02identify -force\x02 "
133                             "instead (see \x02help identify\x02)." );
134                return;
135        }
136       
137        if( password == NULL )
138        {
139                MIN_ARGS( 2 );
140        }
141       
142        if( load )
143                status = storage_load( irc, password );
144        else
145                status = storage_check_pass( irc->user->nick, password );
146       
147        switch (status) {
148        case STORAGE_INVALID_PASSWORD:
149                irc_usermsg( irc, "Incorrect password" );
150                break;
151        case STORAGE_NO_SUCH_USER:
152                irc_usermsg( irc, "The nick is (probably) not registered" );
153                break;
154        case STORAGE_OK:
155                irc_usermsg( irc, "Password accepted%s",
156                             load ? ", settings and accounts loaded" : "" );
157                irc_setpass( irc, password );
158                irc->status |= USTATUS_IDENTIFIED;
159                irc_umode_set( irc, "+R", 1 );
160                if( load && set_getbool( &irc->b->set, "auto_connect" ) )
161                        cmd_account( irc, account_on );
162                break;
163        case STORAGE_OTHER_ERROR:
164        default:
165                irc_usermsg( irc, "Unknown error while loading configuration" );
166                break;
167        }
168}
169
170static void cmd_register( irc_t *irc, char **cmd )
171{
172        if( global.conf->authmode == AUTHMODE_REGISTERED )
173        {
174                irc_usermsg( irc, "This server does not allow registering new accounts" );
175                return;
176        }
177
178        switch( storage_save( irc, cmd[1], FALSE ) ) {
179                case STORAGE_ALREADY_EXISTS:
180                        irc_usermsg( irc, "Nick is already registered" );
181                        break;
182                       
183                case STORAGE_OK:
184                        irc_usermsg( irc, "Account successfully created" );
185                        irc_setpass( irc, cmd[1] );
186                        irc->status |= USTATUS_IDENTIFIED;
187                        irc_umode_set( irc, "+R", 1 );
188                        break;
189
190                default:
191                        irc_usermsg( irc, "Error registering" );
192                        break;
193        }
194}
195
196static void cmd_drop( irc_t *irc, char **cmd )
197{
198        storage_status_t status;
199       
200        status = storage_remove (irc->user->nick, cmd[1]);
201        switch (status) {
202        case STORAGE_NO_SUCH_USER:
203                irc_usermsg( irc, "That account does not exist" );
204                break;
205        case STORAGE_INVALID_PASSWORD:
206                irc_usermsg( irc, "Password invalid" );
207                break;
208        case STORAGE_OK:
209                irc_setpass( irc, NULL );
210                irc->status &= ~USTATUS_IDENTIFIED;
211                irc_umode_set( irc, "-R", 1 );
212                irc_usermsg( irc, "Account `%s' removed", irc->user->nick );
213                break;
214        default:
215                irc_usermsg( irc, "Error: `%d'", status );
216                break;
217        }
218}
219
220static void cmd_save( irc_t *irc, char **cmd )
221{
222        if( ( irc->status & USTATUS_IDENTIFIED ) == 0 )
223                irc_usermsg( irc, "Please create an account first" );
224        else if( storage_save( irc, NULL, TRUE ) == STORAGE_OK )
225                irc_usermsg( irc, "Configuration saved" );
226        else
227                irc_usermsg( irc, "Configuration could not be saved!" );
228}
229
230static void cmd_showset( irc_t *irc, set_t **head, char *key )
231{
232        char *val;
233       
234        if( ( val = set_getstr( head, key ) ) )
235                irc_usermsg( irc, "%s = `%s'", key, val );
236        else
237                irc_usermsg( irc, "%s is empty", key );
238}
239
240typedef set_t** (*cmd_set_findhead)( irc_t*, char* );
241typedef int (*cmd_set_checkflags)( irc_t*, set_t *set );
242
243static int cmd_set_real( irc_t *irc, char **cmd, cmd_set_findhead findhead, cmd_set_checkflags checkflags )
244{
245        char *set_full = NULL, *set_name = NULL, *tmp;
246        set_t **head;
247       
248        if( cmd[1] && g_strncasecmp( cmd[1], "-del", 4 ) == 0 )
249        {
250                MIN_ARGS( 2, 0 );
251                set_full = cmd[2];
252        }
253        else
254                set_full = cmd[1];
255       
256        if( findhead == NULL )
257        {
258                set_name = set_full;
259               
260                head = &irc->b->set;
261        }
262        else 
263        {
264                char *id;
265               
266                if( ( tmp = strchr( set_full, '/' ) ) )
267                {
268                        id = g_strndup( set_full, ( tmp - set_full ) );
269                        set_name = tmp + 1;
270                }
271                else
272                {
273                        id = g_strdup( set_full );
274                }
275               
276                if( ( head = findhead( irc, id ) ) == NULL )
277                {
278                        g_free( id );
279                        irc_usermsg( irc, "Could not find setting." );
280                        return 0;
281                }
282                g_free( id );
283        }
284       
285        if( cmd[1] && cmd[2] && set_name )
286        {
287                set_t *s = set_find( head, set_name );
288                int st;
289               
290                if( s && checkflags && checkflags( irc, s ) == 0 )
291                        return 0;
292               
293                if( g_strncasecmp( cmd[1], "-del", 4 ) == 0 )
294                        st = set_reset( head, set_name );
295                else
296                        st = set_setstr( head, set_name, cmd[2] );
297               
298                if( set_getstr( head, set_name ) == NULL )
299                {
300                        if( st )
301                                irc_usermsg( irc, "Setting changed successfully" );
302                        else
303                                irc_usermsg( irc, "Failed to change setting" );
304                }
305                else
306                {
307                        cmd_showset( irc, head, set_name );
308                }
309        }
310        else if( set_name )
311        {
312                cmd_showset( irc, head, set_name );
313        }
314        else
315        {
316                set_t *s = *head;
317                while( s )
318                {
319                        cmd_showset( irc, &s, s->key );
320                        s = s->next;
321                }
322        }
323       
324        return 1;
325}
326
327static set_t **cmd_account_set_findhead( irc_t *irc, char *id )
328{
329        account_t *a;
330       
331        if( ( a = account_get( irc->b, id ) ) )
332                return &a->set;
333        else
334                return NULL;
335}
336
337static int cmd_account_set_checkflags( irc_t *irc, set_t *s )
338{
339        account_t *a = s->data;
340       
341        if( a->ic && s && s->flags & ACC_SET_OFFLINE_ONLY )
342        {
343                irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "off" );
344                return 0;
345        }
346        else if( !a->ic && s && s->flags & ACC_SET_ONLINE_ONLY )
347        {
348                irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "on" );
349                return 0;
350        }
351       
352        return 1;
353}
354
355static void cmd_account( irc_t *irc, char **cmd )
356{
357        account_t *a;
358       
359        if( global.conf->authmode == AUTHMODE_REGISTERED && !( irc->status & USTATUS_IDENTIFIED ) )
360        {
361                irc_usermsg( irc, "This server only accepts registered users" );
362                return;
363        }
364       
365        if( g_strcasecmp( cmd[1], "add" ) == 0 )
366        {
367                struct prpl *prpl;
368               
369                MIN_ARGS( 4 );
370               
371                prpl = find_protocol( cmd[2] );
372               
373                if( prpl == NULL )
374                {
375                        irc_usermsg( irc, "Unknown protocol" );
376                        return;
377                }
378
379                a = account_add( irc->b, prpl, cmd[3], cmd[4] );
380                if( cmd[5] )
381                {
382                        irc_usermsg( irc, "Warning: Passing a servername/other flags to `account add' "
383                                          "is now deprecated. Use `account set' instead." );
384                        set_setstr( &a->set, "server", cmd[5] );
385                }
386               
387                irc_usermsg( irc, "Account successfully added" );
388        }
389        else if( g_strcasecmp( cmd[1], "del" ) == 0 )
390        {
391                MIN_ARGS( 2 );
392
393                if( !( a = account_get( irc->b, cmd[2] ) ) )
394                {
395                        irc_usermsg( irc, "Invalid account" );
396                }
397                else if( a->ic )
398                {
399                        irc_usermsg( irc, "Account is still logged in, can't delete" );
400                }
401                else
402                {
403                        account_del( irc->b, a );
404                        irc_usermsg( irc, "Account deleted" );
405                }
406        }
407        else if( g_strcasecmp( cmd[1], "list" ) == 0 )
408        {
409                int i = 0;
410               
411                if( strchr( irc->umode, 'b' ) )
412                        irc_usermsg( irc, "Account list:" );
413               
414                for( a = irc->b->accounts; a; a = a->next )
415                {
416                        char *con;
417                       
418                        if( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) )
419                                con = " (connected)";
420                        else if( a->ic )
421                                con = " (connecting)";
422                        else if( a->reconnect )
423                                con = " (awaiting reconnect)";
424                        else
425                                con = "";
426                       
427                        irc_usermsg( irc, "%2d. %s, %s%s", i, a->prpl->name, a->user, con );
428                       
429                        i ++;
430                }
431                irc_usermsg( irc, "End of account list" );
432        }
433        else if( g_strcasecmp( cmd[1], "on" ) == 0 )
434        {
435                if( cmd[2] )
436                {
437                        if( ( a = account_get( irc->b, cmd[2] ) ) )
438                        {
439                                if( a->ic )
440                                {
441                                        irc_usermsg( irc, "Account already online" );
442                                        return;
443                                }
444                                else
445                                {
446                                        account_on( irc->b, a );
447                                }
448                        }
449                        else
450                        {
451                                irc_usermsg( irc, "Invalid account" );
452                                return;
453                        }
454                }
455                else
456                {
457                        if ( irc->b->accounts )
458                        {
459                                irc_usermsg( irc, "Trying to get all accounts connected..." );
460                       
461                                for( a = irc->b->accounts; a; a = a->next )
462                                        if( !a->ic && a->auto_connect )
463                                                account_on( irc->b, a );
464                        } 
465                        else
466                        {
467                                irc_usermsg( irc, "No accounts known. Use `account add' to add one." );
468                        }
469                }
470        }
471        else if( g_strcasecmp( cmd[1], "off" ) == 0 )
472        {
473                if( !cmd[2] )
474                {
475                        irc_usermsg( irc, "Deactivating all active (re)connections..." );
476                       
477                        for( a = irc->b->accounts; a; a = a->next )
478                        {
479                                if( a->ic )
480                                        account_off( irc->b, a );
481                                else if( a->reconnect )
482                                        cancel_auto_reconnect( a );
483                        }
484                }
485                else if( ( a = account_get( irc->b, cmd[2] ) ) )
486                {
487                        if( a->ic )
488                        {
489                                account_off( irc->b, a );
490                        }
491                        else if( a->reconnect )
492                        {
493                                cancel_auto_reconnect( a );
494                                irc_usermsg( irc, "Reconnect cancelled" );
495                        }
496                        else
497                        {
498                                irc_usermsg( irc, "Account already offline" );
499                                return;
500                        }
501                }
502                else
503                {
504                        irc_usermsg( irc, "Invalid account" );
505                        return;
506                }
507        }
508        else if( g_strcasecmp( cmd[1], "set" ) == 0 )
509        {
510                MIN_ARGS( 2 );
511               
512                cmd_set_real( irc, cmd + 1, cmd_account_set_findhead, cmd_account_set_checkflags );
513        }
514        else
515        {
516                irc_usermsg( irc, "Unknown command: %s %s. Please use \x02help commands\x02 to get a list of available commands.", "account", cmd[1] );
517        }
518}
519
520static set_t **cmd_channel_set_findhead( irc_t *irc, char *id )
521{
522        irc_channel_t *ic;
523       
524        if( ( ic = irc_channel_get( irc, id ) ) )
525                return &ic->set;
526        else
527                return NULL;
528}
529
530static void cmd_channel( irc_t *irc, char **cmd )
531{
532        if( g_strcasecmp( cmd[1], "set" ) == 0 )
533        {
534                MIN_ARGS( 2 );
535               
536                cmd_set_real( irc, cmd + 1, cmd_channel_set_findhead, NULL );
537        }
538        else if( g_strcasecmp( cmd[1], "list" ) == 0 )
539        {
540                GSList *l;
541                int i = 0;
542               
543                if( strchr( irc->umode, 'b' ) )
544                        irc_usermsg( irc, "Channel list:" );
545               
546                for( l = irc->channels; l; l = l->next )
547                {
548                        irc_channel_t *ic = l->data;
549                       
550                        irc_usermsg( irc, "%2d. %s, %s channel%s", i, ic->name,
551                                     set_getstr( &ic->set, "type" ),
552                                     ic->flags & IRC_CHANNEL_JOINED ? " (joined)" : "" );
553                       
554                        i ++;
555                }
556                irc_usermsg( irc, "End of channel list" );
557        }
558        else
559        {
560                irc_usermsg( irc, "Unknown command: %s %s. Please use \x02help commands\x02 to get a list of available commands.", "channel", cmd[1] );
561        }
562}
563
564static void cmd_add( irc_t *irc, char **cmd )
565{
566        account_t *a;
567        int add_on_server = 1;
568       
569        if( g_strcasecmp( cmd[1], "-tmp" ) == 0 )
570        {
571                MIN_ARGS( 3 );
572                add_on_server = 0;
573                cmd ++;
574        }
575       
576        if( !( a = account_get( irc->b, cmd[1] ) ) )
577        {
578                irc_usermsg( irc, "Invalid account" );
579                return;
580        }
581        else if( !( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) ) )
582        {
583                irc_usermsg( irc, "That account is not on-line" );
584                return;
585        }
586       
587        if( cmd[3] )
588        {
589                if( !nick_ok( cmd[3] ) )
590                {
591                        irc_usermsg( irc, "The requested nick `%s' is invalid", cmd[3] );
592                        return;
593                }
594                else if( irc_user_by_name( irc, cmd[3] ) )
595                {
596                        irc_usermsg( irc, "The requested nick `%s' already exists", cmd[3] );
597                        return;
598                }
599                else
600                {
601                        nick_set( a, cmd[2], cmd[3] );
602                }
603        }
604       
605        if( add_on_server )
606                a->ic->acc->prpl->add_buddy( a->ic, cmd[2], NULL );
607        else
608                /* Only for add -tmp. For regular adds, this callback will
609                   be called once the IM server confirms. */
610                bee_user_new( irc->b, a->ic, cmd[2], BEE_USER_LOCAL );
611       
612        irc_usermsg( irc, "Adding `%s' to your contact list", cmd[2]  );
613}
614
615static void cmd_remove( irc_t *irc, char **cmd )
616{
617        irc_user_t *iu;
618        bee_user_t *bu;
619        char *s;
620       
621        if( !( iu = irc_user_by_name( irc, cmd[1] ) ) || !( bu = iu->bu ) )
622        {
623                irc_usermsg( irc, "Buddy `%s' not found", cmd[1] );
624                return;
625        }
626        s = g_strdup( bu->handle );
627       
628        bu->ic->acc->prpl->remove_buddy( bu->ic, bu->handle, NULL );
629        nick_del( bu->ic->acc, bu->handle );
630        //TODO(wilmer): bee_user_free() and/or let the IM mod do it? irc_user_free( irc, cmd[1] );
631       
632        irc_usermsg( irc, "Buddy `%s' (nick %s) removed from contact list", s, cmd[1] );
633        g_free( s );
634       
635        return;
636}
637
638static void cmd_info( irc_t *irc, char **cmd )
639{
640        struct im_connection *ic;
641        account_t *a;
642       
643        if( !cmd[2] )
644        {
645                irc_user_t *iu = irc_user_by_name( irc, cmd[1] );
646                if( !iu || !iu->bu )
647                {
648                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
649                        return;
650                }
651                ic = iu->bu->ic;
652                cmd[2] = iu->bu->handle;
653        }
654        else if( !( a = account_get( irc->b, cmd[1] ) ) )
655        {
656                irc_usermsg( irc, "Invalid account" );
657                return;
658        }
659        else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) )
660        {
661                irc_usermsg( irc, "That account is not on-line" );
662                return;
663        }
664       
665        if( !ic->acc->prpl->get_info )
666        {
667                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
668        }
669        else
670        {
671                ic->acc->prpl->get_info( ic, cmd[2] );
672        }
673}
674
675static void cmd_rename( irc_t *irc, char **cmd )
676{
677        irc_user_t *iu;
678       
679        iu = irc_user_by_name( irc, cmd[1] );
680       
681        if( iu == NULL )
682        {
683                irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
684        }
685        else if( iu == irc->user )
686        {
687                irc_usermsg( irc, "Nick `%s' can't be changed", cmd[1] );
688        }
689        else if( !nick_ok( cmd[2] ) )
690        {
691                irc_usermsg( irc, "Nick `%s' is invalid", cmd[2] );
692        }
693        else if( irc_user_by_name( irc, cmd[2] ) )
694        {
695                irc_usermsg( irc, "Nick `%s' already exists", cmd[2] );
696        }
697        else
698        {
699                if( !irc_user_set_nick( iu, cmd[2] ) )
700                {
701                        irc_usermsg( irc, "Error while changing nick" );
702                        return;
703                }
704               
705                if( iu == irc->root )
706                {
707                        /* If we're called internally (user did "set root_nick"),
708                           let's not go O(INF). :-) */
709                        if( strcmp( cmd[0], "set_rename" ) != 0 )
710                                set_setstr( &irc->b->set, "root_nick", cmd[2] );
711                }
712                else if( iu->bu )
713                {
714                        nick_set( iu->bu->ic->acc, iu->bu->handle, cmd[2] );
715                }
716               
717                irc_usermsg( irc, "Nick successfully changed" );
718        }
719}
720
721#if 0
722char *set_eval_root_nick( set_t *set, char *new_nick )
723{
724        irc_t *irc = set->data;
725       
726        if( strcmp( irc->mynick, new_nick ) != 0 )
727        {
728                char *cmd[] = { "set_rename", irc->mynick, new_nick, NULL };
729               
730                cmd_rename( irc, cmd );
731        }
732       
733        return strcmp( irc->mynick, new_nick ) == 0 ? new_nick : SET_INVALID;
734}
735#endif
736
737static void cmd_block( irc_t *irc, char **cmd )
738{
739        struct im_connection *ic;
740        account_t *a;
741       
742        if( !cmd[2] && ( a = account_get( irc->b, cmd[1] ) ) && a->ic )
743        {
744                char *format;
745                GSList *l;
746               
747                if( strchr( irc->umode, 'b' ) != NULL )
748                        format = "%s\t%s";
749                else
750                        format = "%-32.32s  %-16.16s";
751               
752                irc_usermsg( irc, format, "Handle", "Nickname" );
753                for( l = a->ic->deny; l; l = l->next )
754                {
755                        bee_user_t *bu = bee_user_by_handle( irc->b, a->ic, l->data );
756                        irc_user_t *iu = bu ? bu->ui_data : NULL;
757                        irc_usermsg( irc, format, l->data, iu ? iu->nick : "(none)" );
758                }
759                irc_usermsg( irc, "End of list." );
760               
761                return;
762        }
763        else if( !cmd[2] )
764        {
765                irc_user_t *iu = irc_user_by_name( irc, cmd[1] );
766                if( !iu || !iu->bu )
767                {
768                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
769                        return;
770                }
771                ic = iu->bu->ic;
772                cmd[2] = iu->bu->handle;
773        }
774        else if( !( a = account_get( irc->b, cmd[1] ) ) )
775        {
776                irc_usermsg( irc, "Invalid account" );
777                return;
778        }
779        else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) )
780        {
781                irc_usermsg( irc, "That account is not on-line" );
782                return;
783        }
784       
785        if( !ic->acc->prpl->add_deny || !ic->acc->prpl->rem_permit )
786        {
787                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
788        }
789        else
790        {
791                imc_rem_allow( ic, cmd[2] );
792                imc_add_block( ic, cmd[2] );
793                irc_usermsg( irc, "Buddy `%s' moved from your allow- to your block-list", cmd[2] );
794        }
795}
796
797static void cmd_allow( irc_t *irc, char **cmd )
798{
799        struct im_connection *ic;
800        account_t *a;
801       
802        if( !cmd[2] && ( a = account_get( irc->b, cmd[1] ) ) && a->ic )
803        {
804                char *format;
805                GSList *l;
806               
807                if( strchr( irc->umode, 'b' ) != NULL )
808                        format = "%s\t%s";
809                else
810                        format = "%-32.32s  %-16.16s";
811               
812                irc_usermsg( irc, format, "Handle", "Nickname" );
813                for( l = a->ic->permit; l; l = l->next )
814                {
815                        bee_user_t *bu = bee_user_by_handle( irc->b, a->ic, l->data );
816                        irc_user_t *iu = bu ? bu->ui_data : NULL;
817                        irc_usermsg( irc, format, l->data, iu ? iu->nick : "(none)" );
818                }
819                irc_usermsg( irc, "End of list." );
820               
821                return;
822        }
823        else if( !cmd[2] )
824        {
825                irc_user_t *iu = irc_user_by_name( irc, cmd[1] );
826                if( !iu || !iu->bu )
827                {
828                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
829                        return;
830                }
831                ic = iu->bu->ic;
832                cmd[2] = iu->bu->handle;
833        }
834        else if( !( a = account_get( irc->b, cmd[1] ) ) )
835        {
836                irc_usermsg( irc, "Invalid account" );
837                return;
838        }
839        else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) )
840        {
841                irc_usermsg( irc, "That account is not on-line" );
842                return;
843        }
844       
845        if( !ic->acc->prpl->rem_deny || !ic->acc->prpl->add_permit )
846        {
847                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
848        }
849        else
850        {
851                imc_rem_block( ic, cmd[2] );
852                imc_add_allow( ic, cmd[2] );
853               
854                irc_usermsg( irc, "Buddy `%s' moved from your block- to your allow-list", cmd[2] );
855        }
856}
857
858static void cmd_yesno( irc_t *irc, char **cmd )
859{
860        query_t *q = NULL;
861        int numq = 0;
862       
863        if( irc->queries == NULL )
864        {
865                irc_usermsg( irc, "Did I ask you something?" );
866                return;
867        }
868       
869        /* If there's an argument, the user seems to want to answer another question than the
870           first/last (depending on the query_order setting) one. */
871        if( cmd[1] )
872        {
873                if( sscanf( cmd[1], "%d", &numq ) != 1 )
874                {
875                        irc_usermsg( irc, "Invalid query number" );
876                        return;
877                }
878               
879                for( q = irc->queries; q; q = q->next, numq -- )
880                        if( numq == 0 )
881                                break;
882               
883                if( !q )
884                {
885                        irc_usermsg( irc, "Uhm, I never asked you something like that..." );
886                        return;
887                }
888        }
889       
890        if( g_strcasecmp( cmd[0], "yes" ) == 0 )
891                query_answer( irc, q, 1 );
892        else if( g_strcasecmp( cmd[0], "no" ) == 0 )
893                query_answer( irc, q, 0 );
894}
895
896static void cmd_set( irc_t *irc, char **cmd )
897{
898        cmd_set_real( irc, cmd, NULL, NULL );
899}
900
901static void cmd_blist( irc_t *irc, char **cmd )
902{
903        int online = 0, away = 0, offline = 0;
904        GSList *l;
905        char s[256];
906        char *format;
907        int n_online = 0, n_away = 0, n_offline = 0;
908       
909        if( cmd[1] && g_strcasecmp( cmd[1], "all" ) == 0 )
910                online = offline = away = 1;
911        else if( cmd[1] && g_strcasecmp( cmd[1], "offline" ) == 0 )
912                offline = 1;
913        else if( cmd[1] && g_strcasecmp( cmd[1], "away" ) == 0 )
914                away = 1;
915        else if( cmd[1] && g_strcasecmp( cmd[1], "online" ) == 0 )
916                online = 1;
917        else
918                online = away = 1;
919       
920        if( strchr( irc->umode, 'b' ) != NULL )
921                format = "%s\t%s\t%s";
922        else
923                format = "%-16.16s  %-40.40s  %s";
924       
925        irc_usermsg( irc, format, "Nick", "Handle/Account", "Status" );
926       
927        for( l = irc->users; l; l = l->next )
928        {
929                irc_user_t *iu = l->data;
930                bee_user_t *bu = iu->bu;
931               
932                if( !bu || ( bu->flags & ( BEE_USER_ONLINE | BEE_USER_AWAY ) ) != BEE_USER_ONLINE )
933                        continue;
934               
935                if( online == 1 )
936                {
937                        char st[256] = "Online";
938                       
939                        if( bu->status_msg )
940                                g_snprintf( st, sizeof( st ) - 1, "Online (%s)", bu->status_msg );
941                       
942                        g_snprintf( s, sizeof( s ) - 1, "%s %s(%s)", bu->handle, bu->ic->acc->prpl->name, bu->ic->acc->user );
943                        irc_usermsg( irc, format, iu->nick, s, st );
944                }
945               
946                n_online ++;
947        }
948
949        for( l = irc->users; l; l = l->next )
950        {
951                irc_user_t *iu = l->data;
952                bee_user_t *bu = iu->bu;
953               
954                if( !bu || !( bu->flags & BEE_USER_ONLINE ) || !( bu->flags & BEE_USER_AWAY ) )
955                        continue;
956               
957                if( away == 1 )
958                {
959                        g_snprintf( s, sizeof( s ) - 1, "%s %s(%s)", bu->handle, bu->ic->acc->prpl->name, bu->ic->acc->user );
960                        irc_usermsg( irc, format, iu->nick, s, irc_user_get_away( iu ) );
961                }
962                n_away ++;
963        }
964       
965        for( l = irc->users; l; l = l->next )
966        {
967                irc_user_t *iu = l->data;
968                bee_user_t *bu = iu->bu;
969               
970                if( !bu || bu->flags & BEE_USER_ONLINE )
971                        continue;
972               
973                if( offline == 1 )
974                {
975                        g_snprintf( s, sizeof( s ) - 1, "%s %s(%s)", bu->handle, bu->ic->acc->prpl->name, bu->ic->acc->user );
976                        irc_usermsg( irc, format, iu->nick, s, "Offline" );
977                }
978                n_offline ++;
979        }
980       
981        irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline );
982}
983
984static void cmd_qlist( irc_t *irc, char **cmd )
985{
986        query_t *q = irc->queries;
987        int num;
988       
989        if( !q )
990        {
991                irc_usermsg( irc, "There are no pending questions." );
992                return;
993        }
994       
995        irc_usermsg( irc, "Pending queries:" );
996       
997        for( num = 0; q; q = q->next, num ++ )
998                if( q->ic ) /* Not necessary yet, but it might come later */
999                        irc_usermsg( irc, "%d, %s(%s): %s", num, q->ic->acc->prpl->name, q->ic->acc->user, q->question );
1000                else
1001                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
1002}
1003
1004static void cmd_chat( irc_t *irc, char **cmd )
1005{
1006        account_t *acc;
1007       
1008        if( g_strcasecmp( cmd[1], "add" ) == 0 )
1009        {
1010                char *channel, *s;
1011                struct irc_channel *ic;
1012               
1013                MIN_ARGS( 3 );
1014               
1015                if( !( acc = account_get( irc->b, cmd[2] ) ) )
1016                {
1017                        irc_usermsg( irc, "Invalid account" );
1018                        return;
1019                }
1020                else if( !acc->prpl->chat_join )
1021                {
1022                        irc_usermsg( irc, "Named chatrooms not supported on that account." );
1023                        return;
1024                }
1025               
1026                if( cmd[4] == NULL )
1027                {
1028                        channel = g_strdup( cmd[3] );
1029                        if( ( s = strchr( channel, '@' ) ) )
1030                                *s = 0;
1031                }
1032                else
1033                {
1034                        channel = g_strdup( cmd[4] );
1035                }
1036               
1037                if( strchr( CTYPES, channel[0] ) == NULL )
1038                {
1039                        s = g_strdup_printf( "#%s", channel );
1040                        g_free( channel );
1041                        channel = s;
1042                }
1043               
1044                if( ( ic = irc_channel_new( irc, channel ) ) &&
1045                    set_setstr( &ic->set, "chat_type", "room" ) &&
1046                    set_setstr( &ic->set, "account", cmd[2] ) &&
1047                    set_setstr( &ic->set, "room", cmd[3] ) )
1048                {
1049                        irc_usermsg( irc, "Chatroom successfully added." );
1050                }
1051                else
1052                {
1053                        if( ic )
1054                                irc_channel_free( ic );
1055                       
1056                        irc_usermsg( irc, "Could not add chatroom." );
1057                }
1058        }
1059        else if( g_strcasecmp( cmd[1], "with" ) == 0 )
1060        {
1061                irc_user_t *iu;
1062               
1063                MIN_ARGS( 2 );
1064               
1065                if( ( iu = irc_user_by_name( irc, cmd[2] ) ) &&
1066                    iu->bu && iu->bu->ic->acc->prpl->chat_with )
1067                {
1068                        if( !iu->bu->ic->acc->prpl->chat_with( iu->bu->ic, iu->bu->handle ) )
1069                        {
1070                                irc_usermsg( irc, "(Possible) failure while trying to open "
1071                                                  "a groupchat with %s.", iu->nick );
1072                        }
1073                }
1074                else
1075                {
1076                        irc_usermsg( irc, "Can't open a groupchat with %s.", cmd[2] );
1077                }
1078        }
1079        else
1080        {
1081                irc_usermsg( irc, "Unknown command: %s %s. Please use \x02help commands\x02 to get a list of available commands.", "chat", cmd[1] );
1082        }
1083}
1084
1085static void cmd_transfer( irc_t *irc, char **cmd )
1086{
1087        GSList *files = irc->file_transfers;
1088        enum { LIST, REJECT, CANCEL };
1089        int subcmd = LIST;
1090        int fid;
1091
1092        if( !files )
1093        {
1094                irc_usermsg( irc, "No pending transfers" );
1095                return;
1096        }
1097
1098        if( cmd[1] && ( strcmp( cmd[1], "reject" ) == 0 ) )
1099        {
1100                subcmd = REJECT;
1101        }
1102        else if( cmd[1] && ( strcmp( cmd[1], "cancel" ) == 0 ) && 
1103                 cmd[2] && ( sscanf( cmd[2], "%d", &fid ) == 1 ) )
1104        {
1105                subcmd = CANCEL;
1106        }
1107
1108        for( ; files; files = g_slist_next( files ) )
1109        {
1110                file_transfer_t *file = files->data;
1111               
1112                switch( subcmd ) {
1113                case LIST:
1114                        if ( file->status == FT_STATUS_LISTENING )
1115                                irc_usermsg( irc, 
1116                                        "Pending file(id %d): %s (Listening...)", file->local_id, file->file_name);
1117                        else 
1118                        {
1119                                int kb_per_s = 0;
1120                                time_t diff = time( NULL ) - file->started ? : 1;
1121                                if ( ( file->started > 0 ) && ( file->bytes_transferred > 0 ) )
1122                                        kb_per_s = file->bytes_transferred / 1024 / diff;
1123                                       
1124                                irc_usermsg( irc, 
1125                                        "Pending file(id %d): %s (%10zd/%zd kb, %d kb/s)", file->local_id, file->file_name, 
1126                                        file->bytes_transferred/1024, file->file_size/1024, kb_per_s);
1127                        }
1128                        break;
1129                case REJECT:
1130                        if( file->status == FT_STATUS_LISTENING )
1131                        {
1132                                irc_usermsg( irc, "Rejecting file transfer for %s", file->file_name );
1133                                imcb_file_canceled( file->ic, file, "Denied by user" );
1134                        }
1135                        break;
1136                case CANCEL:
1137                        if( file->local_id == fid )
1138                        {
1139                                irc_usermsg( irc, "Canceling file transfer for %s", file->file_name );
1140                                imcb_file_canceled( file->ic, file, "Canceled by user" );
1141                        }
1142                        break;
1143                }
1144        }
1145}
1146
1147/* IMPORTANT: Keep this list sorted! The short command logic needs that. */
1148const command_t commands[] = {
1149        { "account",        1, cmd_account,        0 },
1150        { "add",            2, cmd_add,            0 },
1151        { "allow",          1, cmd_allow,          0 },
1152        { "blist",          0, cmd_blist,          0 },
1153        { "block",          1, cmd_block,          0 },
1154        { "channel",        1, cmd_channel,        0 },
1155        { "chat",           1, cmd_chat,           0 },
1156        { "drop",           1, cmd_drop,           0 },
1157        { "ft",             0, cmd_transfer,       0 },
1158        { "help",           0, cmd_help,           0 }, 
1159        { "identify",       1, cmd_identify,       0 },
1160        { "info",           1, cmd_info,           0 },
1161        { "no",             0, cmd_yesno,          0 },
1162        { "qlist",          0, cmd_qlist,          0 },
1163        { "register",       1, cmd_register,       0 },
1164        { "remove",         1, cmd_remove,         0 },
1165        { "rename",         2, cmd_rename,         0 },
1166        { "save",           0, cmd_save,           0 },
1167        { "set",            0, cmd_set,            0 },
1168        { "transfer",       0, cmd_transfer,       0 },
1169        { "yes",            0, cmd_yesno,          0 },
1170        { NULL }
1171};
Note: See TracBrowser for help on using the repository browser.