source: root_commands.c @ aefa533e

Last change on this file since aefa533e was aefa533e, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-03-21T08:12:22Z

Added a special +b usermode for easier parseability of some things.
(For now blist and qlist, but more should come)

  • Property mode set to 100644
File size: 18.6 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 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
32#include <string.h>
33
34void root_command_string( irc_t *irc, user_t *u, char *command, int flags )
35{
36        char *cmd[IRC_MAX_ARGS];
37        char *s;
38        int k;
39        char q = 0;
40       
41        memset( cmd, 0, sizeof( cmd ) );
42        cmd[0] = command;
43        k = 1;
44        for( s = command; *s && k < ( IRC_MAX_ARGS - 1 ); s ++ )
45                if( *s == ' ' && !q )
46                {
47                        *s = 0;
48                        while( *++s == ' ' );
49                        if( *s == '"' || *s == '\'' )
50                        {
51                                q = *s;
52                                s ++;
53                        }
54                        if( *s )
55                        {
56                                cmd[k++] = s;
57                                s --;
58                        }
59                }
60                else if( *s == q )
61                {
62                        q = *s = 0;
63                }
64        cmd[k] = NULL;
65       
66        root_command( irc, cmd );
67}
68
69void root_command( irc_t *irc, char *cmd[] )
70{       
71        int i;
72       
73        if( !cmd[0] )
74                return;
75       
76        for( i = 0; commands[i].command; i++ )
77                if( g_strcasecmp( commands[i].command, cmd[0] ) == 0 )
78                {
79                        if( !cmd[commands[i].required_parameters] )
80                        {
81                                irc_usermsg( irc, "Not enough parameters given (need %d)", commands[i].required_parameters );
82                                return;
83                        }
84                        commands[i].execute( irc, cmd );
85                        return;
86                }
87       
88        irc_usermsg( irc, "Unknown command: %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[0] );
89}
90
91static void cmd_help( irc_t *irc, char **cmd )
92{
93        char param[80];
94        int i;
95        char *s;
96       
97        memset( param, 0, sizeof(param) );
98        for ( i = 1; (cmd[i] != NULL && ( strlen(param) < (sizeof(param)-1) ) ); i++ ) {
99                if ( i != 1 )   // prepend space except for the first parameter
100                        strcat(param, " ");
101                strncat( param, cmd[i], sizeof(param) - strlen(param) - 1 );
102        }
103
104        s = help_get( &(global.help), param );
105        if( !s ) s = help_get( &(global.help), "" );
106       
107        if( s )
108        {
109                irc_usermsg( irc, "%s", s );
110                g_free( s );
111        }
112        else
113        {
114                irc_usermsg( irc, "Error opening helpfile." );
115        }
116}
117
118static void cmd_identify( irc_t *irc, char **cmd )
119{
120        storage_status_t status = storage_load( irc->nick, cmd[1], irc );
121       
122        switch (status) {
123        case STORAGE_INVALID_PASSWORD:
124                irc_usermsg( irc, "Incorrect password" );
125                break;
126        case STORAGE_NO_SUCH_USER:
127                irc_usermsg( irc, "The nick is (probably) not registered" );
128                break;
129        case STORAGE_OK:
130                irc_usermsg( irc, "Password accepted" );
131                irc_umode_set( irc, "+R", 1 );
132                break;
133        default:
134                irc_usermsg( irc, "Something very weird happened" );
135                break;
136        }
137}
138
139static void cmd_register( irc_t *irc, char **cmd )
140{
141        if( global.conf->authmode == AUTHMODE_REGISTERED )
142        {
143                irc_usermsg( irc, "This server does not allow registering new accounts" );
144                return;
145        }
146
147        irc_setpass( irc, cmd[1] );
148        switch( storage_save( irc, FALSE )) {
149                case STORAGE_ALREADY_EXISTS:
150                        irc_usermsg( irc, "Nick is already registered" );
151                        break;
152                       
153                case STORAGE_OK:
154                        irc->status = USTATUS_IDENTIFIED;
155                        irc_umode_set( irc, "+R", 1 );
156                        break;
157
158                default:
159                        irc_usermsg( irc, "Error registering" );
160                        break;
161        }
162}
163
164static void cmd_drop( irc_t *irc, char **cmd )
165{
166        storage_status_t status;
167       
168        status = storage_remove (irc->nick, cmd[1]);
169        switch (status) {
170        case STORAGE_NO_SUCH_USER:
171                irc_usermsg( irc, "That account does not exist" );
172                break;
173        case STORAGE_INVALID_PASSWORD:
174                irc_usermsg( irc, "Password invalid" );
175                break;
176        case STORAGE_OK:
177                irc_setpass( irc, NULL );
178                irc->status = USTATUS_LOGGED_IN;
179                irc_umode_set( irc, "-R", 1 );
180                irc_usermsg( irc, "Account `%s' removed", irc->nick );
181                break;
182        default:
183                irc_usermsg( irc, "Error: '%d'", status );
184                break;
185        }
186}
187
188static void cmd_account( irc_t *irc, char **cmd )
189{
190        account_t *a;
191       
192        if( global.conf->authmode == AUTHMODE_REGISTERED && irc->status < USTATUS_IDENTIFIED )
193        {
194                irc_usermsg( irc, "This server only accepts registered users" );
195                return;
196        }
197       
198        if( g_strcasecmp( cmd[1], "add" ) == 0 )
199        {
200                struct prpl *prpl;
201               
202                if( cmd[2] == NULL || cmd[3] == NULL || cmd[4] == NULL )
203                {
204                        irc_usermsg( irc, "Not enough parameters" );
205                        return;
206                }
207               
208                prpl = find_protocol(cmd[2]);
209               
210                if( prpl == NULL )
211                {
212                        irc_usermsg( irc, "Unknown protocol" );
213                        return;
214                }
215
216                a = account_add( irc, prpl, cmd[3], cmd[4] );
217               
218                if( cmd[5] )
219                        a->server = g_strdup( cmd[5] );
220               
221                irc_usermsg( irc, "Account successfully added" );
222        }
223        else if( g_strcasecmp( cmd[1], "del" ) == 0 )
224        {
225                if( !cmd[2] )
226                {
227                        irc_usermsg( irc, "Not enough parameters given (need %d)", 2 );
228                }
229                else if( !( a = account_get( irc, cmd[2] ) ) )
230                {
231                        irc_usermsg( irc, "Invalid account" );
232                }
233                else if( a->gc )
234                {
235                        irc_usermsg( irc, "Account is still logged in, can't delete" );
236                }
237                else
238                {
239                        account_del( irc, a );
240                        irc_usermsg( irc, "Account deleted" );
241                }
242        }
243        else if( g_strcasecmp( cmd[1], "list" ) == 0 )
244        {
245                int i = 0;
246               
247                for( a = irc->accounts; a; a = a->next )
248                {
249                        char *con;
250                       
251                        if( a->gc && ( a->gc->flags & OPT_LOGGED_IN ) )
252                                con = " (connected)";
253                        else if( a->gc )
254                                con = " (connecting)";
255                        else if( a->reconnect )
256                                con = " (awaiting reconnect)";
257                        else
258                                con = "";
259                       
260                        irc_usermsg( irc, "%2d. %s, %s%s", i, a->prpl->name, a->user, con );
261                       
262                        i ++;
263                }
264                irc_usermsg( irc, "End of account list" );
265        }
266        else if( g_strcasecmp( cmd[1], "on" ) == 0 )
267        {
268                if( cmd[2] )
269                {
270                        if( ( a = account_get( irc, cmd[2] ) ) )
271                        {
272                                if( a->gc )
273                                {
274                                        irc_usermsg( irc, "Account already online" );
275                                        return;
276                                }
277                                else
278                                {
279                                        account_on( irc, a );
280                                }
281                        }
282                        else
283                        {
284                                irc_usermsg( irc, "Invalid account" );
285                                return;
286                        }
287                }
288                else
289                {
290                        if ( irc->accounts ) {
291                                irc_usermsg( irc, "Trying to get all accounts connected..." );
292                       
293                                for( a = irc->accounts; a; a = a->next )
294                                        if( !a->gc )
295                                                account_on( irc, a );
296                        } 
297                        else
298                        {
299                                irc_usermsg( irc, "No accounts known. Use 'account add' to add one." );
300                        }
301                }
302        }
303        else if( g_strcasecmp( cmd[1], "off" ) == 0 )
304        {
305                if( !cmd[2] )
306                {
307                        irc_usermsg( irc, "Deactivating all active (re)connections..." );
308                       
309                        for( a = irc->accounts; a; a = a->next )
310                        {
311                                if( a->gc )
312                                        account_off( irc, a );
313                                else if( a->reconnect )
314                                        cancel_auto_reconnect( a );
315                        }
316                }
317                else if( ( a = account_get( irc, cmd[2] ) ) )
318                {
319                        if( a->gc )
320                        {
321                                account_off( irc, a );
322                        }
323                        else if( a->reconnect )
324                        {
325                                cancel_auto_reconnect( a );
326                                irc_usermsg( irc, "Reconnect cancelled" );
327                        }
328                        else
329                        {
330                                irc_usermsg( irc, "Account already offline" );
331                                return;
332                        }
333                }
334                else
335                {
336                        irc_usermsg( irc, "Invalid account" );
337                        return;
338                }
339        }
340        else
341        {
342                irc_usermsg( irc, "Unknown command: account %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[1] );
343        }
344}
345
346static void cmd_add( irc_t *irc, char **cmd )
347{
348        account_t *a;
349       
350        if( !( a = account_get( irc, cmd[1] ) ) )
351        {
352                irc_usermsg( irc, "Invalid account" );
353                return;
354        }
355        else if( !( a->gc && ( a->gc->flags & OPT_LOGGED_IN ) ) )
356        {
357                irc_usermsg( irc, "That account is not on-line" );
358                return;
359        }
360       
361        if( cmd[3] )
362        {
363                if( !nick_ok( cmd[3] ) )
364                {
365                        irc_usermsg( irc, "The requested nick `%s' is invalid", cmd[3] );
366                        return;
367                }
368                else if( user_find( irc, cmd[3] ) )
369                {
370                        irc_usermsg( irc, "The requested nick `%s' already exists", cmd[3] );
371                        return;
372                }
373                else
374                {
375                        nick_set( irc, cmd[2], a->gc->prpl, cmd[3] );
376                }
377        }
378        a->gc->prpl->add_buddy( a->gc, cmd[2] );
379        add_buddy( a->gc, NULL, cmd[2], cmd[2] );
380       
381        irc_usermsg( irc, "User `%s' added to your contact list as `%s'", cmd[2], user_findhandle( a->gc, cmd[2] )->nick );
382}
383
384static void cmd_info( irc_t *irc, char **cmd )
385{
386        struct gaim_connection *gc;
387        account_t *a;
388       
389        if( !cmd[2] )
390        {
391                user_t *u = user_find( irc, cmd[1] );
392                if( !u || !u->gc )
393                {
394                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
395                        return;
396                }
397                gc = u->gc;
398                cmd[2] = u->handle;
399        }
400        else if( !( a = account_get( irc, cmd[1] ) ) )
401        {
402                irc_usermsg( irc, "Invalid account" );
403                return;
404        }
405        else if( !( ( gc = a->gc ) && ( a->gc->flags & OPT_LOGGED_IN ) ) )
406        {
407                irc_usermsg( irc, "That account is not on-line" );
408                return;
409        }
410       
411        if( !gc->prpl->get_info )
412        {
413                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
414        }
415        else
416        {
417                gc->prpl->get_info( gc, cmd[2] );
418        }
419}
420
421static void cmd_rename( irc_t *irc, char **cmd )
422{
423        user_t *u;
424       
425        if( g_strcasecmp( cmd[1], irc->nick ) == 0 )
426        {
427                irc_usermsg( irc, "Nick `%s' can't be changed", cmd[1] );
428        }
429        else if( user_find( irc, cmd[2] ) && ( nick_cmp( cmd[1], cmd[2] ) != 0 ) )
430        {
431                irc_usermsg( irc, "Nick `%s' already exists", cmd[2] );
432        }
433        else if( !nick_ok( cmd[2] ) )
434        {
435                irc_usermsg( irc, "Nick `%s' is invalid", cmd[2] );
436        }
437        else if( !( u = user_find( irc, cmd[1] ) ) )
438        {
439                irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
440        }
441        else
442        {
443                user_rename( irc, cmd[1], cmd[2] );
444                irc_write( irc, ":%s!%s@%s NICK %s", cmd[1], u->user, u->host, cmd[2] );
445                if( g_strcasecmp( cmd[1], irc->mynick ) == 0 )
446                {
447                        g_free( irc->mynick );
448                        irc->mynick = g_strdup( cmd[2] );
449                }
450                else if( u->send_handler == buddy_send_handler )
451                {
452                        nick_set( irc, u->handle, u->gc->prpl, cmd[2] );
453                }
454               
455                irc_usermsg( irc, "Nick successfully changed" );
456        }
457}
458
459static void cmd_remove( irc_t *irc, char **cmd )
460{
461        user_t *u;
462        char *s;
463       
464        if( !( u = user_find( irc, cmd[1] ) ) || !u->gc )
465        {
466                irc_usermsg( irc, "Buddy `%s' not found", cmd[1] );
467                return;
468        }
469        s = g_strdup( u->handle );
470       
471        u->gc->prpl->remove_buddy( u->gc, u->handle, NULL );
472        user_del( irc, cmd[1] );
473        nick_del( irc, cmd[1] );
474       
475        irc_usermsg( irc, "Buddy `%s' (nick %s) removed from contact list", s, cmd[1] );
476        g_free( s );
477       
478        return;
479}
480
481static void cmd_block( irc_t *irc, char **cmd )
482{
483        struct gaim_connection *gc;
484        account_t *a;
485       
486        if( !cmd[2] )
487        {
488                user_t *u = user_find( irc, cmd[1] );
489                if( !u || !u->gc )
490                {
491                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
492                        return;
493                }
494                gc = u->gc;
495                cmd[2] = u->handle;
496        }
497        else if( !( a = account_get( irc, cmd[1] ) ) )
498        {
499                irc_usermsg( irc, "Invalid account" );
500                return;
501        }
502        else if( !( ( gc = a->gc ) && ( a->gc->flags & OPT_LOGGED_IN ) ) )
503        {
504                irc_usermsg( irc, "That account is not on-line" );
505                return;
506        }
507       
508        if( !gc->prpl->add_deny || !gc->prpl->rem_permit )
509        {
510                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
511        }
512        else
513        {
514                gc->prpl->rem_permit( gc, cmd[2] );
515                gc->prpl->add_deny( gc, cmd[2] );
516                irc_usermsg( irc, "Buddy `%s' moved from your permit- to your deny-list", cmd[2] );
517        }
518}
519
520static void cmd_allow( irc_t *irc, char **cmd )
521{
522        struct gaim_connection *gc;
523        account_t *a;
524       
525        if( !cmd[2] )
526        {
527                user_t *u = user_find( irc, cmd[1] );
528                if( !u || !u->gc )
529                {
530                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
531                        return;
532                }
533                gc = u->gc;
534                cmd[2] = u->handle;
535        }
536        else if( !( a = account_get( irc, cmd[1] ) ) )
537        {
538                irc_usermsg( irc, "Invalid account" );
539                return;
540        }
541        else if( !( ( gc = a->gc ) && ( a->gc->flags & OPT_LOGGED_IN ) ) )
542        {
543                irc_usermsg( irc, "That account is not on-line" );
544                return;
545        }
546       
547        if( !gc->prpl->rem_deny || !gc->prpl->add_permit )
548        {
549                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
550        }
551        else
552        {
553                gc->prpl->rem_deny( gc, cmd[2] );
554                gc->prpl->add_permit( gc, cmd[2] );
555               
556                irc_usermsg( irc, "Buddy `%s' moved from your deny- to your permit-list", cmd[2] );
557        }
558}
559
560static void cmd_yesno( irc_t *irc, char **cmd )
561{
562        query_t *q = NULL;
563        int numq = 0;
564       
565        if( irc->queries == NULL )
566        {
567                irc_usermsg( irc, "Did I ask you something?" );
568                return;
569        }
570       
571        /* If there's an argument, the user seems to want to answer another question than the
572           first/last (depending on the query_order setting) one. */
573        if( cmd[1] )
574        {
575                if( sscanf( cmd[1], "%d", &numq ) != 1 )
576                {
577                        irc_usermsg( irc, "Invalid query number" );
578                        return;
579                }
580               
581                for( q = irc->queries; q; q = q->next, numq -- )
582                        if( numq == 0 )
583                                break;
584               
585                if( !q )
586                {
587                        irc_usermsg( irc, "Uhm, I never asked you something like that..." );
588                        return;
589                }
590        }
591       
592        if( g_strcasecmp( cmd[0], "yes" ) == 0 )
593                query_answer( irc, q, 1 );
594        else if( g_strcasecmp( cmd[0], "no" ) == 0 )
595                query_answer( irc, q, 0 );
596}
597
598static void cmd_set( irc_t *irc, char **cmd )
599{
600        if( cmd[1] && cmd[2] )
601        {
602                set_setstr( irc, cmd[1], cmd[2] );
603               
604                if( ( strcmp( cmd[2], "=" ) ) == 0 && cmd[3] )
605                        irc_usermsg( irc, "Warning: Correct syntax: \002set <variable> <value>\002 (without =)" );
606        }
607        if( cmd[1] ) /* else 'forgotten' on purpose.. Must show new value after changing */
608        {
609                char *s = set_getstr( irc, cmd[1] );
610                if( s )
611                        irc_usermsg( irc, "%s = `%s'", cmd[1], s );
612        }
613        else
614        {
615                set_t *s = irc->set;
616                while( s )
617                {
618                        if( s->value || s->def )
619                                irc_usermsg( irc, "%s = `%s'", s->key, s->value?s->value:s->def );
620                        s = s->next;
621                }
622        }
623}
624
625static void cmd_save( irc_t *irc, char **cmd )
626{
627        if( storage_save( irc, TRUE ) == STORAGE_OK )
628                irc_usermsg( irc, "Configuration saved" );
629        else
630                irc_usermsg( irc, "Configuration could not be saved!" );
631}
632
633static void cmd_blist( irc_t *irc, char **cmd )
634{
635        int online = 0, away = 0, offline = 0;
636        user_t *u;
637        char s[256];
638        char *format;
639        int n_online = 0, n_away = 0, n_offline = 0;
640       
641        if( cmd[1] && g_strcasecmp( cmd[1], "all" ) == 0 )
642                online = offline = away = 1;
643        else if( cmd[1] && g_strcasecmp( cmd[1], "offline" ) == 0 )
644                offline = 1;
645        else if( cmd[1] && g_strcasecmp( cmd[1], "away" ) == 0 )
646                away = 1;
647        else if( cmd[1] && g_strcasecmp( cmd[1], "online" ) == 0 )
648                online = 1;
649        else
650                online =  away = 1;
651       
652        if( strchr( irc->umode, 'b' ) != NULL )
653                format = "%s\t%s\t%s";
654        else
655                format = "%-16.16s  %-40.40s  %s";
656       
657        irc_usermsg( irc, format, "Nick", "User/Host/Network", "Status" );
658       
659        for( u = irc->users; u; u = u->next ) if( u->gc && u->online && !u->away )
660        {
661                if( online == 1 )
662                {
663                        g_snprintf( s, sizeof( s ) - 1, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
664                        irc_usermsg( irc, format, u->nick, s, "Online" );
665                }
666               
667                n_online ++;
668        }
669
670        for( u = irc->users; u; u = u->next ) if( u->gc && u->online && u->away )
671        {
672                if( away == 1 )
673                {
674                        g_snprintf( s, sizeof( s ) - 1, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
675                        irc_usermsg( irc, format, u->nick, s, u->away );
676                }
677                n_away ++;
678        }
679       
680        for( u = irc->users; u; u = u->next ) if( u->gc && !u->online )
681        {
682                if( offline == 1 )
683                {
684                        g_snprintf( s, sizeof( s ) - 1, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
685                        irc_usermsg( irc, format, u->nick, s, "Offline" );
686                }
687                n_offline ++;
688        }
689       
690        if( strchr( irc->umode, 'b' ) == NULL )
691                irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline );
692}
693
694static void cmd_nick( irc_t *irc, char **cmd ) 
695{
696        account_t *a;
697
698        if( !cmd[1] || !( a = account_get( irc, cmd[1] ) ) )
699        {
700                irc_usermsg( irc, "Invalid account");
701        }
702        else if( !( a->gc && ( a->gc->flags & OPT_LOGGED_IN ) ) )
703        {
704                irc_usermsg( irc, "That account is not on-line" );
705        }
706        else if ( !cmd[2] ) 
707        {
708                irc_usermsg( irc, "Your name is `%s'" , a->gc->displayname ? a->gc->displayname : "NULL" );
709        }
710        else if ( !a->gc->prpl->set_info ) 
711        {
712                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
713        }
714        else
715        {
716                char utf8[1024];
717               
718                irc_usermsg( irc, "Setting your name to `%s'", cmd[2] );
719               
720                if( g_strncasecmp( set_getstr( irc, "charset" ), "none", 4 ) != 0 &&
721                    do_iconv( set_getstr( irc, "charset" ), "UTF-8", cmd[2], utf8, 0, 1024 ) != -1 )
722                        a->gc->prpl->set_info( a->gc, utf8 );
723                else
724                        a->gc->prpl->set_info( a->gc, cmd[2] );
725        }
726}
727
728static void cmd_qlist( irc_t *irc, char **cmd )
729{
730        query_t *q = irc->queries;
731        int num;
732       
733        if( !q )
734        {
735                irc_usermsg( irc, "There are no pending questions." );
736                return;
737        }
738       
739        irc_usermsg( irc, "Pending queries:" );
740       
741        for( num = 0; q; q = q->next, num ++ )
742                if( q->gc ) /* Not necessary yet, but it might come later */
743                        irc_usermsg( irc, "%d, %s(%s): %s", num, q->gc->prpl->name, q->gc->username, q->question );
744                else
745                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
746}
747
748static void cmd_import_buddies( irc_t *irc, char **cmd )
749{
750        struct gaim_connection *gc;
751        account_t *a;
752        nick_t *n;
753       
754        if( !( a = account_get( irc, cmd[1] ) ) )
755        {
756                irc_usermsg( irc, "Invalid account" );
757                return;
758        }
759        else if( !( ( gc = a->gc ) && ( a->gc->flags & OPT_LOGGED_IN ) ) )
760        {
761                irc_usermsg( irc, "That account is not on-line" );
762                return;
763        }
764       
765        if( cmd[2] )
766        {
767                if( g_strcasecmp( cmd[2], "clear" ) == 0 )
768                {
769                        user_t *u;
770                       
771                        for( u = irc->users; u; u = u->next )
772                                if( u->gc == gc )
773                                {
774                                        u->gc->prpl->remove_buddy( u->gc, u->handle, NULL );
775                                        user_del( irc, u->nick );
776                                }
777                       
778                        irc_usermsg( irc, "Old buddy list cleared." );
779                }
780                else
781                {
782                        irc_usermsg( irc, "Invalid argument: %s", cmd[2] );
783                        return;
784                }
785        }
786       
787        for( n = gc->irc->nicks; n; n = n->next )
788        {
789                if( n->proto == gc->prpl && !user_findhandle( gc, n->handle ) )
790                {
791                        gc->prpl->add_buddy( gc, n->handle );
792                        add_buddy( gc, NULL, n->handle, NULL );
793                }
794        }
795       
796        irc_usermsg( irc, "Sent all add requests. Please wait for a while, the server needs some time to handle all the adds." );
797}
798
799const command_t commands[] = {
800        { "help",           0, cmd_help,           0 }, 
801        { "identify",       1, cmd_identify,       0 },
802        { "register",       1, cmd_register,       0 },
803        { "drop",           1, cmd_drop,           0 },
804        { "account",        1, cmd_account,        0 },
805        { "add",            2, cmd_add,            0 },
806        { "info",           1, cmd_info,           0 },
807        { "rename",         2, cmd_rename,         0 },
808        { "remove",         1, cmd_remove,         0 },
809        { "block",          1, cmd_block,          0 },
810        { "allow",          1, cmd_allow,          0 },
811        { "save",           0, cmd_save,           0 },
812        { "set",            0, cmd_set,            0 },
813        { "yes",            0, cmd_yesno,          0 },
814        { "no",             0, cmd_yesno,          0 },
815        { "blist",          0, cmd_blist,          0 },
816        { "nick",           1, cmd_nick,           0 },
817        { "import_buddies", 1, cmd_import_buddies, 0 },
818        { "qlist",          0, cmd_qlist,          0 },
819        { NULL }
820};
Note: See TracBrowser for help on using the repository browser.