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 */ |
---|
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 | #ifndef _MSN_H |
---|
27 | #define _MSN_H |
---|
28 | |
---|
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" |
---|
33 | |
---|
34 | #ifdef DEBUG_MSN |
---|
35 | #define debug( text... ) imcb_log( ic, text ); |
---|
36 | #else |
---|
37 | #define debug( text... ) |
---|
38 | #endif |
---|
39 | |
---|
40 | #define QRY_NAME "msmsgs@msnmsgr.com" |
---|
41 | #define QRY_CODE "Q1P7W2E4J9R8U3S5" |
---|
42 | |
---|
43 | #define MSN_SB_NEW -24062002 |
---|
44 | |
---|
45 | #define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
46 | "Content-Type: text/plain; charset=UTF-8\r\n" \ |
---|
47 | "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \ |
---|
48 | "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \ |
---|
49 | "\r\n" |
---|
50 | |
---|
51 | #define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \ |
---|
52 | "Content-Type: text/x-msmsgscontrol\r\n" \ |
---|
53 | "TypingUser: %s\r\n" \ |
---|
54 | "\r\n\r\n" |
---|
55 | |
---|
56 | #define PROFILE_URL "http://members.msn.com/" |
---|
57 | |
---|
58 | struct msn_data |
---|
59 | { |
---|
60 | struct im_connection *ic; |
---|
61 | |
---|
62 | int fd; |
---|
63 | struct msn_handler_data *handler; |
---|
64 | |
---|
65 | int trId; |
---|
66 | |
---|
67 | GSList *msgq; |
---|
68 | GSList *switchboards; |
---|
69 | int sb_failures; |
---|
70 | time_t first_sb_failure; |
---|
71 | GSList *filetransfers; |
---|
72 | |
---|
73 | const struct msn_away_state *away_state; |
---|
74 | int buddycount; |
---|
75 | int groupcount; |
---|
76 | char **grouplist; |
---|
77 | }; |
---|
78 | |
---|
79 | struct msn_switchboard |
---|
80 | { |
---|
81 | struct im_connection *ic; |
---|
82 | |
---|
83 | int fd; |
---|
84 | gint inp; |
---|
85 | struct msn_handler_data *handler; |
---|
86 | |
---|
87 | int trId; |
---|
88 | int ready; |
---|
89 | |
---|
90 | int session; |
---|
91 | char *key; |
---|
92 | |
---|
93 | GSList *msgq; |
---|
94 | char *who; |
---|
95 | struct groupchat *chat; |
---|
96 | }; |
---|
97 | |
---|
98 | struct msn_away_state |
---|
99 | { |
---|
100 | char code[4]; |
---|
101 | char name[16]; |
---|
102 | }; |
---|
103 | |
---|
104 | struct msn_status_code |
---|
105 | { |
---|
106 | int number; |
---|
107 | char *text; |
---|
108 | int flags; |
---|
109 | }; |
---|
110 | |
---|
111 | struct msn_message |
---|
112 | { |
---|
113 | char *who; |
---|
114 | char *text; |
---|
115 | }; |
---|
116 | |
---|
117 | struct msn_handler_data |
---|
118 | { |
---|
119 | int fd; |
---|
120 | int rxlen; |
---|
121 | char *rxq; |
---|
122 | |
---|
123 | int msglen; |
---|
124 | char *cmd_text; |
---|
125 | |
---|
126 | gpointer data; |
---|
127 | |
---|
128 | int (*exec_command) ( gpointer data, char **cmd, int count ); |
---|
129 | int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count ); |
---|
130 | }; |
---|
131 | |
---|
132 | /* Bitfield values for msn_status_code.flags */ |
---|
133 | #define STATUS_FATAL 1 |
---|
134 | #define STATUS_SB_FATAL 2 |
---|
135 | #define STATUS_SB_IM_SPARE 4 /* Make one-to-one conversation switchboard available again, invite failed. */ |
---|
136 | #define STATUS_SB_CHAT_SPARE 8 /* Same, but also for groupchats (not used yet). */ |
---|
137 | |
---|
138 | extern int msn_chat_id; |
---|
139 | extern const struct msn_away_state msn_away_state_list[]; |
---|
140 | extern const struct msn_status_code msn_status_code_list[]; |
---|
141 | |
---|
142 | /* Keep a list of all the active connections. We need these lists because |
---|
143 | "connected" callbacks might be called when the connection they belong too |
---|
144 | is down already (for example, when an impatient user disabled the |
---|
145 | connection), the callback should check whether it's still listed here |
---|
146 | before doing *anything* else. */ |
---|
147 | extern GSList *msn_connections; |
---|
148 | extern GSList *msn_switchboards; |
---|
149 | |
---|
150 | /* ns.c */ |
---|
151 | gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond ); |
---|
152 | |
---|
153 | /* msn_util.c */ |
---|
154 | int msn_write( struct im_connection *ic, char *s, int len ); |
---|
155 | int msn_logged_in( struct im_connection *ic ); |
---|
156 | int msn_buddy_list_add( struct im_connection *ic, char *list, char *who, char *realname ); |
---|
157 | int msn_buddy_list_remove( struct im_connection *ic, char *list, char *who ); |
---|
158 | void msn_buddy_ask( struct im_connection *ic, char *handle, char *realname ); |
---|
159 | char *msn_findheader( char *text, char *header, int len ); |
---|
160 | char **msn_linesplit( char *line ); |
---|
161 | int msn_handler( struct msn_handler_data *h ); |
---|
162 | char *msn_http_encode( const char *input ); |
---|
163 | void msn_msgq_purge( struct im_connection *ic, GSList **list ); |
---|
164 | |
---|
165 | /* tables.c */ |
---|
166 | const struct msn_away_state *msn_away_state_by_number( int number ); |
---|
167 | const struct msn_away_state *msn_away_state_by_code( char *code ); |
---|
168 | const struct msn_away_state *msn_away_state_by_name( char *name ); |
---|
169 | const struct msn_status_code *msn_status_by_number( int number ); |
---|
170 | |
---|
171 | /* sb.c */ |
---|
172 | int msn_sb_write( struct msn_switchboard *sb, char *s, int len ); |
---|
173 | struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session ); |
---|
174 | struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle ); |
---|
175 | struct msn_switchboard *msn_sb_by_chat( struct groupchat *c ); |
---|
176 | struct msn_switchboard *msn_sb_spare( struct im_connection *ic ); |
---|
177 | int msn_sb_sendmessage( struct msn_switchboard *sb, char *text ); |
---|
178 | struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb ); |
---|
179 | void msn_sb_destroy( struct msn_switchboard *sb ); |
---|
180 | gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond ); |
---|
181 | int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m ); |
---|
182 | |
---|
183 | /* invitation.c */ |
---|
184 | void msn_ftp_transfer_request( struct im_connection *ic, file_transfer_t *ft, char *who ); |
---|
185 | |
---|
186 | #endif //_MSN_H |
---|