Mercurial > pidgin.yaz
annotate src/protocols/napster/napster.c @ 10119:2a2cd2a6f7cf
[gaim-migrate @ 11156]
bleeter added /join and /buzz commands for yahoo.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Tue, 19 Oct 2004 01:46:20 +0000 |
parents | 56e34a659db2 |
children | 1d3c9da4929f |
rev | line source |
---|---|
2086 | 1 /* |
2 * gaim - Napster Protocol Plugin | |
3 * | |
3322 | 4 * Copyright (C) 2000-2001, Rob Flynn <rob@marko.net> |
7084
0909ebf6fb28
[gaim-migrate @ 7649]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
5 * |
2086 | 6 * This program is free software; you can redistribute it and/or modify |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
20 #include "internal.h" |
2086 | 21 |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
22 #include "account.h" |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
23 #include "accountopt.h" |
9030 | 24 #include "blist.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
25 #include "conversation.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
26 #include "debug.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
27 #include "notify.h" |
2086 | 28 #include "prpl.h" |
29 #include "proxy.h" | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
30 #include "util.h" |
9943 | 31 #include "version.h" |
3630 | 32 |
3322 | 33 #define NAP_SERVER "64.124.41.187" |
34 #define NAP_PORT 8888 | |
35 | |
5604 | 36 #define NAPSTER_CONNECT_STEPS 2 |
37 | |
2086 | 38 GSList *nap_connections = NULL; |
39 | |
40 struct nap_data { | |
41 int fd; | |
42 gchar *email; | |
43 }; | |
44 | |
5679 | 45 static GaimConversation *nap_find_chat(GaimConnection *gc, const char *name) |
2086 | 46 { |
5402 | 47 GSList *bcs = gc->buddy_chats; |
2086 | 48 |
5402 | 49 while (bcs) { |
5679 | 50 GaimConversation *b = bcs->data; |
5402 | 51 if (!gaim_utf8_strcasecmp(b->name, name)) |
5388 | 52 return b; |
5402 | 53 bcs = bcs->next; |
5388 | 54 } |
55 | |
56 return NULL; | |
57 } | |
58 | |
5604 | 59 static void nap_write_packet(GaimConnection *gc, unsigned short command, const char *format, ...) |
5388 | 60 { |
61 struct nap_data *ndata = (struct nap_data *)gc->proto_data; | |
62 va_list ap; | |
63 gchar *message; | |
64 unsigned short size; | |
65 | |
66 va_start(ap, format); | |
67 message = g_strdup_vprintf(format, ap); | |
68 va_end(ap); | |
69 | |
70 size = strlen(message); | |
71 gaim_debug(GAIM_DEBUG_MISC, "napster", "S %3hd: %s\n", command, message); | |
72 | |
73 write(ndata->fd, &size, 2); | |
74 write(ndata->fd, &command, 2); | |
75 write(ndata->fd, message, size); | |
76 | |
77 g_free(message); | |
78 } | |
79 | |
5604 | 80 static int nap_do_irc_style(GaimConnection *gc, const char *message, const char *name) |
5388 | 81 { |
82 gchar **res; | |
83 | |
84 gaim_debug(GAIM_DEBUG_MISC, "napster", "C %s\n", message); | |
85 | |
86 res = g_strsplit(message, " ", 2); | |
87 | |
8386 | 88 if (!g_ascii_strcasecmp(res[0], "/ME")) { /* MSG_CLIENT_PUBLIC */ |
5402 | 89 nap_write_packet(gc, 824, "%s \"%s\"", name, res[1]); |
5388 | 90 |
8386 | 91 } else if (!g_ascii_strcasecmp(res[0], "/MSG")) { /* MSG_CLIENT_PUBLIC */ |
5388 | 92 nap_write_packet(gc, 205, "%s", res[1]); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4349
diff
changeset
|
93 |
8386 | 94 } else if (!g_ascii_strcasecmp(res[0], "/JOIN")) { /* join chatroom MSG_CLIENT_JOIN */ |
5388 | 95 if (!res[1]) { |
96 g_strfreev(res); | |
97 return 1; | |
98 } | |
99 if (res[1][0] != '#') | |
100 nap_write_packet(gc, 400, "#%s", res[1]); | |
101 else | |
102 nap_write_packet(gc, 400, "%s", res[1]); | |
103 | |
8386 | 104 } else if (!g_ascii_strcasecmp(res[0], "/PART")) { /* partchatroom MSG_CLIENT_PART */ |
5402 | 105 nap_write_packet(gc, 401, "%s", res[1] ? res[1] : name); |
5388 | 106 |
8386 | 107 } else if (!g_ascii_strcasecmp(res[0], "/TOPIC")) { /* set topic MSG_SERVER_TOPIC */ |
5402 | 108 nap_write_packet(gc, 410, "%s", res[1] ? res[1] : name); |
5388 | 109 |
8386 | 110 } else if (!g_ascii_strcasecmp(res[0], "/WHOIS")) { /* whois request MSG_CLIENT_WHOIS */ |
5388 | 111 nap_write_packet(gc, 603, "%s", res[1]); |
112 | |
8386 | 113 } else if (!g_ascii_strcasecmp(res[0], "/PING")) { /* send ping MSG_CLIENT_PING */ |
5388 | 114 nap_write_packet(gc, 751, "%s", res[1]); |
115 | |
8386 | 116 } else if (!g_ascii_strcasecmp(res[0], "/KICK")) { /* kick asswipe MSG_CLIENT_KICK */ |
5388 | 117 nap_write_packet(gc, 829, "%s", res[1]); |
118 | |
119 } else { | |
120 g_strfreev(res); | |
121 return 1; | |
122 } | |
123 | |
124 g_strfreev(res); | |
125 return 0; | |
126 } | |
127 | |
128 /* 205 - MSG_CLIENT_PRIVMSG */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
129 static int nap_send_im(GaimConnection *gc, const char *who, const char *message, GaimConvImFlags flags) |
5388 | 130 { |
131 | |
132 if ((strlen(message) < 2) || (message[0] != '/' ) || (message[1] == '/')) { | |
133 /* Actually send a chat message */ | |
134 nap_write_packet(gc, 205, "%s %s", who, message); | |
135 } else { | |
136 /* user typed an IRC-style command */ | |
137 nap_do_irc_style(gc, message, who); | |
2086 | 138 } |
139 | |
5388 | 140 return 1; |
141 } | |
142 | |
143 /* 207 - MSG_CLIENT_ADD_HOTLIST */ | |
9285 | 144 static void nap_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) |
5388 | 145 { |
9285 | 146 nap_write_packet(gc, 207, "%s", buddy->name); |
5388 | 147 } |
148 | |
149 /* 208 - MSG_CLIENT_ADD_HOTLIST_SEQ */ | |
9285 | 150 static void nap_add_buddies(GaimConnection *gc, GList *buddies, GList *groups) |
5388 | 151 { |
152 while (buddies) { | |
9285 | 153 GaimBuddy *buddy = buddies->data; |
154 nap_write_packet(gc, 208, "%s", buddy->name); | |
155 buddies = buddies->next; | |
5388 | 156 } |
157 } | |
158 | |
159 /* 303 - MSG_CLIENT_REMOVE_HOTLIST */ | |
9285 | 160 static void nap_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) |
5388 | 161 { |
9285 | 162 nap_write_packet(gc, 303, "%s", buddy->name); |
5388 | 163 } |
164 | |
9917 | 165 static char *nap_get_chat_name(GHashTable *data) { |
166 char *name = g_hash_table_lookup(data, "group"); | |
167 | |
168 /* Make sure the name has a # preceding it */ | |
169 if (name[0] != '#') { | |
170 return g_strdup_printf("#%s", name); | |
171 } | |
172 | |
173 return g_strdup(name); | |
174 | |
175 } | |
176 | |
5388 | 177 /* 400 - MSG_CLIENT_JOIN */ |
5604 | 178 static void nap_join_chat(GaimConnection *gc, GHashTable *data) |
5388 | 179 { |
180 char *name; | |
181 | |
182 if (!data) | |
183 return; | |
184 | |
9917 | 185 name = nap_get_chat_name(data); |
5388 | 186 |
9917 | 187 if (name) { |
5388 | 188 nap_write_packet(gc, 400, "%s", name); |
9917 | 189 g_free(name); |
190 } | |
5388 | 191 } |
192 | |
193 /* 401 - MSG_CLIENT_PART */ | |
5604 | 194 static void nap_chat_leave(GaimConnection *gc, int id) |
5388 | 195 { |
5679 | 196 GaimConversation *c = gaim_find_chat(gc, id); |
5388 | 197 |
5402 | 198 if (!c) |
5388 | 199 return; |
200 | |
5402 | 201 nap_write_packet(gc, 401, "%s", c->name); |
5388 | 202 } |
203 | |
204 /* 402 - MSG_CLIENT_PUBLIC */ | |
6059 | 205 static int nap_chat_send(GaimConnection *gc, int id, const char *message) |
5388 | 206 { |
5679 | 207 GaimConversation *c = gaim_find_chat(gc, id); |
5388 | 208 |
5402 | 209 if (!c) |
5388 | 210 return -EINVAL; |
211 | |
212 if ((strlen(message) < 2) || (message[0] != '/' ) || (message[1] == '/')) { | |
213 /* Actually send a chat message */ | |
5402 | 214 nap_write_packet(gc, 402, "%s %s", c->name, message); |
5388 | 215 } else { |
216 /* user typed an IRC-style command */ | |
5402 | 217 nap_do_irc_style(gc, message, c->name); |
5388 | 218 } |
219 | |
220 return 0; | |
221 } | |
222 | |
223 /* 603 - MSG_CLIENT_WHOIS */ | |
5604 | 224 static void nap_get_info(GaimConnection *gc, const char *who) |
5388 | 225 { |
226 nap_write_packet(gc, 603, "%s", who); | |
2086 | 227 } |
228 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
229 static void nap_callback(gpointer data, gint source, GaimInputCondition condition) |
2086 | 230 { |
5604 | 231 GaimConnection *gc = data; |
2086 | 232 struct nap_data *ndata = gc->proto_data; |
10010 | 233 GaimAccount *account = gaim_connection_get_account(gc); |
5679 | 234 GaimConversation *c; |
5402 | 235 gchar *buf, *buf2, *buf3, **res; |
2086 | 236 unsigned short header[2]; |
237 int len; | |
238 int command; | |
2220
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
239 int i; |
2086 | 240 |
5388 | 241 if (read(source, (void*)header, 4) != 4) { |
5604 | 242 gaim_connection_error(gc, _("Unable to read header from server")); |
2220
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
243 return; |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
244 } |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
245 |
2086 | 246 len = header[0]; |
247 command = header[1]; | |
5388 | 248 buf = (gchar *)g_malloc((len + 1) * sizeof(gchar)); |
249 buf[len] = '\0'; | |
2086 | 250 |
2220
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
251 i = 0; |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
252 do { |
5388 | 253 int tmp = read(source, buf + i, len - i); |
2220
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
254 if (tmp <= 0) { |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
255 g_free(buf); |
9040 | 256 buf = g_strdup_printf(_("Unable to read message from server: %s. Command is %hd, length is %hd."), strerror(errno), len, command); |
5604 | 257 gaim_connection_error(gc, buf); |
5388 | 258 g_free(buf); |
2220
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
259 return; |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
260 } |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
261 i += tmp; |
8b7ba25a7ece
[gaim-migrate @ 2230]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
262 } while (i != len); |
2086 | 263 |
5388 | 264 gaim_debug(GAIM_DEBUG_MISC, "napster", "R %3hd: %s\n", command, buf); |
2086 | 265 |
5388 | 266 switch (command) { |
267 case 000: /* MSG_SERVER_ERROR */ | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
268 gaim_notify_error(gc, NULL, buf, NULL); |
5388 | 269 gaim_input_remove(gc->inpa); |
270 gc->inpa = 0; | |
2086 | 271 close(source); |
5604 | 272 gaim_connection_destroy(gc); |
5388 | 273 break; |
2086 | 274 |
5388 | 275 case 003: /* MSG_SERVER_EMAIL */ |
276 gaim_debug(GAIM_DEBUG_MISC, "napster", "Registered with e-mail address: %s\n", buf); | |
2086 | 277 ndata->email = g_strdup(buf); |
278 | |
279 /* Our signon is complete */ | |
5604 | 280 gaim_connection_set_state(gc, GAIM_CONNECTED); |
2086 | 281 serv_finish_login(gc); |
282 | |
5388 | 283 break; |
284 | |
285 case 201: /* MSG_SERVER_SEARCH_RESULT */ | |
286 res = g_strsplit(buf, " ", 0); | |
10010 | 287 gaim_prpl_got_user_status(account, res[0], "online", NULL); |
5388 | 288 g_strfreev(res); |
289 break; | |
290 | |
291 case 202: /* MSG_SERVER_SEARCH_END */ | |
10010 | 292 gaim_prpl_got_user_status(account, res[0], "offline", NULL); |
5388 | 293 break; |
294 | |
295 case 205: /* MSG_CLIENT_PRIVMSG */ | |
296 res = g_strsplit(buf, " ", 2); | |
8495 | 297 buf2 = gaim_escape_html(res[1]); |
298 serv_got_im(gc, res[0], buf2, 0, time(NULL)); | |
299 g_free(buf2); | |
5388 | 300 g_strfreev(res); |
301 break; | |
302 | |
303 case 209: /* MSG_SERVER_USER_SIGNON */ | |
304 /* USERNAME SPEED */ | |
305 res = g_strsplit(buf, " ", 2); | |
10010 | 306 gaim_prpl_got_user_status(account, res[0], "online", NULL); |
5388 | 307 g_strfreev(res); |
308 break; | |
309 | |
310 case 210: /* MSG_SERVER_USER_SIGNOFF */ | |
311 /* USERNAME SPEED */ | |
312 res = g_strsplit(buf, " ", 2); | |
10010 | 313 gaim_prpl_got_user_status(account, res[0], "offline", NULL); |
5388 | 314 g_strfreev(res); |
315 break; | |
316 | |
317 case 214: /* MSG_SERVER_STATS */ | |
318 res = g_strsplit(buf, " ", 3); | |
319 buf2 = g_strdup_printf(_("users: %s, files: %s, size: %sGB"), res[0], res[1], res[2]); | |
6982 | 320 serv_got_im(gc, "server", buf2, 0, time(NULL)); |
5388 | 321 g_free(buf2); |
322 g_strfreev(res); | |
323 break; | |
324 | |
325 case 301: /* MSG_SERVER_HOTLIST_ACK */ | |
326 /* Our buddy was added successfully */ | |
327 break; | |
328 | |
329 case 302: /* MSG_SERVER_HOTLIST_ERROR */ | |
330 buf2 = g_strdup_printf(_("Unable to add \"%s\" to your Napster hotlist"), buf); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
331 gaim_notify_error(gc, NULL, buf2, NULL); |
5388 | 332 g_free(buf2); |
333 break; | |
334 | |
335 case 316: /* MSG_SERVER_DISCONNECTING */ | |
336 /* we have been kicked off =^( */ | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
337 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
338 _("You were disconnected from the server."), NULL); |
5604 | 339 gaim_connection_destroy(gc); |
5388 | 340 break; |
341 | |
342 case 401: /* MSG_CLIENT_PART */ | |
5402 | 343 c = nap_find_chat(gc, buf); |
344 if (c) | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
345 serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(c))); |
5388 | 346 break; |
347 | |
348 case 403: /* MSG_SERVER_PUBLIC */ | |
349 res = g_strsplit(buf, " ", 3); | |
5402 | 350 c = nap_find_chat(gc, res[0]); |
351 if (c) | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
352 serv_got_chat_in(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(c)), res[1], 0, res[2], time((time_t)NULL)); |
5388 | 353 g_strfreev(res); |
354 break; | |
355 | |
356 case 404: /* MSG_SERVER_NOSUCH */ | |
357 /* abused by opennap servers to broadcast stuff */ | |
8495 | 358 buf2 = gaim_escape_html(buf); |
359 serv_got_im(gc, "server", buf2, 0, time(NULL)); | |
360 g_free(buf2); | |
5388 | 361 break; |
362 | |
363 case 405: /* MSG_SERVER_JOIN_ACK */ | |
5402 | 364 c = nap_find_chat(gc, buf); |
365 if (!c) | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
366 serv_got_joined_chat(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(c)), buf); |
5388 | 367 break; |
368 | |
369 case 407: /* MSG_SERVER_PART */ | |
370 res = g_strsplit(buf, " ", 0); | |
5402 | 371 c = nap_find_chat(gc, res[0]); |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
372 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(c), res[1], NULL); |
5388 | 373 g_strfreev(res); |
374 break; | |
375 | |
376 case 406: /* MSG_SERVER_JOIN */ | |
377 case 408: /* MSG_SERVER_CHANNEL_USER_LIST */ | |
378 res = g_strsplit(buf, " ", 4); | |
5402 | 379 c = nap_find_chat(gc, res[0]); |
9846 | 380 gaim_conv_chat_add_user(GAIM_CONV_CHAT(c), res[1], NULL, GAIM_CBFLAGS_NONE, TRUE); |
5388 | 381 g_strfreev(res); |
382 break; | |
383 | |
384 case 409: /* MSG_SERVER_CHANNEL_USER_LIST_END */ | |
385 break; | |
386 | |
387 case 410: /* MSG_SERVER_TOPIC */ | |
388 /* display the topic in the channel */ | |
389 res = g_strsplit(buf, " ", 2); | |
5402 | 390 c = nap_find_chat(gc, res[0]); |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
391 gaim_conv_chat_set_topic(GAIM_CONV_CHAT(c), res[0], res[1]); |
5388 | 392 g_strfreev(res); |
393 break; | |
394 | |
395 case 603: /* MSG_CLIENT_WHOIS */ | |
396 buf2 = g_strdup_printf(_("%s requested your information"), buf); | |
6982 | 397 serv_got_im(gc, "server", buf2, 0, time(NULL)); |
5388 | 398 g_free(buf2); |
399 break; | |
400 | |
401 case 604: /* MSG_SERVER_WHOIS_RESPONSE */ | |
402 /* XXX - Format is: "Elite" 37 " " "Active" 0 0 0 0 "gaim 0.63cvs" 0 0 192.168.1.41 32798 0 unknown flounder */ | |
403 res = g_strsplit(buf, " ", 2); | |
7062
86ed8b2aa665
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
404 /* res[0] == username */ |
9797 | 405 gaim_notify_userinfo(gc, res[0], NULL, _("Buddy Information"), NULL, |
7062
86ed8b2aa665
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
406 res[1], NULL, NULL); |
5388 | 407 g_strfreev(res); |
408 break; | |
409 | |
410 case 621: | |
411 case 622: /* MSG_CLIENT_MOTD */ | |
412 /* also replaces MSG_SERVER_MOTD, so we should display it */ | |
8495 | 413 buf2 = gaim_escape_html(buf); |
414 serv_got_im(gc, "motd", buf2, 0, time(NULL)); | |
415 g_free(buf2); | |
5388 | 416 break; |
417 | |
418 case 627: /* MSG_CLIENT_WALLOP */ | |
419 /* abused by opennap server maintainers to broadcast stuff */ | |
8495 | 420 buf2 = gaim_escape_html(buf); |
421 serv_got_im(gc, "wallop", buf2, 0, time(NULL)); | |
422 g_free(buf2); | |
5388 | 423 break; |
424 | |
425 case 628: /* MSG_CLIENT_ANNOUNCE */ | |
8495 | 426 buf2 = gaim_escape_html(buf); |
427 serv_got_im(gc, "announce", buf2, 0, time(NULL)); | |
428 g_free(buf); | |
5388 | 429 break; |
430 | |
431 case 748: /* MSG_SERVER_GHOST */ | |
432 /* Looks like someone logged in as us! =-O */ | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
433 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
434 _("You were disconnected from the server, because " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
435 "you logged on from a different location"), NULL); |
5604 | 436 gaim_connection_destroy(gc); |
5388 | 437 break; |
438 | |
439 case 751: /* MSG_CLIENT_PING */ | |
440 buf2 = g_strdup_printf(_("%s requested a PING"), buf); | |
6982 | 441 serv_got_im(gc, "server", buf2, 0, time(NULL)); |
5388 | 442 g_free(buf2); |
443 /* send back a pong */ | |
444 /* MSG_CLIENT_PONG */ | |
445 nap_write_packet(gc, 752, "%s", buf); | |
446 break; | |
447 | |
448 case 752: /* MSG_CLIENT_PONG */ | |
449 buf2 = g_strdup_printf("Received pong from %s", buf); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5402
diff
changeset
|
450 gaim_notify_info(gc, NULL, buf2, NULL); |
5388 | 451 g_free(buf2); |
452 break; | |
453 | |
454 case 824: /* MSG_CLIENT_EMOTE */ | |
455 res = g_strsplit(buf, " ", 3); | |
456 buf2 = g_strndup(res[2]+1, strlen(res[2]) - 2); /* chomp off the surround quotes */ | |
457 buf3 = g_strdup_printf("/me %s", buf2); | |
458 g_free(buf2); | |
5402 | 459 if ((c = nap_find_chat(gc, res[0]))) { |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
460 gaim_conv_chat_write(GAIM_CONV_CHAT(c), res[1], buf3, GAIM_MESSAGE_NICK, time(NULL)); |
5388 | 461 } |
462 g_free(buf3); | |
463 g_strfreev(res); | |
464 break; | |
465 | |
466 default: | |
467 gaim_debug(GAIM_DEBUG_MISC, "napster", "Unknown packet %hd: %s\n", command, buf); | |
468 break; | |
2086 | 469 } |
5388 | 470 |
471 g_free(buf); | |
2086 | 472 } |
473 | |
5388 | 474 /* 002 - MSG_CLIENT_LOGIN */ |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
475 static void nap_login_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 476 { |
5604 | 477 GaimConnection *gc = data; |
5388 | 478 struct nap_data *ndata = (struct nap_data *)gc->proto_data; |
479 gchar *buf; | |
2086 | 480 |
5605 | 481 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2701
8a84f2bb1716
[gaim-migrate @ 2714]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
482 close(source); |
8a84f2bb1716
[gaim-migrate @ 2714]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
483 return; |
8a84f2bb1716
[gaim-migrate @ 2714]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
484 } |
8a84f2bb1716
[gaim-migrate @ 2714]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2681
diff
changeset
|
485 |
2086 | 486 if (source < 0) { |
7981 | 487 gaim_connection_error(gc, _("Unable to connect.")); |
2086 | 488 return; |
489 } | |
490 | |
4452 | 491 ndata->fd = source; |
2086 | 492 |
5388 | 493 /* Update the login progress status display */ |
5604 | 494 buf = g_strdup_printf("Logging in: %s", gaim_account_get_username(gc->account)); |
7884 | 495 gaim_connection_update_progress(gc, buf, 1, NAPSTER_CONNECT_STEPS); |
5388 | 496 g_free(buf); |
497 | |
498 /* Write our signon data */ | |
5604 | 499 nap_write_packet(gc, 2, "%s %s 0 \"gaim %s\" 0", |
500 gaim_account_get_username(gc->account), | |
501 gaim_account_get_password(gc->account), VERSION); | |
5388 | 502 |
2086 | 503 /* And set up the input watcher */ |
5388 | 504 gc->inpa = gaim_input_add(ndata->fd, GAIM_INPUT_READ, nap_callback, gc); |
2086 | 505 } |
506 | |
5604 | 507 static void nap_login(GaimAccount *account) |
2086 | 508 { |
5604 | 509 GaimConnection *gc = gaim_account_get_connection(account); |
5388 | 510 |
7884 | 511 gaim_connection_update_progress(gc, _("Connecting"), 0, NAPSTER_CONNECT_STEPS); |
5388 | 512 |
4460 | 513 gc->proto_data = g_new0(struct nap_data, 1); |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
514 if (gaim_proxy_connect(account, |
5604 | 515 gaim_account_get_string(account, "server", NAP_SERVER), |
516 gaim_account_get_int(account, "port", NAP_PORT), | |
4491 | 517 nap_login_connect, gc) != 0) { |
7981 | 518 gaim_connection_error(gc, _("Unable to connect.")); |
2086 | 519 } |
520 } | |
521 | |
5604 | 522 static void nap_close(GaimConnection *gc) |
2086 | 523 { |
524 struct nap_data *ndata = (struct nap_data *)gc->proto_data; | |
5388 | 525 |
2086 | 526 if (gc->inpa) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
527 gaim_input_remove(gc->inpa); |
2086 | 528 |
5388 | 529 if (!ndata) |
530 return; | |
531 | |
532 g_free(ndata->email); | |
533 g_free(ndata); | |
2086 | 534 } |
535 | |
6695 | 536 static const char* nap_list_icon(GaimAccount *a, GaimBuddy *b) |
2086 | 537 { |
4687 | 538 return "napster"; |
2086 | 539 } |
540 | |
9953 | 541 static void nap_list_emblems(GaimBuddy *b, const char **se, const char **sw, |
542 const char **nw, const char **ne) | |
4916 | 543 { |
5068 | 544 if (b->present == GAIM_BUDDY_OFFLINE) |
4916 | 545 *se = "offline"; |
546 } | |
547 | |
5604 | 548 static GList *nap_chat_info(GaimConnection *gc) |
2086 | 549 { |
5388 | 550 GList *m = NULL; |
551 struct proto_chat_entry *pce; | |
552 | |
553 pce = g_new0(struct proto_chat_entry, 1); | |
7844 | 554 pce->label = _("_Group:"); |
5388 | 555 pce->identifier = "group"; |
556 m = g_list_append(m, pce); | |
557 | |
558 return m; | |
2086 | 559 } |
5388 | 560 |
9754 | 561 GHashTable *nap_chat_info_defaults(GaimConnection *gc, const char *chat_name) |
562 { | |
563 GHashTable *defaults; | |
564 | |
565 defaults = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free); | |
566 | |
567 if (chat_name != NULL) | |
568 g_hash_table_insert(defaults, "group", g_strdup(chat_name)); | |
569 | |
570 return defaults; | |
571 } | |
572 | |
5388 | 573 static GaimPlugin *my_protocol = NULL; |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
574 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
575 static GaimPluginProtocolInfo prpl_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
576 { |
5388 | 577 OPT_PROTO_CHAT_TOPIC, |
9475 | 578 NULL, /* user_splits */ |
579 NULL, /* protocol_options */ | |
580 NO_BUDDY_ICONS, /* icon_spec */ | |
581 nap_list_icon, /* list_icon */ | |
582 nap_list_emblems, /* list_emblems */ | |
583 NULL, /* status_text */ | |
584 NULL, /* tooltip_text */ | |
585 NULL, /* away_states */ | |
586 NULL, /* blist_node_menu */ | |
587 nap_chat_info, /* chat_info */ | |
9754 | 588 nap_chat_info_defaults, /* chat_info_defaults */ |
9475 | 589 nap_login, /* login */ |
590 nap_close, /* close */ | |
591 nap_send_im, /* send_im */ | |
592 NULL, /* set_info */ | |
593 NULL, /* send_typing */ | |
594 nap_get_info, /* get_info */ | |
595 NULL, /* set_away */ | |
596 NULL, /* set_idle */ | |
597 NULL, /* change_passwd */ | |
598 nap_add_buddy, /* add_buddy */ | |
599 nap_add_buddies, /* add_buddies */ | |
600 nap_remove_buddy, /* remove_buddy */ | |
601 NULL, /* remove_buddies */ | |
602 NULL, /* add_permit */ | |
603 NULL, /* add_deny */ | |
604 NULL, /* rem_permit */ | |
605 NULL, /* rem_deny */ | |
606 NULL, /* set_permit_deny */ | |
607 NULL, /* warn */ | |
608 nap_join_chat, /* join_chat */ | |
609 NULL, /* reject chat invite */ | |
9917 | 610 nap_get_chat_name, /* get_chat_name */ |
9475 | 611 NULL, /* chat_invite */ |
612 nap_chat_leave, /* chat_leave */ | |
613 NULL, /* chat_whisper */ | |
614 nap_chat_send, /* chat_send */ | |
615 NULL, /* keepalive */ | |
616 NULL, /* register_user */ | |
617 NULL, /* get_cb_info */ | |
618 NULL, /* get_cb_away */ | |
619 NULL, /* alias_buddy */ | |
620 NULL, /* group_buddy */ | |
621 NULL, /* rename_group */ | |
622 NULL, /* buddy_free */ | |
623 NULL, /* convo_closed */ | |
624 NULL, /* normalize */ | |
625 NULL, /* set_buddy_icon */ | |
626 NULL, /* remove_group */ | |
627 NULL, /* get_cb_real_name */ | |
628 NULL, /* set_chat_topic */ | |
629 NULL, /* find_blist_chat */ | |
630 NULL, /* roomlist_get_list */ | |
631 NULL, /* roomlist_cancel */ | |
632 NULL, /* roomlist_expand_category */ | |
633 NULL, /* can_receive_file */ | |
634 NULL /* send_file */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
635 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
636 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
637 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
638 { |
9943 | 639 GAIM_PLUGIN_MAGIC, |
640 GAIM_MAJOR_VERSION, | |
641 GAIM_MINOR_VERSION, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
642 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
643 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
644 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
645 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
646 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
647 |
5388 | 648 "prpl-napster", /**< id */ |
649 "Napster", /**< name */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
650 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
651 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
652 N_("NAPSTER Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
653 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
654 N_("NAPSTER Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
655 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
656 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
657 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
658 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
659 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
660 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
661 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
662 NULL, /**< ui_info */ |
8993 | 663 &prpl_info, /**< extra_info */ |
664 NULL, | |
665 NULL | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
666 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
667 |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
668 static void init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
669 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
670 GaimAccountOption *option; |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
671 |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
672 option = gaim_account_option_string_new(_("Server"), "server", |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
673 NAP_SERVER); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
674 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
675 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
676 |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
677 option = gaim_account_option_int_new(_("Port"), "port", 8888); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
678 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
679 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
680 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
681 my_protocol = plugin; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
682 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
683 |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
684 GAIM_INIT_PLUGIN(napster, init_plugin, info); |