source: root_commands.c @ 022e77f

Last change on this file since 022e77f was 8365610, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-01-30T16:07:07Z

Added a little warning message when people use a wrong set-command syntax.

  • Property mode set to 100644
File size: 18.4 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[64];
638        int n_online = 0, n_away = 0, n_offline = 0;
639       
640        if( cmd[1] && g_strcasecmp( cmd[1], "all" ) == 0 )
641                online = offline = away = 1;
642        else if( cmd[1] && g_strcasecmp( cmd[1], "offline" ) == 0 )
643                offline = 1;
644        else if( cmd[1] && g_strcasecmp( cmd[1], "away" ) == 0 )
645                away = 1;
646        else if( cmd[1] && g_strcasecmp( cmd[1], "online" ) == 0 )
647                online = 1;
648        else
649                online =  away = 1;
650       
651        irc_usermsg( irc, "%-16.16s  %-40.40s  %s", "Nick", "User/Host/Network", "Status" );
652       
653        if( online == 1 ) for( u = irc->users; u; u = u->next ) if( u->gc && u->online && !u->away )
654        {
655                g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
656                irc_usermsg( irc, "%-16.16s  %-40.40s  %s", u->nick, s, "Online" );
657                n_online ++;
658        }
659
660        if( away == 1 ) for( u = irc->users; u; u = u->next ) if( u->gc && u->online && u->away )
661        {
662                g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
663                irc_usermsg( irc, "%-16.16s  %-40.40s  %s", u->nick, s, u->away );
664                n_away ++;
665        }
666       
667        if( offline == 1 ) for( u = irc->users; u; u = u->next ) if( u->gc && !u->online )
668        {
669                g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
670                irc_usermsg( irc, "%-16.16s  %-40.40s  %s", u->nick, s, "Offline" );
671                n_offline ++;
672        }
673       
674        irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline );
675}
676
677static void cmd_nick( irc_t *irc, char **cmd ) 
678{
679        account_t *a;
680
681        if( !cmd[1] || !( a = account_get( irc, cmd[1] ) ) )
682        {
683                irc_usermsg( irc, "Invalid account");
684        }
685        else if( !( a->gc && ( a->gc->flags & OPT_LOGGED_IN ) ) )
686        {
687                irc_usermsg( irc, "That account is not on-line" );
688        }
689        else if ( !cmd[2] ) 
690        {
691                irc_usermsg( irc, "Your name is `%s'" , a->gc->displayname ? a->gc->displayname : "NULL" );
692        }
693        else if ( !a->gc->prpl->set_info ) 
694        {
695                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
696        }
697        else
698        {
699                char utf8[1024];
700               
701                irc_usermsg( irc, "Setting your name to `%s'", cmd[2] );
702               
703                if( g_strncasecmp( set_getstr( irc, "charset" ), "none", 4 ) != 0 &&
704                    do_iconv( set_getstr( irc, "charset" ), "UTF-8", cmd[2], utf8, 0, 1024 ) != -1 )
705                        a->gc->prpl->set_info( a->gc, utf8 );
706                else
707                        a->gc->prpl->set_info( a->gc, cmd[2] );
708        }
709}
710
711static void cmd_qlist( irc_t *irc, char **cmd )
712{
713        query_t *q = irc->queries;
714        int num;
715       
716        if( !q )
717        {
718                irc_usermsg( irc, "There are no pending questions." );
719                return;
720        }
721       
722        irc_usermsg( irc, "Pending queries:" );
723       
724        for( num = 0; q; q = q->next, num ++ )
725                if( q->gc ) /* Not necessary yet, but it might come later */
726                        irc_usermsg( irc, "%d, %s(%s): %s", num, q->gc->prpl->name, q->gc->username, q->question );
727                else
728                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
729}
730
731static void cmd_import_buddies( irc_t *irc, char **cmd )
732{
733        struct gaim_connection *gc;
734        account_t *a;
735        nick_t *n;
736       
737        if( !( a = account_get( irc, cmd[1] ) ) )
738        {
739                irc_usermsg( irc, "Invalid account" );
740                return;
741        }
742        else if( !( ( gc = a->gc ) && ( a->gc->flags & OPT_LOGGED_IN ) ) )
743        {
744                irc_usermsg( irc, "That account is not on-line" );
745                return;
746        }
747       
748        if( cmd[2] )
749        {
750                if( g_strcasecmp( cmd[2], "clear" ) == 0 )
751                {
752                        user_t *u;
753                       
754                        for( u = irc->users; u; u = u->next )
755                                if( u->gc == gc )
756                                {
757                                        u->gc->prpl->remove_buddy( u->gc, u->handle, NULL );
758                                        user_del( irc, u->nick );
759                                }
760                       
761                        irc_usermsg( irc, "Old buddy list cleared." );
762                }
763                else
764                {
765                        irc_usermsg( irc, "Invalid argument: %s", cmd[2] );
766                        return;
767                }
768        }
769       
770        for( n = gc->irc->nicks; n; n = n->next )
771        {
772                if( n->proto == gc->prpl && !user_findhandle( gc, n->handle ) )
773                {
774                        gc->prpl->add_buddy( gc, n->handle );
775                        add_buddy( gc, NULL, n->handle, NULL );
776                }
777        }
778       
779        irc_usermsg( irc, "Sent all add requests. Please wait for a while, the server needs some time to handle all the adds." );
780}
781
782const command_t commands[] = {
783        { "help",           0, cmd_help,           0 }, 
784        { "identify",       1, cmd_identify,       0 },
785        { "register",       1, cmd_register,       0 },
786        { "drop",           1, cmd_drop,           0 },
787        { "account",        1, cmd_account,        0 },
788        { "add",            2, cmd_add,            0 },
789        { "info",           1, cmd_info,           0 },
790        { "rename",         2, cmd_rename,         0 },
791        { "remove",         1, cmd_remove,         0 },
792        { "block",          1, cmd_block,          0 },
793        { "allow",          1, cmd_allow,          0 },
794        { "save",           0, cmd_save,           0 },
795        { "set",            0, cmd_set,            0 },
796        { "yes",            0, cmd_yesno,          0 },
797        { "no",             0, cmd_yesno,          0 },
798        { "blist",          0, cmd_blist,          0 },
799        { "nick",           1, cmd_nick,           0 },
800        { "import_buddies", 1, cmd_import_buddies, 0 },
801        { "qlist",          0, cmd_qlist,          0 },
802        { NULL }
803};
Note: See TracBrowser for help on using the repository browser.