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