source: root_commands.c @ 3064ea4

Last change on this file since 3064ea4 was 3064ea4, checked in by Sven Moritz Hallberg <sm@…>, at 2008-02-16T15:20:58Z

rework keygen messages and add some notices

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