source: root_commands.c @ 814aa52

Last change on this file since 814aa52 was 814aa52, checked in by Sven Moritz Hallberg <pesco@…>, at 2010-06-03T11:00:45Z

merge in bitlbee 1.2.6

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