[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 | /* MSN module - Main file; functions to be called from BitlBee */ |
---|
| 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 "nogaim.h" |
---|
| 27 | #include "msn.h" |
---|
| 28 | |
---|
[c6ca3ee] | 29 | int msn_chat_id; |
---|
| 30 | GSList *msn_connections; |
---|
| 31 | GSList *msn_switchboards; |
---|
| 32 | |
---|
[911f2eb] | 33 | static char *msn_set_display_name( set_t *set, char *value ); |
---|
| 34 | |
---|
[0da65d5] | 35 | static void msn_init( account_t *acc ) |
---|
[911f2eb] | 36 | { |
---|
| 37 | set_t *s; |
---|
| 38 | |
---|
| 39 | s = set_add( &acc->set, "display_name", NULL, msn_set_display_name, acc ); |
---|
| 40 | s->flags |= ACC_SET_NOSAVE | ACC_SET_ONLINE_ONLY; |
---|
[1febf5c] | 41 | |
---|
| 42 | s = set_add( &acc->set, "mail_notifications", "false", set_eval_bool, acc ); |
---|
[911f2eb] | 43 | } |
---|
| 44 | |
---|
[0a3c243] | 45 | static void msn_login( account_t *acc ) |
---|
[b7d3cc34] | 46 | { |
---|
[84b045d] | 47 | struct im_connection *ic = imcb_new( acc ); |
---|
[b7d3cc34] | 48 | struct msn_data *md = g_new0( struct msn_data, 1 ); |
---|
| 49 | |
---|
[0da65d5] | 50 | ic->proto_data = md; |
---|
[b7d3cc34] | 51 | md->fd = -1; |
---|
| 52 | |
---|
[0a3c243] | 53 | if( strchr( acc->user, '@' ) == NULL ) |
---|
[b7d3cc34] | 54 | { |
---|
[84b045d] | 55 | imcb_error( ic, "Invalid account name" ); |
---|
[c2fb3809] | 56 | imc_logout( ic, FALSE ); |
---|
[b7d3cc34] | 57 | return; |
---|
| 58 | } |
---|
| 59 | |
---|
[84b045d] | 60 | imcb_log( ic, "Connecting" ); |
---|
[2a29eac] | 61 | |
---|
[0da65d5] | 62 | md->fd = proxy_connect( "messenger.hotmail.com", 1863, msn_ns_connected, ic ); |
---|
[b7d3cc34] | 63 | if( md->fd < 0 ) |
---|
| 64 | { |
---|
[84b045d] | 65 | imcb_error( ic, "Could not connect to server" ); |
---|
[c2fb3809] | 66 | imc_logout( ic, TRUE ); |
---|
[2a29eac] | 67 | return; |
---|
[b7d3cc34] | 68 | } |
---|
[2a29eac] | 69 | |
---|
[0da65d5] | 70 | md->ic = ic; |
---|
[2a29eac] | 71 | md->away_state = msn_away_state_list; |
---|
| 72 | |
---|
[0da65d5] | 73 | msn_connections = g_slist_append( msn_connections, ic ); |
---|
[b7d3cc34] | 74 | } |
---|
| 75 | |
---|
[0da65d5] | 76 | static void msn_logout( struct im_connection *ic ) |
---|
[b7d3cc34] | 77 | { |
---|
[0da65d5] | 78 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 79 | GSList *l; |
---|
| 80 | |
---|
[5a5c926] | 81 | if( md ) |
---|
[b7d3cc34] | 82 | { |
---|
[17a6ee9] | 83 | /** Disabling MSN ft support for now. |
---|
[a2b99ec] | 84 | while( md->filetransfers ) { |
---|
[1c3008a] | 85 | imcb_file_canceled( md->filetransfers->data, "Closing connection" ); |
---|
[a2b99ec] | 86 | } |
---|
[17a6ee9] | 87 | */ |
---|
[a2b99ec] | 88 | |
---|
[5a5c926] | 89 | if( md->fd >= 0 ) |
---|
| 90 | closesocket( md->fd ); |
---|
[b7d3cc34] | 91 | |
---|
[5a5c926] | 92 | if( md->handler ) |
---|
[b7d3cc34] | 93 | { |
---|
[5a5c926] | 94 | if( md->handler->rxq ) g_free( md->handler->rxq ); |
---|
| 95 | if( md->handler->cmd_text ) g_free( md->handler->cmd_text ); |
---|
| 96 | g_free( md->handler ); |
---|
| 97 | } |
---|
| 98 | |
---|
| 99 | while( md->switchboards ) |
---|
| 100 | msn_sb_destroy( md->switchboards->data ); |
---|
[1053836] | 101 | |
---|
[46dca11] | 102 | msn_msgq_purge( ic, &md->msgq ); |
---|
[5a5c926] | 103 | |
---|
[bf25fa3] | 104 | while( md->groupcount > 0 ) |
---|
| 105 | g_free( md->grouplist[--md->groupcount] ); |
---|
[59f5c42a] | 106 | g_free( md->grouplist ); |
---|
| 107 | |
---|
[5a5c926] | 108 | g_free( md ); |
---|
[b7d3cc34] | 109 | } |
---|
| 110 | |
---|
[0da65d5] | 111 | for( l = ic->permit; l; l = l->next ) |
---|
[b7d3cc34] | 112 | g_free( l->data ); |
---|
[0da65d5] | 113 | g_slist_free( ic->permit ); |
---|
[b7d3cc34] | 114 | |
---|
[0da65d5] | 115 | for( l = ic->deny; l; l = l->next ) |
---|
[b7d3cc34] | 116 | g_free( l->data ); |
---|
[0da65d5] | 117 | g_slist_free( ic->deny ); |
---|
[b7d3cc34] | 118 | |
---|
[0da65d5] | 119 | msn_connections = g_slist_remove( msn_connections, ic ); |
---|
[b7d3cc34] | 120 | } |
---|
| 121 | |
---|
[f6c963b] | 122 | static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away ) |
---|
[b7d3cc34] | 123 | { |
---|
| 124 | struct msn_switchboard *sb; |
---|
| 125 | |
---|
[0da65d5] | 126 | if( ( sb = msn_sb_by_handle( ic, who ) ) ) |
---|
[b7d3cc34] | 127 | { |
---|
| 128 | return( msn_sb_sendmessage( sb, message ) ); |
---|
| 129 | } |
---|
| 130 | else |
---|
| 131 | { |
---|
| 132 | struct msn_message *m; |
---|
| 133 | |
---|
| 134 | /* Create a message. We have to arrange a usable switchboard, and send the message later. */ |
---|
| 135 | m = g_new0( struct msn_message, 1 ); |
---|
| 136 | m->who = g_strdup( who ); |
---|
| 137 | m->text = g_strdup( message ); |
---|
| 138 | |
---|
[a830512] | 139 | return msn_sb_write_msg( ic, m ); |
---|
[b7d3cc34] | 140 | } |
---|
| 141 | |
---|
| 142 | return( 0 ); |
---|
| 143 | } |
---|
| 144 | |
---|
[0da65d5] | 145 | static GList *msn_away_states( struct im_connection *ic ) |
---|
[b7d3cc34] | 146 | { |
---|
[5e202b0] | 147 | static GList *l = NULL; |
---|
[b7d3cc34] | 148 | int i; |
---|
| 149 | |
---|
[5e202b0] | 150 | if( l == NULL ) |
---|
[b051d39] | 151 | for( i = 0; *msn_away_state_list[i].code; i ++ ) |
---|
| 152 | if( *msn_away_state_list[i].name ) |
---|
| 153 | l = g_list_append( l, (void*) msn_away_state_list[i].name ); |
---|
[b7d3cc34] | 154 | |
---|
[5e202b0] | 155 | return l; |
---|
[b7d3cc34] | 156 | } |
---|
| 157 | |
---|
[0da65d5] | 158 | static void msn_set_away( struct im_connection *ic, char *state, char *message ) |
---|
[b7d3cc34] | 159 | { |
---|
| 160 | char buf[1024]; |
---|
[0da65d5] | 161 | struct msn_data *md = ic->proto_data; |
---|
[b7d3cc34] | 162 | |
---|
[b051d39] | 163 | if( state ) |
---|
| 164 | md->away_state = msn_away_state_by_name( state ) ? : |
---|
| 165 | msn_away_state_list + 1; |
---|
[b7d3cc34] | 166 | else |
---|
[b051d39] | 167 | md->away_state = msn_away_state_list; |
---|
[b7d3cc34] | 168 | |
---|
[b051d39] | 169 | g_snprintf( buf, sizeof( buf ), "CHG %d %s\r\n", ++md->trId, md->away_state->code ); |
---|
[0da65d5] | 170 | msn_write( ic, buf, strlen( buf ) ); |
---|
[b7d3cc34] | 171 | } |
---|
| 172 | |
---|
[0da65d5] | 173 | static void msn_set_my_name( struct im_connection *ic, char *info ) |
---|
[b7d3cc34] | 174 | { |
---|
[0da65d5] | 175 | msn_set_display_name( set_find( &ic->acc->set, "display_name" ), info ); |
---|
[b7d3cc34] | 176 | } |
---|
| 177 | |
---|
[0da65d5] | 178 | static void msn_get_info(struct im_connection *ic, char *who) |
---|
[b7d3cc34] | 179 | { |
---|
| 180 | /* Just make an URL and let the user fetch the info */ |
---|
[84b045d] | 181 | imcb_log( ic, "%s\n%s: %s%s", _("User Info"), _("For now, fetch yourself"), PROFILE_URL, who ); |
---|
[b7d3cc34] | 182 | } |
---|
| 183 | |
---|
[0da65d5] | 184 | static void msn_add_buddy( struct im_connection *ic, char *who, char *group ) |
---|
[b7d3cc34] | 185 | { |
---|
[0da65d5] | 186 | msn_buddy_list_add( ic, "FL", who, who ); |
---|
[b7d3cc34] | 187 | } |
---|
| 188 | |
---|
[0da65d5] | 189 | static void msn_remove_buddy( struct im_connection *ic, char *who, char *group ) |
---|
[b7d3cc34] | 190 | { |
---|
[0da65d5] | 191 | msn_buddy_list_remove( ic, "FL", who ); |
---|
[b7d3cc34] | 192 | } |
---|
| 193 | |
---|
[f6c963b] | 194 | static void msn_chat_msg( struct groupchat *c, char *message, int flags ) |
---|
[b7d3cc34] | 195 | { |
---|
[fa29d093] | 196 | struct msn_switchboard *sb = msn_sb_by_chat( c ); |
---|
[b7d3cc34] | 197 | |
---|
| 198 | if( sb ) |
---|
[0da65d5] | 199 | msn_sb_sendmessage( sb, message ); |
---|
| 200 | /* FIXME: Error handling (although this can't happen unless something's |
---|
| 201 | already severely broken) disappeared here! */ |
---|
[b7d3cc34] | 202 | } |
---|
| 203 | |
---|
[c058ff9] | 204 | static void msn_chat_invite( struct groupchat *c, char *who, char *message ) |
---|
[b7d3cc34] | 205 | { |
---|
[fa29d093] | 206 | struct msn_switchboard *sb = msn_sb_by_chat( c ); |
---|
[b7d3cc34] | 207 | char buf[1024]; |
---|
| 208 | |
---|
| 209 | if( sb ) |
---|
| 210 | { |
---|
| 211 | g_snprintf( buf, sizeof( buf ), "CAL %d %s\r\n", ++sb->trId, who ); |
---|
| 212 | msn_sb_write( sb, buf, strlen( buf ) ); |
---|
| 213 | } |
---|
| 214 | } |
---|
| 215 | |
---|
[0da65d5] | 216 | static void msn_chat_leave( struct groupchat *c ) |
---|
[b7d3cc34] | 217 | { |
---|
[fa29d093] | 218 | struct msn_switchboard *sb = msn_sb_by_chat( c ); |
---|
[b7d3cc34] | 219 | |
---|
| 220 | if( sb ) |
---|
| 221 | msn_sb_write( sb, "OUT\r\n", 5 ); |
---|
| 222 | } |
---|
| 223 | |
---|
[0da65d5] | 224 | static struct groupchat *msn_chat_with( struct im_connection *ic, char *who ) |
---|
[b7d3cc34] | 225 | { |
---|
| 226 | struct msn_switchboard *sb; |
---|
| 227 | |
---|
[0da65d5] | 228 | if( ( sb = msn_sb_by_handle( ic, who ) ) ) |
---|
[b7d3cc34] | 229 | { |
---|
| 230 | debug( "Converting existing switchboard to %s to a groupchat", who ); |
---|
[fa29d093] | 231 | return msn_sb_to_chat( sb ); |
---|
[b7d3cc34] | 232 | } |
---|
| 233 | else |
---|
| 234 | { |
---|
| 235 | struct msn_message *m; |
---|
| 236 | |
---|
| 237 | /* Create a magic message. This is quite hackish, but who cares? :-P */ |
---|
| 238 | m = g_new0( struct msn_message, 1 ); |
---|
| 239 | m->who = g_strdup( who ); |
---|
| 240 | m->text = g_strdup( GROUPCHAT_SWITCHBOARD_MESSAGE ); |
---|
| 241 | |
---|
[a830512] | 242 | msn_sb_write_msg( ic, m ); |
---|
| 243 | |
---|
[fa29d093] | 244 | return NULL; |
---|
[b7d3cc34] | 245 | } |
---|
| 246 | |
---|
[fa29d093] | 247 | return NULL; |
---|
[b7d3cc34] | 248 | } |
---|
| 249 | |
---|
[0da65d5] | 250 | static void msn_keepalive( struct im_connection *ic ) |
---|
[b7d3cc34] | 251 | { |
---|
[0da65d5] | 252 | msn_write( ic, "PNG\r\n", strlen( "PNG\r\n" ) ); |
---|
[b7d3cc34] | 253 | } |
---|
| 254 | |
---|
[0da65d5] | 255 | static void msn_add_permit( struct im_connection *ic, char *who ) |
---|
[b7d3cc34] | 256 | { |
---|
[0da65d5] | 257 | msn_buddy_list_add( ic, "AL", who, who ); |
---|
[b7d3cc34] | 258 | } |
---|
| 259 | |
---|
[0da65d5] | 260 | static void msn_rem_permit( struct im_connection *ic, char *who ) |
---|
[b7d3cc34] | 261 | { |
---|
[0da65d5] | 262 | msn_buddy_list_remove( ic, "AL", who ); |
---|
[b7d3cc34] | 263 | } |
---|
| 264 | |
---|
[0da65d5] | 265 | static void msn_add_deny( struct im_connection *ic, char *who ) |
---|
[b7d3cc34] | 266 | { |
---|
| 267 | struct msn_switchboard *sb; |
---|
| 268 | |
---|
[0da65d5] | 269 | msn_buddy_list_add( ic, "BL", who, who ); |
---|
[b7d3cc34] | 270 | |
---|
| 271 | /* If there's still a conversation with this person, close it. */ |
---|
[0da65d5] | 272 | if( ( sb = msn_sb_by_handle( ic, who ) ) ) |
---|
[b7d3cc34] | 273 | { |
---|
| 274 | msn_sb_destroy( sb ); |
---|
| 275 | } |
---|
| 276 | } |
---|
| 277 | |
---|
[0da65d5] | 278 | static void msn_rem_deny( struct im_connection *ic, char *who ) |
---|
[b7d3cc34] | 279 | { |
---|
[0da65d5] | 280 | msn_buddy_list_remove( ic, "BL", who ); |
---|
[b7d3cc34] | 281 | } |
---|
| 282 | |
---|
[0da65d5] | 283 | static int msn_send_typing( struct im_connection *ic, char *who, int typing ) |
---|
[b7d3cc34] | 284 | { |
---|
[df1fb67] | 285 | if( typing & OPT_TYPING ) |
---|
[f6c963b] | 286 | return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) ); |
---|
[b7d3cc34] | 287 | else |
---|
| 288 | return( 1 ); |
---|
| 289 | } |
---|
| 290 | |
---|
[911f2eb] | 291 | static char *msn_set_display_name( set_t *set, char *value ) |
---|
| 292 | { |
---|
| 293 | account_t *acc = set->data; |
---|
[0da65d5] | 294 | struct im_connection *ic = acc->ic; |
---|
[911f2eb] | 295 | struct msn_data *md; |
---|
[e97827b] | 296 | char buf[1024], *fn; |
---|
[911f2eb] | 297 | |
---|
| 298 | /* Double-check. */ |
---|
[0da65d5] | 299 | if( ic == NULL ) |
---|
[911f2eb] | 300 | return NULL; |
---|
| 301 | |
---|
[0da65d5] | 302 | md = ic->proto_data; |
---|
[911f2eb] | 303 | |
---|
| 304 | if( strlen( value ) > 129 ) |
---|
| 305 | { |
---|
[84b045d] | 306 | imcb_log( ic, "Maximum name length exceeded" ); |
---|
[911f2eb] | 307 | return NULL; |
---|
| 308 | } |
---|
| 309 | |
---|
[e97827b] | 310 | fn = msn_http_encode( value ); |
---|
[911f2eb] | 311 | |
---|
[c2fb3809] | 312 | g_snprintf( buf, sizeof( buf ), "REA %d %s %s\r\n", ++md->trId, ic->acc->user, fn ); |
---|
[0da65d5] | 313 | msn_write( ic, buf, strlen( buf ) ); |
---|
[911f2eb] | 314 | g_free( fn ); |
---|
| 315 | |
---|
| 316 | /* Returning NULL would be better, because the server still has to |
---|
| 317 | confirm the name change. However, it looks a bit confusing to the |
---|
| 318 | user. */ |
---|
| 319 | return value; |
---|
| 320 | } |
---|
| 321 | |
---|
[0da65d5] | 322 | void msn_initmodule() |
---|
[b7d3cc34] | 323 | { |
---|
[7b23afd] | 324 | struct prpl *ret = g_new0(struct prpl, 1); |
---|
[911f2eb] | 325 | |
---|
[7b23afd] | 326 | ret->name = "msn"; |
---|
[b7d3cc34] | 327 | ret->login = msn_login; |
---|
[0da65d5] | 328 | ret->init = msn_init; |
---|
| 329 | ret->logout = msn_logout; |
---|
[f6c963b] | 330 | ret->buddy_msg = msn_buddy_msg; |
---|
[b7d3cc34] | 331 | ret->away_states = msn_away_states; |
---|
| 332 | ret->set_away = msn_set_away; |
---|
| 333 | ret->get_info = msn_get_info; |
---|
[0da65d5] | 334 | ret->set_my_name = msn_set_my_name; |
---|
[b7d3cc34] | 335 | ret->add_buddy = msn_add_buddy; |
---|
| 336 | ret->remove_buddy = msn_remove_buddy; |
---|
[f6c963b] | 337 | ret->chat_msg = msn_chat_msg; |
---|
[b7d3cc34] | 338 | ret->chat_invite = msn_chat_invite; |
---|
| 339 | ret->chat_leave = msn_chat_leave; |
---|
[0da65d5] | 340 | ret->chat_with = msn_chat_with; |
---|
[b7d3cc34] | 341 | ret->keepalive = msn_keepalive; |
---|
| 342 | ret->add_permit = msn_add_permit; |
---|
| 343 | ret->rem_permit = msn_rem_permit; |
---|
| 344 | ret->add_deny = msn_add_deny; |
---|
| 345 | ret->rem_deny = msn_rem_deny; |
---|
| 346 | ret->send_typing = msn_send_typing; |
---|
[5b52a48] | 347 | ret->handle_cmp = g_strcasecmp; |
---|
[17a6ee9] | 348 | //ret->transfer_request = msn_ftp_transfer_request; |
---|
[b7d3cc34] | 349 | |
---|
[7b23afd] | 350 | register_protocol(ret); |
---|
[b7d3cc34] | 351 | } |
---|