Mercurial > pidgin
annotate src/protocols/yahoo/yahoo.c @ 6540:eae61831e596
[gaim-migrate @ 7062]
Improved the buddy list perl API a bit.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Thu, 21 Aug 2003 02:38:05 +0000 |
| parents | 7c14b35bc984 |
| children | e34907332e46 |
| rev | line source |
|---|---|
| 2681 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4 * Some code copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
| 5 * libfaim code copyright 1998, 1999 Adam Fritzler <afritz@auk.cx> | |
| 6 * | |
| 7 * This program is free software; you can redistribute it and/or modify | |
| 8 * it under the terms of the GNU General Public License as published by | |
| 9 * the Free Software Foundation; either version 2 of the License, or | |
| 10 * (at your option) any later version. | |
| 11 * | |
| 12 * This program is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 * GNU General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU General Public License | |
| 18 * along with this program; if not, write to the Free Software | |
| 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 20 * | |
| 21 */ | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
22 #include "internal.h" |
| 2681 | 23 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
24 #include "account.h" |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
25 #include "accountopt.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
26 #include "debug.h" |
| 2681 | 27 #include "multi.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
28 #include "notify.h" |
| 2681 | 29 #include "prpl.h" |
| 30 #include "proxy.h" | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
31 #include "request.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
32 #include "server.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
33 #include "util.h" |
|
6115
11bedb793a44
[gaim-migrate @ 6578]
Christian Hammond <chipx86@chipx86.com>
parents:
6069
diff
changeset
|
34 #include "html.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
35 |
| 6513 | 36 #include "yahoo.h" |
| 3147 | 37 #include "md5.h" |
| 2681 | 38 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
39 /* XXX */ |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
40 #include "gtkinternal.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
41 #include "ui.h" |
| 3630 | 42 |
| 5583 | 43 extern char *yahoo_crypt(const char *, const char *); |
|
2795
536bb833fdeb
[gaim-migrate @ 2808]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2786
diff
changeset
|
44 |
|
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
45 /* #define YAHOO_DEBUG */ |
| 2681 | 46 |
| 47 #define USEROPT_MAIL 0 | |
| 48 | |
| 3147 | 49 #define YAHOO_PAGER_HOST "scs.yahoo.com" |
| 2681 | 50 #define YAHOO_PAGER_PORT 5050 |
| 6514 | 51 #define YAHOO_PROFILE_URL "http://profiles.yahoo.com/" |
| 2681 | 52 |
| 3467 | 53 #define YAHOO_PROTO_VER 0x0900 |
| 54 | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
55 enum yahoo_service { /* these are easier to see in hex */ |
| 2681 | 56 YAHOO_SERVICE_LOGON = 1, |
| 57 YAHOO_SERVICE_LOGOFF, | |
| 58 YAHOO_SERVICE_ISAWAY, | |
| 59 YAHOO_SERVICE_ISBACK, | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
60 YAHOO_SERVICE_IDLE, /* 5 (placemarker) */ |
| 2681 | 61 YAHOO_SERVICE_MESSAGE, |
| 62 YAHOO_SERVICE_IDACT, | |
| 63 YAHOO_SERVICE_IDDEACT, | |
| 64 YAHOO_SERVICE_MAILSTAT, | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
65 YAHOO_SERVICE_USERSTAT, /* 0xa */ |
| 2681 | 66 YAHOO_SERVICE_NEWMAIL, |
| 67 YAHOO_SERVICE_CHATINVITE, | |
| 68 YAHOO_SERVICE_CALENDAR, | |
| 69 YAHOO_SERVICE_NEWPERSONALMAIL, | |
| 70 YAHOO_SERVICE_NEWCONTACT, | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
71 YAHOO_SERVICE_ADDIDENT, /* 0x10 */ |
| 2681 | 72 YAHOO_SERVICE_ADDIGNORE, |
| 73 YAHOO_SERVICE_PING, | |
| 74 YAHOO_SERVICE_GROUPRENAME, | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
75 YAHOO_SERVICE_SYSMESSAGE = 0x14, |
|
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
76 YAHOO_SERVICE_PASSTHROUGH2 = 0x16, |
|
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
77 YAHOO_SERVICE_CONFINVITE = 0x18, |
| 2681 | 78 YAHOO_SERVICE_CONFLOGON, |
| 79 YAHOO_SERVICE_CONFDECLINE, | |
| 80 YAHOO_SERVICE_CONFLOGOFF, | |
| 81 YAHOO_SERVICE_CONFADDINVITE, | |
| 82 YAHOO_SERVICE_CONFMSG, | |
| 83 YAHOO_SERVICE_CHATLOGON, | |
| 84 YAHOO_SERVICE_CHATLOGOFF, | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
85 YAHOO_SERVICE_CHATMSG = 0x20, |
|
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
86 YAHOO_SERVICE_GAMELOGON = 0x28, |
|
2786
318f846120e2
[gaim-migrate @ 2799]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2772
diff
changeset
|
87 YAHOO_SERVICE_GAMELOGOFF, |
|
318f846120e2
[gaim-migrate @ 2799]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2772
diff
changeset
|
88 YAHOO_SERVICE_GAMEMSG = 0x2a, |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
89 YAHOO_SERVICE_FILETRANSFER = 0x46, |
| 3019 | 90 YAHOO_SERVICE_NOTIFY = 0x4B, |
| 3147 | 91 YAHOO_SERVICE_AUTHRESP = 0x54, |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
92 YAHOO_SERVICE_LIST = 0x55, |
| 3147 | 93 YAHOO_SERVICE_AUTH = 0x57, |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
94 YAHOO_SERVICE_ADDBUDDY = 0x83, |
|
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
95 YAHOO_SERVICE_REMBUDDY = 0x84 |
| 2681 | 96 }; |
| 97 | |
| 98 enum yahoo_status { | |
|
2686
7b21c5446baf
[gaim-migrate @ 2699]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2683
diff
changeset
|
99 YAHOO_STATUS_AVAILABLE = 0, |
| 2681 | 100 YAHOO_STATUS_BRB, |
| 101 YAHOO_STATUS_BUSY, | |
| 102 YAHOO_STATUS_NOTATHOME, | |
| 103 YAHOO_STATUS_NOTATDESK, | |
| 104 YAHOO_STATUS_NOTINOFFICE, | |
| 105 YAHOO_STATUS_ONPHONE, | |
| 106 YAHOO_STATUS_ONVACATION, | |
| 107 YAHOO_STATUS_OUTTOLUNCH, | |
| 108 YAHOO_STATUS_STEPPEDOUT, | |
| 109 YAHOO_STATUS_INVISIBLE = 12, | |
| 110 YAHOO_STATUS_CUSTOM = 99, | |
| 111 YAHOO_STATUS_IDLE = 999, | |
| 2993 | 112 YAHOO_STATUS_OFFLINE = 0x5a55aa56, /* don't ask */ |
| 113 YAHOO_STATUS_TYPING = 0x16 | |
| 2681 | 114 }; |
| 3019 | 115 #define YAHOO_STATUS_GAME 0x2 /* Games don't fit into the regular status model */ |
| 2681 | 116 |
| 117 struct yahoo_data { | |
| 118 int fd; | |
| 119 guchar *rxqueue; | |
| 120 int rxlen; | |
| 121 GHashTable *hash; | |
| 3019 | 122 GHashTable *games; |
| 2681 | 123 int current_status; |
| 124 gboolean logged_in; | |
| 125 }; | |
| 126 | |
| 127 struct yahoo_pair { | |
| 128 int key; | |
| 129 char *value; | |
| 130 }; | |
| 131 | |
| 132 struct yahoo_packet { | |
| 133 guint16 service; | |
| 134 guint32 status; | |
| 135 guint32 id; | |
| 136 GSList *hash; | |
| 137 }; | |
| 138 | |
| 139 #define YAHOO_PACKET_HDRLEN (4 + 2 + 2 + 2 + 2 + 4 + 4) | |
| 140 | |
| 141 static struct yahoo_packet *yahoo_packet_new(enum yahoo_service service, enum yahoo_status status, int id) | |
| 142 { | |
| 143 struct yahoo_packet *pkt = g_new0(struct yahoo_packet, 1); | |
| 144 | |
| 145 pkt->service = service; | |
| 146 pkt->status = status; | |
| 147 pkt->id = id; | |
| 148 | |
| 149 return pkt; | |
| 150 } | |
| 151 | |
| 3466 | 152 static void yahoo_packet_hash(struct yahoo_packet *pkt, int key, const char *value) |
| 2681 | 153 { |
| 154 struct yahoo_pair *pair = g_new0(struct yahoo_pair, 1); | |
| 155 pair->key = key; | |
| 156 pair->value = g_strdup(value); | |
| 157 pkt->hash = g_slist_append(pkt->hash, pair); | |
| 158 } | |
| 159 | |
| 160 static int yahoo_packet_length(struct yahoo_packet *pkt) | |
| 161 { | |
| 162 GSList *l; | |
| 163 | |
| 164 int len = 0; | |
| 165 | |
| 166 l = pkt->hash; | |
| 167 while (l) { | |
| 168 struct yahoo_pair *pair = l->data; | |
| 169 int tmp = pair->key; | |
| 170 do { | |
| 171 tmp /= 10; | |
| 172 len++; | |
| 173 } while (tmp); | |
| 174 len += 2; | |
| 175 len += strlen(pair->value); | |
| 176 len += 2; | |
| 177 l = l->next; | |
| 178 } | |
| 179 | |
| 180 return len; | |
| 181 } | |
| 182 | |
| 183 /* sometimes i wish prpls could #include things from other prpls. then i could just | |
| 184 * use the routines from libfaim and not have to admit to knowing how they work. */ | |
| 185 #define yahoo_put16(buf, data) ( \ | |
| 186 (*(buf) = (u_char)((data)>>8)&0xff), \ | |
| 187 (*((buf)+1) = (u_char)(data)&0xff), \ | |
| 188 2) | |
| 189 #define yahoo_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) | |
| 190 #define yahoo_put32(buf, data) ( \ | |
| 191 (*((buf)) = (u_char)((data)>>24)&0xff), \ | |
| 192 (*((buf)+1) = (u_char)((data)>>16)&0xff), \ | |
| 193 (*((buf)+2) = (u_char)((data)>>8)&0xff), \ | |
| 194 (*((buf)+3) = (u_char)(data)&0xff), \ | |
| 195 4) | |
| 196 #define yahoo_get32(buf) ((((*(buf))<<24)&0xff000000) + \ | |
| 197 (((*((buf)+1))<<16)&0x00ff0000) + \ | |
| 198 (((*((buf)+2))<< 8)&0x0000ff00) + \ | |
| 199 (((*((buf)+3) )&0x000000ff))) | |
| 200 | |
| 201 static void yahoo_packet_read(struct yahoo_packet *pkt, guchar *data, int len) | |
| 202 { | |
| 203 int pos = 0; | |
| 204 | |
| 205 while (pos + 1 < len) { | |
|
2724
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
206 char key[64], *value = NULL; |
|
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
207 int accept; |
| 2681 | 208 int x; |
| 209 | |
| 210 struct yahoo_pair *pair = g_new0(struct yahoo_pair, 1); | |
| 211 | |
| 212 x = 0; | |
| 213 while (pos + 1 < len) { | |
| 214 if (data[pos] == 0xc0 && data[pos + 1] == 0x80) | |
| 215 break; | |
| 216 key[x++] = data[pos++]; | |
| 217 } | |
| 218 key[x] = 0; | |
| 219 pos += 2; | |
| 220 pair->key = strtol(key, NULL, 10); | |
|
2724
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
221 accept = x; /* if x is 0 there was no key, so don't accept it */ |
| 2681 | 222 |
|
3996
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
223 if (len - pos + 1 <= 0) { |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
224 /* Truncated. Garbage or something. */ |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
225 accept = 0; |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
226 } |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
227 |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
228 if (accept) { |
|
2724
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
229 value = g_malloc(len - pos + 1); |
|
3996
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
230 x = 0; |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
231 while (pos + 1 < len) { |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
232 if (data[pos] == 0xc0 && data[pos + 1] == 0x80) |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
233 break; |
|
2724
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
234 value[x++] = data[pos++]; |
|
3996
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
235 } |
|
2724
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
236 value[x] = 0; |
|
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
237 pair->value = g_strdup(value); |
|
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
238 g_free(value); |
|
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
239 pkt->hash = g_slist_append(pkt->hash, pair); |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
240 gaim_debug(GAIM_DEBUG_MISC, "yahoo", |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
241 "Key: %d \tValue: %s\n", pair->key, pair->value); |
|
2724
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
242 } else { |
|
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
243 g_free(pair); |
|
7f3f4aa114ad
[gaim-migrate @ 2737]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2723
diff
changeset
|
244 } |
|
3996
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
245 pos += 2; |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
246 |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
247 /* Skip over garbage we've noticed in the mail notifications */ |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
248 if (data[0] == '9' && data[pos] == 0x01) |
|
3fdfe7872118
[gaim-migrate @ 4191]
Christian Hammond <chipx86@chipx86.com>
parents:
3768
diff
changeset
|
249 pos++; |
| 2681 | 250 } |
| 251 } | |
| 252 | |
| 253 static void yahoo_packet_write(struct yahoo_packet *pkt, guchar *data) | |
| 254 { | |
| 255 GSList *l = pkt->hash; | |
| 256 int pos = 0; | |
| 257 | |
| 258 while (l) { | |
| 259 struct yahoo_pair *pair = l->data; | |
| 260 guchar buf[100]; | |
| 261 | |
| 262 g_snprintf(buf, sizeof(buf), "%d", pair->key); | |
| 263 strcpy(data + pos, buf); | |
| 264 pos += strlen(buf); | |
| 265 data[pos++] = 0xc0; | |
| 266 data[pos++] = 0x80; | |
| 267 | |
| 268 strcpy(data + pos, pair->value); | |
| 269 pos += strlen(pair->value); | |
| 270 data[pos++] = 0xc0; | |
| 271 data[pos++] = 0x80; | |
| 272 | |
| 273 l = l->next; | |
| 274 } | |
| 275 } | |
| 276 | |
| 277 static void yahoo_packet_dump(guchar *data, int len) | |
| 278 { | |
| 279 #ifdef YAHOO_DEBUG | |
| 280 int i; | |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
281 |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
282 gaim_debug(GAIM_DEBUG_MISC, "yahoo", ""); |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
283 |
| 2681 | 284 for (i = 0; i + 1 < len; i += 2) { |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
285 if ((i % 16 == 0) && i) { |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
286 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
287 gaim_debug(GAIM_DEBUG_MISC, "yahoo", ""); |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
288 } |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
289 |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
290 gaim_debug(GAIM_DEBUG_MISC, NULL, "%02x%02x ", data[i], data[i + 1]); |
| 2681 | 291 } |
| 292 if (i < len) | |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
293 gaim_debug(GAIM_DEBUG_MISC, NULL, "%02x", data[i]); |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
294 |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
295 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
296 gaim_debug(GAIM_DEBUG_MISC, "yahoo", ""); |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
297 |
| 2681 | 298 for (i = 0; i < len; i++) { |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
299 if ((i % 16 == 0) && i) { |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
300 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
301 gaim_debug(GAIM_DEBUG_MISC, "yahoo", ""); |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
302 } |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
303 |
| 2681 | 304 if (isprint(data[i])) |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
305 gaim_debug(GAIM_DEBUG_MISC, NULL, "%c ", data[i]); |
| 2681 | 306 else |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
307 gaim_debug(GAIM_DEBUG_MISC, NULL, ". "); |
| 2681 | 308 } |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
309 |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
310 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
| 2681 | 311 #endif |
| 312 } | |
| 313 | |
| 314 static int yahoo_send_packet(struct yahoo_data *yd, struct yahoo_packet *pkt) | |
| 315 { | |
| 316 int pktlen = yahoo_packet_length(pkt); | |
| 317 int len = YAHOO_PACKET_HDRLEN + pktlen; | |
| 318 int ret; | |
| 319 | |
| 320 guchar *data; | |
| 321 int pos = 0; | |
| 322 | |
| 323 if (yd->fd < 0) | |
| 324 return -1; | |
| 325 | |
| 326 data = g_malloc0(len + 1); | |
| 327 | |
| 328 memcpy(data + pos, "YMSG", 4); pos += 4; | |
| 3467 | 329 pos += yahoo_put16(data + pos, YAHOO_PROTO_VER); |
| 2681 | 330 pos += yahoo_put16(data + pos, 0x0000); |
| 331 pos += yahoo_put16(data + pos, pktlen); | |
| 332 pos += yahoo_put16(data + pos, pkt->service); | |
| 333 pos += yahoo_put32(data + pos, pkt->status); | |
| 334 pos += yahoo_put32(data + pos, pkt->id); | |
| 335 | |
| 336 yahoo_packet_write(pkt, data + pos); | |
| 337 | |
| 338 yahoo_packet_dump(data, len); | |
| 339 ret = write(yd->fd, data, len); | |
| 340 g_free(data); | |
| 341 | |
| 342 return ret; | |
| 343 } | |
| 344 | |
| 345 static void yahoo_packet_free(struct yahoo_packet *pkt) | |
| 346 { | |
| 347 while (pkt->hash) { | |
| 348 struct yahoo_pair *pair = pkt->hash->data; | |
| 349 g_free(pair->value); | |
| 350 g_free(pair); | |
| 351 pkt->hash = g_slist_remove(pkt->hash, pair); | |
| 352 } | |
| 353 g_free(pkt); | |
| 354 } | |
| 355 | |
| 5583 | 356 static void yahoo_process_status(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2681 | 357 { |
| 358 struct yahoo_data *yd = gc->proto_data; | |
| 359 GSList *l = pkt->hash; | |
| 360 char *name = NULL; | |
| 361 int state = 0; | |
| 3019 | 362 int gamestate = 0; |
| 2681 | 363 char *msg = NULL; |
| 3019 | 364 |
| 2681 | 365 while (l) { |
| 366 struct yahoo_pair *pair = l->data; | |
| 367 | |
| 368 switch (pair->key) { | |
| 369 case 0: /* we won't actually do anything with this */ | |
| 370 break; | |
| 371 case 1: /* we don't get the full buddy list here. */ | |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
372 if (!yd->logged_in) { |
| 5583 | 373 gaim_connection_set_state(gc, GAIM_CONNECTED); |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
374 serv_finish_login(gc); |
| 5583 | 375 gaim_connection_set_display_name(gc, pair->value); |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
376 yd->logged_in = TRUE; |
| 2681 | 377 |
| 3147 | 378 /* this requests the list. i have a feeling that this is very evil |
| 379 * | |
| 380 * scs.yahoo.com sends you the list before this packet without it being | |
| 381 * requested | |
| 382 * | |
| 383 * do_import(gc, NULL); | |
| 384 * newpkt = yahoo_packet_new(YAHOO_SERVICE_LIST, YAHOO_STATUS_OFFLINE, 0); | |
| 385 * yahoo_send_packet(yd, newpkt); | |
| 386 * yahoo_packet_free(newpkt); | |
| 387 */ | |
| 388 | |
| 389 } | |
| 2681 | 390 break; |
| 391 case 8: /* how many online buddies we have */ | |
| 392 break; | |
| 393 case 7: /* the current buddy */ | |
| 394 name = pair->value; | |
| 395 break; | |
| 396 case 10: /* state */ | |
| 397 state = strtol(pair->value, NULL, 10); | |
| 398 break; | |
| 399 case 19: /* custom message */ | |
| 400 msg = pair->value; | |
| 401 break; | |
| 402 case 11: /* i didn't know what this was in the old protocol either */ | |
| 403 break; | |
| 404 case 17: /* in chat? */ | |
| 405 break; | |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
406 case 13: /* in pager? */ |
|
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
407 if (pkt->service == YAHOO_SERVICE_LOGOFF || |
|
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
408 strtol(pair->value, NULL, 10) == 0) { |
| 4732 | 409 serv_got_update(gc, name, 0, 0, 0, 0, 0); |
|
2807
f01e6a425136
[gaim-migrate @ 2820]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2805
diff
changeset
|
410 break; |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
411 } |
| 3019 | 412 if (g_hash_table_lookup(yd->games, name)) |
| 413 gamestate = YAHOO_STATUS_GAME; | |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
414 if (state == YAHOO_STATUS_CUSTOM) { |
|
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
415 gpointer val = g_hash_table_lookup(yd->hash, name); |
|
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
416 if (val) { |
|
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
417 g_free(val); |
|
2873
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
418 g_hash_table_insert(yd->hash, name, |
|
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
419 msg ? g_strdup(msg) : g_malloc0(1)); |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
420 } else |
|
2873
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
421 g_hash_table_insert(yd->hash, g_strdup(name), |
|
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
422 msg ? g_strdup(msg) : g_malloc0(1)); |
|
2771
450f4f9d2f23
[gaim-migrate @ 2784]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2741
diff
changeset
|
423 } |
| 4777 | 424 if (state == YAHOO_STATUS_AVAILABLE) |
| 425 serv_got_update(gc, name, 1, 0, 0, 0, gamestate); | |
| 5002 | 426 else if (state == YAHOO_STATUS_IDLE) |
| 427 serv_got_update(gc, name, 1, 0, 0, -1, (state << 2) | UC_UNAVAILABLE | gamestate); | |
| 4777 | 428 else |
| 429 serv_got_update(gc, name, 1, 0, 0, 0, (state << 2) | UC_UNAVAILABLE | gamestate); | |
|
2771
450f4f9d2f23
[gaim-migrate @ 2784]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2741
diff
changeset
|
430 break; |
|
2805
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
431 case 60: /* no clue */ |
|
9b3c7d2a6e9a
[gaim-migrate @ 2818]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2795
diff
changeset
|
432 break; |
| 2979 | 433 case 16: /* Custom error message */ |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5367
diff
changeset
|
434 gaim_notify_error(gc, NULL, pair->value, NULL); |
| 2951 | 435 break; |
| 2681 | 436 default: |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
437 gaim_debug(GAIM_DEBUG_ERROR, "yahoo", |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
438 "Unknown status key %d\n", pair->key); |
| 2681 | 439 break; |
| 440 } | |
| 441 | |
| 442 l = l->next; | |
| 443 } | |
| 444 } | |
| 445 | |
| 5583 | 446 static void yahoo_process_list(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2681 | 447 { |
| 448 GSList *l = pkt->hash; | |
| 449 gboolean export = FALSE; | |
| 4775 | 450 struct buddy *b; |
| 451 struct group *g; | |
| 2681 | 452 |
| 453 while (l) { | |
| 454 char **lines; | |
| 455 char **split; | |
| 456 char **buddies; | |
| 457 char **tmp, **bud; | |
| 458 | |
| 459 struct yahoo_pair *pair = l->data; | |
| 460 l = l->next; | |
| 461 | |
| 462 if (pair->key != 87) | |
| 463 continue; | |
| 464 | |
| 465 lines = g_strsplit(pair->value, "\n", -1); | |
| 466 for (tmp = lines; *tmp; tmp++) { | |
| 467 split = g_strsplit(*tmp, ":", 2); | |
|
2697
7759f914a009
[gaim-migrate @ 2710]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2688
diff
changeset
|
468 if (!split) |
|
7759f914a009
[gaim-migrate @ 2710]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2688
diff
changeset
|
469 continue; |
|
2702
94b4271b9567
[gaim-migrate @ 2715]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2697
diff
changeset
|
470 if (!split[0] || !split[1]) { |
|
2697
7759f914a009
[gaim-migrate @ 2710]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2688
diff
changeset
|
471 g_strfreev(split); |
|
7759f914a009
[gaim-migrate @ 2710]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2688
diff
changeset
|
472 continue; |
|
7759f914a009
[gaim-migrate @ 2710]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2688
diff
changeset
|
473 } |
| 2681 | 474 buddies = g_strsplit(split[1], ",", -1); |
|
2697
7759f914a009
[gaim-migrate @ 2710]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2688
diff
changeset
|
475 for (bud = buddies; bud && *bud; bud++) |
| 4775 | 476 if (!(b = gaim_find_buddy(gc->account, *bud))) { |
| 477 if (!(g = gaim_find_group(split[0]))) { | |
| 478 g = gaim_group_new(split[0]); | |
| 479 gaim_blist_add_group(g, NULL); | |
| 480 } | |
| 481 b = gaim_buddy_new(gc->account, *bud, NULL); | |
| 482 gaim_blist_add_buddy(b, g, NULL); | |
| 2681 | 483 export = TRUE; |
| 484 } | |
| 485 g_strfreev(buddies); | |
| 486 g_strfreev(split); | |
| 487 } | |
| 488 g_strfreev(lines); | |
| 489 } | |
| 490 | |
| 491 if (export) | |
| 4349 | 492 gaim_blist_save(); |
| 2681 | 493 } |
| 494 | |
| 5583 | 495 static void yahoo_process_notify(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2993 | 496 { |
| 497 char *msg = NULL; | |
| 498 char *from = NULL; | |
| 3019 | 499 char *stat = NULL; |
| 500 char *game = NULL; | |
| 2993 | 501 GSList *l = pkt->hash; |
| 3019 | 502 struct yahoo_data *yd = (struct yahoo_data*) gc->proto_data; |
| 2993 | 503 while (l) { |
| 504 struct yahoo_pair *pair = l->data; | |
| 505 if (pair->key == 4) | |
| 506 from = pair->value; | |
| 507 if (pair->key == 49) | |
| 508 msg = pair->value; | |
| 3001 | 509 if (pair->key == 13) |
| 3019 | 510 stat = pair->value; |
| 511 if (pair->key == 14) | |
| 512 game = pair->value; | |
| 2993 | 513 l = l->next; |
| 514 } | |
| 3640 | 515 |
| 516 if (!msg) | |
| 517 return; | |
| 3019 | 518 |
| 4793 | 519 if (!g_ascii_strncasecmp(msg, "TYPING", strlen("TYPING"))) { |
| 3019 | 520 if (*stat == '1') |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
521 serv_got_typing(gc, from, 0, GAIM_TYPING); |
| 3019 | 522 else |
| 523 serv_got_typing_stopped(gc, from); | |
| 4793 | 524 } else if (!g_ascii_strncasecmp(msg, "GAME", strlen("GAME"))) { |
| 4687 | 525 struct buddy *bud = gaim_find_buddy(gc->account, from); |
| 3019 | 526 void *free1=NULL, *free2=NULL; |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
527 if (!bud) { |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
528 gaim_debug(GAIM_DEBUG_WARNING, "yahoo", |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
529 "%s is playing a game, and doesn't want " |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
530 "you to know.\n", from); |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
531 } |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
532 |
| 3019 | 533 if (*stat == '1') { |
| 534 if (g_hash_table_lookup_extended (yd->games, from, free1, free2)) { | |
| 535 g_free(free1); | |
| 536 g_free(free2); | |
| 537 } | |
| 538 g_hash_table_insert (yd->games, g_strdup(from), g_strdup(game)); | |
| 3020 | 539 if (bud) |
| 4732 | 540 serv_got_update(gc, from, 1, 0, 0, 0, bud->uc | YAHOO_STATUS_GAME); |
| 3019 | 541 } else { |
| 542 if (g_hash_table_lookup_extended (yd->games, from, free1, free2)) { | |
| 543 g_free(free1); | |
| 544 g_free(free2); | |
| 545 g_hash_table_remove (yd->games, from); | |
| 546 } | |
| 3020 | 547 if (bud) |
| 4732 | 548 serv_got_update(gc, from, 1, 0, 0, 0, bud->uc & ~YAHOO_STATUS_GAME); |
| 3019 | 549 } |
| 550 } | |
| 2993 | 551 } |
| 552 | |
| 5583 | 553 static void yahoo_process_message(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2681 | 554 { |
| 555 char *msg = NULL; | |
| 556 char *from = NULL; | |
| 557 time_t tm = time(NULL); | |
| 558 GSList *l = pkt->hash; | |
| 559 | |
| 3021 | 560 if (pkt->status <= 1 || pkt->status == 5) { |
| 6069 | 561 while (l) { |
| 562 struct yahoo_pair *pair = l->data; | |
| 563 if (pair->key == 4) | |
| 564 from = pair->value; | |
| 565 if (pair->key == 15) | |
| 566 tm = strtol(pair->value, NULL, 10); | |
| 567 if (pair->key == 14) { | |
| 568 char *m; | |
| 569 | |
| 570 msg = pair->value; | |
| 571 | |
| 572 strip_linefeed(msg); | |
| 6513 | 573 m = yahoo_codes_to_html(msg); |
| 574 serv_got_im(gc, from, m, 0, tm, -1); | |
| 575 g_free(m); | |
| 6069 | 576 |
| 577 tm = time(NULL); | |
|
2715
e901fd3ebbad
[gaim-migrate @ 2728]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2708
diff
changeset
|
578 } |
| 6069 | 579 l = l->next; |
|
2715
e901fd3ebbad
[gaim-migrate @ 2728]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2708
diff
changeset
|
580 } |
| 2681 | 581 } else if (pkt->status == 2) { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5367
diff
changeset
|
582 gaim_notify_error(gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5367
diff
changeset
|
583 _("Your Yahoo! message did not get sent."), NULL); |
| 2681 | 584 } |
| 585 } | |
| 586 | |
| 587 | |
| 5583 | 588 static void yahoo_process_contact(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2681 | 589 { |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
590 struct yahoo_data *yd = gc->proto_data; |
| 2681 | 591 char *id = NULL; |
| 592 char *who = NULL; | |
| 593 char *msg = NULL; | |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
594 char *name = NULL; |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
595 int state = YAHOO_STATUS_AVAILABLE; |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
596 int online = FALSE; |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
597 |
| 2681 | 598 GSList *l = pkt->hash; |
| 599 | |
| 600 while (l) { | |
| 601 struct yahoo_pair *pair = l->data; | |
| 602 if (pair->key == 1) | |
| 603 id = pair->value; | |
| 604 else if (pair->key == 3) | |
| 605 who = pair->value; | |
| 606 else if (pair->key == 14) | |
| 607 msg = pair->value; | |
| 5002 | 608 else if (pair->key == 7) |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
609 name = pair->value; |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
610 else if (pair->key == 10) |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
611 state = strtol(pair->value, NULL, 10); |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
612 else if (pair->key == 13) |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
613 online = strtol(pair->value, NULL, 10); |
| 2681 | 614 l = l->next; |
| 615 } | |
| 616 | |
|
2682
db2b0b733732
[gaim-migrate @ 2695]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
617 if (id) |
|
db2b0b733732
[gaim-migrate @ 2695]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
618 show_got_added(gc, id, who, NULL, msg); |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
619 if (name) { |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
620 if (state == YAHOO_STATUS_AVAILABLE) |
| 4732 | 621 serv_got_update(gc, name, 1, 0, 0, 0, 0); |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
622 else if (state == YAHOO_STATUS_IDLE) |
| 5002 | 623 serv_got_update(gc, name, 1, 0, 0, -1, (state << 2)); |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
624 else |
| 4732 | 625 serv_got_update(gc, name, 1, 0, 0, 0, (state << 2) | UC_UNAVAILABLE); |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
626 if (state == YAHOO_STATUS_CUSTOM) { |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
627 gpointer val = g_hash_table_lookup(yd->hash, name); |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
628 if (val) { |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
629 g_free(val); |
|
2873
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
630 g_hash_table_insert(yd->hash, name, |
|
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
631 msg ? g_strdup(msg) : g_malloc0(1)); |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
632 } else |
|
2873
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
633 g_hash_table_insert(yd->hash, g_strdup(name), |
|
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
634 msg ? g_strdup(msg) : g_malloc0(1)); |
|
2683
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
635 } |
|
4836eae8dd8c
[gaim-migrate @ 2696]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2682
diff
changeset
|
636 } |
| 2681 | 637 } |
| 638 | |
| 5583 | 639 static void yahoo_process_mail(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2681 | 640 { |
| 5583 | 641 GaimAccount *account = gaim_connection_get_account(gc); |
| 2681 | 642 char *who = NULL; |
| 643 char *email = NULL; | |
| 644 char *subj = NULL; | |
| 645 int count = 0; | |
| 646 GSList *l = pkt->hash; | |
| 647 | |
| 5583 | 648 if (!gaim_account_get_check_mail(account)) |
|
5521
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
649 return; |
|
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
650 |
| 2681 | 651 while (l) { |
| 652 struct yahoo_pair *pair = l->data; | |
| 653 if (pair->key == 9) | |
| 654 count = strtol(pair->value, NULL, 10); | |
| 655 else if (pair->key == 43) | |
| 656 who = pair->value; | |
| 657 else if (pair->key == 42) | |
| 658 email = pair->value; | |
| 659 else if (pair->key == 18) | |
| 660 subj = pair->value; | |
| 661 l = l->next; | |
| 662 } | |
| 663 | |
| 4001 | 664 if (who && subj && email && *email) { |
|
2850
cbe6a1e63a72
[gaim-migrate @ 2863]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2813
diff
changeset
|
665 char *from = g_strdup_printf("%s (%s)", who, email); |
|
5521
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
666 |
| 5583 | 667 gaim_notify_email(gc, subj, from, gaim_account_get_username(account), |
|
5521
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
668 "http://mail.yahoo.com/", NULL, NULL); |
|
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
669 |
|
2850
cbe6a1e63a72
[gaim-migrate @ 2863]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2813
diff
changeset
|
670 g_free(from); |
|
5521
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
671 } else if (count > 0) { |
| 5583 | 672 const char *to = gaim_account_get_username(account); |
|
5521
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
673 const char *url = "http://mail.yahoo.com/"; |
|
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
674 |
|
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
675 gaim_notify_emails(gc, count, FALSE, NULL, NULL, &to, &url, |
|
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
676 NULL, NULL); |
|
76ec14ba51d7
[gaim-migrate @ 5921]
Christian Hammond <chipx86@chipx86.com>
parents:
5498
diff
changeset
|
677 } |
| 2681 | 678 } |
| 3147 | 679 /* This is the y64 alphabet... it's like base64, but has a . and a _ */ |
| 680 char base64digits[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._"; | |
| 681 | |
| 682 /* This is taken from Sylpheed by Hiroyuki Yamamoto. We have our own tobase64 function | |
| 683 * in util.c, but it has a bug I don't feel like finding right now ;) */ | |
| 684 void to_y64(unsigned char *out, const unsigned char *in, int inlen) | |
| 685 /* raw bytes in quasi-big-endian order to base 64 string (NUL-terminated) */ | |
| 686 { | |
| 687 for (; inlen >= 3; inlen -= 3) | |
| 688 { | |
| 689 *out++ = base64digits[in[0] >> 2]; | |
| 690 *out++ = base64digits[((in[0] << 4) & 0x30) | (in[1] >> 4)]; | |
| 691 *out++ = base64digits[((in[1] << 2) & 0x3c) | (in[2] >> 6)]; | |
| 692 *out++ = base64digits[in[2] & 0x3f]; | |
| 693 in += 3; | |
| 694 } | |
| 695 if (inlen > 0) | |
| 696 { | |
| 697 unsigned char fragment; | |
| 698 | |
| 699 *out++ = base64digits[in[0] >> 2]; | |
| 700 fragment = (in[0] << 4) & 0x30; | |
| 701 if (inlen > 1) | |
| 702 fragment |= in[1] >> 4; | |
| 703 *out++ = base64digits[fragment]; | |
| 704 *out++ = (inlen < 2) ? '-' : base64digits[(in[1] << 2) & 0x3c]; | |
| 705 *out++ = '-'; | |
| 706 } | |
| 707 *out = '\0'; | |
| 708 } | |
| 709 | |
| 5583 | 710 static void yahoo_process_auth(GaimConnection *gc, struct yahoo_packet *pkt) |
| 3147 | 711 { |
| 712 char *seed = NULL; | |
| 713 char *sn = NULL; | |
| 714 GSList *l = pkt->hash; | |
| 715 struct yahoo_data *yd = gc->proto_data; | |
| 716 | |
| 717 while (l) { | |
| 718 struct yahoo_pair *pair = l->data; | |
| 719 if (pair->key == 94) | |
| 720 seed = pair->value; | |
| 721 if (pair->key == 1) | |
| 722 sn = pair->value; | |
| 723 l = l->next; | |
| 724 } | |
| 725 | |
| 726 if (seed) { | |
| 727 struct yahoo_packet *pack; | |
| 5583 | 728 GaimAccount *account = gaim_connection_get_account(gc); |
| 5921 | 729 const char *name = normalize(gaim_account_get_username(account)); |
| 5583 | 730 const char *pass = gaim_account_get_password(account); |
| 731 | |
| 3147 | 732 /* So, Yahoo has stopped supporting its older clients in India, and undoubtedly |
| 733 * will soon do so in the rest of the world. | |
| 734 * | |
| 735 * The new clients use this authentication method. I warn you in advance, it's | |
| 736 * bizzare, convoluted, inordinately complicated. It's also no more secure than | |
| 737 * crypt() was. The only purpose this scheme could serve is to prevent third | |
| 738 * part clients from connecting to their servers. | |
| 739 * | |
| 740 * Sorry, Yahoo. | |
| 741 */ | |
| 742 | |
| 743 md5_byte_t result[16]; | |
| 744 md5_state_t ctx; | |
| 5583 | 745 |
| 3147 | 746 char *crypt_result; |
| 5583 | 747 char password_hash[25]; |
| 748 char crypt_hash[25]; | |
| 3147 | 749 char *hash_string_p = g_malloc(50 + strlen(sn)); |
| 750 char *hash_string_c = g_malloc(50 + strlen(sn)); | |
| 751 | |
| 752 char checksum; | |
| 753 | |
| 3157 | 754 int sv; |
| 3147 | 755 |
| 5583 | 756 char result6[25]; |
| 757 char result96[25]; | |
| 3147 | 758 |
| 759 sv = seed[15]; | |
| 3157 | 760 sv = sv % 8; |
| 3147 | 761 |
| 762 md5_init(&ctx); | |
| 5583 | 763 md5_append(&ctx, pass, strlen(pass)); |
| 3147 | 764 md5_finish(&ctx, result); |
| 765 to_y64(password_hash, result, 16); | |
| 766 | |
| 767 md5_init(&ctx); | |
| 5583 | 768 crypt_result = yahoo_crypt(pass, "$1$_2S43d5f$"); |
| 3147 | 769 md5_append(&ctx, crypt_result, strlen(crypt_result)); |
| 770 md5_finish(&ctx, result); | |
| 771 to_y64(crypt_hash, result, 16); | |
| 3157 | 772 |
| 773 switch (sv) { | |
| 3147 | 774 case 1: |
| 775 case 6: | |
| 3157 | 776 checksum = seed[seed[9] % 16]; |
| 3147 | 777 g_snprintf(hash_string_p, strlen(sn) + 50, |
| 5583 | 778 "%c%s%s%s", checksum, name, seed, password_hash); |
| 3157 | 779 g_snprintf(hash_string_c, strlen(sn) + 50, |
| 5583 | 780 "%c%s%s%s", checksum, name, seed, crypt_hash); |
| 3147 | 781 break; |
| 782 case 2: | |
| 783 case 7: | |
| 3157 | 784 checksum = seed[seed[15] % 16]; |
| 3147 | 785 g_snprintf(hash_string_p, strlen(sn) + 50, |
| 5583 | 786 "%c%s%s%s", checksum, seed, password_hash, name); |
| 3157 | 787 g_snprintf(hash_string_c, strlen(sn) + 50, |
| 5583 | 788 "%c%s%s%s", checksum, seed, crypt_hash, name); |
| 3157 | 789 break; |
| 3147 | 790 case 3: |
| 3157 | 791 checksum = seed[seed[1] % 16]; |
| 3147 | 792 g_snprintf(hash_string_p, strlen(sn) + 50, |
| 5583 | 793 "%c%s%s%s", checksum, name, password_hash, seed); |
| 3157 | 794 g_snprintf(hash_string_c, strlen(sn) + 50, |
| 5583 | 795 "%c%s%s%s", checksum, name, crypt_hash, seed); |
| 3157 | 796 break; |
| 797 case 4: | |
| 798 checksum = seed[seed[3] % 16]; | |
| 799 g_snprintf(hash_string_p, strlen(sn) + 50, | |
| 5583 | 800 "%c%s%s%s", checksum, password_hash, seed, name); |
| 3147 | 801 g_snprintf(hash_string_c, strlen(sn) + 50, |
| 5583 | 802 "%c%s%s%s", checksum, crypt_hash, seed, name); |
| 3157 | 803 break; |
| 3147 | 804 case 0: |
| 805 case 5: | |
| 3157 | 806 checksum = seed[seed[7] % 16]; |
| 3147 | 807 g_snprintf(hash_string_p, strlen(sn) + 50, |
| 5583 | 808 "%c%s%s%s", checksum, password_hash, name, seed); |
| 3157 | 809 g_snprintf(hash_string_c, strlen(sn) + 50, |
| 5583 | 810 "%c%s%s%s", checksum, crypt_hash, name, seed); |
| 3157 | 811 break; |
| 3147 | 812 } |
| 3157 | 813 |
| 3147 | 814 md5_init(&ctx); |
| 3157 | 815 md5_append(&ctx, hash_string_p, strlen(hash_string_p)); |
| 3147 | 816 md5_finish(&ctx, result); |
| 817 to_y64(result6, result, 16); | |
| 818 | |
| 819 md5_init(&ctx); | |
| 820 md5_append(&ctx, hash_string_c, strlen(hash_string_c)); | |
| 821 md5_finish(&ctx, result); | |
| 822 to_y64(result96, result, 16); | |
| 823 | |
| 824 pack = yahoo_packet_new(YAHOO_SERVICE_AUTHRESP, YAHOO_STATUS_AVAILABLE, 0); | |
| 5583 | 825 yahoo_packet_hash(pack, 0, name); |
| 3147 | 826 yahoo_packet_hash(pack, 6, result6); |
| 827 yahoo_packet_hash(pack, 96, result96); | |
| 5583 | 828 yahoo_packet_hash(pack, 1, name); |
| 3147 | 829 |
| 830 yahoo_send_packet(yd, pack); | |
| 831 | |
| 832 g_free(hash_string_p); | |
| 833 g_free(hash_string_c); | |
| 834 | |
| 835 yahoo_packet_free(pack); | |
| 836 } | |
| 837 } | |
| 2681 | 838 |
| 5583 | 839 static void yahoo_packet_process(GaimConnection *gc, struct yahoo_packet *pkt) |
| 2681 | 840 { |
| 841 switch (pkt->service) | |
| 842 { | |
| 843 case YAHOO_SERVICE_LOGON: | |
|
2771
450f4f9d2f23
[gaim-migrate @ 2784]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2741
diff
changeset
|
844 case YAHOO_SERVICE_LOGOFF: |
| 2681 | 845 case YAHOO_SERVICE_ISAWAY: |
|
2737
f61c1f3a6afa
[gaim-migrate @ 2750]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2724
diff
changeset
|
846 case YAHOO_SERVICE_ISBACK: |
| 3019 | 847 case YAHOO_SERVICE_GAMELOGON: |
| 848 case YAHOO_SERVICE_GAMELOGOFF: | |
| 2681 | 849 yahoo_process_status(gc, pkt); |
| 850 break; | |
| 3019 | 851 case YAHOO_SERVICE_NOTIFY: |
| 852 yahoo_process_notify(gc, pkt); | |
| 2993 | 853 break; |
| 2681 | 854 case YAHOO_SERVICE_MESSAGE: |
|
2786
318f846120e2
[gaim-migrate @ 2799]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2772
diff
changeset
|
855 case YAHOO_SERVICE_GAMEMSG: |
| 5939 | 856 case YAHOO_SERVICE_CHATMSG: |
| 2681 | 857 yahoo_process_message(gc, pkt); |
| 858 break; | |
| 859 case YAHOO_SERVICE_NEWMAIL: | |
| 860 yahoo_process_mail(gc, pkt); | |
| 861 break; | |
| 862 case YAHOO_SERVICE_NEWCONTACT: | |
| 863 yahoo_process_contact(gc, pkt); | |
| 864 break; | |
| 865 case YAHOO_SERVICE_LIST: | |
| 866 yahoo_process_list(gc, pkt); | |
| 867 break; | |
| 3147 | 868 case YAHOO_SERVICE_AUTH: |
| 869 yahoo_process_auth(gc, pkt); | |
| 870 break; | |
| 2681 | 871 default: |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
872 gaim_debug(GAIM_DEBUG_ERROR, "yahoo", |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
873 "Unhandled service 0x%02x\n", pkt->service); |
| 2681 | 874 break; |
| 875 } | |
| 876 } | |
| 877 | |
| 878 static void yahoo_pending(gpointer data, gint source, GaimInputCondition cond) | |
| 879 { | |
| 5583 | 880 GaimConnection *gc = data; |
| 2681 | 881 struct yahoo_data *yd = gc->proto_data; |
| 882 char buf[1024]; | |
| 883 int len; | |
| 884 | |
| 885 len = read(yd->fd, buf, sizeof(buf)); | |
| 886 | |
| 887 if (len <= 0) { | |
| 6321 | 888 gaim_connection_error(gc, _("Unable to read")); |
| 2681 | 889 return; |
| 890 } | |
| 891 | |
| 892 yd->rxqueue = g_realloc(yd->rxqueue, len + yd->rxlen); | |
| 893 memcpy(yd->rxqueue + yd->rxlen, buf, len); | |
| 894 yd->rxlen += len; | |
| 895 | |
| 896 while (1) { | |
| 897 struct yahoo_packet *pkt; | |
| 898 int pos = 0; | |
| 899 int pktlen; | |
| 900 | |
| 901 if (yd->rxlen < YAHOO_PACKET_HDRLEN) | |
| 902 return; | |
| 903 | |
| 904 pos += 4; /* YMSG */ | |
| 905 pos += 2; | |
| 906 pos += 2; | |
| 907 | |
| 908 pktlen = yahoo_get16(yd->rxqueue + pos); pos += 2; | |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
909 gaim_debug(GAIM_DEBUG_MISC, "yahoo", |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
910 "%d bytes to read, rxlen is %d\n", pktlen, yd->rxlen); |
| 2681 | 911 |
| 912 if (yd->rxlen < (YAHOO_PACKET_HDRLEN + pktlen)) | |
| 913 return; | |
| 914 | |
| 915 yahoo_packet_dump(yd->rxqueue, YAHOO_PACKET_HDRLEN + pktlen); | |
| 916 | |
| 917 pkt = yahoo_packet_new(0, 0, 0); | |
| 918 | |
| 919 pkt->service = yahoo_get16(yd->rxqueue + pos); pos += 2; | |
| 3021 | 920 pkt->status = yahoo_get32(yd->rxqueue + pos); pos += 4; |
|
5220
7b9d78fa051e
[gaim-migrate @ 5590]
Christian Hammond <chipx86@chipx86.com>
parents:
5216
diff
changeset
|
921 gaim_debug(GAIM_DEBUG_MISC, "yahoo", |
|
5216
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
922 "Yahoo Service: 0x%02x Status: %d\n", |
|
00bd3019749e
[gaim-migrate @ 5586]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
923 pkt->service, pkt->status); |
| 2681 | 924 pkt->id = yahoo_get32(yd->rxqueue + pos); pos += 4; |
| 925 | |
| 926 yahoo_packet_read(pkt, yd->rxqueue + pos, pktlen); | |
| 927 | |
| 928 yd->rxlen -= YAHOO_PACKET_HDRLEN + pktlen; | |
| 929 if (yd->rxlen) { | |
| 930 char *tmp = g_memdup(yd->rxqueue + YAHOO_PACKET_HDRLEN + pktlen, yd->rxlen); | |
| 931 g_free(yd->rxqueue); | |
| 932 yd->rxqueue = tmp; | |
| 933 } else { | |
| 934 g_free(yd->rxqueue); | |
| 935 yd->rxqueue = NULL; | |
| 936 } | |
| 937 | |
| 938 yahoo_packet_process(gc, pkt); | |
| 939 | |
| 940 yahoo_packet_free(pkt); | |
| 941 } | |
| 942 } | |
| 943 | |
| 944 static void yahoo_got_connected(gpointer data, gint source, GaimInputCondition cond) | |
| 945 { | |
| 5583 | 946 GaimConnection *gc = data; |
| 2681 | 947 struct yahoo_data *yd; |
| 948 struct yahoo_packet *pkt; | |
| 949 | |
|
5590
011a0a975060
[gaim-migrate @ 5994]
Christian Hammond <chipx86@chipx86.com>
parents:
5583
diff
changeset
|
950 if (!g_list_find(gaim_connections_get_all(), gc)) { |
| 2681 | 951 close(source); |
| 952 return; | |
| 953 } | |
| 954 | |
| 955 if (source < 0) { | |
| 6321 | 956 gaim_connection_error(gc, _("Unable to connect")); |
| 2681 | 957 return; |
| 958 } | |
| 959 | |
| 960 yd = gc->proto_data; | |
| 961 yd->fd = source; | |
| 962 | |
| 3147 | 963 pkt = yahoo_packet_new(YAHOO_SERVICE_AUTH, YAHOO_STATUS_AVAILABLE, 0); |
| 2681 | 964 |
| 5921 | 965 yahoo_packet_hash(pkt, 1, normalize(gaim_account_get_username(gaim_connection_get_account(gc)))); |
| 2681 | 966 yahoo_send_packet(yd, pkt); |
| 967 | |
| 968 yahoo_packet_free(pkt); | |
| 969 | |
| 970 gc->inpa = gaim_input_add(yd->fd, GAIM_INPUT_READ, yahoo_pending, gc); | |
| 971 } | |
| 972 | |
| 5583 | 973 static void yahoo_login(GaimAccount *account) { |
| 974 GaimConnection *gc = gaim_account_get_connection(account); | |
| 2681 | 975 struct yahoo_data *yd = gc->proto_data = g_new0(struct yahoo_data, 1); |
| 976 | |
| 5583 | 977 gaim_connection_update_progress(gc, _("Connecting"), 1, 2); |
| 2681 | 978 |
| 979 yd->fd = -1; | |
| 980 yd->hash = g_hash_table_new(g_str_hash, g_str_equal); | |
| 3019 | 981 yd->games = g_hash_table_new(g_str_hash, g_str_equal); |
| 2681 | 982 |
|
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
983 if (gaim_proxy_connect(account, gaim_account_get_string(account, "server", YAHOO_PAGER_HOST), |
| 5583 | 984 gaim_account_get_int(account, "port", YAHOO_PAGER_PORT), |
| 985 yahoo_got_connected, gc) != 0) { | |
| 6321 | 986 gaim_connection_error(gc, _("Connection problem")); |
| 2681 | 987 return; |
| 988 } | |
| 989 | |
| 990 } | |
| 991 | |
| 992 static gboolean yahoo_destroy_hash(gpointer key, gpointer val, gpointer data) | |
| 993 { | |
| 994 g_free(key); | |
| 995 g_free(val); | |
| 996 return TRUE; | |
| 997 } | |
| 998 | |
| 5583 | 999 static void yahoo_close(GaimConnection *gc) { |
| 2681 | 1000 struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; |
| 1001 g_hash_table_foreach_remove(yd->hash, yahoo_destroy_hash, NULL); | |
| 1002 g_hash_table_destroy(yd->hash); | |
| 3019 | 1003 g_hash_table_foreach_remove(yd->games, yahoo_destroy_hash, NULL); |
| 1004 g_hash_table_destroy(yd->games); | |
| 2681 | 1005 if (yd->fd >= 0) |
| 1006 close(yd->fd); | |
|
3720
34c95669952f
[gaim-migrate @ 3853]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3642
diff
changeset
|
1007 |
| 2681 | 1008 if (yd->rxqueue) |
| 1009 g_free(yd->rxqueue); | |
|
2687
2d544f48146d
[gaim-migrate @ 2700]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2686
diff
changeset
|
1010 yd->rxlen = 0; |
| 2681 | 1011 if (gc->inpa) |
| 1012 gaim_input_remove(gc->inpa); | |
| 1013 g_free(yd); | |
| 1014 } | |
| 1015 | |
| 5583 | 1016 static const char *yahoo_list_icon(GaimAccount *a, struct buddy *b) |
| 2681 | 1017 { |
| 4687 | 1018 return "yahoo"; |
| 2681 | 1019 } |
| 4916 | 1020 |
| 1021 static void yahoo_list_emblems(struct buddy *b, char **se, char **sw, char **nw, char **ne) | |
| 1022 { | |
| 1023 int i = 0; | |
| 1024 char *emblems[4] = {NULL,NULL,NULL,NULL}; | |
| 5068 | 1025 if (b->present == GAIM_BUDDY_OFFLINE) { |
| 4916 | 1026 *se = "offline"; |
| 1027 return; | |
| 1028 } else { | |
| 1029 if (b->uc & UC_UNAVAILABLE) | |
| 1030 emblems[i++] = "away"; | |
| 1031 if (b->uc & YAHOO_STATUS_GAME) | |
| 1032 emblems[i++] = "game"; | |
| 1033 } | |
| 1034 *se = emblems[0]; | |
| 1035 *sw = emblems[1]; | |
| 1036 *nw = emblems[2]; | |
| 1037 *ne = emblems[3]; | |
| 1038 } | |
| 2681 | 1039 |
| 1040 static char *yahoo_get_status_string(enum yahoo_status a) | |
| 1041 { | |
| 1042 switch (a) { | |
| 1043 case YAHOO_STATUS_BRB: | |
| 4596 | 1044 return _("Be Right Back"); |
| 2681 | 1045 case YAHOO_STATUS_BUSY: |
| 4596 | 1046 return _("Busy"); |
| 2681 | 1047 case YAHOO_STATUS_NOTATHOME: |
| 4596 | 1048 return _("Not At Home"); |
| 2681 | 1049 case YAHOO_STATUS_NOTATDESK: |
| 4596 | 1050 return _("Not At Desk"); |
| 2681 | 1051 case YAHOO_STATUS_NOTINOFFICE: |
| 4596 | 1052 return _("Not In Office"); |
| 2681 | 1053 case YAHOO_STATUS_ONPHONE: |
| 4606 | 1054 return _("On The Phone"); |
| 2681 | 1055 case YAHOO_STATUS_ONVACATION: |
| 4596 | 1056 return _("On Vacation"); |
| 2681 | 1057 case YAHOO_STATUS_OUTTOLUNCH: |
| 4596 | 1058 return _("Out To Lunch"); |
| 2681 | 1059 case YAHOO_STATUS_STEPPEDOUT: |
| 4596 | 1060 return _("Stepped Out"); |
|
2873
26be84883f91
[gaim-migrate @ 2886]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
1061 case YAHOO_STATUS_INVISIBLE: |
| 4596 | 1062 return _("Invisible"); |
| 4730 | 1063 case YAHOO_STATUS_IDLE: |
| 1064 return _("Idle"); | |
|
2879
5fc5123b7098
[gaim-migrate @ 2892]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2878
diff
changeset
|
1065 default: |
| 4596 | 1066 return _("Online"); |
| 2681 | 1067 } |
| 1068 } | |
| 1069 | |
| 5583 | 1070 static void yahoo_game(GaimConnection *gc, const char *name) { |
| 3019 | 1071 struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; |
| 1072 char *game = g_hash_table_lookup(yd->games, name); | |
| 1073 char *t; | |
| 1074 char url[256]; | |
| 1075 | |
| 1076 if (!game) | |
| 1077 return; | |
| 1078 t = game = g_strdup(strstr(game, "ante?room=")); | |
| 1079 while (*t != '\t') | |
| 1080 t++; | |
| 1081 *t = 0; | |
| 1082 g_snprintf(url, sizeof url, "http://games.yahoo.com/games/%s", game); | |
|
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1083 gaim_notify_uri(gc, url); |
| 3019 | 1084 g_free(game); |
| 1085 } | |
| 4722 | 1086 |
| 4732 | 1087 static char *yahoo_status_text(struct buddy *b) |
| 4722 | 1088 { |
| 1089 struct yahoo_data *yd = (struct yahoo_data*)b->account->gc->proto_data; | |
| 4730 | 1090 if (b->uc & UC_UNAVAILABLE) { |
| 4732 | 1091 if ((b->uc >> 2) != YAHOO_STATUS_CUSTOM) |
| 1092 return g_strdup(yahoo_get_status_string(b->uc >> 2)); | |
| 4777 | 1093 else { |
| 1094 char *stripped = strip_html(g_hash_table_lookup(yd->hash, b->name)); | |
| 1095 if(stripped) { | |
| 1096 char *ret = g_markup_escape_text(stripped, strlen(stripped)); | |
| 1097 g_free(stripped); | |
| 1098 return ret; | |
| 1099 } | |
| 1100 } | |
| 4722 | 1101 } |
| 4729 | 1102 return NULL; |
| 4722 | 1103 } |
| 1104 | |
| 4724 | 1105 static char *yahoo_tooltip_text(struct buddy *b) |
| 1106 { | |
| 1107 struct yahoo_data *yd = (struct yahoo_data*)b->account->gc->proto_data; | |
| 4730 | 1108 if (b->uc & UC_UNAVAILABLE) { |
| 4745 | 1109 char *status; |
| 1110 char *ret; | |
| 4731 | 1111 if ((b->uc >> 2) != YAHOO_STATUS_CUSTOM) |
| 4745 | 1112 status = g_strdup(yahoo_get_status_string(b->uc >> 2)); |
| 4724 | 1113 else |
| 4745 | 1114 status = strip_html(g_hash_table_lookup(yd->hash, b->name)); |
| 1115 if(status) { | |
| 4777 | 1116 char *escaped = g_markup_escape_text(status, strlen(status)); |
| 1117 ret = g_strdup_printf(_("<b>Status:</b> %s"), escaped); | |
| 4745 | 1118 g_free(status); |
| 4777 | 1119 g_free(escaped); |
| 4745 | 1120 return ret; |
| 1121 } | |
| 4724 | 1122 } |
| 4729 | 1123 return NULL; |
| 1124 } | |
| 1125 | |
| 5583 | 1126 static GList *yahoo_buddy_menu(GaimConnection *gc, const char *who) |
| 2681 | 1127 { |
| 1128 GList *m = NULL; | |
| 1129 struct proto_buddy_menu *pbm; | |
| 1130 struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; | |
| 4687 | 1131 struct buddy *b = gaim_find_buddy(gc->account, who); /* this should never be null. if it is, |
| 2681 | 1132 segfault and get the bug report. */ |
| 3019 | 1133 static char buf2[1024]; |
| 4722 | 1134 |
| 3019 | 1135 if (b->uc | YAHOO_STATUS_GAME) { |
| 1136 char *game = g_hash_table_lookup(yd->games, b->name); | |
| 1137 char *room; | |
| 1138 if (!game) | |
| 1139 return m; | |
| 1140 if (game) { | |
| 1141 char *t; | |
| 1142 pbm = g_new0(struct proto_buddy_menu, 1); | |
| 1143 if (!(room = strstr(game, "&follow="))) /* skip ahead to the url */ | |
| 1144 return NULL; | |
| 1145 while (*room && *room != '\t') /* skip to the tab */ | |
| 1146 room++; | |
| 1147 t = room++; /* room as now at the name */ | |
| 1148 while (*t != '\n') | |
| 1149 t++; /* replace the \n with a space */ | |
| 1150 *t = ' '; | |
| 1151 g_snprintf(buf2, sizeof buf2, "%s", room); | |
| 1152 pbm->label = buf2; | |
| 1153 pbm->callback = yahoo_game; | |
| 1154 pbm->gc = gc; | |
| 1155 m = g_list_append(m, pbm); | |
| 1156 } | |
| 1157 } | |
| 4722 | 1158 |
| 2681 | 1159 return m; |
| 1160 } | |
| 1161 | |
| 5583 | 1162 static void yahoo_act_id(GaimConnection *gc, const char *entry) |
| 2681 | 1163 { |
| 1164 struct yahoo_data *yd = gc->proto_data; | |
| 1165 | |
| 1166 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_IDACT, YAHOO_STATUS_AVAILABLE, 0); | |
| 1167 yahoo_packet_hash(pkt, 3, entry); | |
| 1168 yahoo_send_packet(yd, pkt); | |
| 1169 yahoo_packet_free(pkt); | |
| 1170 | |
| 5583 | 1171 gaim_connection_set_display_name(gc, entry); |
| 2681 | 1172 } |
| 1173 | |
| 5583 | 1174 static void yahoo_show_act_id(GaimConnection *gc) |
| 2681 | 1175 { |
|
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1176 gaim_request_input(gc, NULL, _("Active which ID?"), NULL, |
|
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
5939
diff
changeset
|
1177 gaim_connection_get_display_name(gc), FALSE, FALSE, |
|
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1178 _("OK"), G_CALLBACK(yahoo_act_id), |
|
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
1179 _("Cancel"), NULL, gc); |
| 2681 | 1180 } |
| 1181 | |
| 5583 | 1182 static GList *yahoo_actions(GaimConnection *gc) { |
| 2681 | 1183 GList *m = NULL; |
| 4333 | 1184 struct proto_actions_menu *pam; |
| 2681 | 1185 |
| 4333 | 1186 pam = g_new0(struct proto_actions_menu, 1); |
| 1187 pam->label = _("Activate ID"); | |
| 1188 pam->callback = yahoo_show_act_id; | |
| 1189 pam->gc = gc; | |
| 1190 m = g_list_append(m, pam); | |
| 2681 | 1191 |
| 1192 return m; | |
| 1193 } | |
| 1194 | |
| 5583 | 1195 static int yahoo_send_im(GaimConnection *gc, const char *who, const char *what, int len, int flags) |
| 2681 | 1196 { |
| 1197 struct yahoo_data *yd = gc->proto_data; | |
| 1198 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_MESSAGE, YAHOO_STATUS_OFFLINE, 0); | |
| 3642 | 1199 char *msg = g_strdup(what); |
| 2681 | 1200 |
| 5583 | 1201 yahoo_packet_hash(pkt, 1, gaim_connection_get_display_name(gc)); |
| 2681 | 1202 yahoo_packet_hash(pkt, 5, who); |
| 3493 | 1203 yahoo_packet_hash(pkt, 14, msg); |
| 6044 | 1204 yahoo_packet_hash(pkt, 97, "1"); |
| 2681 | 1205 |
| 1206 yahoo_send_packet(yd, pkt); | |
| 1207 | |
| 1208 yahoo_packet_free(pkt); | |
| 3493 | 1209 |
| 2681 | 1210 return 1; |
| 1211 } | |
| 1212 | |
| 6059 | 1213 int yahoo_send_typing(GaimConnection *gc, const char *who, int typ) |
| 2993 | 1214 { |
| 1215 struct yahoo_data *yd = gc->proto_data; | |
| 3019 | 1216 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_NOTIFY, YAHOO_STATUS_TYPING, 0); |
| 2993 | 1217 yahoo_packet_hash(pkt, 49, "TYPING"); |
| 5583 | 1218 yahoo_packet_hash(pkt, 1, gaim_connection_get_display_name(gc)); |
| 2993 | 1219 yahoo_packet_hash(pkt, 14, " "); |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
1220 yahoo_packet_hash(pkt, 13, typ == GAIM_TYPING ? "1" : "0"); |
| 2993 | 1221 yahoo_packet_hash(pkt, 5, who); |
| 1222 yahoo_packet_hash(pkt, 1002, "1"); | |
| 1223 | |
| 1224 yahoo_send_packet(yd, pkt); | |
| 1225 | |
| 1226 yahoo_packet_free(pkt); | |
| 1227 | |
| 3001 | 1228 return 0; |
| 2993 | 1229 } |
| 1230 | |
| 6059 | 1231 static void yahoo_set_away(GaimConnection *gc, const char *state, const char *msg) |
| 2681 | 1232 { |
| 1233 struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; | |
| 1234 struct yahoo_packet *pkt; | |
|
2772
f9227268db25
[gaim-migrate @ 2785]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2771
diff
changeset
|
1235 int service; |
| 2681 | 1236 char s[4]; |
| 1237 | |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1238 if (gc->away) { |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1239 g_free(gc->away); |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1240 gc->away = NULL; |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1241 } |
| 2681 | 1242 |
| 1243 if (msg) { | |
| 1244 yd->current_status = YAHOO_STATUS_CUSTOM; | |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1245 gc->away = g_strdup(msg); |
| 2681 | 1246 } else if (state) { |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1247 gc->away = g_strdup(""); |
| 4596 | 1248 if (!strcmp(state, _("Available"))) { |
| 2681 | 1249 yd->current_status = YAHOO_STATUS_AVAILABLE; |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1250 g_free(gc->away); |
| 2681 | 1251 gc->away = NULL; |
| 4596 | 1252 } else if (!strcmp(state, _("Be Right Back"))) { |
| 2681 | 1253 yd->current_status = YAHOO_STATUS_BRB; |
| 4596 | 1254 } else if (!strcmp(state, _("Busy"))) { |
| 2681 | 1255 yd->current_status = YAHOO_STATUS_BUSY; |
| 4596 | 1256 } else if (!strcmp(state, _("Not At Home"))) { |
| 2681 | 1257 yd->current_status = YAHOO_STATUS_NOTATHOME; |
| 4596 | 1258 } else if (!strcmp(state, _("Not At Desk"))) { |
| 2681 | 1259 yd->current_status = YAHOO_STATUS_NOTATDESK; |
| 4596 | 1260 } else if (!strcmp(state, _("Not In Office"))) { |
| 2681 | 1261 yd->current_status = YAHOO_STATUS_NOTINOFFICE; |
| 4606 | 1262 } else if (!strcmp(state, _("On The Phone"))) { |
| 2681 | 1263 yd->current_status = YAHOO_STATUS_ONPHONE; |
| 4596 | 1264 } else if (!strcmp(state, _("On Vacation"))) { |
| 2681 | 1265 yd->current_status = YAHOO_STATUS_ONVACATION; |
| 4596 | 1266 } else if (!strcmp(state, _("Out To Lunch"))) { |
| 2681 | 1267 yd->current_status = YAHOO_STATUS_OUTTOLUNCH; |
| 4596 | 1268 } else if (!strcmp(state, _("Stepped Out"))) { |
| 2681 | 1269 yd->current_status = YAHOO_STATUS_STEPPEDOUT; |
| 4596 | 1270 } else if (!strcmp(state, _("Invisible"))) { |
| 2681 | 1271 yd->current_status = YAHOO_STATUS_INVISIBLE; |
| 1272 } else if (!strcmp(state, GAIM_AWAY_CUSTOM)) { | |
| 1273 if (gc->is_idle) { | |
| 1274 yd->current_status = YAHOO_STATUS_IDLE; | |
| 1275 } else { | |
| 1276 yd->current_status = YAHOO_STATUS_AVAILABLE; | |
| 1277 } | |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4044
diff
changeset
|
1278 g_free(gc->away); |
| 2681 | 1279 gc->away = NULL; |
| 1280 } | |
| 1281 } else if (gc->is_idle) { | |
| 1282 yd->current_status = YAHOO_STATUS_IDLE; | |
| 1283 } else { | |
| 1284 yd->current_status = YAHOO_STATUS_AVAILABLE; | |
| 1285 } | |
| 1286 | |
|
2772
f9227268db25
[gaim-migrate @ 2785]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2771
diff
changeset
|
1287 if (yd->current_status == YAHOO_STATUS_AVAILABLE) |
|
f9227268db25
[gaim-migrate @ 2785]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2771
diff
changeset
|
1288 service = YAHOO_SERVICE_ISBACK; |
|
f9227268db25
[gaim-migrate @ 2785]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2771
diff
changeset
|
1289 else |
|
f9227268db25
[gaim-migrate @ 2785]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2771
diff
changeset
|
1290 service = YAHOO_SERVICE_ISAWAY; |
|
f9227268db25
[gaim-migrate @ 2785]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2771
diff
changeset
|
1291 pkt = yahoo_packet_new(service, yd->current_status, 0); |
| 2681 | 1292 g_snprintf(s, sizeof(s), "%d", yd->current_status); |
| 1293 yahoo_packet_hash(pkt, 10, s); | |
| 1294 if (yd->current_status == YAHOO_STATUS_CUSTOM) | |
| 1295 yahoo_packet_hash(pkt, 19, msg); | |
| 1296 | |
| 1297 yahoo_send_packet(yd, pkt); | |
| 1298 yahoo_packet_free(pkt); | |
| 1299 } | |
| 1300 | |
| 5583 | 1301 static void yahoo_set_idle(GaimConnection *gc, int idle) |
| 2681 | 1302 { |
| 1303 struct yahoo_data *yd = gc->proto_data; | |
| 1304 struct yahoo_packet *pkt = NULL; | |
| 1305 | |
| 1306 if (idle && yd->current_status == YAHOO_STATUS_AVAILABLE) { | |
| 1307 pkt = yahoo_packet_new(YAHOO_SERVICE_ISAWAY, YAHOO_STATUS_IDLE, 0); | |
| 1308 yd->current_status = YAHOO_STATUS_IDLE; | |
| 1309 } else if (!idle && yd->current_status == YAHOO_STATUS_IDLE) { | |
| 1310 pkt = yahoo_packet_new(YAHOO_SERVICE_ISAWAY, YAHOO_STATUS_AVAILABLE, 0); | |
| 1311 yd->current_status = YAHOO_STATUS_AVAILABLE; | |
| 1312 } | |
| 1313 | |
| 1314 if (pkt) { | |
| 1315 char buf[4]; | |
| 1316 g_snprintf(buf, sizeof(buf), "%d", yd->current_status); | |
| 1317 yahoo_packet_hash(pkt, 10, buf); | |
| 1318 yahoo_send_packet(yd, pkt); | |
| 1319 yahoo_packet_free(pkt); | |
| 1320 } | |
| 1321 } | |
| 1322 | |
| 5583 | 1323 static GList *yahoo_away_states(GaimConnection *gc) |
| 2681 | 1324 { |
| 1325 GList *m = NULL; | |
| 1326 | |
| 4596 | 1327 m = g_list_append(m, _("Available")); |
| 1328 m = g_list_append(m, _("Be Right Back")); | |
| 1329 m = g_list_append(m, _("Busy")); | |
| 1330 m = g_list_append(m, _("Not At Home")); | |
| 1331 m = g_list_append(m, _("Not At Desk")); | |
| 1332 m = g_list_append(m, _("Not In Office")); | |
| 4606 | 1333 m = g_list_append(m, _("On The Phone")); |
| 4596 | 1334 m = g_list_append(m, _("On Vacation")); |
| 1335 m = g_list_append(m, _("Out To Lunch")); | |
| 1336 m = g_list_append(m, _("Stepped Out")); | |
| 1337 m = g_list_append(m, _("Invisible")); | |
| 2681 | 1338 m = g_list_append(m, GAIM_AWAY_CUSTOM); |
| 1339 | |
| 1340 return m; | |
| 1341 } | |
| 1342 | |
| 5583 | 1343 static void yahoo_keepalive(GaimConnection *gc) |
| 2681 | 1344 { |
| 1345 struct yahoo_data *yd = gc->proto_data; | |
| 1346 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_PING, YAHOO_STATUS_AVAILABLE, 0); | |
| 1347 yahoo_send_packet(yd, pkt); | |
| 1348 yahoo_packet_free(pkt); | |
| 1349 } | |
| 1350 | |
| 5583 | 1351 static void yahoo_add_buddy(GaimConnection *gc, const char *who) |
| 2681 | 1352 { |
| 1353 struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; | |
| 1354 struct yahoo_packet *pkt; | |
| 1355 struct group *g; | |
| 1356 char *group = NULL; | |
| 1357 | |
| 1358 if (!yd->logged_in) | |
| 1359 return; | |
| 1360 | |
| 4687 | 1361 g = gaim_find_buddys_group(gaim_find_buddy(gc->account, who)); |
| 2681 | 1362 if (g) |
| 1363 group = g->name; | |
| 1364 else | |
| 1365 group = "Buddies"; | |
| 1366 | |
| 1367 pkt = yahoo_packet_new(YAHOO_SERVICE_ADDBUDDY, YAHOO_STATUS_AVAILABLE, 0); | |
| 5583 | 1368 yahoo_packet_hash(pkt, 1, gaim_connection_get_display_name(gc)); |
| 2681 | 1369 yahoo_packet_hash(pkt, 7, who); |
| 1370 yahoo_packet_hash(pkt, 65, group); | |
| 1371 yahoo_send_packet(yd, pkt); | |
| 1372 yahoo_packet_free(pkt); | |
| 1373 } | |
| 1374 | |
| 6059 | 1375 static void yahoo_remove_buddy(GaimConnection *gc, const char *who, const char *group) |
| 2681 | 1376 { |
| 1377 struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; | |
| 1378 | |
| 1379 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_REMBUDDY, YAHOO_STATUS_AVAILABLE, 0); | |
| 5583 | 1380 yahoo_packet_hash(pkt, 1, gaim_connection_get_display_name(gc)); |
| 2681 | 1381 yahoo_packet_hash(pkt, 7, who); |
| 1382 yahoo_packet_hash(pkt, 65, group); | |
| 1383 yahoo_send_packet(yd, pkt); | |
| 1384 yahoo_packet_free(pkt); | |
| 1385 } | |
| 1386 | |
| 6513 | 1387 static gboolean yahoo_unload_plugin(GaimPlugin *plugin) |
| 1388 { | |
| 1389 yahoo_dest_colorht(); | |
| 1390 return TRUE; | |
| 1391 } | |
| 1392 | |
| 6514 | 1393 static void yahoo_got_info(gpointer data, char *url_text, unsigned long len) |
| 1394 { | |
| 1395 char *stripped,*p; | |
| 1396 char buf[1024]; | |
| 1397 | |
| 1398 /* we failed to grab the profile URL */ | |
| 1399 if (!url_text) { | |
| 1400 g_show_info_text(NULL, NULL, 2, | |
| 1401 "<html><body><b>Error retrieving profile</b></body></html>", NULL); | |
| 1402 return; | |
| 1403 } | |
| 1404 | |
| 1405 /* we don't yet support the multiple link level of the warning page for | |
| 1406 * 'adult' profiles, not to mention the fact that yahoo wants you to be | |
| 1407 * logged in (on the website) to be able to view an 'adult' profile. for | |
| 1408 * now, just tell them that we can't help them, and provide a link to the | |
| 1409 * profile if they want to do the web browser thing. | |
| 1410 */ | |
| 1411 p = strstr(url_text, "Adult Profiles Warning Message"); | |
| 1412 if (p) { | |
| 1413 strcpy(buf, "<b>Sorry, profiles marked as containing adult content are "); | |
| 1414 strcat(buf, "not supported at this time.</b><br><br>\n"); | |
| 1415 info_extract_field(url_text, buf, ".idname=", 0, "%26", 0, NULL, | |
| 1416 "If you wish to view this profile, you will need to visit this link in your web browser", | |
| 1417 1, YAHOO_PROFILE_URL); | |
| 1418 strcat(buf, "</body></html>\n"); | |
| 1419 g_show_info_text(NULL, NULL, 2, buf, NULL); | |
| 1420 return; | |
| 1421 } | |
| 1422 | |
| 1423 /* strip_html() doesn't strip out character entities like and · | |
| 1424 */ | |
| 1425 while ((p = strstr(url_text, " ")) != NULL) { | |
| 1426 memmove(p, p + 6, strlen(p + 6)); | |
| 1427 url_text[strlen(url_text) - 6] = '\0'; | |
| 1428 } | |
| 1429 while ((p = strstr(url_text, "·")) != NULL) { | |
| 1430 memmove(p, p + 6, strlen(p + 6)); | |
| 1431 url_text[strlen(url_text) - 6] = '\0'; | |
| 1432 } | |
| 1433 | |
| 1434 /* nuke the nasty \r's */ | |
| 1435 while ((p = strchr(url_text, '\r')) != NULL) { | |
| 1436 memmove(p, p + 1, strlen(p + 1)); | |
| 1437 url_text[strlen(url_text) - 1] = '\0'; | |
| 1438 } | |
| 1439 | |
| 1440 /* nuke the html, it's easier than trying to parse the horrid stuff */ | |
| 1441 stripped = strip_html(url_text); | |
| 1442 | |
| 1443 /* gonna re-use the memory we've already got for url_text */ | |
| 1444 strcpy(url_text, "<html><body>\n"); | |
| 1445 | |
| 1446 /* extract their Yahoo! ID and put it in */ | |
| 1447 info_extract_field(stripped, url_text, "Yahoo! ID:", 2, "\n", 0, | |
| 1448 NULL, "Yahoo! ID", 0, NULL); | |
| 1449 | |
| 1450 /* extract their Email address and put it in */ | |
| 1451 info_extract_field(stripped, url_text, "My Email", 5, "\n", 0, | |
| 1452 "Private", "Email", 0, NULL); | |
| 1453 | |
| 1454 /* extract the Nickname if it exists */ | |
| 1455 info_extract_field(stripped, url_text, "Nickname:", 1, "\n", '\n', | |
| 1456 NULL, "Nickname", 0, NULL); | |
| 1457 | |
| 1458 /* extract their RealName and put it in */ | |
| 1459 info_extract_field(stripped, url_text, "RealName:", 1, "\n", '\n', | |
| 1460 NULL, "Real Name", 0, NULL); | |
| 1461 | |
| 1462 /* extract their Location and put it in */ | |
| 1463 info_extract_field(stripped, url_text, "Location:", 2, "\n", '\n', | |
| 1464 NULL, "Location", 0, NULL); | |
| 1465 | |
| 1466 /* extract their Age and put it in */ | |
| 1467 info_extract_field(stripped, url_text, "Age:", 3, "\n", '\n', | |
| 1468 NULL, "Age", 0, NULL); | |
| 1469 | |
| 1470 /* extract their MaritalStatus and put it in */ | |
| 1471 info_extract_field(stripped, url_text, "MaritalStatus:", 3, "\n", '\n', | |
| 1472 "No Answer", "Marital Status", 0, NULL); | |
| 1473 | |
| 1474 /* extract their Gender and put it in */ | |
| 1475 info_extract_field(stripped, url_text, "Gender:", 3, "\n", '\n', | |
| 1476 "No Answer", "Gender", 0, NULL); | |
| 1477 | |
| 1478 /* extract their Occupation and put it in */ | |
| 1479 info_extract_field(stripped, url_text, "Occupation:", 2, "\n", '\n', | |
| 1480 NULL, "Occupation", 0, NULL); | |
| 1481 | |
| 1482 /* Hobbies, Latest News, and Favorite Quote are a bit different, since the | |
| 1483 * values can contain embedded newlines... but any or all of them can also | |
| 1484 * not appear. The way we delimit them is to successively look for the next | |
| 1485 * one that _could_ appear, and if all else fails, we end the section by | |
| 1486 * looking for the 'Links' heading, which is the next thing to follow this | |
| 1487 * bunch. | |
| 1488 */ | |
| 1489 if (!info_extract_field(stripped, url_text, "Hobbies:", 1, "Latest News", | |
| 1490 '\n', NULL, "Hobbies", 0, NULL)) | |
| 1491 if (!info_extract_field(stripped, url_text, "Hobbies:", 1, "Favorite Quote", | |
| 1492 '\n', NULL, "Hobbies", 0, NULL)) | |
| 1493 info_extract_field(stripped, url_text, "Hobbies:", 1, "Links", | |
| 1494 '\n', NULL, "Hobbies", 0, NULL); | |
| 1495 if (!info_extract_field(stripped, url_text, "Latest News:", 1, "Favorite Quote", | |
| 1496 '\n', NULL, "Latest News", 0, NULL)) | |
| 1497 info_extract_field(stripped, url_text, "Latest News:", 1, "Links", | |
| 1498 '\n', NULL, "Latest News", 0, NULL); | |
| 1499 info_extract_field(stripped, url_text, "Favorite Quote:", 0, "Links", | |
| 1500 '\n', NULL, "Favorite Quote", 0, NULL); | |
| 1501 | |
| 1502 /* Home Page will either be "No home page specified", | |
| 1503 * or "Home Page: " and a link. */ | |
| 1504 p = strstr(stripped, "No home page specified"); | |
| 1505 if (!p) | |
| 1506 info_extract_field(stripped, url_text, "Home Page:", 1, " ", 0, NULL, | |
| 1507 "Home Page", 1, NULL); | |
| 1508 | |
| 1509 /* Cool Link {1,2,3} is also different. If "No cool link specified" exists, | |
| 1510 * then we have none. If we have one however, we'll need to check and see if | |
| 1511 * we have a second one. If we have a second one, we have to check to see if | |
| 1512 * we have a third one. | |
| 1513 */ | |
| 1514 p = strstr(stripped,"No cool link specified"); | |
| 1515 if (!p) | |
| 1516 if (info_extract_field(stripped, url_text, "Cool Link 1:", 1, " ", 0, NULL, | |
| 1517 "Cool Link 1", 1, NULL)) | |
| 1518 if (info_extract_field(stripped, url_text, "Cool Link 2:", 1, " ", 0, NULL, | |
| 1519 "Cool Link 2", 1, NULL)) | |
| 1520 info_extract_field(stripped, url_text, "Cool Link 3:", 1, " ", 0, NULL, | |
| 1521 "Cool Link 3", 1, NULL); | |
| 1522 | |
| 1523 /* see if Member Since is there, and if so, extract it. */ | |
| 1524 info_extract_field(stripped, url_text, "Member Since:", 1, "Last Updated:", | |
| 1525 '\n', NULL, "Member Since", 0, NULL); | |
| 1526 | |
| 1527 /* extract the Last Updated date and put it in */ | |
| 1528 info_extract_field(stripped, url_text, "Last Updated:", 1, "\n", '\n', NULL, | |
| 1529 "Last Updated", 0, NULL); | |
| 1530 | |
| 1531 /* finish off the html */ | |
| 1532 strcat(url_text, "</body></html>\n"); | |
| 1533 g_free(stripped); | |
| 1534 | |
| 1535 /* show it to the user */ | |
| 1536 g_show_info_text(NULL, NULL, 2, url_text, NULL); | |
| 1537 } | |
| 1538 | |
| 1539 static void yahoo_get_info(GaimConnection *gc, const char *name) | |
| 1540 { | |
| 1541 /* struct yahoo_data *yd = (struct yahoo_data *)gc->proto_data; */ | |
| 1542 char url[256]; | |
| 1543 g_snprintf(url, sizeof url, "%s%s", YAHOO_PROFILE_URL, name); | |
| 6516 | 1544 grab_url(url, FALSE, yahoo_got_info, NULL, NULL, 0); |
| 6514 | 1545 } |
| 1546 | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1547 static GaimPlugin *my_protocol = NULL; |
| 2681 | 1548 |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1549 static GaimPluginProtocolInfo prpl_info = |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1550 { |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1551 GAIM_PROTO_YAHOO, |
| 5367 | 1552 OPT_PROTO_MAIL_CHECK | OPT_PROTO_USE_POINTSIZE, |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1553 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1554 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1555 yahoo_list_icon, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1556 yahoo_list_emblems, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1557 yahoo_status_text, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1558 yahoo_tooltip_text, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1559 yahoo_away_states, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1560 yahoo_actions, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1561 yahoo_buddy_menu, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1562 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1563 yahoo_login, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1564 yahoo_close, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1565 yahoo_send_im, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1566 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1567 yahoo_send_typing, |
| 6514 | 1568 yahoo_get_info, |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1569 yahoo_set_away, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1570 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1571 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1572 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1573 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1574 yahoo_set_idle, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1575 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1576 yahoo_add_buddy, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1577 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1578 yahoo_remove_buddy, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1579 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1580 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1581 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1582 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1583 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1584 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1585 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1586 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1587 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1588 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1589 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1590 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1591 yahoo_keepalive, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1592 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1593 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1594 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1595 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1596 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1597 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1598 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1599 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1600 NULL |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1601 }; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1602 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1603 static GaimPluginInfo info = |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1604 { |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1605 2, /**< api_version */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1606 GAIM_PLUGIN_PROTOCOL, /**< type */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1607 NULL, /**< ui_requirement */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1608 0, /**< flags */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1609 NULL, /**< dependencies */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1610 GAIM_PRIORITY_DEFAULT, /**< priority */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1611 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1612 "prpl-yahoo", /**< id */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1613 "Yahoo", /**< name */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1614 VERSION, /**< version */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1615 /** summary */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1616 N_("Yahoo Protocol Plugin"), |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1617 /** description */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1618 N_("Yahoo Protocol Plugin"), |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1619 NULL, /**< author */ |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
1620 GAIM_WEBSITE, /**< homepage */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1621 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1622 NULL, /**< load */ |
| 6513 | 1623 yahoo_unload_plugin, /**< unload */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1624 NULL, /**< destroy */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1625 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1626 NULL, /**< ui_info */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1627 &prpl_info /**< extra_info */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1628 }; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1629 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1630 static void |
|
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1631 init_plugin(GaimPlugin *plugin) |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1632 { |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1633 GaimAccountOption *option; |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1634 |
|
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
1635 option = gaim_account_option_string_new(_("Pager host"), "server", |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1636 YAHOO_PAGER_HOST); |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1637 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1638 option); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1639 |
|
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
1640 option = gaim_account_option_int_new(_("Pager port"), "port", |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1641 YAHOO_PAGER_PORT); |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1642 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5590
diff
changeset
|
1643 option); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1644 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1645 my_protocol = plugin; |
| 6513 | 1646 |
| 1647 yahoo_init_colorht(); | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1648 } |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
1649 |
|
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1650 GAIM_INIT_PLUGIN(yahoo, init_plugin, info); |
