6513
|
1 /**
|
|
2 * @file yahoo.h The Yahoo! protocol plugin
|
|
3 *
|
|
4 * gaim
|
|
5 *
|
8046
|
6 * Gaim is the legal property of its developers, whose names are too numerous
|
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this
|
|
8 * source distribution.
|
6513
|
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
|
|
21 * along with this program; if not, write to the Free Software
|
|
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
23 */
|
|
24
|
|
25 #ifndef _YAHOO_H_
|
|
26 #define _YAHOO_H_
|
|
27
|
6784
|
28 #include "prpl.h"
|
|
29
|
7883
|
30 #define YAHOO_PAGER_HOST "scs.msg.yahoo.com"
|
7827
|
31 #define YAHOO_PAGER_PORT 5050
|
|
32 #define YAHOO_PROFILE_URL "http://profiles.yahoo.com/"
|
7651
|
33 #define YAHOO_XFER_HOST "filetransfer.msg.yahoo.com"
|
|
34 #define YAHOO_XFER_PORT 80
|
8113
|
35 #define YAHOO_ROOMLIST_URL "http://insider.msg.yahoo.com/ycontent/"
|
7651
|
36
|
7134
|
37 #define WEBMESSENGER_URL "http://login.yahoo.com/config/login?.src=pg"
|
|
38
|
6729
|
39 enum yahoo_service { /* these are easier to see in hex */
|
|
40 YAHOO_SERVICE_LOGON = 1,
|
|
41 YAHOO_SERVICE_LOGOFF,
|
|
42 YAHOO_SERVICE_ISAWAY,
|
|
43 YAHOO_SERVICE_ISBACK,
|
|
44 YAHOO_SERVICE_IDLE, /* 5 (placemarker) */
|
|
45 YAHOO_SERVICE_MESSAGE,
|
|
46 YAHOO_SERVICE_IDACT,
|
|
47 YAHOO_SERVICE_IDDEACT,
|
|
48 YAHOO_SERVICE_MAILSTAT,
|
|
49 YAHOO_SERVICE_USERSTAT, /* 0xa */
|
|
50 YAHOO_SERVICE_NEWMAIL,
|
|
51 YAHOO_SERVICE_CHATINVITE,
|
|
52 YAHOO_SERVICE_CALENDAR,
|
|
53 YAHOO_SERVICE_NEWPERSONALMAIL,
|
|
54 YAHOO_SERVICE_NEWCONTACT,
|
|
55 YAHOO_SERVICE_ADDIDENT, /* 0x10 */
|
|
56 YAHOO_SERVICE_ADDIGNORE,
|
|
57 YAHOO_SERVICE_PING,
|
|
58 YAHOO_SERVICE_GOTGROUPRENAME,
|
|
59 YAHOO_SERVICE_SYSMESSAGE = 0x14,
|
|
60 YAHOO_SERVICE_PASSTHROUGH2 = 0x16,
|
|
61 YAHOO_SERVICE_CONFINVITE = 0x18,
|
|
62 YAHOO_SERVICE_CONFLOGON,
|
|
63 YAHOO_SERVICE_CONFDECLINE,
|
|
64 YAHOO_SERVICE_CONFLOGOFF,
|
|
65 YAHOO_SERVICE_CONFADDINVITE,
|
|
66 YAHOO_SERVICE_CONFMSG,
|
|
67 YAHOO_SERVICE_CHATLOGON,
|
|
68 YAHOO_SERVICE_CHATLOGOFF,
|
|
69 YAHOO_SERVICE_CHATMSG = 0x20,
|
|
70 YAHOO_SERVICE_GAMELOGON = 0x28,
|
|
71 YAHOO_SERVICE_GAMELOGOFF,
|
|
72 YAHOO_SERVICE_GAMEMSG = 0x2a,
|
|
73 YAHOO_SERVICE_FILETRANSFER = 0x46,
|
|
74 YAHOO_SERVICE_VOICECHAT = 0x4A,
|
|
75 YAHOO_SERVICE_NOTIFY = 0x4B,
|
|
76 YAHOO_SERVICE_VERIFY,
|
|
77 YAHOO_SERVICE_P2PFILEXFER,
|
|
78 YAHOO_SERVICE_PEEPTOPEER = 0x4F,
|
|
79 YAHOO_SERVICE_WEBCAM,
|
|
80 YAHOO_SERVICE_AUTHRESP = 0x54,
|
|
81 YAHOO_SERVICE_LIST = 0x55,
|
|
82 YAHOO_SERVICE_AUTH = 0x57,
|
|
83 YAHOO_SERVICE_ADDBUDDY = 0x83,
|
|
84 YAHOO_SERVICE_REMBUDDY = 0x84,
|
|
85 YAHOO_SERVICE_IGNORECONTACT, /* > 1, 7, 13 < 1, 66, 13, 0*/
|
|
86 YAHOO_SERVICE_REJECTCONTACT,
|
|
87 YAHOO_SERVICE_GROUPRENAME = 0x89, /* > 1, 65(new), 66(0), 67(old) */
|
6847
|
88 /* YAHOO_SERVICE_??? = 0x8A, */
|
6729
|
89 YAHOO_SERVICE_CHATONLINE = 0x96, /* > 109(id), 1, 6(abcde) < 0,1*/
|
|
90 YAHOO_SERVICE_CHATGOTO,
|
|
91 YAHOO_SERVICE_CHATJOIN, /* > 1 104-room 129-1600326591 62-2 */
|
|
92 YAHOO_SERVICE_CHATLEAVE,
|
|
93 YAHOO_SERVICE_CHATEXIT = 0x9b,
|
|
94 YAHOO_SERVICE_CHATADDINVITE = 0x9d,
|
|
95 YAHOO_SERVICE_CHATLOGOUT = 0xa0,
|
|
96 YAHOO_SERVICE_CHATPING,
|
7134
|
97 YAHOO_SERVICE_COMMENT = 0xa8,
|
|
98 YAHOO_SERVICE_WEBLOGIN = 0x0226
|
6729
|
99 };
|
6513
|
100
|
6729
|
101 enum yahoo_status {
|
|
102 YAHOO_STATUS_AVAILABLE = 0,
|
|
103 YAHOO_STATUS_BRB,
|
|
104 YAHOO_STATUS_BUSY,
|
|
105 YAHOO_STATUS_NOTATHOME,
|
|
106 YAHOO_STATUS_NOTATDESK,
|
|
107 YAHOO_STATUS_NOTINOFFICE,
|
|
108 YAHOO_STATUS_ONPHONE,
|
|
109 YAHOO_STATUS_ONVACATION,
|
|
110 YAHOO_STATUS_OUTTOLUNCH,
|
|
111 YAHOO_STATUS_STEPPEDOUT,
|
|
112 YAHOO_STATUS_INVISIBLE = 12,
|
|
113 YAHOO_STATUS_CUSTOM = 99,
|
|
114 YAHOO_STATUS_IDLE = 999,
|
7134
|
115 YAHOO_STATUS_WEBLOGIN = 0x5a55aa55,
|
6729
|
116 YAHOO_STATUS_OFFLINE = 0x5a55aa56, /* don't ask */
|
|
117 YAHOO_STATUS_TYPING = 0x16
|
|
118 };
|
|
119
|
|
120 struct yahoo_data {
|
|
121 int fd;
|
|
122 guchar *rxqueue;
|
|
123 int rxlen;
|
6784
|
124 GHashTable *friends;
|
6729
|
125 int current_status;
|
|
126 gboolean logged_in;
|
6784
|
127 GString *tmp_serv_blist, *tmp_serv_ilist;
|
6729
|
128 GSList *confs;
|
|
129 unsigned int conf_id; /* just a counter */
|
|
130 gboolean chat_online;
|
|
131 gboolean in_chat;
|
|
132 char *chat_name;
|
7134
|
133 char *auth;
|
7651
|
134 char *cookie_y;
|
|
135 char *cookie_t;
|
|
136 int session_id;
|
6729
|
137 };
|
|
138
|
|
139 struct yahoo_pair {
|
|
140 int key;
|
|
141 char *value;
|
|
142 };
|
|
143
|
|
144 struct yahoo_packet {
|
|
145 guint16 service;
|
|
146 guint32 status;
|
|
147 guint32 id;
|
|
148 GSList *hash;
|
|
149 };
|
|
150
|
6784
|
151 struct yahoo_friend { /* we'll call them friends, so we don't confuse them with GaimBuddy */
|
|
152 enum yahoo_status status;
|
|
153 char *msg;
|
|
154 char *game;
|
|
155 int idle;
|
|
156 int away;
|
|
157 gboolean sms;
|
|
158 };
|
|
159
|
6895
|
160 #define YAHOO_MAX_STATUS_MESSAGE_LENGTH (48)
|
6847
|
161
|
7651
|
162 #ifdef YAHOO_WEBMESSENGER
|
|
163 #define YAHOO_PROTO_VER 0x0065
|
|
164 #else
|
|
165 #define YAHOO_PROTO_VER 0x000b
|
|
166 #endif
|
|
167
|
|
168 #define YAHOO_PACKET_HDRLEN (4 + 2 + 2 + 2 + 2 + 4 + 4)
|
|
169
|
|
170 /* sometimes i wish prpls could #include things from other prpls. then i could just
|
|
171 * use the routines from libfaim and not have to admit to knowing how they work. */
|
|
172 #define yahoo_put16(buf, data) ( \
|
|
173 (*(buf) = (unsigned char)((data)>>8)&0xff), \
|
|
174 (*((buf)+1) = (unsigned char)(data)&0xff), \
|
|
175 2)
|
|
176 #define yahoo_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff))
|
|
177 #define yahoo_put32(buf, data) ( \
|
|
178 (*((buf)) = (unsigned char)((data)>>24)&0xff), \
|
|
179 (*((buf)+1) = (unsigned char)((data)>>16)&0xff), \
|
|
180 (*((buf)+2) = (unsigned char)((data)>>8)&0xff), \
|
|
181 (*((buf)+3) = (unsigned char)(data)&0xff), \
|
|
182 4)
|
|
183 #define yahoo_get32(buf) ((((*(buf))<<24)&0xff000000) + \
|
|
184 (((*((buf)+1))<<16)&0x00ff0000) + \
|
|
185 (((*((buf)+2))<< 8)&0x0000ff00) + \
|
|
186 (((*((buf)+3) )&0x000000ff)))
|
|
187
|
|
188
|
6729
|
189 struct yahoo_packet *yahoo_packet_new(enum yahoo_service service, enum yahoo_status status, int id);
|
|
190 void yahoo_packet_hash(struct yahoo_packet *pkt, int key, const char *value);
|
|
191 int yahoo_send_packet(struct yahoo_data *yd, struct yahoo_packet *pkt);
|
7651
|
192 void yahoo_packet_write(struct yahoo_packet *pkt, guchar *data);
|
|
193 int yahoo_packet_length(struct yahoo_packet *pkt);
|
6729
|
194 void yahoo_packet_free(struct yahoo_packet *pkt);
|
|
195
|
|
196 /* util.c */
|
6513
|
197 void yahoo_init_colorht();
|
|
198 void yahoo_dest_colorht();
|
6629
|
199 char *yahoo_codes_to_html(const char *x);
|
|
200 char *yahoo_html_to_codes(const char *src);
|
6513
|
201
|
7827
|
202 /**
|
|
203 * Encode some text to send to the yahoo server.
|
|
204 *
|
|
205 * @param gc The connection handle.
|
|
206 * @param str The null terminated utf8 string to encode.
|
|
207 * @param utf8 If not @c NULL, whether utf8 is okay or not.
|
|
208 * Even if it is okay, we may not use it. If we
|
|
209 * used it, we set this to @c TRUE, else to
|
|
210 * @c FALSE. If @c NULL, false is assumed, and
|
|
211 * it is not dereferenced.
|
|
212 * @return The g_malloced string in the appropriate encoding.
|
|
213 */
|
|
214 char *yahoo_string_encode(GaimConnection *gc, const char *str, gboolean *utf8);
|
|
215
|
|
216 /**
|
|
217 * Decode some text received from the server.
|
|
218 *
|
|
219 * @param gc The gc handle.
|
|
220 * @param str The null terminated string to decode.
|
|
221 * @param utf8 Did the server tell us it was supposed to be utf8?
|
|
222 * @return The decoded, utf-8 string, which must be g_free()'d.
|
|
223 */
|
|
224 char *yahoo_string_decode(GaimConnection *gc, const char *str, gboolean utf8);
|
|
225
|
6513
|
226 #endif /* _YAHOO_H_ */
|