1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
|
/**
* @file buddy_opt.c
*
* purple
*
* Purple is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include "internal.h"
#include "debug.h"
#include "notify.h"
#include "request.h"
#include "privacy.h"
#include "buddy_info.h"
#include "buddy_list.h"
#include "buddy_opt.h"
#include "char_conv.h"
#include "qq_define.h"
#include "im.h"
#include "qq_base.h"
#include "packet_parse.h"
#include "qq_network.h"
#include "utils.h"
#define PURPLE_GROUP_QQ_FORMAT "QQ (%s)"
#define QQ_REMOVE_SELF_REPLY_OK 0x00
enum {
QQ_MY_AUTH_APPROVE = 0x30, /* ASCII value of "0" */
QQ_MY_AUTH_REJECT = 0x31, /* ASCII value of "1" */
QQ_MY_AUTH_REQUEST = 0x32 /* ASCII value of "2" */
};
typedef struct _qq_buddy_req {
PurpleConnection *gc;
guint32 uid;
guint8 *auth;
guint8 auth_len;
} qq_buddy_req;
void add_buddy_authorize_input(PurpleConnection *gc, guint32 uid,
guint8 *auth, guint8 auth_len);
static void buddy_req_free(qq_buddy_req *add_req)
{
g_return_if_fail(add_req != NULL);
if (add_req->auth) g_free(add_req->auth);
g_free(add_req);
}
static void buddy_req_cancel_cb(qq_buddy_req *add_req, const gchar *msg)
{
g_return_if_fail(add_req != NULL);
buddy_req_free(add_req);
}
PurpleGroup *qq_group_find_or_new(const gchar *group_name)
{
PurpleGroup *g;
g_return_val_if_fail(group_name != NULL, NULL);
g = purple_find_group(group_name);
if (g == NULL) {
g = purple_group_new(group_name);
purple_blist_add_group(g, NULL);
purple_debug_warning("QQ", "Add new group: %s\n", group_name);
}
return g;
}
static qq_buddy_data *qq_buddy_data_new(guint32 uid)
{
qq_buddy_data *bd = g_new0(qq_buddy_data, 1);
memset(bd, 0, sizeof(qq_buddy_data));
bd->uid = uid;
bd->status = QQ_BUDDY_OFFLINE;
return bd;
}
qq_buddy_data *qq_buddy_data_find(PurpleConnection *gc, guint32 uid)
{
gchar *who;
PurpleBuddy *buddy;
qq_buddy_data *bd;
g_return_val_if_fail(gc != NULL, NULL);
who = uid_to_purple_name(uid);
if (who == NULL) return NULL;
buddy = purple_find_buddy(purple_connection_get_account(gc), who);
g_free(who);
if (buddy == NULL) {
purple_debug_error("QQ", "Can not find purple buddy of %u\n", uid);
return NULL;
}
if ((bd = purple_buddy_get_protocol_data(buddy)) == NULL) {
purple_debug_error("QQ", "Can not find buddy data of %u\n", uid);
return NULL;
}
return bd;
}
void qq_buddy_data_free(qq_buddy_data *bd)
{
g_return_if_fail(bd != NULL);
if (bd->nickname) g_free(bd->nickname);
g_free(bd);
}
/* create purple buddy without data and display with no-auth icon */
PurpleBuddy *qq_buddy_new(PurpleConnection *gc, guint32 uid)
{
PurpleBuddy *buddy;
PurpleGroup *group;
gchar *who;
gchar *group_name;
g_return_val_if_fail(gc->account != NULL && uid != 0, NULL);
group_name = g_strdup_printf(PURPLE_GROUP_QQ_FORMAT,
purple_account_get_username(gc->account));
group = qq_group_find_or_new(group_name);
if (group == NULL) {
purple_debug_error("QQ", "Failed creating group %s\n", group_name);
return NULL;
}
purple_debug_info("QQ", "Add new purple buddy: [%u]\n", uid);
who = uid_to_purple_name(uid);
buddy = purple_buddy_new(gc->account, who, NULL); /* alias is NULL */
purple_buddy_set_protocol_data(buddy, NULL);
g_free(who);
purple_blist_add_buddy(buddy, NULL, group, NULL);
g_free(group_name);
return buddy;
}
static void qq_buddy_free(PurpleBuddy *buddy)
{
qq_buddy_data *bd;
g_return_if_fail(buddy);
if ((bd = purple_buddy_get_protocol_data(buddy)) != NULL) {
qq_buddy_data_free(bd);
}
purple_buddy_set_protocol_data(buddy, NULL);
purple_blist_remove_buddy(buddy);
}
PurpleBuddy *qq_buddy_find(PurpleConnection *gc, guint32 uid)
{
PurpleBuddy *buddy;
gchar *who;
g_return_val_if_fail(gc->account != NULL && uid != 0, NULL);
who = uid_to_purple_name(uid);
buddy = purple_find_buddy(gc->account, who);
g_free(who);
return buddy;
}
PurpleBuddy *qq_buddy_find_or_new(PurpleConnection *gc, guint32 uid)
{
PurpleBuddy *buddy;
qq_buddy_data *bd;
g_return_val_if_fail(gc->account != NULL && uid != 0, NULL);
buddy = qq_buddy_find(gc, uid);
if (buddy == NULL) {
buddy = qq_buddy_new(gc, uid);
if (buddy == NULL) {
return NULL;
}
}
if (purple_buddy_get_protocol_data(buddy) != NULL) {
return buddy;
}
bd = qq_buddy_data_new(uid);
purple_buddy_set_protocol_data(buddy, bd);
return buddy;
}
/* send packet to remove a buddy from my buddy list */
static void request_remove_buddy(PurpleConnection *gc, guint32 uid)
{
gchar uid_str[11];
gint bytes;
g_return_if_fail(uid > 0);
g_snprintf(uid_str, sizeof(uid_str), "%u", uid);
bytes = strlen(uid_str);
qq_send_cmd_mess(gc, QQ_CMD_REMOVE_BUDDY, (guint8 *) uid_str, bytes, 0, uid);
}
static void request_remove_buddy_ex(PurpleConnection *gc,
guint32 uid, guint8 *auth, guint8 auth_len)
{
gint bytes;
guint8 *raw_data;
gchar uid_str[16];
g_return_if_fail(uid != 0);
g_return_if_fail(auth != NULL && auth_len > 0);
raw_data = g_newa(guint8, auth_len + sizeof(uid_str) );
bytes = 0;
bytes += qq_put8(raw_data + bytes, auth_len);
bytes += qq_putdata(raw_data + bytes, auth, auth_len);
g_snprintf(uid_str, sizeof(uid_str), "%u", uid);
bytes += qq_putdata(raw_data + bytes, (guint8 *)uid_str, strlen(uid_str));
qq_send_cmd_mess(gc, QQ_CMD_REMOVE_BUDDY, raw_data, bytes, 0, uid);
}
void qq_request_auth_code(PurpleConnection *gc, guint8 cmd, guint16 sub_cmd, guint32 uid)
{
guint8 raw_data[16];
gint bytes;
g_return_if_fail(uid > 0);
bytes = 0;
bytes += qq_put8(raw_data + bytes, cmd);
bytes += qq_put16(raw_data + bytes, sub_cmd);
bytes += qq_put32(raw_data + bytes, uid);
qq_send_cmd_mess(gc, QQ_CMD_AUTH_CODE, raw_data, bytes, 0, uid);
}
void qq_process_auth_code(PurpleConnection *gc, guint8 *data, gint data_len, guint32 uid)
{
qq_data *qd;
gint bytes;
guint8 cmd, reply;
guint16 sub_cmd;
guint8 *code = NULL;
guint16 code_len = 0;
g_return_if_fail(data != NULL && data_len != 0);
g_return_if_fail(uid != 0);
qd = (qq_data *) gc->proto_data;
qq_show_packet("qq_process_auth_code", data, data_len);
bytes = 0;
bytes += qq_get8(&cmd, data + bytes);
bytes += qq_get16(&sub_cmd, data + bytes);
bytes += qq_get8(&reply, data + bytes);
g_return_if_fail(bytes + 2 <= data_len);
bytes += qq_get16(&code_len, data + bytes);
g_return_if_fail(code_len > 0);
g_return_if_fail(bytes + code_len <= data_len);
code = g_newa(guint8, code_len);
bytes += qq_getdata(code, code_len, data + bytes);
if (cmd == QQ_AUTH_INFO_BUDDY && sub_cmd == QQ_AUTH_INFO_REMOVE_BUDDY) {
request_remove_buddy_ex(gc, uid, code, code_len);
return;
}
if (cmd == QQ_AUTH_INFO_BUDDY && sub_cmd == QQ_AUTH_INFO_ADD_BUDDY) {
add_buddy_authorize_input(gc, uid, code, code_len);
return;
}
purple_debug_info("QQ", "Got auth info cmd 0x%x, sub 0x%x, reply 0x%x\n",
cmd, sub_cmd, reply);
}
static void add_buddy_question_cb(qq_buddy_req *add_req, const gchar *text)
{
g_return_if_fail(add_req != NULL);
if (add_req->gc == NULL || add_req->uid == 0) {
buddy_req_free(add_req);
return;
}
qq_request_question(add_req->gc, QQ_QUESTION_ANSWER, add_req->uid, NULL, text);
buddy_req_free(add_req);
}
static void add_buddy_question_input(PurpleConnection *gc, guint32 uid, gchar *question)
{
gchar *who, *msg;
qq_buddy_req *add_req;
g_return_if_fail(uid != 0);
add_req = g_new0(qq_buddy_req, 1);
add_req->gc = gc;
add_req->uid = uid;
add_req->auth = NULL;
add_req->auth_len = 0;
who = uid_to_purple_name(uid);
msg = g_strdup_printf(_("%u requires verification"), uid);
purple_request_input(gc, _("Add buddy question"), msg,
_("Enter answer here"),
NULL,
TRUE, FALSE, NULL,
_("Send"), G_CALLBACK(add_buddy_question_cb),
_("Cancel"), G_CALLBACK(buddy_req_cancel_cb),
purple_connection_get_account(gc), who, NULL,
add_req);
g_free(msg);
g_free(who);
}
void qq_request_question(PurpleConnection *gc,
guint8 cmd, guint32 uid, const gchar *question_utf8, const gchar *answer_utf8)
{
guint8 raw_data[MAX_PACKET_SIZE - 16];
gint bytes;
g_return_if_fail(uid > 0);
bytes = 0;
bytes += qq_put8(raw_data + bytes, cmd);
if (cmd == QQ_QUESTION_GET) {
bytes += qq_put8(raw_data + bytes, 0);
qq_send_cmd_mess(gc, QQ_CMD_BUDDY_QUESTION, raw_data, bytes, 0, uid);
return;
}
if (cmd == QQ_QUESTION_SET) {
bytes += qq_put_vstr(raw_data + bytes, question_utf8, QQ_CHARSET_DEFAULT);
bytes += qq_put_vstr(raw_data + bytes, answer_utf8, QQ_CHARSET_DEFAULT);
bytes += qq_put8(raw_data + bytes, 0);
qq_send_cmd_mess(gc, QQ_CMD_BUDDY_QUESTION, raw_data, bytes, 0, uid);
return;
}
/* Unknow 2 bytes, 0x(00 01) */
bytes += qq_put8(raw_data + bytes, 0x00);
bytes += qq_put8(raw_data + bytes, 0x01);
g_return_if_fail(uid != 0);
bytes += qq_put32(raw_data + bytes, uid);
if (cmd == QQ_QUESTION_REQUEST) {
qq_send_cmd_mess(gc, QQ_CMD_BUDDY_QUESTION, raw_data, bytes, 0, uid);
return;
}
bytes += qq_put_vstr(raw_data + bytes, answer_utf8, QQ_CHARSET_DEFAULT);
bytes += qq_put8(raw_data + bytes, 0);
qq_send_cmd_mess(gc, QQ_CMD_BUDDY_QUESTION, raw_data, bytes, 0, uid);
return;
}
static void request_add_buddy_by_question(PurpleConnection *gc, guint32 uid,
guint8 *code, guint16 code_len)
{
guint8 raw_data[MAX_PACKET_SIZE - 16];
gint bytes = 0;
g_return_if_fail(uid != 0 && code_len > 0);
bytes = 0;
bytes += qq_put8(raw_data + bytes, 0x10);
bytes += qq_put32(raw_data + bytes, uid);
bytes += qq_put16(raw_data + bytes, 0);
bytes += qq_put8(raw_data + bytes, 0);
bytes += qq_put8(raw_data + bytes, 0); /* no auth code */
bytes += qq_put16(raw_data + bytes, code_len);
bytes += qq_putdata(raw_data + bytes, code, code_len);
bytes += qq_put8(raw_data + bytes, 1); /* ALLOW ADD ME FLAG */
bytes += qq_put8(raw_data + bytes, 0); /* group number? */
qq_send_cmd(gc, QQ_CMD_ADD_BUDDY_AUTH_EX, raw_data, bytes);
}
void qq_process_question(PurpleConnection *gc, guint8 *data, gint data_len, guint32 uid)
{
qq_data *qd;
gint bytes;
guint8 cmd, reply;
gchar *question, *answer;
guint16 code_len;
guint8 *code;
g_return_if_fail(data != NULL && data_len != 0);
qd = (qq_data *) gc->proto_data;
qq_show_packet("qq_process_question", data, data_len);
bytes = 0;
bytes += qq_get8(&cmd, data + bytes);
if (cmd == QQ_QUESTION_GET) {
bytes += qq_get_vstr(&question, QQ_CHARSET_DEFAULT, data + bytes);
bytes += qq_get_vstr(&answer, QQ_CHARSET_DEFAULT, data + bytes);
purple_debug_info("QQ", "Get buddy adding Q&A:\n%s\n%s\n", question, answer);
g_free(question);
g_free(answer);
return;
}
if (cmd == QQ_QUESTION_SET) {
bytes += qq_get8(&reply, data + bytes);
if (reply == 0) {
purple_debug_info("QQ", "Successed setting Q&A\n");
} else {
purple_debug_warning("QQ", "Failed setting Q&A, reply %d\n", reply);
}
return;
}
g_return_if_fail(uid != 0);
bytes += 2; /* skip 2 bytes, 0x(00 01)*/
if (cmd == QQ_QUESTION_REQUEST) {
bytes += qq_get8(&reply, data + bytes);
if (reply == 0x01) {
purple_debug_warning("QQ", "Failed getting question, reply %d\n", reply);
return;
}
bytes += qq_get_vstr(&question, QQ_CHARSET_DEFAULT, data + bytes);
purple_debug_info("QQ", "Get buddy question:\n%s\n", question);
add_buddy_question_input(gc, uid, question);
g_free(question);
return;
}
if (cmd == QQ_QUESTION_ANSWER) {
bytes += qq_get8(&reply, data + bytes);
if (reply == 0x01) {
purple_notify_error(gc, _("Add Buddy"), _("Invalid answer."), NULL);
return;
}
bytes += qq_get16(&code_len, data + bytes);
g_return_if_fail(code_len > 0);
g_return_if_fail(bytes + code_len <= data_len);
code = g_newa(guint8, code_len);
bytes += qq_getdata(code, code_len, data + bytes);
request_add_buddy_by_question(gc, uid, code, code_len);
return;
}
g_return_if_reached();
}
/* try to remove myself from someone's buddy list */
static void request_buddy_remove_me(PurpleConnection *gc, guint32 uid)
{
guint8 raw_data[16] = {0};
gint bytes = 0;
g_return_if_fail(uid > 0);
bytes += qq_put32(raw_data + bytes, uid);
qq_send_cmd_mess(gc, QQ_CMD_REMOVE_ME, raw_data, bytes, 0, uid);
}
/* try to add a buddy without authentication */
static void request_add_buddy_no_auth(PurpleConnection *gc, guint32 uid)
{
gchar uid_str[11];
g_return_if_fail(uid > 0);
/* we need to send the ascii code of this uid to qq server */
g_snprintf(uid_str, sizeof(uid_str), "%u", uid);
qq_send_cmd_mess(gc, QQ_CMD_ADD_BUDDY_NO_AUTH,
(guint8 *) uid_str, strlen(uid_str), 0, uid);
}
static void request_add_buddy_no_auth_ex(PurpleConnection *gc, guint32 uid)
{
guint bytes;
guint8 raw_data[16];
g_return_if_fail(uid != 0);
bytes = 0;
bytes += qq_put32(raw_data + bytes, uid);
qq_send_cmd_mess(gc, QQ_CMD_ADD_BUDDY_NO_AUTH_EX, raw_data, bytes, 0, uid);
}
/* this buddy needs authentication, text conversion is done at lowest level */
static void request_add_buddy_auth(PurpleConnection *gc, guint32 uid, const gchar response, const gchar *text)
{
guint8 raw_data[MAX_PACKET_SIZE - 16];
gint bytes;
gchar *msg, uid_str[11];
guint8 bar;
g_return_if_fail(uid != 0);
g_snprintf(uid_str, sizeof(uid_str), "%u", uid);
bar = 0x1f;
bytes = 0;
bytes += qq_putdata(raw_data + bytes, (guint8 *) uid_str, strlen(uid_str));
bytes += qq_put8(raw_data + bytes, bar);
bytes += qq_put8(raw_data + bytes, response);
if (text != NULL) {
msg = utf8_to_qq(text, QQ_CHARSET_DEFAULT);
bytes += qq_put8(raw_data + bytes, bar);
bytes += qq_putdata(raw_data + bytes, (guint8 *) msg, strlen(msg));
g_free(msg);
}
qq_send_cmd(gc, QQ_CMD_ADD_BUDDY_AUTH, raw_data, bytes);
}
static void request_add_buddy_auth_ex(PurpleConnection *gc, guint32 uid,
const gchar *text, guint8 *auth, guint8 auth_len)
{
guint8 raw_data[MAX_PACKET_SIZE - 16];
gint bytes = 0;
g_return_if_fail(uid != 0);
bytes = 0;
bytes += qq_put8(raw_data + bytes, 0x02);
bytes += qq_put32(raw_data + bytes, uid);
bytes += qq_put16(raw_data + bytes, 0);
bytes += qq_put8(raw_data + bytes, 0);
if (auth == NULL || auth_len <= 0) {
bytes += qq_put8(raw_data + bytes, 0);
} else {
bytes += qq_put8(raw_data + bytes, auth_len);
bytes += qq_putdata(raw_data + bytes, auth, auth_len);
}
bytes += qq_put8(raw_data + bytes, 1); /* ALLOW ADD ME FLAG */
bytes += qq_put8(raw_data + bytes, 0); /* group number? */
bytes += qq_put_vstr(raw_data + bytes, text, QQ_CHARSET_DEFAULT);
qq_send_cmd(gc, QQ_CMD_ADD_BUDDY_AUTH_EX, raw_data, bytes);
}
void qq_process_add_buddy_auth_ex(PurpleConnection *gc, guint8 *data, gint data_len, guint32 ship32)
{
g_return_if_fail(data != NULL && data_len != 0);
qq_show_packet("qq_process_question", data, data_len);
}
static void add_buddy_auth_cb(qq_buddy_req *add_req, const gchar *text)
{
qq_data *qd;
g_return_if_fail(add_req != NULL);
if (add_req->gc == NULL || add_req->uid == 0) {
buddy_req_free(add_req);
return;
}
qd = (qq_data *)add_req->gc->proto_data;
if (qd->client_version > 2005) {
request_add_buddy_auth_ex(add_req->gc, add_req->uid,
text, add_req->auth, add_req->auth_len);
} else {
request_add_buddy_auth(add_req->gc, add_req->uid, QQ_MY_AUTH_REQUEST, text);
}
buddy_req_free(add_req);
}
/* the real packet to reject and request is sent from here */
static void buddy_add_deny_reason_cb(qq_buddy_req *add_req, const gchar *reason)
{
g_return_if_fail(add_req != NULL);
if (add_req->gc == NULL || add_req->uid == 0) {
buddy_req_free(add_req);
return;
}
request_add_buddy_auth(add_req->gc, add_req->uid, QQ_MY_AUTH_REJECT, reason);
buddy_req_free(add_req);
}
static void buddy_add_deny_noreason_cb(qq_buddy_req *add_req)
{
buddy_add_deny_reason_cb(add_req, NULL);
}
/* we approve other's request of adding me as friend */
static void buddy_add_authorize_cb(gpointer data)
{
qq_buddy_req *add_req = (qq_buddy_req *)data;
g_return_if_fail(add_req != NULL);
if (add_req->gc == NULL || add_req->uid == 0) {
buddy_req_free(add_req);
return;
}
request_add_buddy_auth(add_req->gc, add_req->uid, QQ_MY_AUTH_APPROVE, NULL);
buddy_req_free(add_req);
}
/* we reject other's request of adding me as friend */
static void buddy_add_deny_cb(gpointer data)
{
qq_buddy_req *add_req = (qq_buddy_req *)data;
gchar *who = uid_to_purple_name(add_req->uid);
purple_request_input(add_req->gc, NULL, _("Authorization denied message:"),
NULL, _("Sorry, you're not my style."), TRUE, FALSE, NULL,
_("OK"), G_CALLBACK(buddy_add_deny_reason_cb),
_("Cancel"), G_CALLBACK(buddy_add_deny_noreason_cb),
purple_connection_get_account(add_req->gc), who, NULL,
add_req);
g_free(who);
}
static void add_buddy_no_auth_cb(qq_buddy_req *add_req)
{
qq_data *qd;
g_return_if_fail(add_req != NULL);
if (add_req->gc == NULL || add_req->uid == 0) {
buddy_req_free(add_req);
return;
}
qd = (qq_data *) add_req->gc->proto_data;
if (qd->client_version > 2005) {
request_add_buddy_no_auth_ex(add_req->gc, add_req->uid);
} else {
request_add_buddy_no_auth(add_req->gc, add_req->uid);
}
buddy_req_free(add_req);
}
void add_buddy_authorize_input(PurpleConnection *gc, guint32 uid,
guint8 *auth, guint8 auth_len)
{
gchar *who, *msg;
qq_buddy_req *add_req;
g_return_if_fail(uid != 0);
add_req = g_new0(qq_buddy_req, 1);
add_req->gc = gc;
add_req->uid = uid;
add_req->auth = NULL;
add_req->auth_len = 0;
if (auth != NULL && auth_len > 0) {
add_req->auth = g_new0(guint8, auth_len);
g_memmove(add_req->auth, auth, auth_len);
add_req->auth_len = auth_len;
}
who = uid_to_purple_name(uid);
msg = g_strdup_printf(_("%u needs authorization"), uid);
purple_request_input(gc, _("Add buddy authorize"), msg,
_("Enter request here"),
_("Would you be my friend?"),
TRUE, FALSE, NULL,
_("Send"), G_CALLBACK(add_buddy_auth_cb),
_("Cancel"), G_CALLBACK(buddy_req_cancel_cb),
purple_connection_get_account(gc), who, NULL,
add_req);
g_free(msg);
g_free(who);
}
/* add a buddy and send packet to QQ server
* note that when purple load local cached buddy list into its blist
* it also calls this funtion, so we have to
* define qd->is_login=TRUE AFTER LOGIN */
void qq_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group)
{
qq_data *qd;
guint32 uid;
g_return_if_fail(NULL != gc && NULL != gc->proto_data);
g_return_if_fail(buddy != NULL);
qd = (qq_data *) gc->proto_data;
if (!qd->is_login)
return; /* IMPORTANT ! */
uid = purple_name_to_uid(purple_buddy_get_name(buddy));
if (uid > 0) {
if (qd->client_version > 2005) {
request_add_buddy_no_auth_ex(gc, uid);
} else {
request_add_buddy_no_auth(gc, uid);
}
return;
}
purple_notify_error(gc, _("QQ Buddy"), _("Add buddy"), _("Invalid QQ Number"));
if (buddy == NULL) {
return;
}
purple_debug_info("QQ", "Remove buddy with invalid QQ number %u\n", uid);
qq_buddy_free(buddy);
}
/* process reply to add_buddy_auth request */
void qq_process_add_buddy_auth(guint8 *data, gint data_len, PurpleConnection *gc)
{
qq_data *qd;
gchar **segments, *msg_utf8;
g_return_if_fail(data != NULL && data_len != 0);
qd = (qq_data *) gc->proto_data;
if (data[0] == '0') {
purple_debug_info("QQ", "Reply OK for sending authorize\n");
return;
}
if (NULL == (segments = split_data(data, data_len, "\x1f", 2))) {
purple_notify_error(gc, _("QQ Buddy"), _("Failed sending authorize"), NULL);
return;
}
msg_utf8 = qq_to_utf8(segments[1], QQ_CHARSET_DEFAULT);
purple_notify_error(gc, _("QQ Buddy"), _("Failed sending authorize"), msg_utf8);
g_free(msg_utf8);
}
/* process the server reply for my request to remove a buddy */
void qq_process_remove_buddy(PurpleConnection *gc, guint8 *data, gint data_len, guint32 uid)
{
PurpleBuddy *buddy = NULL;
gchar *msg;
g_return_if_fail(data != NULL && data_len != 0);
g_return_if_fail(uid != 0);
buddy = qq_buddy_find(gc, uid);
if (data[0] != 0) {
msg = g_strdup_printf(_("Failed removing buddy %u"), uid);
purple_notify_info(gc, _("QQ Buddy"), msg, NULL);
g_free(msg);
}
purple_debug_info("QQ", "Reply OK for removing buddy\n");
/* remove buddy again */
if (buddy != NULL) {
qq_buddy_free(buddy);
}
}
/* process the server reply for my request to remove myself from a buddy */
void qq_process_buddy_remove_me(PurpleConnection *gc, guint8 *data, gint data_len, guint32 uid)
{
qq_data *qd;
gchar *msg;
g_return_if_fail(data != NULL && data_len != 0);
qd = (qq_data *) gc->proto_data;
if (data[0] == 0) {
purple_debug_info("QQ", "Reply OK for removing me from %u's buddy list\n", uid);
return;
}
msg = g_strdup_printf(_("Failed removing me from %d's buddy list"), uid);
purple_notify_info(gc, _("QQ Buddy"), msg, NULL);
g_free(msg);
}
void qq_process_add_buddy_no_auth(PurpleConnection *gc,
guint8 *data, gint data_len, guint32 uid)
{
qq_data *qd;
gchar **segments;
gchar *dest_uid, *reply;
PurpleBuddy *buddy;
qq_buddy_data *bd;
g_return_if_fail(data != NULL && data_len != 0);
g_return_if_fail(uid != 0);
qd = (qq_data *) gc->proto_data;
purple_debug_info("QQ", "Process buddy add for id [%u]\n", uid);
qq_show_packet("buddy_add_no_auth", data, data_len);
if (NULL == (segments = split_data(data, data_len, "\x1f", 2)))
return;
dest_uid = segments[0];
reply = segments[1];
if (strtoul(dest_uid, NULL, 10) != qd->uid) { /* should not happen */
purple_debug_error("QQ", "Add buddy reply is to [%s], not me!\n", dest_uid);
g_strfreev(segments);
return;
}
if (strtol(reply, NULL, 10) == 0) {
/* add OK */
qq_buddy_find_or_new(gc, uid);
qq_request_buddy_info(gc, uid, 0, 0);
if (qd->client_version >= 2007) {
qq_request_get_level_2007(gc, uid);
} else {
qq_request_get_level(gc, uid);
}
qq_request_get_buddies_online(gc, 0, 0);
purple_debug_info("QQ", "Successed adding into %u's buddy list\n", uid);
g_strfreev(segments);
return;
}
/* need auth */
purple_debug_warning("QQ", "Failed adding buddy, need authorize\n");
buddy = qq_buddy_find(gc, uid);
if (buddy == NULL) {
buddy = qq_buddy_new(gc, uid);
}
if (buddy != NULL && (bd = purple_buddy_get_protocol_data(buddy)) != NULL) {
/* Not authorized now, free buddy data */
qq_buddy_data_free(bd);
purple_buddy_set_protocol_data(buddy, NULL);
}
add_buddy_authorize_input(gc, uid, NULL, 0);
g_strfreev(segments);
}
void qq_process_add_buddy_no_auth_ex(PurpleConnection *gc,
guint8 *data, gint data_len, guint32 uid)
{
qq_data *qd;
gint bytes;
guint32 dest_uid;
guint8 reply;
guint8 auth_type;
g_return_if_fail(data != NULL && data_len >= 5);
g_return_if_fail(uid != 0);
qd = (qq_data *) gc->proto_data;
purple_debug_info("QQ", "Process buddy add no auth for id [%u]\n", uid);
qq_show_packet("buddy_add_no_auth_ex", data, data_len);
bytes = 0;
bytes += qq_get32(&dest_uid, data + bytes);
bytes += qq_get8(&reply, data + bytes);
g_return_if_fail(dest_uid == uid);
if (reply == 0x99) {
purple_debug_info("QQ", "Successfully added buddy %u\n", uid);
qq_buddy_find_or_new(gc, uid);
qq_request_buddy_info(gc, uid, 0, 0);
if (qd->client_version >= 2007) {
qq_request_get_level_2007(gc, uid);
} else {
qq_request_get_level(gc, uid);
}
qq_request_get_buddies_online(gc, 0, 0);
return;
}
if (reply != 0) {
purple_debug_info("QQ", "Failed adding buddy %u, Unknown reply 0x%02X\n",
uid, reply);
}
/* need auth */
g_return_if_fail(data_len > bytes);
bytes += qq_get8(&auth_type, data + bytes);
purple_debug_warning("QQ", "Adding buddy needs authorize 0x%02X\n", auth_type);
switch (auth_type) {
case 0x00: /* no authorize */
break;
case 0x01: /* authorize */
qq_request_auth_code(gc, QQ_AUTH_INFO_BUDDY, QQ_AUTH_INFO_ADD_BUDDY, uid);
break;
case 0x02: /* disable */
break;
case 0x03: /* answer question */
qq_request_question(gc, QQ_QUESTION_REQUEST, uid, NULL, NULL);
break;
default:
g_return_if_reached();
break;
}
return;
}
/* remove a buddy and send packet to QQ server accordingly */
void qq_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group)
{
qq_data *qd;
qq_buddy_data *bd;
guint32 uid;
g_return_if_fail(gc != NULL && gc->proto_data != NULL);
g_return_if_fail(buddy != NULL);
qd = (qq_data *) gc->proto_data;
if (!qd->is_login)
return;
uid = purple_name_to_uid(purple_buddy_get_name(buddy));
if (uid > 0 && uid != qd->uid) {
if (qd->client_version > 2005) {
qq_request_auth_code(gc, QQ_AUTH_INFO_BUDDY, QQ_AUTH_INFO_REMOVE_BUDDY, uid);
} else {
request_remove_buddy(gc, uid);
request_buddy_remove_me(gc, uid);
}
}
if ((bd = purple_buddy_get_protocol_data(buddy)) != NULL) {
qq_buddy_data_free(bd);
purple_buddy_set_protocol_data(buddy, NULL);
} else {
purple_debug_warning("QQ", "Empty buddy data of %s\n", purple_buddy_get_name(buddy));
}
/* Do not call purple_blist_remove_buddy,
* otherwise purple segmentation fault */
}
static void buddy_add_input(PurpleConnection *gc, guint32 uid, gchar *reason)
{
PurpleAccount *account = purple_connection_get_account(gc);
qq_buddy_req *add_req;
gchar *who;
g_return_if_fail(uid != 0 && reason != NULL);
purple_debug_info("QQ", "Buddy %u request adding, msg: %s\n", uid, reason);
add_req = g_new0(qq_buddy_req, 1);
add_req->gc = gc;
add_req->uid = uid;
if (purple_prefs_get_bool("/plugins/prpl/qq/auto_get_authorize_info")) {
qq_request_buddy_info(gc, add_req->uid, 0, QQ_BUDDY_INFO_DISPLAY);
}
who = uid_to_purple_name(add_req->uid);
purple_account_request_authorization(account,
who, NULL,
NULL, reason,
purple_find_buddy(account, who) != NULL,
buddy_add_authorize_cb,
buddy_add_deny_cb,
add_req);
g_free(who);
}
/* someone wants to add you to his buddy list */
static void server_buddy_add_request(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
guint32 uid;
gchar *msg, *reason;
g_return_if_fail(from != NULL && to != NULL);
uid = strtoul(from, NULL, 10);
g_return_if_fail(uid != 0);
if (purple_prefs_get_bool("/plugins/prpl/qq/auto_get_authorize_info")) {
qq_request_buddy_info(gc, uid, 0, QQ_BUDDY_INFO_DISPLAY);
}
if (data_len <= 0) {
reason = g_strdup( _("No reason given") );
} else {
msg = g_strndup((gchar *)data, data_len);
reason = qq_to_utf8(msg, QQ_CHARSET_DEFAULT);
if (reason == NULL) reason = g_strdup( _("Unknown reason") );
g_free(msg);
}
buddy_add_input(gc, uid, reason);
g_free(reason);
}
void qq_process_buddy_check_code(PurpleConnection *gc, guint8 *data, gint data_len)
{
qq_data *qd;
gint bytes;
guint8 cmd;
guint8 reply;
guint32 uid;
guint16 flag1, flag2;
g_return_if_fail(data != NULL && data_len >= 5);
qd = (qq_data *) gc->proto_data;
qq_show_packet("buddy_check_code", data, data_len);
bytes = 0;
bytes += qq_get8(&cmd, data + bytes); /* 0x03 */
bytes += qq_get8(&reply, data + bytes);
if (reply == 0) {
purple_debug_info("QQ", "Failed checking code\n");
return;
}
bytes += qq_get32(&uid, data + bytes);
g_return_if_fail(uid != 0);
bytes += qq_get16(&flag1, data + bytes);
bytes += qq_get16(&flag2, data + bytes);
purple_debug_info("QQ", "Check code reply Ok, uid %u, flag 0x%04X-0x%04X\n",
uid, flag1, flag2);
return;
}
static void request_buddy_check_code(PurpleConnection *gc,
gchar *from, guint8 *code, gint code_len)
{
guint8 *raw_data;
gint bytes;
guint32 uid;
g_return_if_fail(code != NULL && code_len > 0 && from != NULL);
uid = strtoul(from, NULL, 10);
raw_data = g_newa(guint8, code_len + 16);
bytes = 0;
bytes += qq_put8(raw_data + bytes, 0x03);
bytes += qq_put8(raw_data + bytes, 0x01);
bytes += qq_put32(raw_data + bytes, uid);
bytes += qq_put16(raw_data + bytes, code_len);
bytes += qq_putdata(raw_data + bytes, code, code_len);
qq_send_cmd(gc, QQ_CMD_BUDDY_CHECK_CODE, raw_data, bytes);
}
static gint server_buddy_check_code(PurpleConnection *gc,
gchar *from, guint8 *data, gint data_len)
{
gint bytes;
guint16 code_len;
guint8 *code;
g_return_val_if_fail(data != NULL && data_len > 0, 0);
bytes = 0;
bytes += qq_get16(&code_len, data + bytes);
if (code_len <= 0) {
purple_debug_info("QQ", "Server msg for buddy has no code\n");
return bytes;
}
if (bytes + code_len < data_len) {
purple_debug_error("QQ", "Code len error in server msg for buddy\n");
qq_show_packet("server_buddy_check_code", data, data_len);
code_len = data_len - bytes;
}
code = g_newa(guint8, code_len);
bytes += qq_getdata(code, code_len, data + bytes);
request_buddy_check_code(gc, from, code, code_len);
return bytes;
}
static void server_buddy_add_request_ex(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
gint bytes;
guint32 uid;
gchar *msg;
guint8 allow_reverse;
g_return_if_fail(from != NULL && to != NULL);
g_return_if_fail(data != NULL && data_len >= 3);
uid = strtoul(from, NULL, 10);
g_return_if_fail(uid != 0);
/* qq_show_packet("server_buddy_add_request_ex", data, data_len); */
bytes = 0;
bytes += qq_get_vstr(&msg, QQ_CHARSET_DEFAULT, data+bytes);
bytes += qq_get8(&allow_reverse, data + bytes); /* allow_reverse = 0x01, allowed */
server_buddy_check_code(gc, from, data + bytes, data_len - bytes);
if (strlen(msg) <= 0) {
g_free(msg);
msg = g_strdup( _("No reason given") );
}
buddy_add_input(gc, uid, msg);
g_free(msg);
}
/* when you are added by a person, QQ server will send sys message */
static void server_buddy_added(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
PurpleAccount *account = purple_connection_get_account(gc);
PurpleBuddy *buddy;
guint32 uid;
qq_buddy_req *add_req;
gchar *who;
gchar *primary;
g_return_if_fail(from != NULL && to != NULL);
uid = strtoul(from, NULL, 10);
who = uid_to_purple_name(uid);
buddy = purple_find_buddy(account, who);
if (buddy != NULL) {
purple_account_notify_added(account, from, to, NULL, NULL);
}
add_req = g_new0(qq_buddy_req, 1);
add_req->gc = gc;
add_req->uid = uid; /* only need to get value */
primary = g_strdup_printf(_("You have been added by %s"), from);
purple_request_action(gc, NULL, primary,
_("Would you like to add him?"),
PURPLE_DEFAULT_ACTION_NONE,
purple_connection_get_account(gc), who, NULL,
add_req, 2,
_("Add"), G_CALLBACK(add_buddy_no_auth_cb),
_("Cancel"), G_CALLBACK(buddy_req_cancel_cb));
g_free(who);
g_free(primary);
}
static void server_buddy_added_ex(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
gint bytes;
guint8 allow_reverse;
gchar *msg;
g_return_if_fail(from != NULL && to != NULL);
g_return_if_fail(data != NULL && data_len >= 3);
qq_show_packet("server_buddy_added_ex", data, data_len);
bytes = 0;
bytes += qq_get_vstr(&msg, QQ_CHARSET_DEFAULT, data+bytes); /* always empty msg */
purple_debug_info("QQ", "Buddy added msg: %s\n", msg);
bytes += qq_get8(&allow_reverse, data + bytes); /* allow_reverse = 0x01, allowed */
server_buddy_check_code(gc, from, data + bytes, data_len - bytes);
g_free(msg);
}
static void server_buddy_adding_ex(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
gint bytes;
guint8 allow_reverse;
g_return_if_fail(from != NULL && to != NULL);
g_return_if_fail(data != NULL && data_len >= 3);
qq_show_packet("server_buddy_adding_ex", data, data_len);
bytes = 0;
bytes += qq_get8(&allow_reverse, data + bytes); /* allow_reverse = 0x01, allowed */
server_buddy_check_code(gc, from, data + bytes, data_len - bytes);
}
/* the buddy approves your request of adding him/her as your friend */
static void server_buddy_added_me(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
PurpleAccount *account = purple_connection_get_account(gc);
qq_data *qd;
guint32 uid;
g_return_if_fail(from != NULL && to != NULL);
qd = (qq_data *) gc->proto_data;
uid = strtoul(from, NULL, 10);
g_return_if_fail(uid > 0);
server_buddy_check_code(gc, from, data, data_len);
qq_buddy_find_or_new(gc, uid);
qq_request_buddy_info(gc, uid, 0, 0);
qq_request_get_buddies_online(gc, 0, 0);
if (qd->client_version >= 2007) {
qq_request_get_level_2007(gc, uid);
} else {
qq_request_get_level(gc, uid);
}
purple_account_notify_added(account, to, from, NULL, NULL);
}
/* you are rejected by the person */
static void server_buddy_rejected_me(PurpleConnection *gc, gchar *from, gchar *to,
guint8 *data, gint data_len)
{
guint32 uid;
PurpleBuddy *buddy;
gchar *msg, *msg_utf8;
gint bytes;
gchar **segments;
gchar *primary, *secondary;
qq_buddy_data *bd;
g_return_if_fail(from != NULL && to != NULL);
qq_show_packet("server_buddy_rejected_me", data, data_len);
if (data_len <= 0) {
msg = g_strdup( _("No reason given") );
} else {
segments = g_strsplit((gchar *)data, "\x1f", 1);
if (segments != NULL && segments[0] != NULL) {
msg = g_strdup(segments[0]);
g_strfreev(segments);
bytes = strlen(msg) + 1;
if (bytes < data_len) {
server_buddy_check_code(gc, from, data + bytes, data_len - bytes);
}
} else {
msg = g_strdup( _("No reason given") );
}
}
msg_utf8 = qq_to_utf8(msg, QQ_CHARSET_DEFAULT);
if (msg_utf8 == NULL) {
msg_utf8 = g_strdup( _("Unknown reason") );
}
g_free(msg);
primary = g_strdup_printf(_("Rejected by %s"), from);
secondary = g_strdup_printf(_("Message: %s"), msg_utf8);
purple_notify_info(gc, _("QQ Buddy"), primary, secondary);
g_free(msg_utf8);
g_free(primary);
g_free(secondary);
uid = strtoul(from, NULL, 10);
g_return_if_fail(uid != 0);
buddy = qq_buddy_find(gc, uid);
if (buddy != NULL && (bd = purple_buddy_get_protocol_data(buddy)) != NULL) {
/* Not authorized now, free buddy data */
qq_buddy_data_free(bd);
purple_buddy_set_protocol_data(buddy, NULL);
}
}
void qq_process_buddy_from_server(PurpleConnection *gc, int funct,
gchar *from, gchar *to, guint8 *data, gint data_len)
{
switch (funct) {
case QQ_SERVER_BUDDY_ADDED:
server_buddy_added(gc, from, to, data, data_len);
break;
case QQ_SERVER_BUDDY_ADD_REQUEST:
server_buddy_add_request(gc, from, to, data, data_len);
break;
case QQ_SERVER_BUDDY_ADD_REQUEST_EX:
server_buddy_add_request_ex(gc, from, to, data, data_len);
break;
case QQ_SERVER_BUDDY_ADDED_ME:
server_buddy_added_me(gc, from, to, data, data_len);
break;
case QQ_SERVER_BUDDY_REJECTED_ME:
server_buddy_rejected_me(gc, from, to, data, data_len);
break;
case QQ_SERVER_BUDDY_ADDED_EX:
server_buddy_added_ex(gc, from, to, data, data_len);
break;
case QQ_SERVER_BUDDY_ADDING_EX:
case QQ_SERVER_BUDDY_ADDED_ANSWER:
server_buddy_adding_ex(gc, from, to, data, data_len);
break;
default:
purple_debug_warning("QQ", "Unknow buddy operate (%d) from server\n", funct);
break;
}
}
|