source: root_commands.c @ 71dc854

Last change on this file since 71dc854 was 71dc854, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-12-10T22:33:08Z

Fixed "set xxx" syntax (it showed all settings instead of just xxx).

  • Property mode set to 100644
File size: 22.3 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                        else
60                        {
61                                break;
62                        }
63                }
64                else if( *s == '\\' && ( ( !q && s[1] ) || ( q && q == s[1] ) ) )
65                {
66                        char *cpy;
67                       
68                        for( cpy = s; *cpy; cpy ++ )
69                                cpy[0] = cpy[1];
70                }
71                else if( *s == q )
72                {
73                        q = *s = 0;
74                }
75        cmd[k] = NULL;
76       
77        root_command( irc, cmd );
78}
79
80void root_command( irc_t *irc, char *cmd[] )
81{       
82        int i;
83       
84        if( !cmd[0] )
85                return;
86       
87        for( i = 0; commands[i].command; i++ )
88                if( g_strcasecmp( commands[i].command, cmd[0] ) == 0 )
89                {
90                        if( !cmd[commands[i].required_parameters] )
91                        {
92                                irc_usermsg( irc, "Not enough parameters given (need %d)", commands[i].required_parameters );
93                                return;
94                        }
95                        commands[i].execute( irc, cmd );
96                        return;
97                }
98       
99        irc_usermsg( irc, "Unknown command: %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[0] );
100}
101
102static void cmd_help( irc_t *irc, char **cmd )
103{
104        char param[80];
105        int i;
106        char *s;
107       
108        memset( param, 0, sizeof(param) );
109        for ( i = 1; (cmd[i] != NULL && ( strlen(param) < (sizeof(param)-1) ) ); i++ ) {
110                if ( i != 1 )   // prepend space except for the first parameter
111                        strcat(param, " ");
112                strncat( param, cmd[i], sizeof(param) - strlen(param) - 1 );
113        }
114
115        s = help_get( &(global.help), param );
116        if( !s ) s = help_get( &(global.help), "" );
117       
118        if( s )
119        {
120                irc_usermsg( irc, "%s", s );
121                g_free( s );
122        }
123        else
124        {
125                irc_usermsg( irc, "Error opening helpfile." );
126        }
127}
128
129static void cmd_account( irc_t *irc, char **cmd );
130
131static void cmd_identify( irc_t *irc, char **cmd )
132{
133        storage_status_t status = storage_load( irc->nick, cmd[1], irc );
134        char *account_on[] = { "account", "on", NULL };
135       
136        switch (status) {
137        case STORAGE_INVALID_PASSWORD:
138                irc_usermsg( irc, "Incorrect password" );
139                break;
140        case STORAGE_NO_SUCH_USER:
141                irc_usermsg( irc, "The nick is (probably) not registered" );
142                break;
143        case STORAGE_OK:
144                irc_usermsg( irc, "Password accepted, settings and accounts loaded" );
145                irc_umode_set( irc, "+R", 1 );
146                if( set_getbool( &irc->set, "auto_connect" ) )
147                        cmd_account( irc, account_on );
148                break;
149        case STORAGE_OTHER_ERROR:
150        default:
151                irc_usermsg( irc, "Unknown error while loading configuration" );
152                break;
153        }
154}
155
156static void cmd_register( irc_t *irc, char **cmd )
157{
158        if( global.conf->authmode == AUTHMODE_REGISTERED )
159        {
160                irc_usermsg( irc, "This server does not allow registering new accounts" );
161                return;
162        }
163
164        irc_setpass( irc, cmd[1] );
165        switch( storage_save( irc, FALSE )) {
166                case STORAGE_ALREADY_EXISTS:
167                        irc_usermsg( irc, "Nick is already registered" );
168                        break;
169                       
170                case STORAGE_OK:
171                        irc_usermsg( irc, "Account successfully created" );
172                        irc->status |= USTATUS_IDENTIFIED;
173                        irc_umode_set( irc, "+R", 1 );
174                        break;
175
176                default:
177                        irc_usermsg( irc, "Error registering" );
178                        break;
179        }
180}
181
182static void cmd_drop( irc_t *irc, char **cmd )
183{
184        storage_status_t status;
185       
186        status = storage_remove (irc->nick, cmd[1]);
187        switch (status) {
188        case STORAGE_NO_SUCH_USER:
189                irc_usermsg( irc, "That account does not exist" );
190                break;
191        case STORAGE_INVALID_PASSWORD:
192                irc_usermsg( irc, "Password invalid" );
193                break;
194        case STORAGE_OK:
195                irc_setpass( irc, NULL );
196                irc->status &= ~USTATUS_IDENTIFIED;
197                irc_umode_set( irc, "-R", 1 );
198                irc_usermsg( irc, "Account `%s' removed", irc->nick );
199                break;
200        default:
201                irc_usermsg( irc, "Error: '%d'", status );
202                break;
203        }
204}
205
206static void cmd_account( irc_t *irc, char **cmd )
207{
208        account_t *a;
209       
210        if( global.conf->authmode == AUTHMODE_REGISTERED && !( irc->status & USTATUS_IDENTIFIED ) )
211        {
212                irc_usermsg( irc, "This server only accepts registered users" );
213                return;
214        }
215       
216        if( g_strcasecmp( cmd[1], "add" ) == 0 )
217        {
218                struct prpl *prpl;
219               
220                if( cmd[2] == NULL || cmd[3] == NULL || cmd[4] == NULL )
221                {
222                        irc_usermsg( irc, "Not enough parameters" );
223                        return;
224                }
225               
226                prpl = find_protocol(cmd[2]);
227               
228                if( prpl == NULL )
229                {
230                        irc_usermsg( irc, "Unknown protocol" );
231                        return;
232                }
233
234                a = account_add( irc, prpl, cmd[3], cmd[4] );
235                if( cmd[5] )
236                        set_setstr( &a->set, "server", cmd[5] );
237               
238                irc_usermsg( irc, "Account successfully added" );
239        }
240        else if( g_strcasecmp( cmd[1], "del" ) == 0 )
241        {
242                if( !cmd[2] )
243                {
244                        irc_usermsg( irc, "Not enough parameters given (need %d)", 2 );
245                }
246                else if( !( a = account_get( irc, cmd[2] ) ) )
247                {
248                        irc_usermsg( irc, "Invalid account" );
249                }
250                else if( a->ic )
251                {
252                        irc_usermsg( irc, "Account is still logged in, can't delete" );
253                }
254                else
255                {
256                        account_del( irc, a );
257                        irc_usermsg( irc, "Account deleted" );
258                }
259        }
260        else if( g_strcasecmp( cmd[1], "list" ) == 0 )
261        {
262                int i = 0;
263               
264                if( strchr( irc->umode, 'b' ) )
265                        irc_usermsg( irc, "Account list:" );
266               
267                for( a = irc->accounts; a; a = a->next )
268                {
269                        char *con;
270                       
271                        if( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) )
272                                con = " (connected)";
273                        else if( a->ic )
274                                con = " (connecting)";
275                        else if( a->reconnect )
276                                con = " (awaiting reconnect)";
277                        else
278                                con = "";
279                       
280                        irc_usermsg( irc, "%2d. %s, %s%s", i, a->prpl->name, a->user, con );
281                       
282                        i ++;
283                }
284                irc_usermsg( irc, "End of account list" );
285        }
286        else if( g_strcasecmp( cmd[1], "on" ) == 0 )
287        {
288                if( cmd[2] )
289                {
290                        if( ( a = account_get( irc, cmd[2] ) ) )
291                        {
292                                if( a->ic )
293                                {
294                                        irc_usermsg( irc, "Account already online" );
295                                        return;
296                                }
297                                else
298                                {
299                                        account_on( irc, a );
300                                }
301                        }
302                        else
303                        {
304                                irc_usermsg( irc, "Invalid account" );
305                                return;
306                        }
307                }
308                else
309                {
310                        if ( irc->accounts ) {
311                                irc_usermsg( irc, "Trying to get all accounts connected..." );
312                       
313                                for( a = irc->accounts; a; a = a->next )
314                                        if( !a->ic && a->auto_connect )
315                                                account_on( irc, a );
316                        } 
317                        else
318                        {
319                                irc_usermsg( irc, "No accounts known. Use 'account add' to add one." );
320                        }
321                }
322        }
323        else if( g_strcasecmp( cmd[1], "off" ) == 0 )
324        {
325                if( !cmd[2] )
326                {
327                        irc_usermsg( irc, "Deactivating all active (re)connections..." );
328                       
329                        for( a = irc->accounts; a; a = a->next )
330                        {
331                                if( a->ic )
332                                        account_off( irc, a );
333                                else if( a->reconnect )
334                                        cancel_auto_reconnect( a );
335                        }
336                }
337                else if( ( a = account_get( irc, cmd[2] ) ) )
338                {
339                        if( a->ic )
340                        {
341                                account_off( irc, a );
342                        }
343                        else if( a->reconnect )
344                        {
345                                cancel_auto_reconnect( a );
346                                irc_usermsg( irc, "Reconnect cancelled" );
347                        }
348                        else
349                        {
350                                irc_usermsg( irc, "Account already offline" );
351                                return;
352                        }
353                }
354                else
355                {
356                        irc_usermsg( irc, "Invalid account" );
357                        return;
358                }
359        }
360        else if( g_strcasecmp( cmd[1], "set" ) == 0 )
361        {
362                char *acc_handle, *set_name = NULL, *tmp;
363               
364                if( !cmd[2] )
365                {
366                        irc_usermsg( irc, "Not enough parameters given (need %d)", 2 );
367                        return;
368                }
369               
370                if( g_strncasecmp( cmd[2], "-del", 4 ) == 0 )
371                        acc_handle = g_strdup( cmd[3] );
372                else
373                        acc_handle = g_strdup( cmd[2] );
374               
375                if( ( tmp = strchr( acc_handle, '/' ) ) )
376                {
377                        *tmp = 0;
378                        set_name = tmp + 1;
379                }
380               
381                if( ( a = account_get( irc, acc_handle ) ) == NULL )
382                {
383                        g_free( acc_handle );
384                        irc_usermsg( irc, "Invalid account" );
385                        return;
386                }
387               
388                if( cmd[3] && set_name )
389                {
390                        set_t *s = set_find( &a->set, set_name );
391                       
392                        if( a->ic && s && s->flags & ACC_SET_OFFLINE_ONLY )
393                        {
394                                g_free( acc_handle );
395                                irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "off" );
396                                return;
397                        }
398                        else if( !a->ic && s && s->flags & ACC_SET_ONLINE_ONLY )
399                        {
400                                g_free( acc_handle );
401                                irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "on" );
402                                return;
403                        }
404                       
405                        if( g_strncasecmp( cmd[2], "-del", 4 ) == 0 )
406                                set_reset( &a->set, set_name );
407                        else
408                                set_setstr( &a->set, set_name, cmd[3] );
409                }
410                if( set_name ) /* else 'forgotten' on purpose.. Must show new value after changing */
411                {
412                        char *s = set_getstr( &a->set, set_name );
413                        if( s )
414                                irc_usermsg( irc, "%s = `%s'", set_name, s );
415                        else
416                                irc_usermsg( irc, "%s is empty", set_name );
417                }
418                else
419                {
420                        set_t *s = a->set;
421                        while( s )
422                        {
423                                if( s->value || s->def )
424                                        irc_usermsg( irc, "%s = `%s'", s->key, s->value ? s->value : s->def );
425                                else
426                                        irc_usermsg( irc, "%s is empty", s->key );
427                                s = s->next;
428                        }
429                }
430               
431                g_free( acc_handle );
432        }
433        else
434        {
435                irc_usermsg( irc, "Unknown command: account %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[1] );
436        }
437}
438
439static void cmd_add( irc_t *irc, char **cmd )
440{
441        account_t *a;
442        int add_on_server = 1;
443       
444        if( g_strcasecmp( cmd[1], "-tmp" ) == 0 )
445        {
446                add_on_server = 0;
447                cmd ++;         /* So evil... :-D */
448        }
449       
450        if( !( a = account_get( irc, cmd[1] ) ) )
451        {
452                irc_usermsg( irc, "Invalid account" );
453                return;
454        }
455        else if( !( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) ) )
456        {
457                irc_usermsg( irc, "That account is not on-line" );
458                return;
459        }
460       
461        if( cmd[3] )
462        {
463                if( !nick_ok( cmd[3] ) )
464                {
465                        irc_usermsg( irc, "The requested nick `%s' is invalid", cmd[3] );
466                        return;
467                }
468                else if( user_find( irc, cmd[3] ) )
469                {
470                        irc_usermsg( irc, "The requested nick `%s' already exists", cmd[3] );
471                        return;
472                }
473                else
474                {
475                        nick_set( a, cmd[2], cmd[3] );
476                }
477        }
478       
479        /* By making this optional, you can talk to people without having to
480           add them to your *real* (server-side) contact list. */
481        if( add_on_server )
482                a->ic->acc->prpl->add_buddy( a->ic, cmd[2], NULL );
483       
484        /* add_buddy( a->ic, NULL, cmd[2], cmd[2] ); */
485       
486        irc_usermsg( irc, "Adding `%s' to your contact list", cmd[2]  );
487}
488
489static void cmd_info( irc_t *irc, char **cmd )
490{
491        struct im_connection *ic;
492        account_t *a;
493       
494        if( !cmd[2] )
495        {
496                user_t *u = user_find( irc, cmd[1] );
497                if( !u || !u->ic )
498                {
499                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
500                        return;
501                }
502                ic = u->ic;
503                cmd[2] = u->handle;
504        }
505        else if( !( a = account_get( irc, cmd[1] ) ) )
506        {
507                irc_usermsg( irc, "Invalid account" );
508                return;
509        }
510        else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) )
511        {
512                irc_usermsg( irc, "That account is not on-line" );
513                return;
514        }
515       
516        if( !ic->acc->prpl->get_info )
517        {
518                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
519        }
520        else
521        {
522                ic->acc->prpl->get_info( ic, cmd[2] );
523        }
524}
525
526static void cmd_rename( irc_t *irc, char **cmd )
527{
528        user_t *u;
529       
530        if( g_strcasecmp( cmd[1], irc->nick ) == 0 )
531        {
532                irc_usermsg( irc, "Nick `%s' can't be changed", cmd[1] );
533        }
534        else if( user_find( irc, cmd[2] ) && ( nick_cmp( cmd[1], cmd[2] ) != 0 ) )
535        {
536                irc_usermsg( irc, "Nick `%s' already exists", cmd[2] );
537        }
538        else if( !nick_ok( cmd[2] ) )
539        {
540                irc_usermsg( irc, "Nick `%s' is invalid", cmd[2] );
541        }
542        else if( !( u = user_find( irc, cmd[1] ) ) )
543        {
544                irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
545        }
546        else
547        {
548                user_rename( irc, cmd[1], cmd[2] );
549                irc_write( irc, ":%s!%s@%s NICK %s", cmd[1], u->user, u->host, cmd[2] );
550                if( g_strcasecmp( cmd[1], irc->mynick ) == 0 )
551                {
552                        g_free( irc->mynick );
553                        irc->mynick = g_strdup( cmd[2] );
554                }
555                else if( u->send_handler == buddy_send_handler )
556                {
557                        nick_set( u->ic->acc, u->handle, cmd[2] );
558                }
559               
560                irc_usermsg( irc, "Nick successfully changed" );
561        }
562}
563
564static void cmd_remove( irc_t *irc, char **cmd )
565{
566        user_t *u;
567        char *s;
568       
569        if( !( u = user_find( irc, cmd[1] ) ) || !u->ic )
570        {
571                irc_usermsg( irc, "Buddy `%s' not found", cmd[1] );
572                return;
573        }
574        s = g_strdup( u->handle );
575       
576        u->ic->acc->prpl->remove_buddy( u->ic, u->handle, NULL );
577        nick_del( u->ic->acc, u->handle );
578        user_del( irc, cmd[1] );
579       
580        irc_usermsg( irc, "Buddy `%s' (nick %s) removed from contact list", s, cmd[1] );
581        g_free( s );
582       
583        return;
584}
585
586static void cmd_block( irc_t *irc, char **cmd )
587{
588        struct im_connection *ic;
589        account_t *a;
590       
591        if( !cmd[2] && ( a = account_get( irc, cmd[1] ) ) && a->ic )
592        {
593                char *format;
594                GSList *l;
595               
596                if( strchr( irc->umode, 'b' ) != NULL )
597                        format = "%s\t%s";
598                else
599                        format = "%-32.32s  %-16.16s";
600               
601                irc_usermsg( irc, format, "Handle", "Nickname" );
602                for( l = a->ic->deny; l; l = l->next )
603                {
604                        user_t *u = user_findhandle( a->ic, l->data );
605                        irc_usermsg( irc, format, l->data, u ? u->nick : "(none)" );
606                }
607                irc_usermsg( irc, "End of list." );
608               
609                return;
610        }
611        else if( !cmd[2] )
612        {
613                user_t *u = user_find( irc, cmd[1] );
614                if( !u || !u->ic )
615                {
616                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
617                        return;
618                }
619                ic = u->ic;
620                cmd[2] = u->handle;
621        }
622        else if( !( a = account_get( irc, cmd[1] ) ) )
623        {
624                irc_usermsg( irc, "Invalid account" );
625                return;
626        }
627        else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) )
628        {
629                irc_usermsg( irc, "That account is not on-line" );
630                return;
631        }
632       
633        if( !ic->acc->prpl->add_deny || !ic->acc->prpl->rem_permit )
634        {
635                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
636        }
637        else
638        {
639                imc_rem_allow( ic, cmd[2] );
640                imc_add_block( ic, cmd[2] );
641                irc_usermsg( irc, "Buddy `%s' moved from your allow- to your block-list", cmd[2] );
642        }
643}
644
645static void cmd_allow( irc_t *irc, char **cmd )
646{
647        struct im_connection *ic;
648        account_t *a;
649       
650        if( !cmd[2] && ( a = account_get( irc, cmd[1] ) ) && a->ic )
651        {
652                char *format;
653                GSList *l;
654               
655                if( strchr( irc->umode, 'b' ) != NULL )
656                        format = "%s\t%s";
657                else
658                        format = "%-32.32s  %-16.16s";
659               
660                irc_usermsg( irc, format, "Handle", "Nickname" );
661                for( l = a->ic->permit; l; l = l->next )
662                {
663                        user_t *u = user_findhandle( a->ic, l->data );
664                        irc_usermsg( irc, format, l->data, u ? u->nick : "(none)" );
665                }
666                irc_usermsg( irc, "End of list." );
667               
668                return;
669        }
670        else if( !cmd[2] )
671        {
672                user_t *u = user_find( irc, cmd[1] );
673                if( !u || !u->ic )
674                {
675                        irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] );
676                        return;
677                }
678                ic = u->ic;
679                cmd[2] = u->handle;
680        }
681        else if( !( a = account_get( irc, cmd[1] ) ) )
682        {
683                irc_usermsg( irc, "Invalid account" );
684                return;
685        }
686        else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) )
687        {
688                irc_usermsg( irc, "That account is not on-line" );
689                return;
690        }
691       
692        if( !ic->acc->prpl->rem_deny || !ic->acc->prpl->add_permit )
693        {
694                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
695        }
696        else
697        {
698                imc_rem_block( ic, cmd[2] );
699                imc_add_allow( ic, cmd[2] );
700               
701                irc_usermsg( irc, "Buddy `%s' moved from your block- to your allow-list", cmd[2] );
702        }
703}
704
705static void cmd_yesno( irc_t *irc, char **cmd )
706{
707        query_t *q = NULL;
708        int numq = 0;
709       
710        if( irc->queries == NULL )
711        {
712                irc_usermsg( irc, "Did I ask you something?" );
713                return;
714        }
715       
716        /* If there's an argument, the user seems to want to answer another question than the
717           first/last (depending on the query_order setting) one. */
718        if( cmd[1] )
719        {
720                if( sscanf( cmd[1], "%d", &numq ) != 1 )
721                {
722                        irc_usermsg( irc, "Invalid query number" );
723                        return;
724                }
725               
726                for( q = irc->queries; q; q = q->next, numq -- )
727                        if( numq == 0 )
728                                break;
729               
730                if( !q )
731                {
732                        irc_usermsg( irc, "Uhm, I never asked you something like that..." );
733                        return;
734                }
735        }
736       
737        if( g_strcasecmp( cmd[0], "yes" ) == 0 )
738                query_answer( irc, q, 1 );
739        else if( g_strcasecmp( cmd[0], "no" ) == 0 )
740                query_answer( irc, q, 0 );
741}
742
743static void cmd_set( irc_t *irc, char **cmd )
744{
745        char *set_name = cmd[1];
746       
747        if( cmd[1] && cmd[2] )
748        {
749                if( g_strncasecmp( cmd[1], "-del", 4 ) == 0 )
750                {
751                        set_reset( &irc->set, cmd[2] );
752                        set_name = cmd[2];
753                }
754                else
755                {
756                        set_setstr( &irc->set, cmd[1], cmd[2] );
757                }
758        }
759        if( set_name ) /* else 'forgotten' on purpose.. Must show new value after changing */
760        {
761                char *s = set_getstr( &irc->set, set_name );
762                if( s )
763                        irc_usermsg( irc, "%s = `%s'", set_name, s );
764                else
765                        irc_usermsg( irc, "%s is empty", set_name );
766        }
767        else
768        {
769                set_t *s = irc->set;
770                while( s )
771                {
772                        if( s->value || s->def )
773                                irc_usermsg( irc, "%s = `%s'", s->key, s->value ? s->value : s->def );
774                        else
775                                irc_usermsg( irc, "%s is empty", s->key );
776                        s = s->next;
777                }
778        }
779}
780
781static void cmd_save( irc_t *irc, char **cmd )
782{
783        if( storage_save( irc, TRUE ) == STORAGE_OK )
784                irc_usermsg( irc, "Configuration saved" );
785        else
786                irc_usermsg( irc, "Configuration could not be saved!" );
787}
788
789static void cmd_blist( irc_t *irc, char **cmd )
790{
791        int online = 0, away = 0, offline = 0;
792        user_t *u;
793        char s[256];
794        char *format;
795        int n_online = 0, n_away = 0, n_offline = 0;
796       
797        if( cmd[1] && g_strcasecmp( cmd[1], "all" ) == 0 )
798                online = offline = away = 1;
799        else if( cmd[1] && g_strcasecmp( cmd[1], "offline" ) == 0 )
800                offline = 1;
801        else if( cmd[1] && g_strcasecmp( cmd[1], "away" ) == 0 )
802                away = 1;
803        else if( cmd[1] && g_strcasecmp( cmd[1], "online" ) == 0 )
804                online = 1;
805        else
806                online =  away = 1;
807       
808        if( strchr( irc->umode, 'b' ) != NULL )
809                format = "%s\t%s\t%s";
810        else
811                format = "%-16.16s  %-40.40s  %s";
812       
813        irc_usermsg( irc, format, "Nick", "User/Host/Network", "Status" );
814       
815        for( u = irc->users; u; u = u->next ) if( u->ic && u->online && !u->away )
816        {
817                if( online == 1 )
818                {
819                        g_snprintf( s, sizeof( s ) - 1, "%s@%s (%s)", u->user, u->host, u->ic->acc->prpl->name );
820                        irc_usermsg( irc, format, u->nick, s, "Online" );
821                }
822               
823                n_online ++;
824        }
825
826        for( u = irc->users; u; u = u->next ) if( u->ic && u->online && u->away )
827        {
828                if( away == 1 )
829                {
830                        g_snprintf( s, sizeof( s ) - 1, "%s@%s (%s)", u->user, u->host, u->ic->acc->prpl->name );
831                        irc_usermsg( irc, format, u->nick, s, u->away );
832                }
833                n_away ++;
834        }
835       
836        for( u = irc->users; u; u = u->next ) if( u->ic && !u->online )
837        {
838                if( offline == 1 )
839                {
840                        g_snprintf( s, sizeof( s ) - 1, "%s@%s (%s)", u->user, u->host, u->ic->acc->prpl->name );
841                        irc_usermsg( irc, format, u->nick, s, "Offline" );
842                }
843                n_offline ++;
844        }
845       
846        irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline );
847}
848
849static void cmd_nick( irc_t *irc, char **cmd ) 
850{
851        account_t *a;
852
853        if( !cmd[1] || !( a = account_get( irc, cmd[1] ) ) )
854        {
855                irc_usermsg( irc, "Invalid account");
856        }
857        else if( !( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) ) )
858        {
859                irc_usermsg( irc, "That account is not on-line" );
860        }
861        else if ( !cmd[2] ) 
862        {
863                irc_usermsg( irc, "Your name is `%s'" , a->ic->displayname ? a->ic->displayname : "NULL" );
864        }
865        else if ( !a->prpl->set_my_name ) 
866        {
867                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
868        }
869        else
870        {
871                irc_usermsg( irc, "Setting your name to `%s'", cmd[2] );
872               
873                a->prpl->set_my_name( a->ic, cmd[2] );
874        }
875}
876
877static void cmd_qlist( irc_t *irc, char **cmd )
878{
879        query_t *q = irc->queries;
880        int num;
881       
882        if( !q )
883        {
884                irc_usermsg( irc, "There are no pending questions." );
885                return;
886        }
887       
888        irc_usermsg( irc, "Pending queries:" );
889       
890        for( num = 0; q; q = q->next, num ++ )
891                if( q->ic ) /* Not necessary yet, but it might come later */
892                        irc_usermsg( irc, "%d, %s(%s): %s", num, q->ic->acc->prpl->name, q->ic->acc->user, q->question );
893                else
894                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
895}
896
897static void cmd_join_chat( irc_t *irc, char **cmd )
898{
899        account_t *a;
900        struct im_connection *ic;
901        char *chat, *channel, *nick = NULL, *password = NULL;
902        struct groupchat *c;
903       
904        if( !( a = account_get( irc, cmd[1] ) ) )
905        {
906                irc_usermsg( irc, "Invalid account" );
907                return;
908        }
909        else if( !( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) ) )
910        {
911                irc_usermsg( irc, "That account is not on-line" );
912                return;
913        }
914        else if( a->prpl->chat_join == NULL )
915        {
916                irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] );
917                return;
918        }
919        ic = a->ic;
920       
921        chat = cmd[2];
922        if( cmd[3] )
923        {
924                if( cmd[3][0] != '#' && cmd[3][0] != '&' )
925                        channel = g_strdup_printf( "&%s", cmd[3] );
926                else
927                        channel = g_strdup( cmd[3] );
928        }
929        else
930        {
931                char *s;
932               
933                channel = g_strdup_printf( "&%s", chat );
934                if( ( s = strchr( channel, '@' ) ) )
935                        *s = 0;
936        }
937        if( cmd[3] && cmd[4] )
938                nick = cmd[4];
939        else
940                nick = irc->nick;
941        if( cmd[3] && cmd[4] && cmd[5] )
942                password = cmd[5];
943       
944        if( !nick_ok( channel + 1 ) )
945        {
946                irc_usermsg( irc, "Invalid channel name: %s", channel );
947                g_free( channel );
948                return;
949        }
950        else if( g_strcasecmp( channel, irc->channel ) == 0 || irc_chat_by_channel( irc, channel ) )
951        {
952                irc_usermsg( irc, "Channel already exists: %s", channel );
953                g_free( channel );
954                return;
955        }
956       
957        if( ( c = a->prpl->chat_join( ic, chat, nick, password ) ) )
958        {
959                g_free( c->channel );
960                c->channel = channel;
961        }
962        else
963        {
964                irc_usermsg( irc, "Tried to join chat, not sure if this was successful" );
965                g_free( channel );
966        }
967}
968
969const command_t commands[] = {
970        { "help",           0, cmd_help,           0 }, 
971        { "identify",       1, cmd_identify,       0 },
972        { "register",       1, cmd_register,       0 },
973        { "drop",           1, cmd_drop,           0 },
974        { "account",        1, cmd_account,        0 },
975        { "add",            2, cmd_add,            0 },
976        { "info",           1, cmd_info,           0 },
977        { "rename",         2, cmd_rename,         0 },
978        { "remove",         1, cmd_remove,         0 },
979        { "block",          1, cmd_block,          0 },
980        { "allow",          1, cmd_allow,          0 },
981        { "save",           0, cmd_save,           0 },
982        { "set",            0, cmd_set,            0 },
983        { "yes",            0, cmd_yesno,          0 },
984        { "no",             0, cmd_yesno,          0 },
985        { "blist",          0, cmd_blist,          0 },
986        { "nick",           1, cmd_nick,           0 },
987        { "qlist",          0, cmd_qlist,          0 },
988        { "join_chat",      2, cmd_join_chat,      0 },
989        { NULL }
990};
Note: See TracBrowser for help on using the repository browser.