Wed, 02 Jun 2004 00:44:51 +0000
[gaim-migrate @ 9946]
wing added support for yahoo profiles in, well pretty much every language.
Looks pretty impressive to me.
Someone may want to double check his src/util.c changes. I think we have
some crazy patch writers who know those functions better than me.
This also introduces a couple of warning because wing didn't add his new
util.c function to util.h. Rather than adding it myself, I'm going to bug
him to add it and document it.
| 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, |
| 9062 | 98 | YAHOO_SERVICE_PICTURE = 0xbe, |
| 99 | YAHOO_SERVICE_PICTURE_UPDATE = 0xc1, | |
| 7134 | 100 | YAHOO_SERVICE_WEBLOGIN = 0x0226 |
| 6729 | 101 | }; |
| 6513 | 102 | |
| 6729 | 103 | enum yahoo_status { |
| 104 | YAHOO_STATUS_AVAILABLE = 0, | |
| 105 | YAHOO_STATUS_BRB, | |
| 106 | YAHOO_STATUS_BUSY, | |
| 107 | YAHOO_STATUS_NOTATHOME, | |
| 108 | YAHOO_STATUS_NOTATDESK, | |
| 109 | YAHOO_STATUS_NOTINOFFICE, | |
| 110 | YAHOO_STATUS_ONPHONE, | |
| 111 | YAHOO_STATUS_ONVACATION, | |
| 112 | YAHOO_STATUS_OUTTOLUNCH, | |
| 113 | YAHOO_STATUS_STEPPEDOUT, | |
| 114 | YAHOO_STATUS_INVISIBLE = 12, | |
| 115 | YAHOO_STATUS_CUSTOM = 99, | |
| 116 | YAHOO_STATUS_IDLE = 999, | |
| 7134 | 117 | YAHOO_STATUS_WEBLOGIN = 0x5a55aa55, |
| 6729 | 118 | YAHOO_STATUS_OFFLINE = 0x5a55aa56, /* don't ask */ |
| 119 | YAHOO_STATUS_TYPING = 0x16 | |
| 120 | }; | |
| 121 | ||
| 122 | struct yahoo_data { | |
| 123 | int fd; | |
| 124 | guchar *rxqueue; | |
| 125 | int rxlen; | |
| 6784 | 126 | GHashTable *friends; |
| 6729 | 127 | int current_status; |
| 128 | gboolean logged_in; | |
| 6784 | 129 | GString *tmp_serv_blist, *tmp_serv_ilist; |
| 6729 | 130 | GSList *confs; |
| 131 | unsigned int conf_id; /* just a counter */ | |
| 132 | gboolean chat_online; | |
| 133 | gboolean in_chat; | |
| 134 | char *chat_name; | |
| 7134 | 135 | char *auth; |
| 7651 | 136 | char *cookie_y; |
| 137 | char *cookie_t; | |
| 138 | int session_id; | |
| 6729 | 139 | }; |
| 140 | ||
| 141 | struct yahoo_pair { | |
| 142 | int key; | |
| 143 | char *value; | |
| 144 | }; | |
| 145 | ||
| 146 | struct yahoo_packet { | |
| 147 | guint16 service; | |
| 148 | guint32 status; | |
| 149 | guint32 id; | |
| 150 | GSList *hash; | |
| 151 | }; | |
| 152 | ||
| 6784 | 153 | struct yahoo_friend { /* we'll call them friends, so we don't confuse them with GaimBuddy */ |
| 154 | enum yahoo_status status; | |
| 155 | char *msg; | |
| 156 | char *game; | |
| 157 | int idle; | |
| 158 | int away; | |
| 159 | gboolean sms; | |
| 160 | }; | |
| 161 | ||
| 6895 | 162 | #define YAHOO_MAX_STATUS_MESSAGE_LENGTH (48) |
| 6847 | 163 | |
| 7651 | 164 | #ifdef YAHOO_WEBMESSENGER |
| 165 | #define YAHOO_PROTO_VER 0x0065 | |
| 166 | #else | |
| 167 | #define YAHOO_PROTO_VER 0x000b | |
| 168 | #endif | |
| 169 | ||
| 170 | #define YAHOO_PACKET_HDRLEN (4 + 2 + 2 + 2 + 2 + 4 + 4) | |
| 171 | ||
| 172 | /* sometimes i wish prpls could #include things from other prpls. then i could just | |
| 173 | * use the routines from libfaim and not have to admit to knowing how they work. */ | |
| 174 | #define yahoo_put16(buf, data) ( \ | |
| 175 | (*(buf) = (unsigned char)((data)>>8)&0xff), \ | |
| 176 | (*((buf)+1) = (unsigned char)(data)&0xff), \ | |
| 177 | 2) | |
| 178 | #define yahoo_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) | |
| 179 | #define yahoo_put32(buf, data) ( \ | |
| 180 | (*((buf)) = (unsigned char)((data)>>24)&0xff), \ | |
| 181 | (*((buf)+1) = (unsigned char)((data)>>16)&0xff), \ | |
| 182 | (*((buf)+2) = (unsigned char)((data)>>8)&0xff), \ | |
| 183 | (*((buf)+3) = (unsigned char)(data)&0xff), \ | |
| 184 | 4) | |
| 185 | #define yahoo_get32(buf) ((((*(buf))<<24)&0xff000000) + \ | |
| 186 | (((*((buf)+1))<<16)&0x00ff0000) + \ | |
| 187 | (((*((buf)+2))<< 8)&0x0000ff00) + \ | |
| 188 | (((*((buf)+3) )&0x000000ff))) | |
| 189 | ||
| 190 | ||
| 6729 | 191 | struct yahoo_packet *yahoo_packet_new(enum yahoo_service service, enum yahoo_status status, int id); |
| 192 | void yahoo_packet_hash(struct yahoo_packet *pkt, int key, const char *value); | |
| 193 | int yahoo_send_packet(struct yahoo_data *yd, struct yahoo_packet *pkt); | |
| 7651 | 194 | void yahoo_packet_write(struct yahoo_packet *pkt, guchar *data); |
| 195 | int yahoo_packet_length(struct yahoo_packet *pkt); | |
| 6729 | 196 | void yahoo_packet_free(struct yahoo_packet *pkt); |
| 197 | ||
| 198 | /* util.c */ | |
| 6513 | 199 | void yahoo_init_colorht(); |
| 200 | void yahoo_dest_colorht(); | |
| 6629 | 201 | char *yahoo_codes_to_html(const char *x); |
| 202 | char *yahoo_html_to_codes(const char *src); | |
| 6513 | 203 | |
| 7827 | 204 | /** |
| 205 | * Encode some text to send to the yahoo server. | |
| 206 | * | |
| 207 | * @param gc The connection handle. | |
| 208 | * @param str The null terminated utf8 string to encode. | |
| 209 | * @param utf8 If not @c NULL, whether utf8 is okay or not. | |
| 210 | * Even if it is okay, we may not use it. If we | |
| 211 | * used it, we set this to @c TRUE, else to | |
| 212 | * @c FALSE. If @c NULL, false is assumed, and | |
| 213 | * it is not dereferenced. | |
| 214 | * @return The g_malloced string in the appropriate encoding. | |
| 215 | */ | |
| 216 | char *yahoo_string_encode(GaimConnection *gc, const char *str, gboolean *utf8); | |
| 217 | ||
| 218 | /** | |
| 219 | * Decode some text received from the server. | |
| 220 | * | |
| 221 | * @param gc The gc handle. | |
| 222 | * @param str The null terminated string to decode. | |
| 223 | * @param utf8 Did the server tell us it was supposed to be utf8? | |
| 224 | * @return The decoded, utf-8 string, which must be g_free()'d. | |
| 225 | */ | |
| 226 | char *yahoo_string_decode(GaimConnection *gc, const char *str, gboolean utf8); | |
| 227 | ||
| 9161 | 228 | /* yahoo_profile.c */ |
| 229 | void yahoo_get_info(GaimConnection *gc, const char *name); | |
| 230 | ||
| 6513 | 231 | #endif /* _YAHOO_H_ */ |