source: root_commands.c @ 5f8ab6a9

Last change on this file since 5f8ab6a9 was 5f8ab6a9, checked in by Sven Moritz Hallberg <pesco@…>, at 2010-06-03T10:41:03Z

merge in bitlbee 1.2.5

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