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