[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[0baed0d] | 4 | * Copyright 2002-2010 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 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 "bitlbee.h" |
---|
| 29 | #include "help.h" |
---|
[f1c2b21] | 30 | #include "ipc.h" |
---|
[b7d3cc34] | 31 | |
---|
[280c56a] | 32 | void root_command_string( irc_t *irc, char *command ) |
---|
[7e563ed] | 33 | { |
---|
[24b8bbb] | 34 | root_command( irc, split_command_parts( command ) ); |
---|
[7e563ed] | 35 | } |
---|
| 36 | |
---|
[3b99524] | 37 | #define MIN_ARGS( x, y... ) \ |
---|
| 38 | do \ |
---|
| 39 | { \ |
---|
[07054a5] | 40 | int blaat; \ |
---|
| 41 | for( blaat = 0; blaat <= x; blaat ++ ) \ |
---|
| 42 | if( cmd[blaat] == NULL ) \ |
---|
[3b99524] | 43 | { \ |
---|
| 44 | irc_usermsg( irc, "Not enough parameters given (need %d).", x ); \ |
---|
| 45 | return y; \ |
---|
| 46 | } \ |
---|
| 47 | } while( 0 ) |
---|
| 48 | |
---|
[f73b969] | 49 | void root_command( irc_t *irc, char *cmd[] ) |
---|
[7e563ed] | 50 | { |
---|
[6c56f42] | 51 | int i, len; |
---|
[7e563ed] | 52 | |
---|
| 53 | if( !cmd[0] ) |
---|
[f73b969] | 54 | return; |
---|
[7e563ed] | 55 | |
---|
[6c56f42] | 56 | len = strlen( cmd[0] ); |
---|
[7e563ed] | 57 | for( i = 0; commands[i].command; i++ ) |
---|
[6c56f42] | 58 | if( g_strncasecmp( commands[i].command, cmd[0], len ) == 0 ) |
---|
[7e563ed] | 59 | { |
---|
[6c56f42] | 60 | if( commands[i+1].command && |
---|
| 61 | g_strncasecmp( commands[i+1].command, cmd[0], len ) == 0 ) |
---|
| 62 | /* Only match on the first letters if the match is unique. */ |
---|
| 63 | break; |
---|
| 64 | |
---|
[3b99524] | 65 | MIN_ARGS( commands[i].required_parameters ); |
---|
| 66 | |
---|
[7e563ed] | 67 | commands[i].execute( irc, cmd ); |
---|
[f73b969] | 68 | return; |
---|
[7e563ed] | 69 | } |
---|
| 70 | |
---|
| 71 | irc_usermsg( irc, "Unknown command: %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[0] ); |
---|
| 72 | } |
---|
| 73 | |
---|
[f73b969] | 74 | static void cmd_help( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 75 | { |
---|
| 76 | char param[80]; |
---|
| 77 | int i; |
---|
| 78 | char *s; |
---|
| 79 | |
---|
| 80 | memset( param, 0, sizeof(param) ); |
---|
| 81 | for ( i = 1; (cmd[i] != NULL && ( strlen(param) < (sizeof(param)-1) ) ); i++ ) { |
---|
| 82 | if ( i != 1 ) // prepend space except for the first parameter |
---|
| 83 | strcat(param, " "); |
---|
| 84 | strncat( param, cmd[i], sizeof(param) - strlen(param) - 1 ); |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | s = help_get( &(global.help), param ); |
---|
| 88 | if( !s ) s = help_get( &(global.help), "" ); |
---|
| 89 | |
---|
| 90 | if( s ) |
---|
| 91 | { |
---|
| 92 | irc_usermsg( irc, "%s", s ); |
---|
| 93 | g_free( s ); |
---|
| 94 | } |
---|
| 95 | else |
---|
| 96 | { |
---|
| 97 | irc_usermsg( irc, "Error opening helpfile." ); |
---|
| 98 | } |
---|
| 99 | } |
---|
| 100 | |
---|
[90bbb0e] | 101 | static void cmd_account( irc_t *irc, char **cmd ); |
---|
| 102 | |
---|
[f73b969] | 103 | static void cmd_identify( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 104 | { |
---|
[92cb8c4] | 105 | storage_status_t status; |
---|
| 106 | gboolean load = TRUE; |
---|
| 107 | char *password = cmd[1]; |
---|
[b7d3cc34] | 108 | |
---|
[92cb8c4] | 109 | if( irc->status & USTATUS_IDENTIFIED ) |
---|
[e9cf291] | 110 | { |
---|
| 111 | irc_usermsg( irc, "You're already logged in." ); |
---|
| 112 | return; |
---|
| 113 | } |
---|
| 114 | |
---|
[92cb8c4] | 115 | if( strncmp( cmd[1], "-no", 3 ) == 0 ) |
---|
| 116 | { |
---|
| 117 | load = FALSE; |
---|
| 118 | password = cmd[2]; |
---|
| 119 | } |
---|
| 120 | else if( strncmp( cmd[1], "-force", 6 ) == 0 ) |
---|
| 121 | { |
---|
| 122 | password = cmd[2]; |
---|
| 123 | } |
---|
| 124 | else if( irc->b->accounts != NULL ) |
---|
| 125 | { |
---|
| 126 | irc_usermsg( irc, |
---|
| 127 | "You're trying to identify yourself, but already have " |
---|
| 128 | "at least one IM account set up. " |
---|
| 129 | "Use \x02identify -noload\x02 or \x02identify -force\x02 " |
---|
| 130 | "instead (see \x02help identify\x02)." ); |
---|
| 131 | return; |
---|
| 132 | } |
---|
| 133 | |
---|
| 134 | if( password == NULL ) |
---|
| 135 | { |
---|
| 136 | MIN_ARGS( 2 ); |
---|
| 137 | } |
---|
| 138 | |
---|
| 139 | if( load ) |
---|
| 140 | status = storage_load( irc, password ); |
---|
| 141 | else |
---|
| 142 | status = storage_check_pass( irc->user->nick, password ); |
---|
| 143 | |
---|
[09adf08] | 144 | switch (status) { |
---|
| 145 | case STORAGE_INVALID_PASSWORD: |
---|
[b7d3cc34] | 146 | irc_usermsg( irc, "Incorrect password" ); |
---|
[09adf08] | 147 | break; |
---|
| 148 | case STORAGE_NO_SUCH_USER: |
---|
[b7d3cc34] | 149 | irc_usermsg( irc, "The nick is (probably) not registered" ); |
---|
[09adf08] | 150 | break; |
---|
| 151 | case STORAGE_OK: |
---|
[92cb8c4] | 152 | irc_usermsg( irc, "Password accepted%s", |
---|
| 153 | load ? ", settings and accounts loaded" : "" ); |
---|
| 154 | irc_setpass( irc, password ); |
---|
[3183c21] | 155 | irc->status |= USTATUS_IDENTIFIED; |
---|
[238f828] | 156 | irc_umode_set( irc, "+R", 1 ); |
---|
[6c2404e] | 157 | |
---|
[e92c4f4] | 158 | /* The following code is a bit hairy now. With takeover |
---|
| 159 | support, we shouldn't immediately auto_connect in case |
---|
| 160 | we're going to offer taking over an existing session. |
---|
| 161 | Do it in 200ms since that should give the parent process |
---|
| 162 | enough time to come back to us. */ |
---|
| 163 | if( load ) |
---|
[6c2404e] | 164 | { |
---|
[e92c4f4] | 165 | irc_channel_auto_joins( irc, NULL ); |
---|
[fe4f28f] | 166 | if( !set_getbool( &irc->default_channel->set, "auto_join" ) ) |
---|
| 167 | irc_channel_del_user( irc->default_channel, irc->user, |
---|
| 168 | IRC_CDU_PART, "auto_join disabled " |
---|
| 169 | "for this channel." ); |
---|
[e92c4f4] | 170 | if( set_getbool( &irc->b->set, "auto_connect" ) ) |
---|
[6c2404e] | 171 | irc->login_source_id = b_timeout_add( 200, |
---|
| 172 | cmd_identify_finish, irc ); |
---|
| 173 | } |
---|
[e92c4f4] | 174 | |
---|
| 175 | /* If ipc_child_identify() returns FALSE, it means we're |
---|
| 176 | already sure that there's no takeover target (only |
---|
| 177 | possible in 1-process daemon mode). Start auto_connect |
---|
| 178 | immediately. */ |
---|
| 179 | if( !ipc_child_identify( irc ) && load && |
---|
| 180 | set_getbool( &irc->b->set, "auto_connect" ) ) |
---|
[6c2404e] | 181 | cmd_identify_finish( irc, 0, 0 ); |
---|
| 182 | |
---|
[09adf08] | 183 | break; |
---|
[c121f89] | 184 | case STORAGE_OTHER_ERROR: |
---|
[09adf08] | 185 | default: |
---|
[c121f89] | 186 | irc_usermsg( irc, "Unknown error while loading configuration" ); |
---|
[09adf08] | 187 | break; |
---|
[b7d3cc34] | 188 | } |
---|
| 189 | } |
---|
| 190 | |
---|
[6c2404e] | 191 | gboolean cmd_identify_finish( gpointer data, gint fd, b_input_condition cond ) |
---|
| 192 | { |
---|
| 193 | char *account_on[] = { "account", "on", NULL }; |
---|
| 194 | irc_t *irc = data; |
---|
| 195 | |
---|
| 196 | cmd_account( irc, account_on ); |
---|
| 197 | |
---|
[af9f2ca] | 198 | b_event_remove( irc->login_source_id ); |
---|
[f545372] | 199 | irc->login_source_id = -1; |
---|
[6c2404e] | 200 | return FALSE; |
---|
| 201 | } |
---|
| 202 | |
---|
[f73b969] | 203 | static void cmd_register( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 204 | { |
---|
| 205 | if( global.conf->authmode == AUTHMODE_REGISTERED ) |
---|
| 206 | { |
---|
| 207 | irc_usermsg( irc, "This server does not allow registering new accounts" ); |
---|
[f73b969] | 208 | return; |
---|
[b7d3cc34] | 209 | } |
---|
[1ee6c18] | 210 | |
---|
[3183c21] | 211 | switch( storage_save( irc, cmd[1], FALSE ) ) { |
---|
[a1f17d4] | 212 | case STORAGE_ALREADY_EXISTS: |
---|
| 213 | irc_usermsg( irc, "Nick is already registered" ); |
---|
| 214 | break; |
---|
| 215 | |
---|
| 216 | case STORAGE_OK: |
---|
[0383943] | 217 | irc_usermsg( irc, "Account successfully created" ); |
---|
[3183c21] | 218 | irc_setpass( irc, cmd[1] ); |
---|
[79e826a] | 219 | irc->status |= USTATUS_IDENTIFIED; |
---|
[238f828] | 220 | irc_umode_set( irc, "+R", 1 ); |
---|
[a1f17d4] | 221 | break; |
---|
| 222 | |
---|
| 223 | default: |
---|
| 224 | irc_usermsg( irc, "Error registering" ); |
---|
| 225 | break; |
---|
[b7d3cc34] | 226 | } |
---|
| 227 | } |
---|
| 228 | |
---|
[f73b969] | 229 | static void cmd_drop( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 230 | { |
---|
[a1f17d4] | 231 | storage_status_t status; |
---|
| 232 | |
---|
[1f92a58] | 233 | status = storage_remove (irc->user->nick, cmd[1]); |
---|
[a1f17d4] | 234 | switch (status) { |
---|
| 235 | case STORAGE_NO_SUCH_USER: |
---|
[b7d3cc34] | 236 | irc_usermsg( irc, "That account does not exist" ); |
---|
[f73b969] | 237 | break; |
---|
[a1f17d4] | 238 | case STORAGE_INVALID_PASSWORD: |
---|
[1ee6c18] | 239 | irc_usermsg( irc, "Password invalid" ); |
---|
[f73b969] | 240 | break; |
---|
[a1f17d4] | 241 | case STORAGE_OK: |
---|
[7cad7b4] | 242 | irc_setpass( irc, NULL ); |
---|
[79e826a] | 243 | irc->status &= ~USTATUS_IDENTIFIED; |
---|
[238f828] | 244 | irc_umode_set( irc, "-R", 1 ); |
---|
[1f92a58] | 245 | irc_usermsg( irc, "Account `%s' removed", irc->user->nick ); |
---|
[f73b969] | 246 | break; |
---|
[a1f17d4] | 247 | default: |
---|
[30ce1ce] | 248 | irc_usermsg( irc, "Error: `%d'", status ); |
---|
[f73b969] | 249 | break; |
---|
[b7d3cc34] | 250 | } |
---|
| 251 | } |
---|
[1f92a58] | 252 | |
---|
| 253 | static void cmd_save( irc_t *irc, char **cmd ) |
---|
| 254 | { |
---|
| 255 | if( ( irc->status & USTATUS_IDENTIFIED ) == 0 ) |
---|
| 256 | irc_usermsg( irc, "Please create an account first" ); |
---|
| 257 | else if( storage_save( irc, NULL, TRUE ) == STORAGE_OK ) |
---|
| 258 | irc_usermsg( irc, "Configuration saved" ); |
---|
| 259 | else |
---|
| 260 | irc_usermsg( irc, "Configuration could not be saved!" ); |
---|
| 261 | } |
---|
[b7d3cc34] | 262 | |
---|
[f536a99] | 263 | static void cmd_showset( irc_t *irc, set_t **head, char *key ) |
---|
[f3579fd] | 264 | { |
---|
[f536a99] | 265 | char *val; |
---|
[f3579fd] | 266 | |
---|
[f536a99] | 267 | if( ( val = set_getstr( head, key ) ) ) |
---|
| 268 | irc_usermsg( irc, "%s = `%s'", key, val ); |
---|
[f3579fd] | 269 | else |
---|
[f536a99] | 270 | irc_usermsg( irc, "%s is empty", key ); |
---|
[f3579fd] | 271 | } |
---|
| 272 | |
---|
[e7bc722] | 273 | typedef set_t** (*cmd_set_findhead)( irc_t*, char* ); |
---|
[c05eb5b] | 274 | typedef int (*cmd_set_checkflags)( irc_t*, set_t *set ); |
---|
[e7bc722] | 275 | |
---|
[e907683] | 276 | static int cmd_set_real( irc_t *irc, char **cmd, set_t **head, cmd_set_checkflags checkflags ) |
---|
[e7bc722] | 277 | { |
---|
[e907683] | 278 | char *set_name = NULL, *value = NULL; |
---|
| 279 | gboolean del = FALSE; |
---|
[e7bc722] | 280 | |
---|
| 281 | if( cmd[1] && g_strncasecmp( cmd[1], "-del", 4 ) == 0 ) |
---|
[d4810df] | 282 | { |
---|
| 283 | MIN_ARGS( 2, 0 ); |
---|
[e907683] | 284 | set_name = cmd[2]; |
---|
| 285 | del = TRUE; |
---|
[d4810df] | 286 | } |
---|
[e7bc722] | 287 | else |
---|
| 288 | { |
---|
[e907683] | 289 | set_name = cmd[1]; |
---|
| 290 | value = cmd[2]; |
---|
[e7bc722] | 291 | } |
---|
| 292 | |
---|
[e907683] | 293 | if( set_name && ( value || del ) ) |
---|
[e7bc722] | 294 | { |
---|
| 295 | set_t *s = set_find( head, set_name ); |
---|
| 296 | int st; |
---|
| 297 | |
---|
[8a08d92] | 298 | if( s && checkflags && checkflags( irc, s ) == 0 ) |
---|
[e7bc722] | 299 | return 0; |
---|
| 300 | |
---|
[e907683] | 301 | if( del ) |
---|
[e7bc722] | 302 | st = set_reset( head, set_name ); |
---|
| 303 | else |
---|
[e907683] | 304 | st = set_setstr( head, set_name, value ); |
---|
[e7bc722] | 305 | |
---|
| 306 | if( set_getstr( head, set_name ) == NULL ) |
---|
| 307 | { |
---|
[e907683] | 308 | /* This happens when changing the passwd, for example. |
---|
| 309 | Showing these msgs instead gives slightly clearer |
---|
| 310 | feedback. */ |
---|
[e7bc722] | 311 | if( st ) |
---|
| 312 | irc_usermsg( irc, "Setting changed successfully" ); |
---|
| 313 | else |
---|
| 314 | irc_usermsg( irc, "Failed to change setting" ); |
---|
| 315 | } |
---|
| 316 | else |
---|
| 317 | { |
---|
| 318 | cmd_showset( irc, head, set_name ); |
---|
| 319 | } |
---|
| 320 | } |
---|
| 321 | else if( set_name ) |
---|
| 322 | { |
---|
| 323 | cmd_showset( irc, head, set_name ); |
---|
| 324 | } |
---|
| 325 | else |
---|
| 326 | { |
---|
| 327 | set_t *s = *head; |
---|
| 328 | while( s ) |
---|
| 329 | { |
---|
| 330 | cmd_showset( irc, &s, s->key ); |
---|
| 331 | s = s->next; |
---|
| 332 | } |
---|
| 333 | } |
---|
| 334 | |
---|
| 335 | return 1; |
---|
| 336 | } |
---|
| 337 | |
---|
[c05eb5b] | 338 | static int cmd_account_set_checkflags( irc_t *irc, set_t *s ) |
---|
| 339 | { |
---|
| 340 | account_t *a = s->data; |
---|
| 341 | |
---|
| 342 | if( a->ic && s && s->flags & ACC_SET_OFFLINE_ONLY ) |
---|
| 343 | { |
---|
| 344 | irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "off" ); |
---|
| 345 | return 0; |
---|
| 346 | } |
---|
| 347 | else if( !a->ic && s && s->flags & ACC_SET_ONLINE_ONLY ) |
---|
| 348 | { |
---|
| 349 | irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "on" ); |
---|
| 350 | return 0; |
---|
| 351 | } |
---|
| 352 | |
---|
| 353 | return 1; |
---|
| 354 | } |
---|
| 355 | |
---|
[f73b969] | 356 | static void cmd_account( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 357 | { |
---|
| 358 | account_t *a; |
---|
[c7eb771] | 359 | int len; |
---|
[b7d3cc34] | 360 | |
---|
[3af70b0] | 361 | if( global.conf->authmode == AUTHMODE_REGISTERED && !( irc->status & USTATUS_IDENTIFIED ) ) |
---|
[b7d3cc34] | 362 | { |
---|
| 363 | irc_usermsg( irc, "This server only accepts registered users" ); |
---|
[f73b969] | 364 | return; |
---|
[b7d3cc34] | 365 | } |
---|
| 366 | |
---|
[c7eb771] | 367 | len = strlen( cmd[1] ); |
---|
| 368 | |
---|
| 369 | if( len >= 1 && g_strncasecmp( cmd[1], "add", len ) == 0 ) |
---|
[b7d3cc34] | 370 | { |
---|
[7b23afd] | 371 | struct prpl *prpl; |
---|
[b7d3cc34] | 372 | |
---|
[3b99524] | 373 | MIN_ARGS( 4 ); |
---|
[b7d3cc34] | 374 | |
---|
[a9a7287] | 375 | prpl = find_protocol( cmd[2] ); |
---|
[b7d3cc34] | 376 | |
---|
[7b23afd] | 377 | if( prpl == NULL ) |
---|
[b7d3cc34] | 378 | { |
---|
| 379 | irc_usermsg( irc, "Unknown protocol" ); |
---|
[f73b969] | 380 | return; |
---|
[b7d3cc34] | 381 | } |
---|
[593971d] | 382 | |
---|
| 383 | for( a = irc->b->accounts; a; a = a->next ) |
---|
| 384 | if( a->prpl == prpl && prpl->handle_cmp( a->user, cmd[3] ) == 0 ) |
---|
| 385 | irc_usermsg( irc, "Warning: You already have an account with " |
---|
| 386 | "protocol `%s' and username `%s'. Are you accidentally " |
---|
| 387 | "trying to add it twice?", prpl->name, cmd[3] ); |
---|
| 388 | |
---|
[d860a8d] | 389 | a = account_add( irc->b, prpl, cmd[3], cmd[4] ); |
---|
[b7d3cc34] | 390 | if( cmd[5] ) |
---|
[30ce1ce] | 391 | { |
---|
| 392 | irc_usermsg( irc, "Warning: Passing a servername/other flags to `account add' " |
---|
| 393 | "is now deprecated. Use `account set' instead." ); |
---|
[5100caa] | 394 | set_setstr( &a->set, "server", cmd[5] ); |
---|
[30ce1ce] | 395 | } |
---|
[b7d3cc34] | 396 | |
---|
| 397 | irc_usermsg( irc, "Account successfully added" ); |
---|
[e907683] | 398 | |
---|
| 399 | return; |
---|
[b7d3cc34] | 400 | } |
---|
[c7eb771] | 401 | else if( len >= 1 && g_strncasecmp( cmd[1], "list", len ) == 0 ) |
---|
[b7d3cc34] | 402 | { |
---|
| 403 | int i = 0; |
---|
| 404 | |
---|
[e6e1f18] | 405 | if( strchr( irc->umode, 'b' ) ) |
---|
| 406 | irc_usermsg( irc, "Account list:" ); |
---|
| 407 | |
---|
[d860a8d] | 408 | for( a = irc->b->accounts; a; a = a->next ) |
---|
[b7d3cc34] | 409 | { |
---|
| 410 | char *con; |
---|
| 411 | |
---|
[0da65d5] | 412 | if( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) ) |
---|
[b7d3cc34] | 413 | con = " (connected)"; |
---|
[0da65d5] | 414 | else if( a->ic ) |
---|
[b7d3cc34] | 415 | con = " (connecting)"; |
---|
| 416 | else if( a->reconnect ) |
---|
| 417 | con = " (awaiting reconnect)"; |
---|
| 418 | else |
---|
| 419 | con = ""; |
---|
| 420 | |
---|
[40e6dac] | 421 | irc_usermsg( irc, "%2d (%s): %s, %s%s", i, a->tag, a->prpl->name, a->user, con ); |
---|
[b7d3cc34] | 422 | |
---|
| 423 | i ++; |
---|
| 424 | } |
---|
| 425 | irc_usermsg( irc, "End of account list" ); |
---|
[e907683] | 426 | |
---|
| 427 | return; |
---|
| 428 | } |
---|
| 429 | else if( cmd[2] ) |
---|
| 430 | { |
---|
| 431 | /* Try the following two only if cmd[2] == NULL */ |
---|
[b7d3cc34] | 432 | } |
---|
[c7eb771] | 433 | else if( len >= 2 && g_strncasecmp( cmd[1], "on", len ) == 0 ) |
---|
[b7d3cc34] | 434 | { |
---|
[e907683] | 435 | if ( irc->b->accounts ) |
---|
[b7d3cc34] | 436 | { |
---|
[e907683] | 437 | irc_usermsg( irc, "Trying to get all accounts connected..." ); |
---|
| 438 | |
---|
| 439 | for( a = irc->b->accounts; a; a = a->next ) |
---|
| 440 | if( !a->ic && a->auto_connect ) |
---|
[d860a8d] | 441 | account_on( irc->b, a ); |
---|
[e907683] | 442 | } |
---|
[b7d3cc34] | 443 | else |
---|
| 444 | { |
---|
[e907683] | 445 | irc_usermsg( irc, "No accounts known. Use `account add' to add one." ); |
---|
[b7d3cc34] | 446 | } |
---|
[e907683] | 447 | |
---|
| 448 | return; |
---|
[b7d3cc34] | 449 | } |
---|
[c7eb771] | 450 | else if( len >= 2 && g_strncasecmp( cmd[1], "off", len ) == 0 ) |
---|
[b7d3cc34] | 451 | { |
---|
[e907683] | 452 | irc_usermsg( irc, "Deactivating all active (re)connections..." ); |
---|
| 453 | |
---|
| 454 | for( a = irc->b->accounts; a; a = a->next ) |
---|
[b7d3cc34] | 455 | { |
---|
[0da65d5] | 456 | if( a->ic ) |
---|
[d860a8d] | 457 | account_off( irc->b, a ); |
---|
[b7d3cc34] | 458 | else if( a->reconnect ) |
---|
| 459 | cancel_auto_reconnect( a ); |
---|
[e907683] | 460 | } |
---|
| 461 | |
---|
| 462 | return; |
---|
| 463 | } |
---|
| 464 | |
---|
| 465 | MIN_ARGS( 2 ); |
---|
[c7eb771] | 466 | len = strlen( cmd[2] ); |
---|
[e907683] | 467 | |
---|
| 468 | /* At least right now, don't accept on/off/set/del as account IDs even |
---|
| 469 | if they're a proper match, since people not familiar with the new |
---|
| 470 | syntax yet may get a confusing/nasty surprise. */ |
---|
| 471 | if( g_strcasecmp( cmd[1], "on" ) == 0 || |
---|
| 472 | g_strcasecmp( cmd[1], "off" ) == 0 || |
---|
| 473 | g_strcasecmp( cmd[1], "set" ) == 0 || |
---|
| 474 | g_strcasecmp( cmd[1], "del" ) == 0 || |
---|
| 475 | ( a = account_get( irc->b, cmd[1] ) ) == NULL ) |
---|
| 476 | { |
---|
| 477 | irc_usermsg( irc, "Could not find account `%s'. Note that the syntax " |
---|
| 478 | "of the account command changed, see \x02help account\x02.", cmd[1] ); |
---|
| 479 | |
---|
| 480 | return; |
---|
| 481 | } |
---|
| 482 | |
---|
[c7eb771] | 483 | if( len >= 1 && g_strncasecmp( cmd[2], "del", len ) == 0 ) |
---|
[e907683] | 484 | { |
---|
| 485 | if( a->ic ) |
---|
| 486 | { |
---|
| 487 | irc_usermsg( irc, "Account is still logged in, can't delete" ); |
---|
[b7d3cc34] | 488 | } |
---|
| 489 | else |
---|
| 490 | { |
---|
[e907683] | 491 | account_del( irc->b, a ); |
---|
| 492 | irc_usermsg( irc, "Account deleted" ); |
---|
[b7d3cc34] | 493 | } |
---|
| 494 | } |
---|
[c7eb771] | 495 | else if( len >= 2 && g_strncasecmp( cmd[2], "on", len ) == 0 ) |
---|
[5100caa] | 496 | { |
---|
[e907683] | 497 | if( a->ic ) |
---|
| 498 | irc_usermsg( irc, "Account already online" ); |
---|
| 499 | else |
---|
| 500 | account_on( irc->b, a ); |
---|
| 501 | } |
---|
[c7eb771] | 502 | else if( len >= 2 && g_strncasecmp( cmd[2], "off", len ) == 0 ) |
---|
[e907683] | 503 | { |
---|
| 504 | if( a->ic ) |
---|
| 505 | { |
---|
| 506 | account_off( irc->b, a ); |
---|
| 507 | } |
---|
| 508 | else if( a->reconnect ) |
---|
| 509 | { |
---|
| 510 | cancel_auto_reconnect( a ); |
---|
| 511 | irc_usermsg( irc, "Reconnect cancelled" ); |
---|
| 512 | } |
---|
| 513 | else |
---|
| 514 | { |
---|
| 515 | irc_usermsg( irc, "Account already offline" ); |
---|
| 516 | } |
---|
| 517 | } |
---|
[c7eb771] | 518 | else if( len >= 1 && g_strncasecmp( cmd[2], "set", len ) == 0 ) |
---|
[e907683] | 519 | { |
---|
| 520 | cmd_set_real( irc, cmd + 2, &a->set, cmd_account_set_checkflags ); |
---|
[5100caa] | 521 | } |
---|
[b7d3cc34] | 522 | else |
---|
| 523 | { |
---|
[e907683] | 524 | irc_usermsg( irc, "Unknown command: %s [...] %s. Please use \x02help commands\x02 to get a list of available commands.", "account", cmd[2] ); |
---|
[b7d3cc34] | 525 | } |
---|
| 526 | } |
---|
| 527 | |
---|
[e907683] | 528 | static void cmd_channel( irc_t *irc, char **cmd ) |
---|
[c133d4b8] | 529 | { |
---|
| 530 | irc_channel_t *ic; |
---|
[c7eb771] | 531 | int len; |
---|
| 532 | |
---|
| 533 | len = strlen( cmd[1] ); |
---|
[c133d4b8] | 534 | |
---|
[c7eb771] | 535 | if( len >= 1 && g_strncasecmp( cmd[1], "list", len ) == 0 ) |
---|
[36562b0] | 536 | { |
---|
| 537 | GSList *l; |
---|
| 538 | int i = 0; |
---|
| 539 | |
---|
| 540 | if( strchr( irc->umode, 'b' ) ) |
---|
| 541 | irc_usermsg( irc, "Channel list:" ); |
---|
| 542 | |
---|
| 543 | for( l = irc->channels; l; l = l->next ) |
---|
| 544 | { |
---|
| 545 | irc_channel_t *ic = l->data; |
---|
| 546 | |
---|
| 547 | irc_usermsg( irc, "%2d. %s, %s channel%s", i, ic->name, |
---|
| 548 | set_getstr( &ic->set, "type" ), |
---|
| 549 | ic->flags & IRC_CHANNEL_JOINED ? " (joined)" : "" ); |
---|
| 550 | |
---|
| 551 | i ++; |
---|
| 552 | } |
---|
| 553 | irc_usermsg( irc, "End of channel list" ); |
---|
[e907683] | 554 | |
---|
| 555 | return; |
---|
[36562b0] | 556 | } |
---|
[e907683] | 557 | |
---|
| 558 | if( ( ic = irc_channel_get( irc, cmd[1] ) ) == NULL ) |
---|
[a4d920b] | 559 | { |
---|
[4f22a68c] | 560 | /* If this doesn't match any channel, maybe this is the short |
---|
| 561 | syntax (only works when used inside a channel). */ |
---|
[f7ca587] | 562 | if( ( ic = irc->root->last_channel ) && |
---|
| 563 | ( len = strlen( cmd[1] ) ) && |
---|
| 564 | g_strncasecmp( cmd[1], "set", len ) == 0 ) |
---|
[4f22a68c] | 565 | cmd_set_real( irc, cmd + 1, &ic->set, NULL ); |
---|
| 566 | else |
---|
| 567 | irc_usermsg( irc, "Could not find channel `%s'", cmd[1] ); |
---|
| 568 | |
---|
[e907683] | 569 | return; |
---|
| 570 | } |
---|
| 571 | |
---|
[4f22a68c] | 572 | MIN_ARGS( 2 ); |
---|
| 573 | len = strlen( cmd[2] ); |
---|
| 574 | |
---|
[c7eb771] | 575 | if( len >= 1 && g_strncasecmp( cmd[2], "set", len ) == 0 ) |
---|
[e907683] | 576 | { |
---|
| 577 | cmd_set_real( irc, cmd + 2, &ic->set, NULL ); |
---|
| 578 | } |
---|
[c7eb771] | 579 | else if( len >= 1 && g_strncasecmp( cmd[2], "del", len ) == 0 ) |
---|
[e907683] | 580 | { |
---|
| 581 | if( !( ic->flags & IRC_CHANNEL_JOINED ) && |
---|
[a4d920b] | 582 | ic != ic->irc->default_channel ) |
---|
| 583 | { |
---|
| 584 | irc_usermsg( irc, "Channel %s deleted.", ic->name ); |
---|
| 585 | irc_channel_free( ic ); |
---|
| 586 | } |
---|
| 587 | else |
---|
| 588 | irc_usermsg( irc, "Couldn't remove channel (main channel %s or " |
---|
| 589 | "channels you're still in cannot be deleted).", |
---|
[5266354] | 590 | irc->default_channel->name ); |
---|
[a4d920b] | 591 | } |
---|
[c133d4b8] | 592 | else |
---|
| 593 | { |
---|
[e907683] | 594 | irc_usermsg( irc, "Unknown command: %s [...] %s. Please use \x02help commands\x02 to get a list of available commands.", "channel", cmd[1] ); |
---|
[c133d4b8] | 595 | } |
---|
| 596 | } |
---|
| 597 | |
---|
[f73b969] | 598 | static void cmd_add( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 599 | { |
---|
| 600 | account_t *a; |
---|
[f0cb961] | 601 | int add_on_server = 1; |
---|
[f8de26f] | 602 | |
---|
| 603 | if( g_strcasecmp( cmd[1], "-tmp" ) == 0 ) |
---|
| 604 | { |
---|
[77fc000c] | 605 | MIN_ARGS( 3 ); |
---|
[f0cb961] | 606 | add_on_server = 0; |
---|
[7adc657] | 607 | cmd ++; |
---|
[f8de26f] | 608 | } |
---|
[b7d3cc34] | 609 | |
---|
[dbb0ce3] | 610 | if( !( a = account_get( irc->b, cmd[1] ) ) ) |
---|
[b7d3cc34] | 611 | { |
---|
| 612 | irc_usermsg( irc, "Invalid account" ); |
---|
[f73b969] | 613 | return; |
---|
[b7d3cc34] | 614 | } |
---|
[0da65d5] | 615 | else if( !( a->ic && ( a->ic->flags & OPT_LOGGED_IN ) ) ) |
---|
[b7d3cc34] | 616 | { |
---|
| 617 | irc_usermsg( irc, "That account is not on-line" ); |
---|
[f73b969] | 618 | return; |
---|
[b7d3cc34] | 619 | } |
---|
| 620 | |
---|
| 621 | if( cmd[3] ) |
---|
| 622 | { |
---|
| 623 | if( !nick_ok( cmd[3] ) ) |
---|
| 624 | { |
---|
| 625 | irc_usermsg( irc, "The requested nick `%s' is invalid", cmd[3] ); |
---|
[f73b969] | 626 | return; |
---|
[b7d3cc34] | 627 | } |
---|
[dbb0ce3] | 628 | else if( irc_user_by_name( irc, cmd[3] ) ) |
---|
[b7d3cc34] | 629 | { |
---|
| 630 | irc_usermsg( irc, "The requested nick `%s' already exists", cmd[3] ); |
---|
[f73b969] | 631 | return; |
---|
[b7d3cc34] | 632 | } |
---|
| 633 | else |
---|
| 634 | { |
---|
[b1f818b] | 635 | nick_set_raw( a, cmd[2], cmd[3] ); |
---|
[b7d3cc34] | 636 | } |
---|
| 637 | } |
---|
[f8de26f] | 638 | |
---|
[f0cb961] | 639 | if( add_on_server ) |
---|
[f1d488e] | 640 | { |
---|
| 641 | irc_channel_t *ic; |
---|
| 642 | char *s, *group = NULL;; |
---|
| 643 | |
---|
[f7ca587] | 644 | if( ( ic = irc->root->last_channel ) && |
---|
[f1d488e] | 645 | ( s = set_getstr( &ic->set, "fill_by" ) ) && |
---|
| 646 | strcmp( s, "group" ) == 0 && |
---|
| 647 | ( group = set_getstr( &ic->set, "group" ) ) ) |
---|
| 648 | irc_usermsg( irc, "Adding `%s' to contact list (group %s)", |
---|
| 649 | cmd[2], group ); |
---|
| 650 | else |
---|
| 651 | irc_usermsg( irc, "Adding `%s' to contact list", cmd[2] ); |
---|
| 652 | |
---|
| 653 | a->prpl->add_buddy( a->ic, cmd[2], group ); |
---|
| 654 | } |
---|
[7adc657] | 655 | else |
---|
[f1d488e] | 656 | { |
---|
| 657 | bee_user_t *bu; |
---|
| 658 | irc_user_t *iu; |
---|
| 659 | |
---|
[dbb0ce3] | 660 | /* Only for add -tmp. For regular adds, this callback will |
---|
| 661 | be called once the IM server confirms. */ |
---|
[f1d488e] | 662 | if( ( bu = bee_user_new( irc->b, a->ic, cmd[2], BEE_USER_LOCAL ) ) && |
---|
| 663 | ( iu = bu->ui_data ) ) |
---|
| 664 | irc_usermsg( irc, "Temporarily assigned nickname `%s' " |
---|
| 665 | "to contact `%s'", iu->nick, cmd[2] ); |
---|
| 666 | } |
---|
[f0cb961] | 667 | |
---|
[b7d3cc34] | 668 | } |
---|
| 669 | |
---|
[dbb0ce3] | 670 | static void cmd_remove( irc_t *irc, char **cmd ) |
---|
| 671 | { |
---|
| 672 | irc_user_t *iu; |
---|
| 673 | bee_user_t *bu; |
---|
| 674 | char *s; |
---|
| 675 | |
---|
| 676 | if( !( iu = irc_user_by_name( irc, cmd[1] ) ) || !( bu = iu->bu ) ) |
---|
| 677 | { |
---|
| 678 | irc_usermsg( irc, "Buddy `%s' not found", cmd[1] ); |
---|
| 679 | return; |
---|
| 680 | } |
---|
| 681 | s = g_strdup( bu->handle ); |
---|
| 682 | |
---|
| 683 | bu->ic->acc->prpl->remove_buddy( bu->ic, bu->handle, NULL ); |
---|
[b1f818b] | 684 | nick_del( bu ); |
---|
[5e98ff0] | 685 | if( g_slist_find( irc->users, iu ) ) |
---|
| 686 | bee_user_free( irc->b, bu ); |
---|
[dbb0ce3] | 687 | |
---|
| 688 | irc_usermsg( irc, "Buddy `%s' (nick %s) removed from contact list", s, cmd[1] ); |
---|
| 689 | g_free( s ); |
---|
| 690 | |
---|
| 691 | return; |
---|
| 692 | } |
---|
| 693 | |
---|
[f73b969] | 694 | static void cmd_info( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 695 | { |
---|
[0da65d5] | 696 | struct im_connection *ic; |
---|
[b7d3cc34] | 697 | account_t *a; |
---|
| 698 | |
---|
| 699 | if( !cmd[2] ) |
---|
| 700 | { |
---|
[aa44bdd] | 701 | irc_user_t *iu = irc_user_by_name( irc, cmd[1] ); |
---|
| 702 | if( !iu || !iu->bu ) |
---|
[b7d3cc34] | 703 | { |
---|
| 704 | irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] ); |
---|
[f73b969] | 705 | return; |
---|
[b7d3cc34] | 706 | } |
---|
[aa44bdd] | 707 | ic = iu->bu->ic; |
---|
| 708 | cmd[2] = iu->bu->handle; |
---|
[b7d3cc34] | 709 | } |
---|
[aa44bdd] | 710 | else if( !( a = account_get( irc->b, cmd[1] ) ) ) |
---|
[b7d3cc34] | 711 | { |
---|
| 712 | irc_usermsg( irc, "Invalid account" ); |
---|
[f73b969] | 713 | return; |
---|
[b7d3cc34] | 714 | } |
---|
[0da65d5] | 715 | else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) ) |
---|
[b7d3cc34] | 716 | { |
---|
| 717 | irc_usermsg( irc, "That account is not on-line" ); |
---|
[f73b969] | 718 | return; |
---|
[b7d3cc34] | 719 | } |
---|
| 720 | |
---|
[0da65d5] | 721 | if( !ic->acc->prpl->get_info ) |
---|
[b7d3cc34] | 722 | { |
---|
| 723 | irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] ); |
---|
| 724 | } |
---|
[f73b969] | 725 | else |
---|
| 726 | { |
---|
[0da65d5] | 727 | ic->acc->prpl->get_info( ic, cmd[2] ); |
---|
[f73b969] | 728 | } |
---|
[b7d3cc34] | 729 | } |
---|
| 730 | |
---|
[f73b969] | 731 | static void cmd_rename( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 732 | { |
---|
[9a9b520] | 733 | irc_user_t *iu, *old; |
---|
[b7d3cc34] | 734 | |
---|
[57c96f7] | 735 | iu = irc_user_by_name( irc, cmd[1] ); |
---|
| 736 | |
---|
| 737 | if( iu == NULL ) |
---|
[0baed0d] | 738 | { |
---|
[57c96f7] | 739 | irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] ); |
---|
[0baed0d] | 740 | } |
---|
[57c96f7] | 741 | else if( iu == irc->user ) |
---|
[b7d3cc34] | 742 | { |
---|
[6c2404e] | 743 | irc_usermsg( irc, "Use /nick to change your own nickname" ); |
---|
[b7d3cc34] | 744 | } |
---|
[f73b969] | 745 | else if( !nick_ok( cmd[2] ) ) |
---|
[b7d3cc34] | 746 | { |
---|
| 747 | irc_usermsg( irc, "Nick `%s' is invalid", cmd[2] ); |
---|
| 748 | } |
---|
[9a9b520] | 749 | else if( ( old = irc_user_by_name( irc, cmd[2] ) ) && old != iu ) |
---|
[b7d3cc34] | 750 | { |
---|
[57c96f7] | 751 | irc_usermsg( irc, "Nick `%s' already exists", cmd[2] ); |
---|
[b7d3cc34] | 752 | } |
---|
[f73b969] | 753 | else |
---|
[b7d3cc34] | 754 | { |
---|
[57c96f7] | 755 | if( !irc_user_set_nick( iu, cmd[2] ) ) |
---|
| 756 | { |
---|
| 757 | irc_usermsg( irc, "Error while changing nick" ); |
---|
| 758 | return; |
---|
| 759 | } |
---|
| 760 | |
---|
| 761 | if( iu == irc->root ) |
---|
[f73b969] | 762 | { |
---|
[7125cb3] | 763 | /* If we're called internally (user did "set root_nick"), |
---|
| 764 | let's not go O(INF). :-) */ |
---|
[1195cec] | 765 | if( strcmp( cmd[0], "set_rename" ) != 0 ) |
---|
[57c96f7] | 766 | set_setstr( &irc->b->set, "root_nick", cmd[2] ); |
---|
[f73b969] | 767 | } |
---|
[57c96f7] | 768 | else if( iu->bu ) |
---|
[f73b969] | 769 | { |
---|
[b1f818b] | 770 | nick_set( iu->bu, cmd[2] ); |
---|
[f73b969] | 771 | } |
---|
| 772 | |
---|
| 773 | irc_usermsg( irc, "Nick successfully changed" ); |
---|
[b7d3cc34] | 774 | } |
---|
| 775 | } |
---|
| 776 | |
---|
[1195cec] | 777 | char *set_eval_root_nick( set_t *set, char *new_nick ) |
---|
| 778 | { |
---|
| 779 | irc_t *irc = set->data; |
---|
| 780 | |
---|
[0a6e5d1] | 781 | if( strcmp( irc->root->nick, new_nick ) != 0 ) |
---|
[1195cec] | 782 | { |
---|
[0a6e5d1] | 783 | char *cmd[] = { "set_rename", irc->root->nick, new_nick, NULL }; |
---|
[1195cec] | 784 | |
---|
| 785 | cmd_rename( irc, cmd ); |
---|
| 786 | } |
---|
| 787 | |
---|
[0a6e5d1] | 788 | return strcmp( irc->root->nick, new_nick ) == 0 ? new_nick : SET_INVALID; |
---|
[1195cec] | 789 | } |
---|
[0baed0d] | 790 | |
---|
[f73b969] | 791 | static void cmd_block( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 792 | { |
---|
[0da65d5] | 793 | struct im_connection *ic; |
---|
[b7d3cc34] | 794 | account_t *a; |
---|
| 795 | |
---|
[2272cb3] | 796 | if( !cmd[2] && ( a = account_get( irc->b, cmd[1] ) ) && a->ic ) |
---|
[87b6a3e] | 797 | { |
---|
| 798 | char *format; |
---|
| 799 | GSList *l; |
---|
| 800 | |
---|
| 801 | if( strchr( irc->umode, 'b' ) != NULL ) |
---|
| 802 | format = "%s\t%s"; |
---|
| 803 | else |
---|
[57ef864] | 804 | format = "%-32.32s %-16.16s"; |
---|
[87b6a3e] | 805 | |
---|
| 806 | irc_usermsg( irc, format, "Handle", "Nickname" ); |
---|
[0da65d5] | 807 | for( l = a->ic->deny; l; l = l->next ) |
---|
[87b6a3e] | 808 | { |
---|
[2272cb3] | 809 | bee_user_t *bu = bee_user_by_handle( irc->b, a->ic, l->data ); |
---|
| 810 | irc_user_t *iu = bu ? bu->ui_data : NULL; |
---|
| 811 | irc_usermsg( irc, format, l->data, iu ? iu->nick : "(none)" ); |
---|
[87b6a3e] | 812 | } |
---|
| 813 | irc_usermsg( irc, "End of list." ); |
---|
| 814 | |
---|
| 815 | return; |
---|
| 816 | } |
---|
| 817 | else if( !cmd[2] ) |
---|
[b7d3cc34] | 818 | { |
---|
[2272cb3] | 819 | irc_user_t *iu = irc_user_by_name( irc, cmd[1] ); |
---|
| 820 | if( !iu || !iu->bu ) |
---|
[b7d3cc34] | 821 | { |
---|
| 822 | irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] ); |
---|
[f73b969] | 823 | return; |
---|
[b7d3cc34] | 824 | } |
---|
[2272cb3] | 825 | ic = iu->bu->ic; |
---|
| 826 | cmd[2] = iu->bu->handle; |
---|
[b7d3cc34] | 827 | } |
---|
[2272cb3] | 828 | else if( !( a = account_get( irc->b, cmd[1] ) ) ) |
---|
[b7d3cc34] | 829 | { |
---|
| 830 | irc_usermsg( irc, "Invalid account" ); |
---|
[f73b969] | 831 | return; |
---|
[b7d3cc34] | 832 | } |
---|
[0da65d5] | 833 | else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) ) |
---|
[b7d3cc34] | 834 | { |
---|
| 835 | irc_usermsg( irc, "That account is not on-line" ); |
---|
[f73b969] | 836 | return; |
---|
[b7d3cc34] | 837 | } |
---|
| 838 | |
---|
[0da65d5] | 839 | if( !ic->acc->prpl->add_deny || !ic->acc->prpl->rem_permit ) |
---|
[b7d3cc34] | 840 | { |
---|
| 841 | irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] ); |
---|
| 842 | } |
---|
| 843 | else |
---|
| 844 | { |
---|
[84b045d] | 845 | imc_rem_allow( ic, cmd[2] ); |
---|
| 846 | imc_add_block( ic, cmd[2] ); |
---|
[f1d488e] | 847 | irc_usermsg( irc, "Buddy `%s' moved from allow- to block-list", cmd[2] ); |
---|
[b7d3cc34] | 848 | } |
---|
| 849 | } |
---|
| 850 | |
---|
[f73b969] | 851 | static void cmd_allow( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 852 | { |
---|
[0da65d5] | 853 | struct im_connection *ic; |
---|
[b7d3cc34] | 854 | account_t *a; |
---|
| 855 | |
---|
[2272cb3] | 856 | if( !cmd[2] && ( a = account_get( irc->b, cmd[1] ) ) && a->ic ) |
---|
[87b6a3e] | 857 | { |
---|
| 858 | char *format; |
---|
| 859 | GSList *l; |
---|
| 860 | |
---|
| 861 | if( strchr( irc->umode, 'b' ) != NULL ) |
---|
| 862 | format = "%s\t%s"; |
---|
| 863 | else |
---|
[57ef864] | 864 | format = "%-32.32s %-16.16s"; |
---|
[87b6a3e] | 865 | |
---|
| 866 | irc_usermsg( irc, format, "Handle", "Nickname" ); |
---|
[0da65d5] | 867 | for( l = a->ic->permit; l; l = l->next ) |
---|
[87b6a3e] | 868 | { |
---|
[2272cb3] | 869 | bee_user_t *bu = bee_user_by_handle( irc->b, a->ic, l->data ); |
---|
| 870 | irc_user_t *iu = bu ? bu->ui_data : NULL; |
---|
| 871 | irc_usermsg( irc, format, l->data, iu ? iu->nick : "(none)" ); |
---|
[87b6a3e] | 872 | } |
---|
| 873 | irc_usermsg( irc, "End of list." ); |
---|
| 874 | |
---|
| 875 | return; |
---|
| 876 | } |
---|
| 877 | else if( !cmd[2] ) |
---|
[b7d3cc34] | 878 | { |
---|
[2272cb3] | 879 | irc_user_t *iu = irc_user_by_name( irc, cmd[1] ); |
---|
| 880 | if( !iu || !iu->bu ) |
---|
[b7d3cc34] | 881 | { |
---|
| 882 | irc_usermsg( irc, "Nick `%s' does not exist", cmd[1] ); |
---|
[f73b969] | 883 | return; |
---|
[b7d3cc34] | 884 | } |
---|
[2272cb3] | 885 | ic = iu->bu->ic; |
---|
| 886 | cmd[2] = iu->bu->handle; |
---|
[b7d3cc34] | 887 | } |
---|
[2272cb3] | 888 | else if( !( a = account_get( irc->b, cmd[1] ) ) ) |
---|
[b7d3cc34] | 889 | { |
---|
| 890 | irc_usermsg( irc, "Invalid account" ); |
---|
[f73b969] | 891 | return; |
---|
[b7d3cc34] | 892 | } |
---|
[0da65d5] | 893 | else if( !( ( ic = a->ic ) && ( a->ic->flags & OPT_LOGGED_IN ) ) ) |
---|
[b7d3cc34] | 894 | { |
---|
| 895 | irc_usermsg( irc, "That account is not on-line" ); |
---|
[f73b969] | 896 | return; |
---|
[b7d3cc34] | 897 | } |
---|
| 898 | |
---|
[0da65d5] | 899 | if( !ic->acc->prpl->rem_deny || !ic->acc->prpl->add_permit ) |
---|
[b7d3cc34] | 900 | { |
---|
| 901 | irc_usermsg( irc, "Command `%s' not supported by this protocol", cmd[0] ); |
---|
| 902 | } |
---|
| 903 | else |
---|
| 904 | { |
---|
[84b045d] | 905 | imc_rem_block( ic, cmd[2] ); |
---|
| 906 | imc_add_allow( ic, cmd[2] ); |
---|
[b7d3cc34] | 907 | |
---|
[f1d488e] | 908 | irc_usermsg( irc, "Buddy `%s' moved from block- to allow-list", cmd[2] ); |
---|
[b7d3cc34] | 909 | } |
---|
| 910 | } |
---|
| 911 | |
---|
[f73b969] | 912 | static void cmd_yesno( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 913 | { |
---|
| 914 | query_t *q = NULL; |
---|
| 915 | int numq = 0; |
---|
| 916 | |
---|
| 917 | if( irc->queries == NULL ) |
---|
| 918 | { |
---|
[65a4a64] | 919 | /* Alright, alright, let's add a tiny easter egg here. */ |
---|
| 920 | static irc_t *last_irc = NULL; |
---|
| 921 | static time_t last_time = 0; |
---|
| 922 | static int times = 0; |
---|
| 923 | static const char *msg[] = { |
---|
| 924 | "Oh yeah, that's right.", |
---|
| 925 | "Alright, alright. Now go back to work.", |
---|
| 926 | "Buuuuuuuuuuuuuuuurp... Excuse me!", |
---|
| 927 | "Yes?", |
---|
| 928 | "No?", |
---|
| 929 | }; |
---|
| 930 | |
---|
| 931 | if( last_irc == irc && time( NULL ) - last_time < 15 ) |
---|
| 932 | { |
---|
| 933 | if( ( ++times >= 3 ) ) |
---|
| 934 | { |
---|
| 935 | irc_usermsg( irc, "%s", msg[rand()%(sizeof(msg)/sizeof(char*))] ); |
---|
| 936 | last_irc = NULL; |
---|
| 937 | times = 0; |
---|
| 938 | return; |
---|
| 939 | } |
---|
| 940 | } |
---|
| 941 | else |
---|
| 942 | { |
---|
| 943 | last_time = time( NULL ); |
---|
| 944 | last_irc = irc; |
---|
| 945 | times = 0; |
---|
| 946 | } |
---|
| 947 | |
---|
[b7d3cc34] | 948 | irc_usermsg( irc, "Did I ask you something?" ); |
---|
[f73b969] | 949 | return; |
---|
[b7d3cc34] | 950 | } |
---|
| 951 | |
---|
| 952 | /* If there's an argument, the user seems to want to answer another question than the |
---|
| 953 | first/last (depending on the query_order setting) one. */ |
---|
| 954 | if( cmd[1] ) |
---|
| 955 | { |
---|
| 956 | if( sscanf( cmd[1], "%d", &numq ) != 1 ) |
---|
| 957 | { |
---|
| 958 | irc_usermsg( irc, "Invalid query number" ); |
---|
[f73b969] | 959 | return; |
---|
[b7d3cc34] | 960 | } |
---|
| 961 | |
---|
| 962 | for( q = irc->queries; q; q = q->next, numq -- ) |
---|
| 963 | if( numq == 0 ) |
---|
| 964 | break; |
---|
| 965 | |
---|
| 966 | if( !q ) |
---|
| 967 | { |
---|
| 968 | irc_usermsg( irc, "Uhm, I never asked you something like that..." ); |
---|
[f73b969] | 969 | return; |
---|
[b7d3cc34] | 970 | } |
---|
| 971 | } |
---|
| 972 | |
---|
| 973 | if( g_strcasecmp( cmd[0], "yes" ) == 0 ) |
---|
| 974 | query_answer( irc, q, 1 ); |
---|
| 975 | else if( g_strcasecmp( cmd[0], "no" ) == 0 ) |
---|
| 976 | query_answer( irc, q, 0 ); |
---|
| 977 | } |
---|
| 978 | |
---|
[f73b969] | 979 | static void cmd_set( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 980 | { |
---|
[e907683] | 981 | cmd_set_real( irc, cmd, &irc->b->set, NULL ); |
---|
[b7d3cc34] | 982 | } |
---|
| 983 | |
---|
[f73b969] | 984 | static void cmd_blist( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 985 | { |
---|
| 986 | int online = 0, away = 0, offline = 0; |
---|
[4c3519a] | 987 | GSList *l; |
---|
[aefa533e] | 988 | char s[256]; |
---|
| 989 | char *format; |
---|
[b7d3cc34] | 990 | int n_online = 0, n_away = 0, n_offline = 0; |
---|
| 991 | |
---|
| 992 | if( cmd[1] && g_strcasecmp( cmd[1], "all" ) == 0 ) |
---|
| 993 | online = offline = away = 1; |
---|
| 994 | else if( cmd[1] && g_strcasecmp( cmd[1], "offline" ) == 0 ) |
---|
| 995 | offline = 1; |
---|
| 996 | else if( cmd[1] && g_strcasecmp( cmd[1], "away" ) == 0 ) |
---|
| 997 | away = 1; |
---|
| 998 | else if( cmd[1] && g_strcasecmp( cmd[1], "online" ) == 0 ) |
---|
| 999 | online = 1; |
---|
| 1000 | else |
---|
[449a51d] | 1001 | online = away = 1; |
---|
[b7d3cc34] | 1002 | |
---|
[aefa533e] | 1003 | if( strchr( irc->umode, 'b' ) != NULL ) |
---|
| 1004 | format = "%s\t%s\t%s"; |
---|
| 1005 | else |
---|
| 1006 | format = "%-16.16s %-40.40s %s"; |
---|
| 1007 | |
---|
[4c3519a] | 1008 | irc_usermsg( irc, format, "Nick", "Handle/Account", "Status" ); |
---|
[b7d3cc34] | 1009 | |
---|
[4c3519a] | 1010 | for( l = irc->users; l; l = l->next ) |
---|
[b7d3cc34] | 1011 | { |
---|
[4c3519a] | 1012 | irc_user_t *iu = l->data; |
---|
| 1013 | bee_user_t *bu = iu->bu; |
---|
| 1014 | |
---|
| 1015 | if( !bu || ( bu->flags & ( BEE_USER_ONLINE | BEE_USER_AWAY ) ) != BEE_USER_ONLINE ) |
---|
| 1016 | continue; |
---|
| 1017 | |
---|
[aefa533e] | 1018 | if( online == 1 ) |
---|
| 1019 | { |
---|
[449a51d] | 1020 | char st[256] = "Online"; |
---|
| 1021 | |
---|
[4c3519a] | 1022 | if( bu->status_msg ) |
---|
| 1023 | g_snprintf( st, sizeof( st ) - 1, "Online (%s)", bu->status_msg ); |
---|
[449a51d] | 1024 | |
---|
[4c3519a] | 1025 | g_snprintf( s, sizeof( s ) - 1, "%s %s(%s)", bu->handle, bu->ic->acc->prpl->name, bu->ic->acc->user ); |
---|
| 1026 | irc_usermsg( irc, format, iu->nick, s, st ); |
---|
[aefa533e] | 1027 | } |
---|
| 1028 | |
---|
[b7d3cc34] | 1029 | n_online ++; |
---|
| 1030 | } |
---|
| 1031 | |
---|
[4c3519a] | 1032 | for( l = irc->users; l; l = l->next ) |
---|
[b7d3cc34] | 1033 | { |
---|
[4c3519a] | 1034 | irc_user_t *iu = l->data; |
---|
| 1035 | bee_user_t *bu = iu->bu; |
---|
| 1036 | |
---|
| 1037 | if( !bu || !( bu->flags & BEE_USER_ONLINE ) || !( bu->flags & BEE_USER_AWAY ) ) |
---|
| 1038 | continue; |
---|
| 1039 | |
---|
[aefa533e] | 1040 | if( away == 1 ) |
---|
| 1041 | { |
---|
[4c3519a] | 1042 | g_snprintf( s, sizeof( s ) - 1, "%s %s(%s)", bu->handle, bu->ic->acc->prpl->name, bu->ic->acc->user ); |
---|
| 1043 | irc_usermsg( irc, format, iu->nick, s, irc_user_get_away( iu ) ); |
---|
[aefa533e] | 1044 | } |
---|
[b7d3cc34] | 1045 | n_away ++; |
---|
| 1046 | } |
---|
| 1047 | |
---|
[4c3519a] | 1048 | for( l = irc->users; l; l = l->next ) |
---|
[b7d3cc34] | 1049 | { |
---|
[4c3519a] | 1050 | irc_user_t *iu = l->data; |
---|
| 1051 | bee_user_t *bu = iu->bu; |
---|
| 1052 | |
---|
| 1053 | if( !bu || bu->flags & BEE_USER_ONLINE ) |
---|
| 1054 | continue; |
---|
| 1055 | |
---|
[aefa533e] | 1056 | if( offline == 1 ) |
---|
| 1057 | { |
---|
[4c3519a] | 1058 | g_snprintf( s, sizeof( s ) - 1, "%s %s(%s)", bu->handle, bu->ic->acc->prpl->name, bu->ic->acc->user ); |
---|
| 1059 | irc_usermsg( irc, format, iu->nick, s, "Offline" ); |
---|
[aefa533e] | 1060 | } |
---|
[b7d3cc34] | 1061 | n_offline ++; |
---|
| 1062 | } |
---|
| 1063 | |
---|
[aa5ac01] | 1064 | irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline ); |
---|
[b7d3cc34] | 1065 | } |
---|
| 1066 | |
---|
[f73b969] | 1067 | static void cmd_qlist( irc_t *irc, char **cmd ) |
---|
[b7d3cc34] | 1068 | { |
---|
| 1069 | query_t *q = irc->queries; |
---|
| 1070 | int num; |
---|
| 1071 | |
---|
| 1072 | if( !q ) |
---|
| 1073 | { |
---|
| 1074 | irc_usermsg( irc, "There are no pending questions." ); |
---|
[f73b969] | 1075 | return; |
---|
[b7d3cc34] | 1076 | } |
---|
| 1077 | |
---|
| 1078 | irc_usermsg( irc, "Pending queries:" ); |
---|
| 1079 | |
---|
| 1080 | for( num = 0; q; q = q->next, num ++ ) |
---|
[0da65d5] | 1081 | if( q->ic ) /* Not necessary yet, but it might come later */ |
---|
[c2fb3809] | 1082 | irc_usermsg( irc, "%d, %s(%s): %s", num, q->ic->acc->prpl->name, q->ic->acc->user, q->question ); |
---|
[5c09a59] | 1083 | else |
---|
| 1084 | irc_usermsg( irc, "%d, BitlBee: %s", num, q->question ); |
---|
[b7d3cc34] | 1085 | } |
---|
| 1086 | |
---|
[a9a7287] | 1087 | static void cmd_chat( irc_t *irc, char **cmd ) |
---|
| 1088 | { |
---|
| 1089 | account_t *acc; |
---|
| 1090 | |
---|
| 1091 | if( g_strcasecmp( cmd[1], "add" ) == 0 ) |
---|
| 1092 | { |
---|
[07054a5] | 1093 | char *channel, *s; |
---|
[7b71feb] | 1094 | struct irc_channel *ic; |
---|
[07054a5] | 1095 | |
---|
| 1096 | MIN_ARGS( 3 ); |
---|
[a9a7287] | 1097 | |
---|
[7b71feb] | 1098 | if( !( acc = account_get( irc->b, cmd[2] ) ) ) |
---|
[a9a7287] | 1099 | { |
---|
| 1100 | irc_usermsg( irc, "Invalid account" ); |
---|
| 1101 | return; |
---|
| 1102 | } |
---|
[5a75d15] | 1103 | else if( !acc->prpl->chat_join ) |
---|
| 1104 | { |
---|
| 1105 | irc_usermsg( irc, "Named chatrooms not supported on that account." ); |
---|
| 1106 | return; |
---|
| 1107 | } |
---|
[a9a7287] | 1108 | |
---|
[07054a5] | 1109 | if( cmd[4] == NULL ) |
---|
| 1110 | { |
---|
| 1111 | channel = g_strdup( cmd[3] ); |
---|
| 1112 | if( ( s = strchr( channel, '@' ) ) ) |
---|
| 1113 | *s = 0; |
---|
| 1114 | } |
---|
| 1115 | else |
---|
| 1116 | { |
---|
| 1117 | channel = g_strdup( cmd[4] ); |
---|
| 1118 | } |
---|
| 1119 | |
---|
| 1120 | if( strchr( CTYPES, channel[0] ) == NULL ) |
---|
| 1121 | { |
---|
[7b71feb] | 1122 | s = g_strdup_printf( "#%s", channel ); |
---|
[07054a5] | 1123 | g_free( channel ); |
---|
| 1124 | channel = s; |
---|
[134a02c] | 1125 | |
---|
| 1126 | irc_channel_name_strip( channel ); |
---|
[07054a5] | 1127 | } |
---|
| 1128 | |
---|
[5a75d15] | 1129 | if( ( ic = irc_channel_new( irc, channel ) ) && |
---|
[547ea68] | 1130 | set_setstr( &ic->set, "type", "chat" ) && |
---|
[5a75d15] | 1131 | set_setstr( &ic->set, "chat_type", "room" ) && |
---|
| 1132 | set_setstr( &ic->set, "account", cmd[2] ) && |
---|
| 1133 | set_setstr( &ic->set, "room", cmd[3] ) ) |
---|
| 1134 | { |
---|
| 1135 | irc_usermsg( irc, "Chatroom successfully added." ); |
---|
| 1136 | } |
---|
| 1137 | else |
---|
[a9a7287] | 1138 | { |
---|
[5a75d15] | 1139 | if( ic ) |
---|
| 1140 | irc_channel_free( ic ); |
---|
[a9a7287] | 1141 | |
---|
[5a75d15] | 1142 | irc_usermsg( irc, "Could not add chatroom." ); |
---|
[d995c9b] | 1143 | } |
---|
[d7db346] | 1144 | g_free( channel ); |
---|
[d995c9b] | 1145 | } |
---|
[39f93f0] | 1146 | else if( g_strcasecmp( cmd[1], "with" ) == 0 ) |
---|
| 1147 | { |
---|
[c1a8a16] | 1148 | irc_user_t *iu; |
---|
[3b99524] | 1149 | |
---|
| 1150 | MIN_ARGS( 2 ); |
---|
[39f93f0] | 1151 | |
---|
[c1a8a16] | 1152 | if( ( iu = irc_user_by_name( irc, cmd[2] ) ) && |
---|
| 1153 | iu->bu && iu->bu->ic->acc->prpl->chat_with ) |
---|
[39f93f0] | 1154 | { |
---|
[c1a8a16] | 1155 | if( !iu->bu->ic->acc->prpl->chat_with( iu->bu->ic, iu->bu->handle ) ) |
---|
[39f93f0] | 1156 | { |
---|
| 1157 | irc_usermsg( irc, "(Possible) failure while trying to open " |
---|
[c1a8a16] | 1158 | "a groupchat with %s.", iu->nick ); |
---|
[39f93f0] | 1159 | } |
---|
| 1160 | } |
---|
| 1161 | else |
---|
| 1162 | { |
---|
| 1163 | irc_usermsg( irc, "Can't open a groupchat with %s.", cmd[2] ); |
---|
| 1164 | } |
---|
| 1165 | } |
---|
[7cd2e8a] | 1166 | else if( g_strcasecmp( cmd[1], "list" ) == 0 || |
---|
| 1167 | g_strcasecmp( cmd[1], "set" ) == 0 || |
---|
| 1168 | g_strcasecmp( cmd[1], "del" ) == 0 ) |
---|
| 1169 | { |
---|
| 1170 | irc_usermsg( irc, "Warning: The \002chat\002 command was mostly replaced with the \002channel\002 command." ); |
---|
| 1171 | cmd_channel( irc, cmd ); |
---|
| 1172 | } |
---|
[a9a7287] | 1173 | else |
---|
| 1174 | { |
---|
| 1175 | irc_usermsg( irc, "Unknown command: %s %s. Please use \x02help commands\x02 to get a list of available commands.", "chat", cmd[1] ); |
---|
| 1176 | } |
---|
[fa29d093] | 1177 | } |
---|
| 1178 | |
---|
[f1d488e] | 1179 | static void cmd_group( irc_t *irc, char **cmd ) |
---|
| 1180 | { |
---|
| 1181 | GSList *l; |
---|
| 1182 | int len; |
---|
| 1183 | |
---|
| 1184 | len = strlen( cmd[1] ); |
---|
| 1185 | if( g_strncasecmp( cmd[1], "list", len ) == 0 ) |
---|
| 1186 | { |
---|
| 1187 | int n = 0; |
---|
| 1188 | |
---|
| 1189 | if( strchr( irc->umode, 'b' ) ) |
---|
| 1190 | irc_usermsg( irc, "Group list:" ); |
---|
| 1191 | |
---|
| 1192 | for( l = irc->b->groups; l; l = l->next ) |
---|
| 1193 | { |
---|
| 1194 | bee_group_t *bg = l->data; |
---|
| 1195 | irc_usermsg( irc, "%d. %s", n ++, bg->name ); |
---|
| 1196 | } |
---|
| 1197 | irc_usermsg( irc, "End of group list" ); |
---|
| 1198 | } |
---|
| 1199 | else |
---|
| 1200 | { |
---|
| 1201 | irc_usermsg( irc, "Unknown command: %s %s. Please use \x02help commands\x02 to get a list of available commands.", "group", cmd[1] ); |
---|
| 1202 | } |
---|
| 1203 | } |
---|
| 1204 | |
---|
[b8a491d] | 1205 | static void cmd_transfer( irc_t *irc, char **cmd ) |
---|
[2c2df7d] | 1206 | { |
---|
| 1207 | GSList *files = irc->file_transfers; |
---|
| 1208 | enum { LIST, REJECT, CANCEL }; |
---|
| 1209 | int subcmd = LIST; |
---|
| 1210 | int fid; |
---|
| 1211 | |
---|
| 1212 | if( !files ) |
---|
| 1213 | { |
---|
| 1214 | irc_usermsg( irc, "No pending transfers" ); |
---|
| 1215 | return; |
---|
| 1216 | } |
---|
| 1217 | |
---|
[b8a491d] | 1218 | if( cmd[1] && ( strcmp( cmd[1], "reject" ) == 0 ) ) |
---|
[2c2df7d] | 1219 | { |
---|
| 1220 | subcmd = REJECT; |
---|
| 1221 | } |
---|
[b8a491d] | 1222 | else if( cmd[1] && ( strcmp( cmd[1], "cancel" ) == 0 ) && |
---|
| 1223 | cmd[2] && ( sscanf( cmd[2], "%d", &fid ) == 1 ) ) |
---|
[2c2df7d] | 1224 | { |
---|
| 1225 | subcmd = CANCEL; |
---|
| 1226 | } |
---|
| 1227 | |
---|
| 1228 | for( ; files; files = g_slist_next( files ) ) |
---|
| 1229 | { |
---|
| 1230 | file_transfer_t *file = files->data; |
---|
| 1231 | |
---|
| 1232 | switch( subcmd ) { |
---|
| 1233 | case LIST: |
---|
| 1234 | if ( file->status == FT_STATUS_LISTENING ) |
---|
| 1235 | irc_usermsg( irc, |
---|
| 1236 | "Pending file(id %d): %s (Listening...)", file->local_id, file->file_name); |
---|
| 1237 | else |
---|
| 1238 | { |
---|
| 1239 | int kb_per_s = 0; |
---|
[44961cb] | 1240 | time_t diff = time( NULL ) - file->started ? : 1; |
---|
[2c2df7d] | 1241 | if ( ( file->started > 0 ) && ( file->bytes_transferred > 0 ) ) |
---|
| 1242 | kb_per_s = file->bytes_transferred / 1024 / diff; |
---|
| 1243 | |
---|
| 1244 | irc_usermsg( irc, |
---|
| 1245 | "Pending file(id %d): %s (%10zd/%zd kb, %d kb/s)", file->local_id, file->file_name, |
---|
| 1246 | file->bytes_transferred/1024, file->file_size/1024, kb_per_s); |
---|
| 1247 | } |
---|
| 1248 | break; |
---|
| 1249 | case REJECT: |
---|
| 1250 | if( file->status == FT_STATUS_LISTENING ) |
---|
| 1251 | { |
---|
| 1252 | irc_usermsg( irc, "Rejecting file transfer for %s", file->file_name ); |
---|
[9d4352c] | 1253 | imcb_file_canceled( file->ic, file, "Denied by user" ); |
---|
[2c2df7d] | 1254 | } |
---|
| 1255 | break; |
---|
| 1256 | case CANCEL: |
---|
| 1257 | if( file->local_id == fid ) |
---|
| 1258 | { |
---|
| 1259 | irc_usermsg( irc, "Canceling file transfer for %s", file->file_name ); |
---|
[9d4352c] | 1260 | imcb_file_canceled( file->ic, file, "Canceled by user" ); |
---|
[2c2df7d] | 1261 | } |
---|
| 1262 | break; |
---|
| 1263 | } |
---|
| 1264 | } |
---|
| 1265 | } |
---|
| 1266 | |
---|
[6c56f42] | 1267 | /* IMPORTANT: Keep this list sorted! The short command logic needs that. */ |
---|
[0298d11] | 1268 | const command_t commands[] = { |
---|
[d860a8d] | 1269 | { "account", 1, cmd_account, 0 }, |
---|
[6c56f42] | 1270 | { "add", 2, cmd_add, 0 }, |
---|
[2272cb3] | 1271 | { "allow", 1, cmd_allow, 0 }, |
---|
[4c3519a] | 1272 | { "blist", 0, cmd_blist, 0 }, |
---|
[2272cb3] | 1273 | { "block", 1, cmd_block, 0 }, |
---|
[c133d4b8] | 1274 | { "channel", 1, cmd_channel, 0 }, |
---|
| 1275 | { "chat", 1, cmd_chat, 0 }, |
---|
[6c56f42] | 1276 | { "drop", 1, cmd_drop, 0 }, |
---|
[9d4352c] | 1277 | { "ft", 0, cmd_transfer, 0 }, |
---|
[f1d488e] | 1278 | { "group", 1, cmd_group, 0 }, |
---|
[6c56f42] | 1279 | { "help", 0, cmd_help, 0 }, |
---|
[0298d11] | 1280 | { "identify", 1, cmd_identify, 0 }, |
---|
[aa44bdd] | 1281 | { "info", 1, cmd_info, 0 }, |
---|
[6c56f42] | 1282 | { "no", 0, cmd_yesno, 0 }, |
---|
[9d4352c] | 1283 | { "qlist", 0, cmd_qlist, 0 }, |
---|
[0298d11] | 1284 | { "register", 1, cmd_register, 0 }, |
---|
[dbb0ce3] | 1285 | { "remove", 1, cmd_remove, 0 }, |
---|
[0298d11] | 1286 | { "rename", 2, cmd_rename, 0 }, |
---|
[6c56f42] | 1287 | { "save", 0, cmd_save, 0 }, |
---|
[0298d11] | 1288 | { "set", 0, cmd_set, 0 }, |
---|
[9d4352c] | 1289 | { "transfer", 0, cmd_transfer, 0 }, |
---|
[0298d11] | 1290 | { "yes", 0, cmd_yesno, 0 }, |
---|
| 1291 | { NULL } |
---|
| 1292 | }; |
---|