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