[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[21029d0] | 4 | * Copyright 2002-2010 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* MSN module */ |
---|
| 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 | |
---|
[a830512] | 26 | #ifndef _MSN_H |
---|
| 27 | #define _MSN_H |
---|
| 28 | |
---|
[b7d3cc34] | 29 | /* Some hackish magicstrings to make special-purpose messages/switchboards. |
---|
| 30 | */ |
---|
| 31 | #define TYPING_NOTIFICATION_MESSAGE "\r\r\rBEWARE, ME R TYPINK MESSAGE!!!!\r\r\r" |
---|
| 32 | #define GROUPCHAT_SWITCHBOARD_MESSAGE "\r\r\rME WANT TALK TO MANY PEOPLE\r\r\r" |
---|
[9bf2481] | 33 | #define SB_KEEPALIVE_MESSAGE "\r\r\rDONT HANG UP ON ME!\r\r\r" |
---|
[b7d3cc34] | 34 | |
---|
[aa31117] | 35 | #ifdef DEBUG_MSN |
---|
[59f527b6] | 36 | #define debug( text... ) imcb_log( ic, text ); |
---|
[b7d3cc34] | 37 | #else |
---|
| 38 | #define debug( text... ) |
---|
| 39 | #endif |
---|
| 40 | |
---|
[be7a180] | 41 | /* This should be MSN Messenger 7.0.0813 |
---|
| 42 | #define MSNP11_PROD_KEY "CFHUR$52U_{VIX5T" |
---|
| 43 | #define MSNP11_PROD_ID "PROD0101{0RM?UBW" |
---|
| 44 | */ |
---|
[e5a8118] | 45 | |
---|
[be7a180] | 46 | /* Some other version. |
---|
[e5a8118] | 47 | #define MSNP11_PROD_KEY "O4BG@C7BWLYQX?5G" |
---|
| 48 | #define MSNP11_PROD_ID "PROD01065C%ZFN6F" |
---|
[be7a180] | 49 | */ |
---|
| 50 | |
---|
[91d6e91] | 51 | #define MSNP11_PROD_KEY "ILTXC!4IXB5FB*PX" |
---|
| 52 | //PK}_A_0N_K%O?A9S" |
---|
| 53 | #define MSNP11_PROD_ID "PROD0119GSJUC$18" |
---|
| 54 | //PROD0114ES4Z%Q5W" |
---|
| 55 | #define MSNP_VER "MSNP15" |
---|
| 56 | #define MSNP_BUILD "8.5.1288" |
---|
| 57 | //"8.1.0178" |
---|
[21029d0] | 58 | |
---|
[b7d3cc34] | 59 | #define MSN_SB_NEW -24062002 |
---|
| 60 | |
---|
| 61 | #define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 62 | "Content-Type: text/plain; charset=UTF-8\r\n" \ |
---|
| 63 | "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \ |
---|
| 64 | "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \ |
---|
| 65 | "\r\n" |
---|
| 66 | |
---|
| 67 | #define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 68 | "Content-Type: text/x-msmsgscontrol\r\n" \ |
---|
| 69 | "TypingUser: %s\r\n" \ |
---|
| 70 | "\r\n\r\n" |
---|
| 71 | |
---|
[9bf2481] | 72 | #define SB_KEEPALIVE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
| 73 | "Content-Type: text/x-ping\r\n" \ |
---|
| 74 | "\r\n\r\n" |
---|
| 75 | |
---|
[b7d3cc34] | 76 | #define PROFILE_URL "http://members.msn.com/" |
---|
| 77 | |
---|
| 78 | struct msn_data |
---|
| 79 | { |
---|
[0da65d5] | 80 | struct im_connection *ic; |
---|
[b7d3cc34] | 81 | |
---|
| 82 | int fd; |
---|
| 83 | struct msn_handler_data *handler; |
---|
| 84 | |
---|
| 85 | int trId; |
---|
[91d6e91] | 86 | char *tokens[3]; |
---|
[e5a8118] | 87 | char *lock_key; |
---|
[b7d3cc34] | 88 | |
---|
[70ac477] | 89 | GSList *msgq, *grpq; |
---|
[b7d3cc34] | 90 | GSList *switchboards; |
---|
[59f527b6] | 91 | int sb_failures; |
---|
| 92 | time_t first_sb_failure; |
---|
[bc736cfa] | 93 | |
---|
[59f527b6] | 94 | const struct msn_away_state *away_state; |
---|
[ff27648] | 95 | GSList *groups; |
---|
[5a7af1b] | 96 | |
---|
| 97 | /* Mostly used for sending the ADL command; since MSNP13 the client |
---|
| 98 | is responsible for downloading the contact list and then sending |
---|
| 99 | it to the MSNP server. */ |
---|
[ca7de3a] | 100 | GTree *domaintree; |
---|
[5a7af1b] | 101 | int adl_todo; |
---|
[b7d3cc34] | 102 | }; |
---|
| 103 | |
---|
| 104 | struct msn_switchboard |
---|
| 105 | { |
---|
[0da65d5] | 106 | struct im_connection *ic; |
---|
[b7d3cc34] | 107 | |
---|
| 108 | int fd; |
---|
| 109 | gint inp; |
---|
| 110 | struct msn_handler_data *handler; |
---|
[9bf2481] | 111 | gint keepalive; |
---|
[b7d3cc34] | 112 | |
---|
| 113 | int trId; |
---|
| 114 | int ready; |
---|
| 115 | |
---|
| 116 | int session; |
---|
| 117 | char *key; |
---|
| 118 | |
---|
| 119 | GSList *msgq; |
---|
| 120 | char *who; |
---|
[0da65d5] | 121 | struct groupchat *chat; |
---|
[b7d3cc34] | 122 | }; |
---|
| 123 | |
---|
| 124 | struct msn_away_state |
---|
| 125 | { |
---|
| 126 | char code[4]; |
---|
| 127 | char name[16]; |
---|
| 128 | }; |
---|
| 129 | |
---|
| 130 | struct msn_status_code |
---|
| 131 | { |
---|
| 132 | int number; |
---|
| 133 | char *text; |
---|
| 134 | int flags; |
---|
| 135 | }; |
---|
| 136 | |
---|
| 137 | struct msn_message |
---|
| 138 | { |
---|
| 139 | char *who; |
---|
| 140 | char *text; |
---|
| 141 | }; |
---|
| 142 | |
---|
[70ac477] | 143 | struct msn_groupadd |
---|
| 144 | { |
---|
| 145 | char *who; |
---|
| 146 | char *group; |
---|
| 147 | }; |
---|
| 148 | |
---|
[b7d3cc34] | 149 | struct msn_handler_data |
---|
| 150 | { |
---|
| 151 | int fd; |
---|
| 152 | int rxlen; |
---|
| 153 | char *rxq; |
---|
| 154 | |
---|
| 155 | int msglen; |
---|
| 156 | char *cmd_text; |
---|
| 157 | |
---|
| 158 | gpointer data; |
---|
| 159 | |
---|
| 160 | int (*exec_command) ( gpointer data, char **cmd, int count ); |
---|
| 161 | int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count ); |
---|
| 162 | }; |
---|
| 163 | |
---|
[7f34ce2] | 164 | typedef enum |
---|
| 165 | { |
---|
[ca7de3a] | 166 | MSN_BUDDY_FL = 1, /* Warning: FL,AL,BL *must* be 1,2,4. */ |
---|
[7f34ce2] | 167 | MSN_BUDDY_AL = 2, |
---|
| 168 | MSN_BUDDY_BL = 4, |
---|
| 169 | MSN_BUDDY_RL = 8, |
---|
| 170 | MSN_BUDDY_PL = 16, |
---|
[5a7af1b] | 171 | MSN_BUDDY_ADL_SYNCED = 256, |
---|
[7f34ce2] | 172 | } msn_buddy_flags_t; |
---|
| 173 | |
---|
| 174 | struct msn_buddy_data |
---|
| 175 | { |
---|
| 176 | char *cid; |
---|
| 177 | msn_buddy_flags_t flags; |
---|
| 178 | }; |
---|
| 179 | |
---|
[ff27648] | 180 | struct msn_group |
---|
| 181 | { |
---|
| 182 | char *name; |
---|
| 183 | char *id; |
---|
| 184 | }; |
---|
| 185 | |
---|
[b7d3cc34] | 186 | /* Bitfield values for msn_status_code.flags */ |
---|
| 187 | #define STATUS_FATAL 1 |
---|
| 188 | #define STATUS_SB_FATAL 2 |
---|
[3b9390b] | 189 | #define STATUS_SB_IM_SPARE 4 /* Make one-to-one conversation switchboard available again, invite failed. */ |
---|
| 190 | #define STATUS_SB_CHAT_SPARE 8 /* Same, but also for groupchats (not used yet). */ |
---|
[b7d3cc34] | 191 | |
---|
[c6ca3ee] | 192 | extern int msn_chat_id; |
---|
[0196c47] | 193 | extern const struct msn_away_state msn_away_state_list[]; |
---|
| 194 | extern const struct msn_status_code msn_status_code_list[]; |
---|
[b7d3cc34] | 195 | |
---|
| 196 | /* Keep a list of all the active connections. We need these lists because |
---|
| 197 | "connected" callbacks might be called when the connection they belong too |
---|
| 198 | is down already (for example, when an impatient user disabled the |
---|
| 199 | connection), the callback should check whether it's still listed here |
---|
| 200 | before doing *anything* else. */ |
---|
[c6ca3ee] | 201 | extern GSList *msn_connections; |
---|
| 202 | extern GSList *msn_switchboards; |
---|
[b7d3cc34] | 203 | |
---|
| 204 | /* ns.c */ |
---|
[ba9edaa] | 205 | gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond ); |
---|
[660cb00] | 206 | void msn_auth_got_passport_token( struct im_connection *ic, const char *token, const char *error ); |
---|
[ca7de3a] | 207 | void msn_auth_got_contact_list( struct im_connection *ic ); |
---|
[b7d3cc34] | 208 | |
---|
| 209 | /* msn_util.c */ |
---|
[0da65d5] | 210 | int msn_write( struct im_connection *ic, char *s, int len ); |
---|
| 211 | int msn_logged_in( struct im_connection *ic ); |
---|
[193dc74] | 212 | int msn_buddy_list_add( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *realname_, const char *group ); |
---|
| 213 | int msn_buddy_list_remove( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *group ); |
---|
[e5854a8] | 214 | void msn_buddy_ask( bee_user_t *bu ); |
---|
[b7d3cc34] | 215 | char *msn_findheader( char *text, char *header, int len ); |
---|
| 216 | char **msn_linesplit( char *line ); |
---|
| 217 | int msn_handler( struct msn_handler_data *h ); |
---|
[46dca11] | 218 | void msn_msgq_purge( struct im_connection *ic, GSList **list ); |
---|
[21029d0] | 219 | char *msn_p11_challenge( char *challenge ); |
---|
[ca7de3a] | 220 | gint msn_domaintree_cmp( gconstpointer a_, gconstpointer b_ ); |
---|
[ff27648] | 221 | struct msn_group *msn_group_by_name( struct im_connection *ic, const char *name ); |
---|
| 222 | struct msn_group *msn_group_by_id( struct im_connection *ic, const char *id ); |
---|
[e0e1546] | 223 | int msn_ns_set_display_name( struct im_connection *ic, const char *value ); |
---|
[b7d3cc34] | 224 | |
---|
| 225 | /* tables.c */ |
---|
[0196c47] | 226 | const struct msn_away_state *msn_away_state_by_number( int number ); |
---|
| 227 | const struct msn_away_state *msn_away_state_by_code( char *code ); |
---|
| 228 | const struct msn_away_state *msn_away_state_by_name( char *name ); |
---|
| 229 | const struct msn_status_code *msn_status_by_number( int number ); |
---|
[b7d3cc34] | 230 | |
---|
| 231 | /* sb.c */ |
---|
| 232 | int msn_sb_write( struct msn_switchboard *sb, char *s, int len ); |
---|
[0da65d5] | 233 | struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session ); |
---|
| 234 | struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle ); |
---|
| 235 | struct msn_switchboard *msn_sb_by_chat( struct groupchat *c ); |
---|
| 236 | struct msn_switchboard *msn_sb_spare( struct im_connection *ic ); |
---|
[b7d3cc34] | 237 | int msn_sb_sendmessage( struct msn_switchboard *sb, char *text ); |
---|
[0da65d5] | 238 | struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb ); |
---|
[b7d3cc34] | 239 | void msn_sb_destroy( struct msn_switchboard *sb ); |
---|
[ba9edaa] | 240 | gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond ); |
---|
[a830512] | 241 | int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m ); |
---|
[bb839e8] | 242 | void msn_sb_start_keepalives( struct msn_switchboard *sb, gboolean initial ); |
---|
| 243 | void msn_sb_stop_keepalives( struct msn_switchboard *sb ); |
---|
[a830512] | 244 | |
---|
| 245 | #endif //_MSN_H |
---|