source: root_commands.c @ 522a00f

Last change on this file since 522a00f was 522a00f, checked in by Sven Moritz Hallberg <sm@…>, at 2008-02-15T09:27:26Z

remove thread-based keygen
replace it with a process-based stub

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