[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[4e4af1b] | 4 | * Copyright 2002-2010 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* MSN module - Switchboard server callbacks and utilities */ |
---|
| 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 | #include <ctype.h> |
---|
| 27 | #include "nogaim.h" |
---|
| 28 | #include "msn.h" |
---|
| 29 | #include "md5.h" |
---|
[e5a8118] | 30 | #include "soap.h" |
---|
[5fecede] | 31 | #include "invitation.h" |
---|
[b7d3cc34] | 32 | |
---|
[ba9edaa] | 33 | static gboolean msn_sb_callback( gpointer data, gint source, b_input_condition cond ); |
---|
[bae0617] | 34 | static int msn_sb_command( struct msn_handler_data *handler, char **cmd, int num_parts ); |
---|
| 35 | static int msn_sb_message( struct msn_handler_data *handler, char *msg, int msglen, char **cmd, int num_parts ); |
---|
[b7d3cc34] | 36 | |
---|
[64768d4] | 37 | int msn_sb_write( struct msn_switchboard *sb, const char *fmt, ... ) |
---|
[b7d3cc34] | 38 | { |
---|
[64768d4] | 39 | va_list params; |
---|
| 40 | char *out; |
---|
| 41 | size_t len; |
---|
[b7d3cc34] | 42 | int st; |
---|
| 43 | |
---|
[64768d4] | 44 | va_start( params, fmt ); |
---|
| 45 | out = g_strdup_vprintf( fmt, params ); |
---|
| 46 | va_end( params ); |
---|
| 47 | |
---|
[523fb23] | 48 | if( getenv( "BITLBEE_DEBUG" ) ) |
---|
[64768d4] | 49 | fprintf( stderr, "->SB%d:%s", sb->fd, out ); |
---|
[523fb23] | 50 | |
---|
[64768d4] | 51 | len = strlen( out ); |
---|
| 52 | st = write( sb->fd, out, len ); |
---|
| 53 | g_free( out ); |
---|
[b7d3cc34] | 54 | if( st != len ) |
---|
| 55 | { |
---|
| 56 | msn_sb_destroy( sb ); |
---|
[64768d4] | 57 | return 0; |
---|
[b7d3cc34] | 58 | } |
---|
| 59 | |
---|
[64768d4] | 60 | return 1; |
---|
[b7d3cc34] | 61 | } |
---|
| 62 | |
---|
[a830512] | 63 | int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m ) |
---|
| 64 | { |
---|
| 65 | struct msn_data *md = ic->proto_data; |
---|
| 66 | struct msn_switchboard *sb; |
---|
| 67 | |
---|
| 68 | /* FIXME: *CHECK* the reliability of using spare sb's! */ |
---|
| 69 | if( ( sb = msn_sb_spare( ic ) ) ) |
---|
| 70 | { |
---|
| 71 | debug( "Trying to use a spare switchboard to message %s", m->who ); |
---|
| 72 | |
---|
| 73 | sb->who = g_strdup( m->who ); |
---|
[64768d4] | 74 | if( msn_sb_write( sb, "CAL %d %s\r\n", ++sb->trId, m->who ) ) |
---|
[a830512] | 75 | { |
---|
| 76 | /* He/She should join the switchboard soon, let's queue the message. */ |
---|
| 77 | sb->msgq = g_slist_append( sb->msgq, m ); |
---|
| 78 | return( 1 ); |
---|
| 79 | } |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | debug( "Creating a new switchboard to message %s", m->who ); |
---|
| 83 | |
---|
| 84 | /* If we reach this line, there was no spare switchboard, so let's make one. */ |
---|
[64768d4] | 85 | if( !msn_ns_write( ic, -1, "XFR %d SB\r\n", ++md->trId ) ) |
---|
[a830512] | 86 | { |
---|
| 87 | g_free( m->who ); |
---|
| 88 | g_free( m->text ); |
---|
| 89 | g_free( m ); |
---|
| 90 | |
---|
| 91 | return( 0 ); |
---|
| 92 | } |
---|
| 93 | |
---|
| 94 | /* And queue the message to md. We'll pick it up when the switchboard comes up. */ |
---|
| 95 | md->msgq = g_slist_append( md->msgq, m ); |
---|
| 96 | |
---|
| 97 | /* FIXME: If the switchboard creation fails, the message will not be sent. */ |
---|
| 98 | |
---|
| 99 | return( 1 ); |
---|
| 100 | } |
---|
| 101 | |
---|
[0da65d5] | 102 | struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session ) |
---|
[b7d3cc34] | 103 | { |
---|
[0da65d5] | 104 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 105 | struct msn_switchboard *sb = g_new0( struct msn_switchboard, 1 ); |
---|
| 106 | |
---|
| 107 | sb->fd = proxy_connect( host, port, msn_sb_connected, sb ); |
---|
| 108 | if( sb->fd < 0 ) |
---|
| 109 | { |
---|
| 110 | g_free( sb ); |
---|
| 111 | return( NULL ); |
---|
| 112 | } |
---|
| 113 | |
---|
[0da65d5] | 114 | sb->ic = ic; |
---|
[b7d3cc34] | 115 | sb->key = g_strdup( key ); |
---|
| 116 | sb->session = session; |
---|
| 117 | |
---|
| 118 | msn_switchboards = g_slist_append( msn_switchboards, sb ); |
---|
| 119 | md->switchboards = g_slist_append( md->switchboards, sb ); |
---|
| 120 | |
---|
| 121 | return( sb ); |
---|
| 122 | } |
---|
| 123 | |
---|
[0da65d5] | 124 | struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle ) |
---|
[b7d3cc34] | 125 | { |
---|
[0da65d5] | 126 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 127 | struct msn_switchboard *sb; |
---|
| 128 | GSList *l; |
---|
| 129 | |
---|
| 130 | for( l = md->switchboards; l; l = l->next ) |
---|
| 131 | { |
---|
| 132 | sb = l->data; |
---|
| 133 | if( sb->who && strcmp( sb->who, handle ) == 0 ) |
---|
| 134 | return( sb ); |
---|
| 135 | } |
---|
| 136 | |
---|
| 137 | return( NULL ); |
---|
| 138 | } |
---|
| 139 | |
---|
[0da65d5] | 140 | struct msn_switchboard *msn_sb_by_chat( struct groupchat *c ) |
---|
[b7d3cc34] | 141 | { |
---|
[0da65d5] | 142 | struct msn_data *md = c->ic->proto_data; |
---|
[b7d3cc34] | 143 | struct msn_switchboard *sb; |
---|
| 144 | GSList *l; |
---|
| 145 | |
---|
| 146 | for( l = md->switchboards; l; l = l->next ) |
---|
| 147 | { |
---|
| 148 | sb = l->data; |
---|
[fa29d093] | 149 | if( sb->chat == c ) |
---|
[b7d3cc34] | 150 | return( sb ); |
---|
| 151 | } |
---|
| 152 | |
---|
| 153 | return( NULL ); |
---|
| 154 | } |
---|
| 155 | |
---|
[0da65d5] | 156 | struct msn_switchboard *msn_sb_spare( struct im_connection *ic ) |
---|
[b7d3cc34] | 157 | { |
---|
[0da65d5] | 158 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 159 | struct msn_switchboard *sb; |
---|
| 160 | GSList *l; |
---|
| 161 | |
---|
| 162 | for( l = md->switchboards; l; l = l->next ) |
---|
| 163 | { |
---|
| 164 | sb = l->data; |
---|
| 165 | if( !sb->who && !sb->chat ) |
---|
| 166 | return( sb ); |
---|
| 167 | } |
---|
| 168 | |
---|
| 169 | return( NULL ); |
---|
| 170 | } |
---|
| 171 | |
---|
| 172 | int msn_sb_sendmessage( struct msn_switchboard *sb, char *text ) |
---|
| 173 | { |
---|
| 174 | if( sb->ready ) |
---|
| 175 | { |
---|
[64768d4] | 176 | char *buf; |
---|
[b7d3cc34] | 177 | int i, j; |
---|
| 178 | |
---|
[bd28e6a] | 179 | /* Build the message. Convert LF to CR-LF for normal messages. */ |
---|
[a2b99ec] | 180 | if( strcmp( text, TYPING_NOTIFICATION_MESSAGE ) == 0 ) |
---|
| 181 | { |
---|
| 182 | i = strlen( MSN_TYPING_HEADERS ) + strlen( sb->ic->acc->user ); |
---|
| 183 | buf = g_new0( char, i ); |
---|
| 184 | i = g_snprintf( buf, i, MSN_TYPING_HEADERS, sb->ic->acc->user ); |
---|
[1c3008a] | 185 | } |
---|
[9bf2481] | 186 | else if( strcmp( text, SB_KEEPALIVE_MESSAGE ) == 0 ) |
---|
| 187 | { |
---|
| 188 | buf = g_strdup( SB_KEEPALIVE_HEADERS ); |
---|
| 189 | i = strlen( buf ); |
---|
| 190 | } |
---|
[1c3008a] | 191 | else if( strncmp( text, MSN_INVITE_HEADERS, sizeof( MSN_INVITE_HEADERS ) - 1 ) == 0 ) |
---|
[a2b99ec] | 192 | { |
---|
| 193 | buf = g_strdup( text ); |
---|
| 194 | i = strlen( buf ); |
---|
[1c3008a] | 195 | } |
---|
| 196 | else |
---|
[b7d3cc34] | 197 | { |
---|
[46dca11] | 198 | buf = g_new0( char, sizeof( MSN_MESSAGE_HEADERS ) + strlen( text ) * 2 + 1 ); |
---|
[b7d3cc34] | 199 | i = strlen( MSN_MESSAGE_HEADERS ); |
---|
| 200 | |
---|
| 201 | strcpy( buf, MSN_MESSAGE_HEADERS ); |
---|
| 202 | for( j = 0; text[j]; j ++ ) |
---|
| 203 | { |
---|
| 204 | if( text[j] == '\n' ) |
---|
| 205 | buf[i++] = '\r'; |
---|
| 206 | |
---|
| 207 | buf[i++] = text[j]; |
---|
| 208 | } |
---|
| 209 | } |
---|
| 210 | |
---|
[bd28e6a] | 211 | /* Build the final packet (MSG command + the message). */ |
---|
[64768d4] | 212 | if( msn_sb_write( sb, "MSG %d N %d\r\n%s", ++sb->trId, i, buf ) ) |
---|
[b7d3cc34] | 213 | { |
---|
[64768d4] | 214 | g_free( buf ); |
---|
| 215 | return 1; |
---|
[b7d3cc34] | 216 | } |
---|
| 217 | else |
---|
| 218 | { |
---|
[64768d4] | 219 | g_free( buf ); |
---|
| 220 | return 0; |
---|
[b7d3cc34] | 221 | } |
---|
| 222 | } |
---|
| 223 | else if( sb->who ) |
---|
| 224 | { |
---|
| 225 | struct msn_message *m = g_new0( struct msn_message, 1 ); |
---|
| 226 | |
---|
| 227 | m->who = g_strdup( "" ); |
---|
| 228 | m->text = g_strdup( text ); |
---|
| 229 | sb->msgq = g_slist_append( sb->msgq, m ); |
---|
| 230 | |
---|
| 231 | return( 1 ); |
---|
| 232 | } |
---|
| 233 | else |
---|
| 234 | { |
---|
| 235 | return( 0 ); |
---|
| 236 | } |
---|
| 237 | } |
---|
| 238 | |
---|
[0da65d5] | 239 | struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb ) |
---|
[b7d3cc34] | 240 | { |
---|
[0da65d5] | 241 | struct im_connection *ic = sb->ic; |
---|
[e5abfd4] | 242 | struct groupchat *c = NULL; |
---|
[b7d3cc34] | 243 | char buf[1024]; |
---|
| 244 | |
---|
| 245 | /* Create the groupchat structure. */ |
---|
| 246 | g_snprintf( buf, sizeof( buf ), "MSN groupchat session %d", sb->session ); |
---|
[36577aa] | 247 | if( sb->who ) |
---|
[e5abfd4] | 248 | c = bee_chat_by_title( ic->bee, ic, sb->who ); |
---|
| 249 | if( c && !msn_sb_by_chat( c ) ) |
---|
| 250 | sb->chat = c; |
---|
| 251 | else |
---|
[36577aa] | 252 | sb->chat = imcb_chat_new( ic, buf ); |
---|
[b7d3cc34] | 253 | |
---|
| 254 | /* Populate the channel. */ |
---|
[61ae52c] | 255 | if( sb->who ) imcb_chat_add_buddy( sb->chat, sb->who ); |
---|
| 256 | imcb_chat_add_buddy( sb->chat, ic->acc->user ); |
---|
[b7d3cc34] | 257 | |
---|
| 258 | /* And make sure the switchboard doesn't look like a regular chat anymore. */ |
---|
| 259 | if( sb->who ) |
---|
| 260 | { |
---|
| 261 | g_free( sb->who ); |
---|
| 262 | sb->who = NULL; |
---|
| 263 | } |
---|
[fa29d093] | 264 | |
---|
| 265 | return sb->chat; |
---|
[b7d3cc34] | 266 | } |
---|
| 267 | |
---|
| 268 | void msn_sb_destroy( struct msn_switchboard *sb ) |
---|
| 269 | { |
---|
[0da65d5] | 270 | struct im_connection *ic = sb->ic; |
---|
| 271 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 272 | |
---|
| 273 | debug( "Destroying switchboard: %s", sb->who ? sb->who : sb->key ? sb->key : "" ); |
---|
| 274 | |
---|
[46dca11] | 275 | msn_msgq_purge( ic, &sb->msgq ); |
---|
[bb839e8] | 276 | msn_sb_stop_keepalives( sb ); |
---|
[b7d3cc34] | 277 | |
---|
[8ba511d] | 278 | if( sb->key ) g_free( sb->key ); |
---|
| 279 | if( sb->who ) g_free( sb->who ); |
---|
| 280 | |
---|
[b7d3cc34] | 281 | if( sb->chat ) |
---|
| 282 | { |
---|
[e35d1a1] | 283 | imcb_chat_free( sb->chat ); |
---|
[b7d3cc34] | 284 | } |
---|
| 285 | |
---|
| 286 | if( sb->handler ) |
---|
| 287 | { |
---|
| 288 | if( sb->handler->rxq ) g_free( sb->handler->rxq ); |
---|
| 289 | if( sb->handler->cmd_text ) g_free( sb->handler->cmd_text ); |
---|
| 290 | g_free( sb->handler ); |
---|
| 291 | } |
---|
| 292 | |
---|
[ba9edaa] | 293 | if( sb->inp ) b_event_remove( sb->inp ); |
---|
[b7d3cc34] | 294 | closesocket( sb->fd ); |
---|
| 295 | |
---|
| 296 | msn_switchboards = g_slist_remove( msn_switchboards, sb ); |
---|
| 297 | md->switchboards = g_slist_remove( md->switchboards, sb ); |
---|
| 298 | g_free( sb ); |
---|
| 299 | } |
---|
| 300 | |
---|
[ba9edaa] | 301 | gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond ) |
---|
[b7d3cc34] | 302 | { |
---|
| 303 | struct msn_switchboard *sb = data; |
---|
[0da65d5] | 304 | struct im_connection *ic; |
---|
[b7d3cc34] | 305 | struct msn_data *md; |
---|
| 306 | char buf[1024]; |
---|
| 307 | |
---|
| 308 | /* Are we still alive? */ |
---|
| 309 | if( !g_slist_find( msn_switchboards, sb ) ) |
---|
[ba9edaa] | 310 | return FALSE; |
---|
[b7d3cc34] | 311 | |
---|
[0da65d5] | 312 | ic = sb->ic; |
---|
| 313 | md = ic->proto_data; |
---|
[b7d3cc34] | 314 | |
---|
| 315 | if( source != sb->fd ) |
---|
| 316 | { |
---|
[46dca11] | 317 | debug( "Error %d while connecting to switchboard server", 1 ); |
---|
[b7d3cc34] | 318 | msn_sb_destroy( sb ); |
---|
[ba9edaa] | 319 | return FALSE; |
---|
[b7d3cc34] | 320 | } |
---|
| 321 | |
---|
| 322 | /* Prepare the callback */ |
---|
| 323 | sb->handler = g_new0( struct msn_handler_data, 1 ); |
---|
| 324 | sb->handler->fd = sb->fd; |
---|
| 325 | sb->handler->rxq = g_new0( char, 1 ); |
---|
| 326 | sb->handler->data = sb; |
---|
| 327 | sb->handler->exec_command = msn_sb_command; |
---|
| 328 | sb->handler->exec_message = msn_sb_message; |
---|
| 329 | |
---|
| 330 | if( sb->session == MSN_SB_NEW ) |
---|
[c2fb3809] | 331 | g_snprintf( buf, sizeof( buf ), "USR %d %s %s\r\n", ++sb->trId, ic->acc->user, sb->key ); |
---|
[b7d3cc34] | 332 | else |
---|
[c2fb3809] | 333 | g_snprintf( buf, sizeof( buf ), "ANS %d %s %s %d\r\n", ++sb->trId, ic->acc->user, sb->key, sb->session ); |
---|
[b7d3cc34] | 334 | |
---|
[64768d4] | 335 | if( msn_sb_write( sb, "%s", buf ) ) |
---|
[e046390] | 336 | sb->inp = b_input_add( sb->fd, B_EV_IO_READ, msn_sb_callback, sb ); |
---|
[b7d3cc34] | 337 | else |
---|
[46dca11] | 338 | debug( "Error %d while connecting to switchboard server", 2 ); |
---|
[ba9edaa] | 339 | |
---|
| 340 | return FALSE; |
---|
[b7d3cc34] | 341 | } |
---|
| 342 | |
---|
[ba9edaa] | 343 | static gboolean msn_sb_callback( gpointer data, gint source, b_input_condition cond ) |
---|
[b7d3cc34] | 344 | { |
---|
| 345 | struct msn_switchboard *sb = data; |
---|
[59f527b6] | 346 | struct im_connection *ic = sb->ic; |
---|
| 347 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 348 | |
---|
[f8cb76d] | 349 | if( msn_handler( sb->handler ) != -1 ) |
---|
| 350 | return TRUE; |
---|
| 351 | |
---|
| 352 | if( sb->msgq != NULL ) |
---|
[b7d3cc34] | 353 | { |
---|
[59f527b6] | 354 | time_t now = time( NULL ); |
---|
| 355 | |
---|
| 356 | if( now - md->first_sb_failure > 600 ) |
---|
| 357 | { |
---|
| 358 | /* It's not really the first one, but the start of this "series". |
---|
| 359 | With this, the warning below will be shown only if this happens |
---|
| 360 | at least three times in ten minutes. This algorithm isn't |
---|
| 361 | perfect, but for this purpose it will do. */ |
---|
| 362 | md->first_sb_failure = now; |
---|
| 363 | md->sb_failures = 0; |
---|
| 364 | } |
---|
| 365 | |
---|
[46dca11] | 366 | debug( "Error: Switchboard died" ); |
---|
[59f527b6] | 367 | if( ++ md->sb_failures >= 3 ) |
---|
| 368 | imcb_log( ic, "Warning: Many switchboard failures on MSN connection. " |
---|
| 369 | "There might be problems delivering your messages." ); |
---|
| 370 | |
---|
[f8cb76d] | 371 | if( md->msgq == NULL ) |
---|
[59f527b6] | 372 | { |
---|
[f8cb76d] | 373 | md->msgq = sb->msgq; |
---|
| 374 | } |
---|
| 375 | else |
---|
| 376 | { |
---|
| 377 | GSList *l; |
---|
[59f527b6] | 378 | |
---|
[f8cb76d] | 379 | for( l = md->msgq; l->next; l = l->next ); |
---|
| 380 | l->next = sb->msgq; |
---|
[59f527b6] | 381 | } |
---|
[f8cb76d] | 382 | sb->msgq = NULL; |
---|
[59f527b6] | 383 | |
---|
[f8cb76d] | 384 | debug( "Moved queued messages back to the main queue, " |
---|
| 385 | "creating a new switchboard to retry." ); |
---|
[64768d4] | 386 | if( !msn_ns_write( ic, -1, "XFR %d SB\r\n", ++md->trId ) ) |
---|
[f8cb76d] | 387 | return FALSE; |
---|
[59f527b6] | 388 | } |
---|
[f8cb76d] | 389 | |
---|
| 390 | msn_sb_destroy( sb ); |
---|
| 391 | return FALSE; |
---|
[b7d3cc34] | 392 | } |
---|
| 393 | |
---|
[bae0617] | 394 | static int msn_sb_command( struct msn_handler_data *handler, char **cmd, int num_parts ) |
---|
[b7d3cc34] | 395 | { |
---|
[bae0617] | 396 | struct msn_switchboard *sb = handler->data; |
---|
[0da65d5] | 397 | struct im_connection *ic = sb->ic; |
---|
[b7d3cc34] | 398 | |
---|
| 399 | if( !num_parts ) |
---|
| 400 | { |
---|
| 401 | /* Hrrm... Empty command...? Ignore? */ |
---|
| 402 | return( 1 ); |
---|
| 403 | } |
---|
| 404 | |
---|
| 405 | if( strcmp( cmd[0], "XFR" ) == 0 ) |
---|
| 406 | { |
---|
[84b045d] | 407 | imcb_error( ic, "Received an XFR from a switchboard server, unable to comply! This is likely to be a bug, please report it!" ); |
---|
[c2fb3809] | 408 | imc_logout( ic, TRUE ); |
---|
[b7d3cc34] | 409 | return( 0 ); |
---|
| 410 | } |
---|
| 411 | else if( strcmp( cmd[0], "USR" ) == 0 ) |
---|
| 412 | { |
---|
[b46769d] | 413 | if( num_parts < 5 ) |
---|
[b7d3cc34] | 414 | { |
---|
| 415 | msn_sb_destroy( sb ); |
---|
| 416 | return( 0 ); |
---|
| 417 | } |
---|
| 418 | |
---|
| 419 | if( strcmp( cmd[2], "OK" ) != 0 ) |
---|
| 420 | { |
---|
| 421 | msn_sb_destroy( sb ); |
---|
| 422 | return( 0 ); |
---|
| 423 | } |
---|
| 424 | |
---|
| 425 | if( sb->who ) |
---|
[64768d4] | 426 | return msn_sb_write( sb, "CAL %d %s\r\n", ++sb->trId, sb->who ); |
---|
[b7d3cc34] | 427 | else |
---|
| 428 | debug( "Just created a switchboard, but I don't know what to do with it." ); |
---|
| 429 | } |
---|
| 430 | else if( strcmp( cmd[0], "IRO" ) == 0 ) |
---|
| 431 | { |
---|
| 432 | int num, tot; |
---|
| 433 | |
---|
[b46769d] | 434 | if( num_parts < 6 ) |
---|
[b7d3cc34] | 435 | { |
---|
| 436 | msn_sb_destroy( sb ); |
---|
| 437 | return( 0 ); |
---|
| 438 | } |
---|
| 439 | |
---|
| 440 | num = atoi( cmd[2] ); |
---|
| 441 | tot = atoi( cmd[3] ); |
---|
| 442 | |
---|
| 443 | if( tot <= 0 ) |
---|
| 444 | { |
---|
| 445 | msn_sb_destroy( sb ); |
---|
| 446 | return( 0 ); |
---|
| 447 | } |
---|
| 448 | else if( tot > 1 ) |
---|
| 449 | { |
---|
| 450 | char buf[1024]; |
---|
| 451 | |
---|
| 452 | if( num == 1 ) |
---|
| 453 | { |
---|
| 454 | g_snprintf( buf, sizeof( buf ), "MSN groupchat session %d", sb->session ); |
---|
[61ae52c] | 455 | sb->chat = imcb_chat_new( ic, buf ); |
---|
[b7d3cc34] | 456 | |
---|
| 457 | g_free( sb->who ); |
---|
| 458 | sb->who = NULL; |
---|
| 459 | } |
---|
| 460 | |
---|
[61ae52c] | 461 | imcb_chat_add_buddy( sb->chat, cmd[4] ); |
---|
[b7d3cc34] | 462 | |
---|
| 463 | if( num == tot ) |
---|
| 464 | { |
---|
[61ae52c] | 465 | imcb_chat_add_buddy( sb->chat, ic->acc->user ); |
---|
[b7d3cc34] | 466 | } |
---|
| 467 | } |
---|
| 468 | } |
---|
| 469 | else if( strcmp( cmd[0], "ANS" ) == 0 ) |
---|
| 470 | { |
---|
[b46769d] | 471 | if( num_parts < 3 ) |
---|
[b7d3cc34] | 472 | { |
---|
| 473 | msn_sb_destroy( sb ); |
---|
| 474 | return( 0 ); |
---|
| 475 | } |
---|
| 476 | |
---|
| 477 | if( strcmp( cmd[2], "OK" ) != 0 ) |
---|
| 478 | { |
---|
| 479 | debug( "Switchboard server sent a negative ANS reply" ); |
---|
| 480 | msn_sb_destroy( sb ); |
---|
| 481 | return( 0 ); |
---|
| 482 | } |
---|
| 483 | |
---|
| 484 | sb->ready = 1; |
---|
[bb839e8] | 485 | |
---|
| 486 | msn_sb_start_keepalives( sb, FALSE ); |
---|
[b7d3cc34] | 487 | } |
---|
| 488 | else if( strcmp( cmd[0], "CAL" ) == 0 ) |
---|
| 489 | { |
---|
[b46769d] | 490 | if( num_parts < 4 || !isdigit( cmd[3][0] ) ) |
---|
[b7d3cc34] | 491 | { |
---|
| 492 | msn_sb_destroy( sb ); |
---|
| 493 | return( 0 ); |
---|
| 494 | } |
---|
| 495 | |
---|
| 496 | sb->session = atoi( cmd[3] ); |
---|
| 497 | } |
---|
| 498 | else if( strcmp( cmd[0], "JOI" ) == 0 ) |
---|
| 499 | { |
---|
[b46769d] | 500 | if( num_parts < 3 ) |
---|
[b7d3cc34] | 501 | { |
---|
| 502 | msn_sb_destroy( sb ); |
---|
| 503 | return( 0 ); |
---|
| 504 | } |
---|
| 505 | |
---|
| 506 | if( sb->who && g_strcasecmp( cmd[1], sb->who ) == 0 ) |
---|
| 507 | { |
---|
| 508 | /* The user we wanted to talk to is finally there, let's send the queued messages then. */ |
---|
| 509 | struct msn_message *m; |
---|
| 510 | GSList *l; |
---|
| 511 | int st = 1; |
---|
| 512 | |
---|
| 513 | debug( "%s arrived in the switchboard session, now sending queued message(s)", cmd[1] ); |
---|
| 514 | |
---|
| 515 | /* Without this, sendmessage() will put everything back on the queue... */ |
---|
| 516 | sb->ready = 1; |
---|
| 517 | |
---|
| 518 | while( ( l = sb->msgq ) ) |
---|
| 519 | { |
---|
| 520 | m = l->data; |
---|
| 521 | if( st ) |
---|
| 522 | { |
---|
| 523 | /* This hack is meant to convert a regular new chat into a groupchat */ |
---|
| 524 | if( strcmp( m->text, GROUPCHAT_SWITCHBOARD_MESSAGE ) == 0 ) |
---|
| 525 | msn_sb_to_chat( sb ); |
---|
| 526 | else |
---|
| 527 | st = msn_sb_sendmessage( sb, m->text ); |
---|
| 528 | } |
---|
| 529 | g_free( m->text ); |
---|
| 530 | g_free( m->who ); |
---|
| 531 | g_free( m ); |
---|
| 532 | |
---|
| 533 | sb->msgq = g_slist_remove( sb->msgq, m ); |
---|
| 534 | } |
---|
| 535 | |
---|
[bb839e8] | 536 | msn_sb_start_keepalives( sb, FALSE ); |
---|
| 537 | |
---|
[b7d3cc34] | 538 | return( st ); |
---|
| 539 | } |
---|
| 540 | else if( sb->who ) |
---|
| 541 | { |
---|
| 542 | debug( "Converting chat with %s to a groupchat because %s joined the session.", sb->who, cmd[1] ); |
---|
| 543 | |
---|
| 544 | /* This SB is a one-to-one chat right now, but someone else is joining. */ |
---|
| 545 | msn_sb_to_chat( sb ); |
---|
| 546 | |
---|
[61ae52c] | 547 | imcb_chat_add_buddy( sb->chat, cmd[1] ); |
---|
[b7d3cc34] | 548 | } |
---|
| 549 | else if( sb->chat ) |
---|
| 550 | { |
---|
[61ae52c] | 551 | imcb_chat_add_buddy( sb->chat, cmd[1] ); |
---|
[b7d3cc34] | 552 | sb->ready = 1; |
---|
| 553 | } |
---|
| 554 | else |
---|
| 555 | { |
---|
| 556 | /* PANIC! */ |
---|
| 557 | } |
---|
| 558 | } |
---|
| 559 | else if( strcmp( cmd[0], "MSG" ) == 0 ) |
---|
| 560 | { |
---|
[b46769d] | 561 | if( num_parts < 4 ) |
---|
[b7d3cc34] | 562 | { |
---|
| 563 | msn_sb_destroy( sb ); |
---|
| 564 | return( 0 ); |
---|
| 565 | } |
---|
| 566 | |
---|
| 567 | sb->handler->msglen = atoi( cmd[3] ); |
---|
| 568 | |
---|
| 569 | if( sb->handler->msglen <= 0 ) |
---|
| 570 | { |
---|
| 571 | debug( "Received a corrupted message on the switchboard, the switchboard will be closed" ); |
---|
| 572 | msn_sb_destroy( sb ); |
---|
| 573 | return( 0 ); |
---|
| 574 | } |
---|
| 575 | } |
---|
[3585c5a] | 576 | else if( strcmp( cmd[0], "NAK" ) == 0 ) |
---|
| 577 | { |
---|
| 578 | if( sb->who ) |
---|
| 579 | { |
---|
| 580 | imcb_log( ic, "The MSN servers could not deliver one of your messages to %s.", sb->who ); |
---|
| 581 | } |
---|
| 582 | else |
---|
| 583 | { |
---|
| 584 | imcb_log( ic, "The MSN servers could not deliver one of your groupchat messages to all participants." ); |
---|
| 585 | } |
---|
| 586 | } |
---|
[b7d3cc34] | 587 | else if( strcmp( cmd[0], "BYE" ) == 0 ) |
---|
| 588 | { |
---|
| 589 | if( num_parts < 2 ) |
---|
| 590 | { |
---|
| 591 | msn_sb_destroy( sb ); |
---|
| 592 | return( 0 ); |
---|
| 593 | } |
---|
| 594 | |
---|
| 595 | /* if( cmd[2] && *cmd[2] == '1' ) -=> Chat is being cleaned up because of idleness */ |
---|
| 596 | |
---|
| 597 | if( sb->who ) |
---|
| 598 | { |
---|
[bb839e8] | 599 | msn_sb_stop_keepalives( sb ); |
---|
| 600 | |
---|
[b7d3cc34] | 601 | /* This is a single-person chat, and the other person is leaving. */ |
---|
| 602 | g_free( sb->who ); |
---|
| 603 | sb->who = NULL; |
---|
| 604 | sb->ready = 0; |
---|
| 605 | |
---|
| 606 | debug( "Person %s left the one-to-one switchboard connection. Keeping it around as a spare...", cmd[1] ); |
---|
| 607 | |
---|
| 608 | /* We could clean up the switchboard now, but keeping it around |
---|
| 609 | as a spare for a next conversation sounds more sane to me. |
---|
| 610 | The server will clean it up when it's idle for too long. */ |
---|
| 611 | } |
---|
| 612 | else if( sb->chat ) |
---|
| 613 | { |
---|
[61ae52c] | 614 | imcb_chat_remove_buddy( sb->chat, cmd[1], "" ); |
---|
[b7d3cc34] | 615 | } |
---|
| 616 | else |
---|
| 617 | { |
---|
| 618 | /* PANIC! */ |
---|
| 619 | } |
---|
| 620 | } |
---|
| 621 | else if( isdigit( cmd[0][0] ) ) |
---|
| 622 | { |
---|
| 623 | int num = atoi( cmd[0] ); |
---|
[08995b0] | 624 | const struct msn_status_code *err = msn_status_by_number( num ); |
---|
[b7d3cc34] | 625 | |
---|
[bc090f0] | 626 | /* If the person is offline, send an offline message instead, |
---|
| 627 | and don't report an error. */ |
---|
[e5a8118] | 628 | if( num == 217 ) |
---|
[bc090f0] | 629 | msn_soap_oim_send_queue( ic, &sb->msgq ); |
---|
| 630 | else |
---|
| 631 | imcb_error( ic, "Error reported by switchboard server: %s", err->text ); |
---|
[b7d3cc34] | 632 | |
---|
| 633 | if( err->flags & STATUS_SB_FATAL ) |
---|
| 634 | { |
---|
| 635 | msn_sb_destroy( sb ); |
---|
[6048744] | 636 | return 0; |
---|
[b7d3cc34] | 637 | } |
---|
[6048744] | 638 | else if( err->flags & STATUS_FATAL ) |
---|
[b7d3cc34] | 639 | { |
---|
[c2fb3809] | 640 | imc_logout( ic, TRUE ); |
---|
[6048744] | 641 | return 0; |
---|
[b7d3cc34] | 642 | } |
---|
[6048744] | 643 | else if( err->flags & STATUS_SB_IM_SPARE ) |
---|
[3b9390b] | 644 | { |
---|
| 645 | if( sb->who ) |
---|
| 646 | { |
---|
| 647 | /* Apparently some invitation failed. We might want to use this |
---|
| 648 | board later, so keep it as a spare. */ |
---|
| 649 | g_free( sb->who ); |
---|
| 650 | sb->who = NULL; |
---|
| 651 | |
---|
| 652 | /* Also clear the msgq, otherwise someone else might get them. */ |
---|
[46dca11] | 653 | msn_msgq_purge( ic, &sb->msgq ); |
---|
[3b9390b] | 654 | } |
---|
[6048744] | 655 | |
---|
| 656 | /* Do NOT return 0 here, we want to keep this sb. */ |
---|
[3b9390b] | 657 | } |
---|
[b7d3cc34] | 658 | } |
---|
| 659 | else |
---|
| 660 | { |
---|
[8ff0a61] | 661 | /* debug( "Received unknown command from switchboard server: %s", cmd[0] ); */ |
---|
[b7d3cc34] | 662 | } |
---|
| 663 | |
---|
| 664 | return( 1 ); |
---|
| 665 | } |
---|
| 666 | |
---|
[bae0617] | 667 | static int msn_sb_message( struct msn_handler_data *handler, char *msg, int msglen, char **cmd, int num_parts ) |
---|
[b7d3cc34] | 668 | { |
---|
[bae0617] | 669 | struct msn_switchboard *sb = handler->data; |
---|
[0da65d5] | 670 | struct im_connection *ic = sb->ic; |
---|
[b7d3cc34] | 671 | char *body; |
---|
| 672 | int blen = 0; |
---|
| 673 | |
---|
| 674 | if( !num_parts ) |
---|
| 675 | return( 1 ); |
---|
| 676 | |
---|
| 677 | if( ( body = strstr( msg, "\r\n\r\n" ) ) ) |
---|
| 678 | { |
---|
| 679 | body += 4; |
---|
| 680 | blen = msglen - ( body - msg ); |
---|
| 681 | } |
---|
| 682 | |
---|
| 683 | if( strcmp( cmd[0], "MSG" ) == 0 ) |
---|
| 684 | { |
---|
| 685 | char *ct = msn_findheader( msg, "Content-Type:", msglen ); |
---|
| 686 | |
---|
| 687 | if( !ct ) |
---|
| 688 | return( 1 ); |
---|
| 689 | |
---|
| 690 | if( g_strncasecmp( ct, "text/plain", 10 ) == 0 ) |
---|
| 691 | { |
---|
| 692 | g_free( ct ); |
---|
| 693 | |
---|
| 694 | if( !body ) |
---|
| 695 | return( 1 ); |
---|
| 696 | |
---|
| 697 | if( sb->who ) |
---|
| 698 | { |
---|
[9624fdf] | 699 | imcb_buddy_msg( ic, cmd[1], body, 0, 0 ); |
---|
[b7d3cc34] | 700 | } |
---|
| 701 | else if( sb->chat ) |
---|
| 702 | { |
---|
[61ae52c] | 703 | imcb_chat_msg( sb->chat, cmd[1], body, 0, 0 ); |
---|
[b7d3cc34] | 704 | } |
---|
| 705 | else |
---|
| 706 | { |
---|
| 707 | /* PANIC! */ |
---|
| 708 | } |
---|
| 709 | } |
---|
[17a6ee9] | 710 | #if 0 |
---|
| 711 | // Disable MSN ft support for now. |
---|
[b7d3cc34] | 712 | else if( g_strncasecmp( ct, "text/x-msmsgsinvite", 19 ) == 0 ) |
---|
| 713 | { |
---|
[a2b99ec] | 714 | char *command = msn_findheader( body, "Invitation-Command:", blen ); |
---|
| 715 | char *cookie = msn_findheader( body, "Invitation-Cookie:", blen ); |
---|
| 716 | unsigned int icookie; |
---|
[b7d3cc34] | 717 | |
---|
| 718 | g_free( ct ); |
---|
| 719 | |
---|
[a2b99ec] | 720 | /* Every invite should have both a Command and Cookie header */ |
---|
| 721 | if( !command || !cookie ) { |
---|
| 722 | g_free( command ); |
---|
| 723 | g_free( cookie ); |
---|
| 724 | imcb_log( ic, "Warning: No command or cookie from %s", sb->who ); |
---|
| 725 | return 1; |
---|
[b7d3cc34] | 726 | } |
---|
| 727 | |
---|
[a2b99ec] | 728 | icookie = strtoul( cookie, NULL, 10 ); |
---|
| 729 | g_free( cookie ); |
---|
[b7d3cc34] | 730 | |
---|
[a2b99ec] | 731 | if( g_strncasecmp( command, "INVITE", 6 ) == 0 ) { |
---|
| 732 | msn_invitation_invite( sb, cmd[1], icookie, body, blen ); |
---|
| 733 | } else if( g_strncasecmp( command, "ACCEPT", 6 ) == 0 ) { |
---|
| 734 | msn_invitation_accept( sb, cmd[1], icookie, body, blen ); |
---|
| 735 | } else if( g_strncasecmp( command, "CANCEL", 6 ) == 0 ) { |
---|
| 736 | msn_invitation_cancel( sb, cmd[1], icookie, body, blen ); |
---|
| 737 | } else { |
---|
| 738 | imcb_log( ic, "Warning: Received invalid invitation with " |
---|
| 739 | "command %s from %s", command, sb->who ); |
---|
[b7d3cc34] | 740 | } |
---|
[a2b99ec] | 741 | |
---|
| 742 | g_free( command ); |
---|
| 743 | } |
---|
[17a6ee9] | 744 | #endif |
---|
[a2b99ec] | 745 | else if( g_strncasecmp( ct, "application/x-msnmsgrp2p", 24 ) == 0 ) |
---|
| 746 | { |
---|
[9b1d2d6] | 747 | /* Not currently implemented. Don't warn about it since |
---|
| 748 | this seems to be used for avatars now. */ |
---|
[a2b99ec] | 749 | g_free( ct ); |
---|
[b7d3cc34] | 750 | } |
---|
| 751 | else if( g_strncasecmp( ct, "text/x-msmsgscontrol", 20 ) == 0 ) |
---|
| 752 | { |
---|
| 753 | char *who = msn_findheader( msg, "TypingUser:", msglen ); |
---|
| 754 | |
---|
| 755 | if( who ) |
---|
| 756 | { |
---|
[9624fdf] | 757 | imcb_buddy_typing( ic, who, OPT_TYPING ); |
---|
[b7d3cc34] | 758 | g_free( who ); |
---|
| 759 | } |
---|
| 760 | |
---|
| 761 | g_free( ct ); |
---|
| 762 | } |
---|
| 763 | else |
---|
| 764 | { |
---|
| 765 | g_free( ct ); |
---|
| 766 | } |
---|
| 767 | } |
---|
| 768 | |
---|
| 769 | return( 1 ); |
---|
| 770 | } |
---|
[9bf2481] | 771 | |
---|
[bb839e8] | 772 | static gboolean msn_sb_keepalive( gpointer data, gint source, b_input_condition cond ) |
---|
[9bf2481] | 773 | { |
---|
| 774 | struct msn_switchboard *sb = data; |
---|
| 775 | return sb->ready && msn_sb_sendmessage( sb, SB_KEEPALIVE_MESSAGE ); |
---|
| 776 | } |
---|
[bb839e8] | 777 | |
---|
| 778 | void msn_sb_start_keepalives( struct msn_switchboard *sb, gboolean initial ) |
---|
| 779 | { |
---|
[f924563] | 780 | bee_user_t *bu; |
---|
[bb839e8] | 781 | |
---|
| 782 | if( sb && sb->who && sb->keepalive == 0 && |
---|
[f924563] | 783 | ( bu = bee_user_by_handle( sb->ic->bee, sb->ic, sb->who ) ) && |
---|
| 784 | !( bu->flags & BEE_USER_ONLINE ) && |
---|
[bb839e8] | 785 | set_getbool( &sb->ic->acc->set, "switchboard_keepalives" ) ) |
---|
| 786 | { |
---|
| 787 | if( initial ) |
---|
| 788 | msn_sb_keepalive( sb, 0, 0 ); |
---|
| 789 | |
---|
| 790 | sb->keepalive = b_timeout_add( 20000, msn_sb_keepalive, sb ); |
---|
| 791 | } |
---|
| 792 | } |
---|
| 793 | |
---|
| 794 | void msn_sb_stop_keepalives( struct msn_switchboard *sb ) |
---|
| 795 | { |
---|
| 796 | if( sb && sb->keepalive > 0 ) |
---|
| 797 | { |
---|
| 798 | b_event_remove( sb->keepalive ); |
---|
| 799 | sb->keepalive = 0; |
---|
| 800 | } |
---|
| 801 | } |
---|