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 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795
|
/***************************************************************************
icqvarious.cpp - description
-------------------
begin : Sun Mar 10 2002
copyright : (C) 2002 by Vladimir Shutoff
email : vovan@shutoff.ru
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include <time.h>
#include <stdio.h>
#ifdef WIN32
#include <winsock.h>
#else
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
#include <qtimer.h>
#include <qbuffer.h>
#include <qfile.h>
#include "log.h"
#include "icqclient.h"
#include "xml.h"
using namespace std;
using namespace SIM;
const unsigned short ICQ_SNACxVAR_ERROR = 0x0001;
const unsigned short ICQ_SNACxVAR_REQxSRV = 0x0002;
const unsigned short ICQ_SNACxVAR_DATA = 0x0003;
const unsigned short ICQ_SRVxREQ_OFFLINE_MSG = 0x3C00;
const unsigned short ICQ_SRVxREQ_ACK_OFFLINE_MSG = 0x3E00;
const unsigned short ICQ_SRVxOFFLINE_MSG = 0x4100;
const unsigned short ICQ_SRVxEND_OFFLINE_MSG = 0x4200;
const unsigned short ICQ_SRVxREQ_MORE = 0xD007;
const unsigned short ICQ_SRVxANSWER_MORE = 0xDA07;
const unsigned short ICQ_SRVxREQ_FULL_INFO = 0xB204;
const unsigned short ICQ_SRVxREQ_SHORT_INFO = 0xBA04;
const unsigned short ICQ_SRVxREQ_OWN_INFO = 0xD004;
const unsigned short ICQ_SRVxREQ_SEND_SMS = 0x8214;
const unsigned short ICQ_SRVxREQ_WP_UIN = 0x6905;
const unsigned short ICQ_SRVxREQ_WP_MAIL = 0x7305;
const unsigned short ICQ_SRVxREQ_WP_FULL = 0x5F05;
const unsigned short ICQ_SRVxREQ_CHANGE_PASSWD = 0x2E04;
const unsigned short ICQ_SRVxREQ_PERMISSIONS = 0x2404;
const unsigned short ICQ_SRVxREQ_XML_KEY = 0x9808;
const unsigned short ICQ_SRVxGENERAL_INFO = 0xC800;
const unsigned short ICQ_SRVxMORE_INFO = 0xDC00;
const unsigned short ICQ_SRVxEMAIL_INFO = 0xEB00;
const unsigned short ICQ_SRVxWORK_INFO = 0xD200;
const unsigned short ICQ_SRVxABOUT_INFO = 0xE600;
const unsigned short ICQ_SRVxINTERESTS_INFO = 0xF000;
const unsigned short ICQ_SRVxBACKGROUND_INFO = 0xFA00;
const unsigned short ICQ_SRVxUNKNOWN_INFO = 0x0E01;
const unsigned short ICQ_SRVxREQ_MODIFY_MAIN = 0xEA03;
const unsigned short ICQ_SRVxREQ_MODIFY_HOME = 0xFD03;
const unsigned short ICQ_SRVxREQ_MODIFY_ABOUT = 0x0604;
const unsigned short ICQ_SRVxREQ_MODIFY_WORK = 0xF303;
const unsigned short ICQ_SRVxREQ_MODIFY_MORE = 0xFD03;
const unsigned short ICQ_SRVxREQ_MODIFY_INTERESTS = 0x1004;
const unsigned short ICQ_SRVxREQ_MODIFY_BACKGROUND = 0x1A04;
const unsigned short ICQ_SRVxREQ_MODIFY_MAIL = 0x0B04;
const unsigned short ICQ_SRVxREQ_PHONE_UPDATE = 0x5406;
const unsigned short ICQ_SRVxREQ_SET_CHAT_GROUP = 0x5807;
const unsigned short ICQ_SRVxREQ_RANDOM_CHAT = 0x4E07;
const unsigned short ICQ_SRVxWP_SET = 0x3A0C;
const unsigned short ICQ_SRVxWP_SET_RESP = 0x3F0C;
const unsigned short TLV_UIN = 0x0136;
const unsigned short TLV_FIRST_NAME = 0x0140;
const unsigned short TLV_LAST_NAME = 0x014A;
const unsigned short TLV_NICK = 0x0154;
const unsigned short TLV_EMAIL = 0x015E;
const unsigned short TLV_AGE_RANGE = 0x0168;
const unsigned short TLV_AGE = 0x0172;
const unsigned short TLV_GENDER = 0x017C;
const unsigned short TLV_LANGUAGE = 0x0186;
const unsigned short TLV_CITY = 0x0190;
const unsigned short TLV_STATE = 0x019A;
const unsigned short TLV_COUNTRY = 0x01A4;
const unsigned short TLV_WORK_COMPANY = 0x01AE;
const unsigned short TLV_WORK_DEPARTMENT = 0x01B8;
const unsigned short TLV_WORK_POSITION = 0x01C2;
const unsigned short TLV_WORK_OCCUPATION = 0x01CC;
const unsigned short TLV_AFFILATIONS = 0x01D6;
const unsigned short TLV_INTERESTS = 0x01EA;
const unsigned short TLV_PAST = 0x01FE;
const unsigned short TLV_HOMEPAGE_CATEGORY = 0x0212;
const unsigned short TLV_HOMEPAGE = 0x0213;
const unsigned short TLV_KEYWORDS = 0x0226;
const unsigned short TLV_SEARCH_ONLINE = 0x0230;
const unsigned short TLV_BIRTHDAY = 0x023A;
const unsigned short TLV_NOTES = 0x0258;
const unsigned short TLV_STREET = 0x0262;
const unsigned short TLV_ZIP = 0x026C;
const unsigned short TLV_PHONE = 0x0276;
const unsigned short TLV_FAX = 0x0280;
const unsigned short TLV_CELLULAR = 0x028A;
const unsigned short TLV_WORK_STREET = 0x0294;
const unsigned short TLV_WORK_CITY = 0x029E;
const unsigned short TLV_WORK_STATE = 0x02A8;
const unsigned short TLV_WORK_COUNTRY = 0x02B2;
const unsigned short TLV_WORK_ZIP = 0x02BC;
const unsigned short TLV_WORK_PHONE = 0x02C6;
const unsigned short TLV_WORK_FAX = 0x02D0;
const unsigned short TLV_WORK_HOMEPAGE = 0x02DA;
const unsigned short TLV_SHOW_WEB = 0x030C;
const unsigned short TLV_NEED_AUTH = 0x02F8;
const unsigned short TLV_TIMEZONE = 0x0316;
const unsigned short TLV_ORIGINALLY_CITY = 0x0320;
const unsigned short TLV_ORIGINALLY_STATE = 0x032A;
const unsigned short TLV_ORIGINALLY_COUNTRY = 0x0334;
const unsigned short TLV_RECV_ICQ_SPAM = 0x0348;
const char SEARCH_STATE_OFFLINE = 0;
const char SEARCH_STATE_ONLINE = 1;
const char SEARCH_STATE_DISABLED = 2;
const unsigned INFO_REQUEST_TIMEOUT = 60;
class ServerRequest
{
public:
ServerRequest(unsigned short id);
virtual ~ServerRequest() {}
unsigned short id() { return m_id; }
virtual bool answer(ICQBuffer&, unsigned short nSubType) = 0;
virtual void fail(unsigned short error_code = 0);
protected:
unsigned short m_id;
};
ServerRequest::ServerRequest(unsigned short id)
{
m_id = id;
}
ServerRequest *ICQClient::findServerRequest(unsigned short id)
{
log(L_DEBUG,"Searching for event id %d (%p)", id, this);
for (list<ServerRequest*>::iterator it = varRequests.begin(); it != varRequests.end(); ++it){
if ((*it)->id() == id)
return *it;
}
return NULL;
}
void ServerRequest::fail(unsigned short)
{
}
void ICQClient::clearServerRequests()
{
log(L_DEBUG,"Clearing server requests (%p)", this);
for (list<ServerRequest*>::iterator it_req = varRequests.begin(); it_req != varRequests.end(); ++it_req){
(*it_req)->fail();
delete *it_req;
}
varRequests.clear();
list<InfoRequest>::iterator it;
for (it = infoRequests.begin(); it != infoRequests.end(); ++it){
Contact *contact = getContacts()->contact((*it).uin);
if (contact == NULL)
continue;
EventContact e(contact, EventContact::eFetchInfoFailed);
e.process();
}
infoRequests.clear();
}
void ICQClient::snac_various(unsigned short type, unsigned short id)
{
switch (type){
case ICQ_SNACxVAR_ERROR:{
unsigned short error_code;
socket()->readBuffer() >> error_code;
if (id == m_offlineMessagesRequestId)
{
log(L_WARN, "Server responded with error %04X for offline messages request.", error_code);
// We'll never get ICQ_SRVxEND_OFFLINE_MSG, so we finish initing here instead.
}
else
{
ServerRequest *req = findServerRequest(id);
if (req == NULL){
log(L_WARN, "Various event ID %04X not found for error %04X", id, error_code);
break;
}
req->fail(error_code);
}
break;
}
case ICQ_SNACxVAR_DATA:{
TlvList tlv(socket()->readBuffer());
if (tlv(0x0001) == NULL){
log(L_WARN, "Bad server response");
break;
}
ICQBuffer msg(*tlv(1));
unsigned short len, nType, nId;
unsigned long own_uin;
msg >> len >> own_uin >> nType;
msg.unpack(nId);
switch (nType){
case ICQ_SRVxEND_OFFLINE_MSG:
serverRequest(ICQ_SRVxREQ_ACK_OFFLINE_MSG);
sendServerRequest();
setChatGroup();
addFullInfoRequest(data.owner.Uin.toULong());
m_bReady = true;
processSendQueue();
break;
case ICQ_SRVxOFFLINE_MSG:{
unsigned long uin;
unsigned char type, flag;
struct tm sendTM;
memset(&sendTM, 0, sizeof(sendTM));
QCString message;
unsigned short year;
unsigned char month, day, hours, min;
msg.unpack(uin);
msg.unpack(year);
msg.unpack(month);
msg.unpack(day);
msg.unpack(hours);
msg.unpack(min);
msg.unpack(type);
msg.unpack(flag);
msg.unpackStr(message);
#ifndef HAVE_TM_GMTOFF
sendTM.tm_sec = -timezone;
#else
time_t now = time (NULL);
sendTM = *localtime (&now);
sendTM.tm_sec = sendTM.tm_gmtoff - (sendTM.tm_isdst == 1 ? 3600 : 0);
#endif
sendTM.tm_year = year-1900;
sendTM.tm_mon = month-1;
sendTM.tm_mday = day;
sendTM.tm_hour = hours;
sendTM.tm_min = min;
sendTM.tm_isdst = -1;
time_t send_time = mktime(&sendTM);
MessageId id;
Message *m = parseMessage(type, QString::number(uin), message, msg, id, 0);
if (m){
m->setTime(send_time);
messageReceived(m, QString::number(uin));
}
break;
}
case ICQ_SRVxANSWER_MORE:{
unsigned short nSubtype;
char nResult;
msg >> nSubtype >> nResult;
if ((nResult == 0x32) || (nResult == 0x14) || (nResult == 0x1E)){
ServerRequest *req = findServerRequest(nId);
if (req == NULL){
log(L_WARN, "Various event ID %04X not found (%X)", nId, nResult);
break;
}
req->fail();
log(L_DEBUG, "removing server request %d (%p)", nId, this);
varRequests.remove(req);
delete req;
break;
}
ServerRequest *req = findServerRequest(nId);
if (req == NULL){
log(L_WARN, "Various event ID %04X not found (%X)", nId, nResult);
break;
}
if (req->answer(msg, nSubtype)){
log(L_DEBUG, "removing server request %d (%p)", nId, this);
varRequests.remove(req);
delete req;
}
break;
}
break;
default:
log(L_WARN, "Unknown SNAC(15,03) response type %04X", nType);
}
break;
}
default:
log(L_WARN, "Unknown various foodgroup type %04X", type);
}
}
void ICQClient::serverRequest(unsigned short cmd, unsigned short seq)
{
snac(ICQ_SNACxFOOD_VARIOUS, ICQ_SNACxVAR_REQxSRV, true);
socket()->writeBuffer().tlv(0x0001, 0);
socket()->writeBuffer().pack(data.owner.Uin.toULong());
socket()->writeBuffer() << cmd;
socket()->writeBuffer().pack((unsigned short)(seq ? seq : m_nMsgSequence));
}
void ICQClient::sendServerRequest()
{
log(L_DEBUG, "add server request %d (%p)", m_nMsgSequence, this);
ICQBuffer &b = socket()->writeBuffer();
char *packet = b.data(b.packetStartPos());
unsigned short packet_size = (unsigned short)(b.size() - b.packetStartPos());
unsigned short size = (unsigned short)(packet_size - 0x14);
packet[0x12] = (char)((size >> 8) & 0xFF);
packet[0x13] = (char)(size & 0xFF);
size = (unsigned short)(packet_size - 0x16);
packet[0x14] = (char)(size & 0xFF);
packet[0x15] = (char)((size >> 8) & 0xFF);
sendPacket(true);
}
void ICQClient::sendMessageRequest()
{
serverRequest(ICQ_SRVxREQ_OFFLINE_MSG);
m_offlineMessagesRequestId = m_nMsgSequence;
sendServerRequest();
}
// _________________________________________________________________________________________
class FullInfoRequest : public ServerRequest
{
public:
FullInfoRequest(ICQClient *client, unsigned short id, unsigned long uin);
protected:
virtual void fail(unsigned short error_code);
bool answer(ICQBuffer &b, unsigned short nSubtype);
QString unpack_list(ICQBuffer &b, Contact *contact);
unsigned m_nParts;
unsigned long m_uin;
ICQClient *m_client;
};
FullInfoRequest::FullInfoRequest(ICQClient *client, unsigned short id, unsigned long uin)
: ServerRequest(id)
{
m_client = client;
m_nParts = 0;
m_uin = uin;
}
void FullInfoRequest::fail(unsigned short)
{
Contact *contact = NULL;
if (m_nParts){
if (m_client->data.owner.Uin.toULong() == m_uin){
EventClientChanged(m_client).process();
}else{
m_client->findContact(m_uin, NULL, false, contact);
if (contact){
EventContact e(contact, EventContact::eChanged);
e.process();
}
}
}
if (contact){
EventContact e(contact, EventContact::eFetchInfoFailed);
e.process();
}
m_client->removeFullInfoRequest(m_uin);
}
QString FullInfoRequest::unpack_list(ICQBuffer &b, Contact *contact)
{
QString res;
char n;
b >> n;
for (; n > 0; n--){
unsigned short c;
b.unpack(c);
QCString s;
b >> s;
if (c == 0) continue;
if (res.length())
res += ';';
res += QString::number(c);
res += ',';
res += quoteChars(getContacts()->toUnicode(contact, s), ";");
}
return res;
}
bool FullInfoRequest::answer(ICQBuffer &b, unsigned short nSubtype)
{
Contact *contact = NULL;
ICQUserData *data;
if (m_client->data.owner.Uin.toULong() == m_uin){
data = &m_client->data.owner;
}else{
data = m_client->findContact(m_uin, NULL, false, contact);
if (data == NULL){
log(L_DEBUG, "Info request %lu not found", m_uin);
m_client->removeFullInfoRequest(m_uin);
return true;
}
}
switch (nSubtype){
case ICQ_SRVxGENERAL_INFO:{
unsigned short n;
char TimeZone;
char authFlag; /* ??? */
char webAware;
char allowDC;
char hideEmail;
QCString Nick, FirstName, LastName, EMail, City, State;
QCString HomePhone, HomeFax, Address, PrivateCellular, Zip;
b
>> Nick
>> FirstName
>> LastName
>> EMail
>> City
>> State
>> HomePhone
>> HomeFax
>> Address
>> PrivateCellular
>> Zip;
data->Nick.str() = getContacts()->toUnicode(contact, Nick);
data->FirstName.str() = getContacts()->toUnicode(contact, FirstName);
data->LastName.str() = getContacts()->toUnicode(contact, LastName);
data->EMail.str() = getContacts()->toUnicode(contact, EMail);
data->City.str() = getContacts()->toUnicode(contact, City);
data->State.str() = getContacts()->toUnicode(contact, State);
data->HomePhone.str() = getContacts()->toUnicode(contact, HomePhone);
data->HomeFax.str() = getContacts()->toUnicode(contact, HomeFax);
data->Address.str() = getContacts()->toUnicode(contact, Address);
data->PrivateCellular.str() = getContacts()->toUnicode(contact, PrivateCellular);
data->Zip.str() = getContacts()->toUnicode(contact, Zip);
b.unpack(n);
data->Country.asULong() = n;
b
>> TimeZone
>> authFlag
>> webAware
>> allowDC
>> hideEmail;
data->TimeZone.asULong() = TimeZone;
data->WebAware.asBool() = (webAware != 0);
data->bNoDirect.asBool() = (allowDC == 0); // negate!
data->HiddenEMail.asBool() = (hideEmail != 0);
break;
}
case ICQ_SRVxMORE_INFO:{
char c;
QCString Homepage;
b >> c;
data->Age.asULong() = c;
b >> c;
b >> c;
data->Gender.asULong() = c;
b >> Homepage;
data->Homepage.str() = getContacts()->toUnicode(contact, Homepage);
unsigned short year;
b.unpack(year);
data->BirthYear.asULong() = year;
b >> c;
data->BirthMonth.asULong() = c;
b >> c;
data->BirthDay.asULong() = c;
unsigned char lang[3];
b
>> lang[0]
>> lang[1]
>> lang[2];
data->Language.asULong() = (lang[2] << 16) + (lang[1] << 8) + lang[0];
break;
}
case ICQ_SRVxEMAIL_INFO:{
QString mail;
char c;
b >> c;
for (;c > 0;c--){
char d;
b >> d;
QCString s;
b >> s;
if (mail.length())
mail += ';';
mail += quoteChars(getContacts()->toUnicode(contact, s), ";");
mail += '/';
if (d)
mail += '-';
}
data->EMails.str() = mail;
break;
}
case ICQ_SRVxWORK_INFO:{
unsigned short n;
QCString WorkCity, WorkState, WorkPhone, WorkFax, WorkAddress, WorkZip;
QCString WorkName, WorkDepartment, WorkPosition, WorkHomepage;
b
>> WorkCity
>> WorkState
>> WorkPhone
>> WorkFax
>> WorkAddress
>> WorkZip;
data->WorkCity.str() = getContacts()->toUnicode(contact, WorkCity);
data->WorkState.str() = getContacts()->toUnicode(contact, WorkState);
data->WorkPhone.str() = getContacts()->toUnicode(contact, WorkPhone);
data->WorkFax.str() = getContacts()->toUnicode(contact, WorkFax);
data->WorkAddress.str() = getContacts()->toUnicode(contact, WorkAddress);
data->WorkZip.str() = getContacts()->toUnicode(contact, WorkZip);
b.unpack(n);
data->WorkCountry.asULong() = n;
b
>> WorkName
>> WorkDepartment
>> WorkPosition;
data->WorkName.str() = getContacts()->toUnicode(contact, WorkName);
data->WorkDepartment.str() = getContacts()->toUnicode(contact, WorkDepartment);
data->WorkPosition.str() = getContacts()->toUnicode(contact, WorkPosition);
b.unpack(n);
data->Occupation.asULong() = n;
b >> WorkHomepage;
data->WorkHomepage.str() = getContacts()->toUnicode(contact, WorkHomepage);
break;
}
case ICQ_SRVxABOUT_INFO: {
QCString About;
b >> About;
data->About.str() = getContacts()->toUnicode(contact, About);
break;
}
case ICQ_SRVxINTERESTS_INFO:
data->Interests.str() = unpack_list(b, contact);
break;
case ICQ_SRVxBACKGROUND_INFO:
data->Backgrounds.str() = unpack_list(b, contact);
data->Affilations.str() = unpack_list(b, contact);
break;
case ICQ_SRVxUNKNOWN_INFO:
break;
default:
log(L_WARN, "Unknwon info type %04X for %lu", nSubtype, m_uin);
}
m_nParts++;
if (m_nParts >= 8){
data->InfoFetchTime.asULong() = data->InfoUpdateTime.toULong() ? data->InfoUpdateTime.toULong() : 1;
if (contact != NULL){
m_client->setupContact(contact, data);
EventContact e(contact, EventContact::eChanged);
e.process();
}else{
int tz;
#ifndef HAVE_TM_GMTOFF
tz = - timezone;
#else
time_t now = time(NULL);
struct tm *tm = localtime(&now);
tz = tm->tm_gmtoff;
if (tm->tm_isdst) tz -= (60 * 60);
#endif
tz = - tz / (30 * 60);
m_client->setupContact(getContacts()->owner(), data);
if (data->TimeZone.toULong() != (unsigned)tz){
data->TimeZone.asULong() = tz;
m_client->setMainInfo(data);
}
EventContact eContact(getContacts()->owner(), EventContact::eChanged);
eContact.process();
EventClientChanged(m_client).process();
}
m_client->removeFullInfoRequest(m_uin);
return true;
}
return false;
}
unsigned ICQClient::processInfoRequest()
{
if ((getState() != Connected) || infoRequests.empty())
return 0;
for (list<InfoRequest>::iterator it = infoRequests.begin(); it != infoRequests.end(); ++it){
if ((*it).request_id)
continue;
unsigned delay = delayTime(SNAC(ICQ_SNACxFOOD_VARIOUS, ICQ_SNACxVAR_REQxSRV));
if (delay)
return delay;
unsigned long uin = (*it).uin;
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << ((uin == data.owner.Uin.toULong()) ? ICQ_SRVxREQ_OWN_INFO : ICQ_SRVxREQ_FULL_INFO);
socket()->writeBuffer().pack(uin);
sendServerRequest();
(*it).request_id = m_nMsgSequence;
(*it).start_time = time(NULL);
log(L_DEBUG, "add server request %d (%p)", m_nMsgSequence, this);
varRequests.push_back(new FullInfoRequest(this, m_nMsgSequence, uin));
}
return 0;
}
void ICQClient::checkInfoRequest()
{
time_t now = time(NULL);
for (list<InfoRequest>::iterator it = infoRequests.begin(); it != infoRequests.end(); ){
if (((*it).request_id == 0) || ((time_t)((*it).start_time + INFO_REQUEST_TIMEOUT) < now)){
++it;
continue;
}
ServerRequest *req = findServerRequest((*it).request_id);
if (req){
req->fail();
}else{
infoRequests.erase(it);
}
it = infoRequests.begin();
}
}
void ICQClient::addFullInfoRequest(unsigned long uin)
{
for (list<InfoRequest>::iterator it = infoRequests.begin(); it != infoRequests.end(); ++it){
if ((*it).uin == uin)
return;
}
InfoRequest r;
r.uin = uin;
r.request_id = 0;
r.start_time = 0;
infoRequests.push_back(r);
processSendQueue();
}
void ICQClient::removeFullInfoRequest(unsigned long uin)
{
list<InfoRequest>::iterator it;
for (it = infoRequests.begin(); it != infoRequests.end(); ++it){
if ((*it).uin == uin){
infoRequests.erase(it);
break;
}
}
}
// _________________________________________________________________________________________
class SearchWPRequest : public ServerRequest
{
public:
SearchWPRequest(ICQClient *client, unsigned short id);
protected:
virtual void fail(unsigned short error_code);
bool answer(ICQBuffer &b, unsigned short nSubtype);
ICQClient *m_client;
};
SearchWPRequest::SearchWPRequest(ICQClient *client, unsigned short id)
: ServerRequest(id)
{
m_client = client;
}
void SearchWPRequest::fail(unsigned short)
{
SearchResult res;
res.id = m_id;
res.client = m_client;
load_data(ICQProtocol::icqUserData, &res.data, NULL);
EventSearchDone(&res).process();
free_data(ICQProtocol::icqUserData, &res.data);
}
bool SearchWPRequest::answer(ICQBuffer &b, unsigned short nSubType)
{
QCString Nick, FirstName, LastName, EMail;
SearchResult res;
res.id = m_id;
res.client = m_client;
load_data(ICQProtocol::icqUserData, &res.data, NULL);
unsigned short n;
b >> n;
b.unpack(res.data.Uin.asULong());
char waitAuth;
unsigned short state;
char gender;
unsigned short age;
b
>> Nick
>> FirstName
>> LastName
>> EMail
>> waitAuth;
res.data.Nick.str() = getContacts()->toUnicode(NULL, Nick);
res.data.FirstName.str() = getContacts()->toUnicode(NULL, FirstName);
res.data.LastName.str() = getContacts()->toUnicode(NULL, LastName);
res.data.EMail.str() = getContacts()->toUnicode(NULL, EMail);
b.unpack(state);
b >> gender;
b.unpack(age);
if (waitAuth)
res.data.WaitAuth.asBool() = true;
switch (state){
case SEARCH_STATE_OFFLINE:
res.data.Status.asULong() = STATUS_OFFLINE;
break;
case SEARCH_STATE_ONLINE:
res.data.Status.asULong() = STATUS_ONLINE;
break;
case SEARCH_STATE_DISABLED:
res.data.Status.asULong() = STATUS_UNKNOWN;
break;
}
res.data.Gender.asULong() = gender;
res.data.Age.asULong() = age;
if (res.data.Uin.toULong() != m_client->data.owner.Uin.toULong()){
EventSearch(&res).process();
}
free_data(ICQProtocol::icqUserData, &res.data);
if (nSubType == 0xAE01){
unsigned long all;
b >> all;
load_data(ICQProtocol::icqUserData, &res.data, NULL);
res.data.Uin.asULong() = all;
EventSearchDone(&res).process();
free_data(ICQProtocol::icqUserData, &res.data);
return true;
}
return false;
}
unsigned short ICQClient::findByUin(unsigned long uin)
{
if (getState() != Connected)
return (unsigned short)~0U;
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer()
<< ICQ_SRVxREQ_WP_UIN;
socket()->writeBuffer().tlvLE(TLV_UIN, uin);
sendServerRequest();
varRequests.push_back(new SearchWPRequest(this, m_nMsgSequence));
return m_nMsgSequence;
}
unsigned short ICQClient::findByMail(const QString &_mail)
{
if (getState() != Connected)
return (unsigned short)~0U;
QCString mail = getContacts()->fromUnicode(NULL, _mail);
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer()
<< ICQ_SRVxREQ_WP_MAIL;
socket()->writeBuffer().tlvLE(TLV_EMAIL, mail);
sendServerRequest();
varRequests.push_back(new SearchWPRequest(this, m_nMsgSequence));
return m_nMsgSequence;
}
void ICQClient::packTlv(unsigned short tlv, unsigned short code, const QString &_keywords)
{
if ((code == 0) && _keywords.isEmpty())
return;
QCString data = getContacts()->fromUnicode(NULL, _keywords);
ICQBuffer b;
b.pack(code);
b << data;
socket()->writeBuffer().tlvLE(tlv, b);
}
void ICQClient::packTlv(unsigned short tlv, const QString &_data)
{
if(_data.isEmpty())
return;
QCString data = getContacts()->fromUnicode(NULL, _data);
socket()->writeBuffer().tlvLE(tlv, data);
}
void ICQClient::packTlv(unsigned short tlv, unsigned short data)
{
if(data == 0)
return;
socket()->writeBuffer().tlvLE(tlv, data);
}
unsigned short ICQClient::findWP(const QString &szFirst, const QString &szLast, const QString &szNick,
const QString &szEmail, char age, char nGender,
unsigned short nLanguage, const QString &szCity, const QString &szState,
unsigned short nCountryCode,
const QString &szCoName, const QString &szCoDept, const QString &szCoPos,
unsigned short nOccupation,
unsigned short nPast, const QString &szPast,
unsigned short nInterests, const QString &szInterests,
unsigned short nAffilation, const QString &szAffilation,
unsigned short nHomePage, const QString &szHomePage,
const QString &szKeyWords, bool bOnlineOnly)
{
if (getState() != Connected)
return (unsigned short)(-1);
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << ICQ_SRVxREQ_WP_FULL;
unsigned long nMinAge = 0;
unsigned long nMaxAge = 0;
switch (age){
case 1:
nMinAge = 18;
nMaxAge = 22;
break;
case 2:
nMinAge = 23;
nMaxAge = 29;
break;
case 3:
nMinAge = 30;
nMaxAge = 39;
break;
case 4:
nMinAge = 40;
nMaxAge = 49;
break;
case 5:
nMinAge = 50;
nMaxAge = 59;
break;
case 6:
nMinAge = 60;
nMaxAge = 120;
break;
}
packTlv(TLV_CITY, szCity);
packTlv(TLV_STATE, szState);
packTlv(TLV_WORK_COMPANY, szCoName);
packTlv(TLV_WORK_DEPARTMENT, szCoDept);
packTlv(TLV_WORK_POSITION, szCoPos);
packTlv(TLV_AGE_RANGE, (nMaxAge << 16) + nMinAge);
packTlv(TLV_GENDER, nGender);
packTlv(TLV_LANGUAGE, nLanguage);
packTlv(TLV_COUNTRY, nCountryCode);
packTlv(TLV_WORK_OCCUPATION, nOccupation);
packTlv(TLV_PAST, nPast, szPast);
packTlv(TLV_INTERESTS, nInterests, szInterests);
packTlv(TLV_AFFILATIONS, nAffilation, szAffilation);
packTlv(TLV_HOMEPAGE, nHomePage, szHomePage);
packTlv(TLV_FIRST_NAME, szFirst);
packTlv(TLV_LAST_NAME, szLast);
packTlv(TLV_NICK, szNick);
packTlv(TLV_KEYWORDS, szKeyWords);
packTlv(TLV_EMAIL, szEmail);
if (bOnlineOnly)
socket()->writeBuffer().tlvLE(TLV_SEARCH_ONLINE, (char)1);
sendServerRequest();
varRequests.push_back(new SearchWPRequest(this, m_nMsgSequence));
return m_nMsgSequence;
}
// ______________________________________________________________________________________
class SetMainInfoRequest : public ServerRequest
{
public:
SetMainInfoRequest(ICQClient *client, unsigned short id, ICQUserData *data);
protected:
bool answer(ICQBuffer &b, unsigned short nSubtype);
QString m_nick;
QString m_firstName;
QString m_lastName;
QString m_city;
QString m_state;
QString m_address;
QString m_zip;
QString m_email;
QString m_homePhone;
QString m_homeFax;
QString m_privateCellular;
bool m_hiddenEMail;
unsigned m_country;
unsigned m_tz;
ICQClient *m_client;
};
SetMainInfoRequest::SetMainInfoRequest(ICQClient *client, unsigned short id, ICQUserData *data)
: ServerRequest(id)
{
m_client = client;
m_nick = data->Nick.str();
m_firstName = data->FirstName.str();
m_lastName = data->LastName.str();
m_city = data->City.str();
m_state = data->State.str();
m_address = data->Address.str();
m_zip = data->Zip.str();
m_email = data->EMail.str();
m_homePhone = data->HomePhone.str();
m_homeFax = data->HomeFax.str();
m_privateCellular = data->PrivateCellular.str();
m_country = data->Country.toULong();
m_tz = data->TimeZone.toULong();
m_hiddenEMail = data->HiddenEMail.toBool();
}
bool SetMainInfoRequest::answer(ICQBuffer&, unsigned short)
{
m_client->data.owner.Nick.str() = m_nick;
m_client->data.owner.FirstName.str() = m_firstName;
m_client->data.owner.LastName.str() = m_lastName;
m_client->data.owner.City.str() = m_city;
m_client->data.owner.State.str() = m_state;
m_client->data.owner.Address.str() = m_address;
m_client->data.owner.Zip.str() = m_zip;
m_client->data.owner.EMail.str() = m_email;
m_client->data.owner.HomePhone.str() = m_homePhone;
m_client->data.owner.HomeFax.str() = m_homeFax;
m_client->data.owner.PrivateCellular.str() = m_privateCellular;
m_client->data.owner.Country.asULong() = m_country;
m_client->data.owner.TimeZone.asULong() = m_tz;
m_client->data.owner.HiddenEMail.asBool() = m_hiddenEMail;
EventClientChanged(m_client).process();
m_client->sendUpdate();
return true;
}
// ******************************************
// static helper functions
// ******************************************
static Tlv makeSString(unsigned id, const QString &str)
{
QCString cstr = getContacts()->fromUnicode(NULL, str);
unsigned len = cstr.length() + 1; // including '\0'
QByteArray ba( len + 2 );
ba[0] = (char)((len ) & 0xff);
ba[1] = (char)((len >> 8) & 0xff);
memcpy( ba.data() + 2, cstr, len );
return Tlv( id, ba.size(), ba.data() );
}
static Tlv makeBCombo(unsigned id, unsigned long y, unsigned long m, unsigned long d)
{
unsigned short buf[4];
buf[0] = (unsigned short)(y);
buf[1] = (unsigned short)(m);
buf[2] = (unsigned short)(d);
buf[3] = '\0';
return Tlv( id, 6, (const char*)buf );
}
static Tlv makeECombo(unsigned id, const QString &str)
{
QCString cstr = getContacts()->fromUnicode(NULL, str);
unsigned len = cstr.length() + 1; // including '\0'
QByteArray ba( len + 3 );
ba[0] = (char)((len ) & 0xff);
ba[1] = (char)((len >> 8) & 0xff);
memcpy( ba.data() + 2, cstr, len );
ba[ (int)len + 2 ] = '\0'; // permission (don't use in icq directories)
return Tlv( id, ba.size(), ba.data() );
}
static QValueList<Tlv> makeICombo(unsigned id, const QString &str)
{
QValueList<Tlv> list;
if ( str.isEmpty() )
return list;
QCString cstr = getContacts()->fromUnicode(NULL, str);
int cur = 0;
int idx = 0;
do {
idx = cstr.find( ',', cur );
if( idx == -1 )
break;
int cat = cstr.mid( cur, idx - cur ).toULong();
cur = idx + 1;
idx = cstr.find( ';', cur );
if( idx == -1 )
idx = cstr.length();
QCString data = cstr.mid( cur, idx - cur);
cur = idx + 1;
int len = data.length();
QByteArray ba( len + 4 );
ba[0] = (char)((cat ) & 0xff);
ba[1] = (char)((cat >> 8) & 0xff);
ba[2] = (char)((len ) & 0xff);
ba[3] = (char)((len >> 8) & 0xff);
memcpy( ba.data() + 4, data.data(), len );
list.append( Tlv( id, ba.size(), ba.data() ) );
} while( idx != (int)cstr.length() );
return list;
}
static Tlv makeUInt32(unsigned id, unsigned long d)
{
char data[4];
data[0] = (char)((d >> 0) & 0xff);
data[1] = (char)((d >> 8) & 0xff);
data[2] = (char)((d >> 16) & 0xff);
data[3] = (char)((d >> 24) & 0xff);
return Tlv( id, 4, data );
}
static Tlv makeUInt16(unsigned id, unsigned short d)
{
char data[2];
data[0] = (char)((d >> 0) & 0xff);
data[1] = (char)((d >> 8) & 0xff);
return Tlv( id, 2, data );
}
static Tlv makeUInt8(unsigned id, unsigned char d)
{
char data[1];
data[0] = (char)((d >> 0) & 0xff);
return Tlv( id, 1, data );
}
static QString getSString(const char *tlvData)
{
unsigned len;
const unsigned char *data = (const unsigned char*)tlvData;
len = data[0] | ( data[1] << 8 );
QString ret = getContacts()->toUnicode(NULL, &tlvData[2], len);
return ret;
}
static void getBCombo(const char *tlvData, unsigned long &y, unsigned long &m, unsigned long &d)
{
unsigned short *buf = (unsigned short*)tlvData;
y = buf[0];
m = buf[1];
d = buf[2];
}
static QString getECombo(const char *tlvData)
{
unsigned len;
const unsigned char *data = (const unsigned char*)tlvData;
len = data[0] | ( data[1] << 8 );
QString ret = getContacts()->toUnicode(NULL, QCString( &tlvData[2], len));
return ret;
}
static QString getICombo(const char *tlvData, const QString &o)
{
QString ret;
QString others = o;
const unsigned char *data = (const unsigned char*)tlvData;
unsigned cat = data[0] | ( data[1] << 8 );
ret = QString::number( cat ) + ',' + getSString( &tlvData[2] );
if( others.isEmpty() )
return ret;
return others + ';' + ret;
}
static unsigned long getUInt32(const char *tlvData)
{
unsigned long ret;
const unsigned char *data = (const unsigned char*)tlvData;
ret = data[0] | ( data[1] << 8 ) | ( data[2] << 16 ) | ( data[3] << 24 );
return ret;
}
static unsigned short getUInt16(const char *tlvData)
{
unsigned short ret;
const unsigned char *data = (const unsigned char*)tlvData;
ret = data[0] | ( data[1] << 8 );
return ret;
}
static char getUInt8(const char *tlvData)
{
unsigned char ret;
ret = tlvData[0];
return ret;
}
class ChangeInfoRequest : public ServerRequest
{
public:
ChangeInfoRequest(ICQClient *client, unsigned short id, const QValueList<Tlv> &clientInfoTLVs);
protected:
bool answer(ICQBuffer &b, unsigned short nSubtype);
ICQClient *m_client;
QValueList<Tlv> m_clientInfoTLVs;
};
ChangeInfoRequest::ChangeInfoRequest(ICQClient *client, unsigned short id, const QValueList<Tlv> &clientInfoTLVs)
: ServerRequest(id), m_client(client), m_clientInfoTLVs(clientInfoTLVs)
{
}
bool ChangeInfoRequest::answer(ICQBuffer&, unsigned short)
{
bool bFirstAffilation = true;
bool bFirstInterest = true;
bool bFirstBackground = true;
for( unsigned i = 0; i < m_clientInfoTLVs.count(); i++ ) {
Tlv *tlv = &m_clientInfoTLVs[i];
switch(tlv->Num()) {
case TLV_FIRST_NAME:
m_client->data.owner.FirstName.str() = getSString(tlv->Data());
break;
case TLV_LAST_NAME:
m_client->data.owner.LastName.str() = getSString(tlv->Data());
break;
case TLV_NICK:
m_client->data.owner.Nick.str() = getSString(tlv->Data());
break;
case TLV_EMAIL:
m_client->data.owner.EMail.str() = getECombo(tlv->Data());
break;
case TLV_AGE:
m_client->data.owner.Age.asULong() = getUInt16(tlv->Data());
break;
case TLV_GENDER:
m_client->data.owner.Gender.asULong() = getUInt8(tlv->Data());
break;
case TLV_LANGUAGE:
m_client->data.owner.Language.asULong() = getUInt16(tlv->Data());
break;
case TLV_CITY:
m_client->data.owner.City.str() = getSString(tlv->Data());
break;
case TLV_STATE:
m_client->data.owner.State.str() = getSString(tlv->Data());
break;
case TLV_COUNTRY:
m_client->data.owner.Country.asULong() = getUInt16(tlv->Data());
break;
case TLV_WORK_COMPANY:
m_client->data.owner.WorkName.str() = getSString(tlv->Data());
break;
case TLV_WORK_DEPARTMENT:
m_client->data.owner.WorkDepartment.str() = getSString(tlv->Data());
break;
case TLV_WORK_POSITION:
m_client->data.owner.WorkPosition.str() = getSString(tlv->Data());
break;
case TLV_WORK_OCCUPATION:
m_client->data.owner.Occupation.asULong() = getUInt16(tlv->Data());
break;
case TLV_AFFILATIONS: {
if( bFirstAffilation ) {
m_client->data.owner.Affilations.clear();
bFirstAffilation = false;
}
m_client->data.owner.Affilations.str() = getICombo(tlv->Data(), m_client->data.owner.Affilations.str());
break;
}
case TLV_INTERESTS:
if( bFirstInterest ) {
m_client->data.owner.Interests.clear();
bFirstInterest = false;
}
m_client->data.owner.Interests.str() = getICombo(tlv->Data(), m_client->data.owner.Interests.str());
break;
case TLV_PAST: {
if( bFirstBackground ) {
m_client->data.owner.Backgrounds.clear();
bFirstBackground = false;
}
m_client->data.owner.Backgrounds.str() = getICombo(tlv->Data(), m_client->data.owner.Backgrounds.str());
break;
}
// 530 0x0212 icombo User homepage category/keywords
case TLV_HOMEPAGE:
m_client->data.owner.Homepage.str() = getSString(tlv->Data());
break;
case TLV_BIRTHDAY: {
getBCombo(tlv->Data(), m_client->data.owner.BirthYear.asULong(),
m_client->data.owner.BirthMonth.asULong(),
m_client->data.owner.BirthDay.asULong());
break;
}
case TLV_NOTES:
m_client->data.owner.About.str() = getSString(tlv->Data());
break;
case TLV_STREET:
m_client->data.owner.Address.str() = getSString(tlv->Data());
break;
case TLV_ZIP: {
QString str;
str.sprintf("%lu", getUInt32(tlv->Data()));
m_client->data.owner.Zip.str() = str;
break;
}
case TLV_PHONE:
m_client->data.owner.HomePhone.str() = getSString(tlv->Data());
break;
case TLV_FAX:
m_client->data.owner.HomeFax.str() = getSString(tlv->Data());
break;
case TLV_CELLULAR:
m_client->data.owner.PrivateCellular.str() = getSString(tlv->Data());
break;
case TLV_WORK_STREET:
m_client->data.owner.WorkAddress.str() = getSString(tlv->Data());
break;
case TLV_WORK_CITY:
m_client->data.owner.WorkCity.str() = getSString(tlv->Data());
break;
case TLV_WORK_STATE:
m_client->data.owner.WorkState.str() = getSString(tlv->Data());
break;
case TLV_WORK_COUNTRY:
m_client->data.owner.WorkCountry.asULong() = getUInt16((tlv->Data()));
break;
case TLV_WORK_ZIP: {
QString str;
str.sprintf("%lu", getUInt32(tlv->Data()));
m_client->data.owner.WorkZip.str() = str;
break;
}
case TLV_WORK_PHONE:
m_client->data.owner.WorkPhone.str() = getSString(tlv->Data());
break;
case TLV_WORK_FAX:
m_client->data.owner.WorkFax.str() = getSString(tlv->Data());
break;
case TLV_WORK_HOMEPAGE:
m_client->data.owner.WorkHomepage.str() = getSString(tlv->Data());
break;
case TLV_SHOW_WEB:
m_client->data.owner.WebAware.asBool() = getUInt8(tlv->Data());
break;
case TLV_NEED_AUTH:
m_client->data.owner.WaitAuth.asBool() = !getUInt8(tlv->Data());
break;
case TLV_TIMEZONE:
m_client->data.owner.TimeZone.asBool() = getUInt8(tlv->Data());
break;
/*
800 0x0320 sstring User originally from city
810 0x032A sstring User originally from state
820 0x0334 uint16 User originally from country (code)
*/
default:
break;
}
}
m_client->sendStatus();
EventClientChanged(m_client).process();
return true;
}
void ICQClient::setMainInfo(ICQUserData *d)
{
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << ICQ_SRVxREQ_MODIFY_MAIN
<< d->Nick.str()
<< d->FirstName.str()
<< d->LastName.str()
<< d->EMail.str()
<< d->City.str()
<< d->State.str()
<< d->HomePhone.str()
<< d->HomeFax.str()
<< d->Address.str()
<< d->PrivateCellular.str()
<< d->Zip.str();
socket()->writeBuffer().pack((unsigned short)(d->Country.toULong()));
socket()->writeBuffer().pack((char)(d->TimeZone.toULong()));
socket()->writeBuffer().pack((char)(d->HiddenEMail.toBool()));
sendServerRequest();
varRequests.push_back(new SetMainInfoRequest(this, m_nMsgSequence, d));
}
void ICQClient::setClientInfo(void *_data)
{
if (getState() != Connected)
return;
ICQUserData *d = toICQUserData((SIM::clientData*)_data); // FIXME unsafe type conversion
if (m_bAIM){
d->ProfileFetch.asBool() = true;
data.owner.About.str() = d->About.str();
setAIMInfo(d);
setProfile(d);
return;
}
QValueList<Tlv> clientInfoTLVs;
if (d->FirstName.str() != data.owner.FirstName.str())
clientInfoTLVs.append(makeSString(TLV_FIRST_NAME, d->FirstName.str()));
if (d->LastName.str() != data.owner.LastName.str())
clientInfoTLVs.append(makeSString(TLV_LAST_NAME, d->LastName.str()));
if (d->Nick.str() != data.owner.Nick.str())
clientInfoTLVs.append(makeSString(TLV_NICK, d->Nick.str()));
if (d->EMail.str() != data.owner.EMail.str())
clientInfoTLVs.append(makeECombo(TLV_EMAIL, d->EMail.str()));
if (d->Age.toULong() != data.owner.Age.toULong())
clientInfoTLVs.append(makeUInt16(TLV_AGE, d->Age.toULong()));
if (d->Gender.toULong() != data.owner.Gender.toULong())
clientInfoTLVs.append(makeUInt8(TLV_GENDER, d->Gender.toULong()));
if (d->Language.toULong() != data.owner.Language.toULong())
clientInfoTLVs.append(makeUInt16(TLV_LANGUAGE, d->Language.toULong()));
if (d->City.str() != data.owner.City.str())
clientInfoTLVs.append(makeSString(TLV_CITY, d->City.str()));
if (d->State.str() != data.owner.State.str())
clientInfoTLVs.append(makeSString(TLV_STATE, d->State.str()));
if (d->Country.toULong() != data.owner.Country.toULong())
clientInfoTLVs.append(makeUInt16(TLV_COUNTRY, d->Country.toULong()));
if (d->WorkName.str() != data.owner.WorkName.str())
clientInfoTLVs.append(makeSString(TLV_WORK_COMPANY, d->WorkName.str()));
if (d->WorkDepartment.str() != data.owner.WorkDepartment.str())
clientInfoTLVs.append(makeSString(TLV_WORK_DEPARTMENT, d->WorkDepartment.str()));
if (d->WorkPosition.str() != data.owner.WorkPosition.str())
clientInfoTLVs.append(makeSString(TLV_WORK_POSITION, d->WorkPosition.str()));
if (d->Occupation.toULong() != data.owner.Occupation.toULong())
clientInfoTLVs.append(makeUInt16(TLV_WORK_OCCUPATION, d->Occupation.toULong()));
if (d->Affilations.str() != data.owner.Affilations.str())
clientInfoTLVs += makeICombo(TLV_AFFILATIONS, d->Affilations.str());
if (d->Interests.str() != data.owner.Interests.str())
clientInfoTLVs += makeICombo(TLV_INTERESTS, d->Interests.str());
if (d->Backgrounds.str() != data.owner.Backgrounds.str())
clientInfoTLVs += makeICombo(TLV_PAST, d->Backgrounds.str());
// 530 0x0212 icombo User homepage category/keywords
if (d->Homepage.str() != data.owner.Homepage.str())
clientInfoTLVs.append(makeSString(TLV_HOMEPAGE, d->Homepage.str()));
if (d->BirthDay.toULong() != data.owner.BirthDay.toULong() ||
d->BirthMonth.toULong() != data.owner.BirthMonth.toULong() ||
d->BirthYear.toULong() != data.owner.BirthYear.toULong()) {
clientInfoTLVs.append(makeBCombo(TLV_BIRTHDAY, d->BirthYear.toULong(), d->BirthMonth.toULong(), d->BirthDay.toULong()));
}
if (d->About.str() != data.owner.About.str())
clientInfoTLVs.append(makeSString(TLV_NOTES, d->About.str()));
if (d->Address.str() != data.owner.Address.str())
clientInfoTLVs.append(makeSString(TLV_STREET, d->Address.str()));
if (d->Zip.str() != data.owner.Zip.str())
clientInfoTLVs.append(makeUInt32(TLV_ZIP, QString(d->Zip.str()).toULong()));
if (d->HomePhone.str() != data.owner.HomePhone.str())
clientInfoTLVs.append(makeSString(TLV_PHONE, d->HomePhone.str()));
if (d->HomeFax.str() != data.owner.HomeFax.str())
clientInfoTLVs.append(makeSString(TLV_FAX, d->HomeFax.str()));
if (d->PrivateCellular.str() != data.owner.PrivateCellular.str())
clientInfoTLVs.append(makeSString(TLV_CELLULAR, d->PrivateCellular.str()));
if (d->WorkAddress.str() != data.owner.WorkAddress.str())
clientInfoTLVs.append(makeSString(TLV_WORK_STREET, d->WorkAddress.str()));
if (d->WorkCity.str() != data.owner.WorkCity.str())
clientInfoTLVs.append(makeSString(TLV_WORK_CITY, d->WorkCity.str()));
if (d->WorkState.str() != data.owner.WorkState.str())
clientInfoTLVs.append(makeSString(TLV_WORK_STATE, d->WorkState.str()));
if (d->WorkCountry.toULong() != data.owner.WorkCountry.toULong())
clientInfoTLVs.append(makeUInt16(TLV_WORK_COUNTRY, d->WorkCountry.toULong()));
if (d->WorkZip.str() != data.owner.WorkZip.str())
clientInfoTLVs.append(makeUInt32(TLV_WORK_ZIP, QString(d->WorkZip.str()).toULong()));
if (d->WorkPhone.str() != data.owner.WorkPhone.str())
clientInfoTLVs.append(makeSString(TLV_WORK_PHONE, d->WorkPhone.str()));
if (d->WorkFax.str() != data.owner.WorkFax.str())
clientInfoTLVs.append(makeSString(TLV_WORK_FAX, d->WorkFax.str()));
if (d->WorkHomepage.str() != data.owner.WorkHomepage.str())
clientInfoTLVs.append(makeSString(TLV_WORK_HOMEPAGE, d->WorkHomepage.str()));
if (d->WebAware.toBool() != data.owner.WebAware.toBool())
clientInfoTLVs.append(makeUInt8(TLV_SHOW_WEB, d->WebAware.toBool()));
if (d->WaitAuth.toBool() != data.owner.WaitAuth.toBool())
clientInfoTLVs.append(makeUInt8(TLV_NEED_AUTH, d->WaitAuth.toBool() ? 0 : 1));
if (d->TimeZone.toULong() != data.owner.TimeZone.toULong())
clientInfoTLVs.append(makeUInt8(TLV_TIMEZONE, d->TimeZone.toULong()));
/*
800 0x0320 sstring User originally from city
810 0x032A sstring User originally from state
820 0x0334 uint16 User originally from country (code)
*/
uploadBuddy(&data.owner);
if (!clientInfoTLVs.isEmpty()) {
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << ICQ_SRVxWP_SET;
for( unsigned i =0; i < clientInfoTLVs.count(); i++ ) {
Tlv *tlv = &clientInfoTLVs[i];
socket()->writeBuffer().tlvLE( tlv->Num(), *tlv, tlv->Size() );
}
sendServerRequest();
varRequests.push_back(new ChangeInfoRequest(this, m_nMsgSequence, clientInfoTLVs));
}
setChatGroup();
sendStatus();
}
class SetPasswordRequest : public ServerRequest
{
public:
SetPasswordRequest(ICQClient *client, unsigned short id, const QString &pwd);
protected:
bool answer(ICQBuffer &b, unsigned short nSubtype);
virtual void fail(unsigned short error_code);
QString m_pwd;
ICQClient *m_client;
};
SetPasswordRequest::SetPasswordRequest(ICQClient *client, unsigned short id, const QString &pwd)
: ServerRequest(id), m_pwd(pwd), m_client(client)
{}
bool SetPasswordRequest::answer(ICQBuffer&, unsigned short)
{
m_client->setPassword(m_pwd);
return true;
}
void SetPasswordRequest::fail(unsigned short error_code)
{
log(L_DEBUG, "Password change fail: %X", error_code);
EventError::ClientErrorData d;
d.client = m_client;
d.code = 0;
d.err_str = I18N_NOOP("Change password fail");
d.args = QString::null;
d.flags = EventError::ClientErrorData::E_ERROR;
d.options = NULL;
d.id = CmdPasswordFail;
EventClientError e(d);
e.process();
}
void ICQClient::changePassword(const QString &new_pswd)
{
QString pwd = new_pswd;
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer()
<< ICQ_SRVxREQ_CHANGE_PASSWD
<< (const char*)getContacts()->fromUnicode(NULL, pwd).data();
sendServerRequest();
varRequests.push_back(new SetPasswordRequest(this, m_nMsgSequence, new_pswd));
}
class SMSRequest : public ServerRequest
{
public:
SMSRequest(ICQClient *client, unsigned short id);
virtual bool answer(ICQBuffer&, unsigned short nSubType);
virtual void fail(unsigned short error_code);
protected:
ICQClient *m_client;
};
#if 0
const char *translations[] =
{
I18N_NOOP("The Cellular network is currently unable to send your message to the recipient. Please try again later."),
I18N_NOOP("INVALID NUMBER"),
I18N_NOOP("RATE LIMIT")
};
#endif
SMSRequest::SMSRequest(ICQClient *client, unsigned short id)
: ServerRequest(id)
{
m_client = client;
}
bool SMSRequest::answer(ICQBuffer &b, unsigned short code)
{
m_client->m_sendSmsId = 0;
if (code == 0x0100){
if (m_client->smsQueue.empty())
return true;
QCString errStr = b.data(b.readPos());
SendMsg &s = m_client->smsQueue.front();
SMSMessage *sms = static_cast<SMSMessage*>(s.msg);
m_client->smsQueue.erase(m_client->smsQueue.begin());
sms->setError(errStr.data());
EventMessageSent(sms).process();
delete sms;
}else{
b.incReadPos(6);
QCString provider;
QCString answer_QCString;
b.unpackStr(provider);
b.unpackStr(answer_QCString);
// FIXME
std::string answer = (const char *)answer_QCString;
string::iterator s = answer.begin();
auto_ptr<XmlNode> top(XmlNode::parse(s, answer.end()));
QString error = I18N_NOOP("SMS send fail");
QString network;
if (top.get()){
XmlNode *n = top.get();
if (n && n->isBranch()){
XmlBranch *msg = static_cast<XmlBranch*>(n);
XmlLeaf *l = msg->getLeaf("deliverable");
if (l && (l->getValue() == "Yes")){
error = QString::null;
l = msg->getLeaf("network");
if (l)
network = QString(l->getValue().c_str());
}else{
XmlBranch *param = msg->getBranch("param");
if (param){
XmlLeaf *l = param->getLeaf("error");
if (l)
error = QString(l->getValue().c_str());
}
}
}
}
if (error.isEmpty()){
if (!m_client->smsQueue.empty()){
SendMsg &s = m_client->smsQueue.front();
SMSMessage *sms = static_cast<SMSMessage*>(s.msg);
sms->setNetwork(network);
if ((sms->getFlags() & MESSAGE_NOHISTORY) == 0){
SMSMessage m;
m.setContact(sms->contact());
m.setText(s.part);
m.setPhone(sms->getPhone());
m.setNetwork(network);
EventSent(&m).process();
}
}
}else{
if (!m_client->smsQueue.empty()){
SendMsg &s = m_client->smsQueue.front();
s.msg->setError(error);
EventMessageSent(s.msg).process();
delete s.msg;
m_client->smsQueue.erase(m_client->smsQueue.begin());
}
}
}
m_client->processSendQueue();
return true;
}
void SMSRequest::fail(unsigned short)
{
if (m_client->smsQueue.empty())
return;
SendMsg &s = m_client->smsQueue.front();
Message *sms = s.msg;
sms->setError(I18N_NOOP("SMS send fail"));
m_client->smsQueue.erase(m_client->smsQueue.begin());
EventMessageSent(sms).process();
delete sms;
m_client->m_sendSmsId = 0;
m_client->processSendQueue();
}
const unsigned MAX_SMS_LEN_LATIN1 = 160;
const unsigned MAX_SMS_LEN_UNICODE = 70;
static const char *w_days[] =
{
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Say"
};
static const char *months[] =
{
I18N_NOOP("Jan"),
I18N_NOOP("Feb"),
I18N_NOOP("Mar"),
I18N_NOOP("Apr"),
I18N_NOOP("May"),
I18N_NOOP("Jun"),
I18N_NOOP("Jul"),
I18N_NOOP("Aug"),
I18N_NOOP("Sep"),
I18N_NOOP("Oct"),
I18N_NOOP("Nov"),
I18N_NOOP("Dec")
};
unsigned ICQClient::processSMSQueue()
{
if (m_sendSmsId)
return 0;
for (;;){
if (smsQueue.empty())
break;
unsigned delay = delayTime(SNAC(ICQ_SNACxFOOD_VARIOUS, ICQ_SNACxVAR_REQxSRV));
if (delay)
return delay;
SendMsg &s = smsQueue.front();
if (s.text.isEmpty() || (!(s.flags & SEND_1STPART) && (s.msg->getFlags() & MESSAGE_1ST_PART))){
EventMessageSent(s.msg).process();
delete s.msg;
smsQueue.erase(smsQueue.begin());
continue;
}
SMSMessage *sms = static_cast<SMSMessage*>(s.msg);
QString text = s.text;
QString part = getPart(text, MAX_SMS_LEN_LATIN1);
if (!isLatin(part)){
text = s.text;
part = getPart(text, MAX_SMS_LEN_UNICODE);
}
s.text = text;
s.part = part;
QString nmb = "+";
QString phone = sms->getPhone();
for (int i = 0; i < (int)(phone.length()); i++){
QChar c = phone[i];
if ((c >= '0') && (c <= '9'))
nmb += c;
}
XmlBranch xmltree("icq_sms_message");
xmltree.pushnode(new XmlLeaf("destination",(const char*)(nmb.utf8())));
xmltree.pushnode(new XmlLeaf("text",(const char*)(part.utf8())));
xmltree.pushnode(new XmlLeaf("codepage","1252"));
xmltree.pushnode(new XmlLeaf("encoding","utf8"));
xmltree.pushnode(new XmlLeaf("senders_UIN",QString::number(data.owner.Uin.toULong()).latin1()));
xmltree.pushnode(new XmlLeaf("senders_name",""));
xmltree.pushnode(new XmlLeaf("delivery_receipt","Yes"));
char timestr[30];
time_t t = time(NULL);
struct tm *tm;
tm = gmtime(&t);
snprintf(timestr, sizeof(timestr), "%s, %02u %s %04u %02u:%02u:%02u GMT",
w_days[tm->tm_wday], tm->tm_mday, months[tm->tm_mon], tm->tm_year + 1900,
tm->tm_hour, tm->tm_min, tm->tm_sec);
xmltree.pushnode(new XmlLeaf("time",string(timestr)));
string msg = xmltree.toString(0);
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << ICQ_SRVxREQ_SEND_SMS
<< 0x00010016L << 0x00000000L << 0x00000000L
<< 0x00000000L << 0x00000000L << (unsigned long)(msg.size());
socket()->writeBuffer() << msg.c_str();
sendServerRequest();
varRequests.push_back(new SMSRequest(this, m_nMsgSequence));
m_sendSmsId = m_nMsgSequence;
break;
}
return 0;
}
void ICQClient::clearSMSQueue()
{
for (list<SendMsg>::iterator it = smsQueue.begin(); it != smsQueue.end(); ++it){
(*it).msg->setError(I18N_NOOP("Client go offline"));
EventMessageSent((*it).msg).process();
delete (*it).msg;
}
smsQueue.clear();
m_sendSmsId = 0;
}
void ICQClient::setChatGroup()
{
if ((getState() != Connected) || (getRandomChatGroup() == getRandomChatGroupCurrent()))
return;
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << (unsigned short)ICQ_SRVxREQ_SET_CHAT_GROUP;
if (getRandomChatGroup()){
socket()->writeBuffer().pack((unsigned short)getRandomChatGroup());
socket()->writeBuffer()
<< 0x00000310L
<< 0x00000000L
<< 0x00000000L
<< 0x00000000L
<< (char)4
<< (char)ICQ_TCP_VERSION
<< 0x00000000L
<< 0x00000050L
<< 0x00000003L
<< (unsigned short)0
<< (char)0;
}else{
socket()->writeBuffer() << (unsigned short)0;
}
sendServerRequest();
setRandomChatGroupCurrent(getRandomChatGroup());
}
class RandomChatRequest : public ServerRequest
{
public:
RandomChatRequest(ICQClient *client, unsigned short id);
protected:
virtual void fail(unsigned short error_code);
bool answer(ICQBuffer &b, unsigned short nSubtype);
ICQClient *m_client;
};
RandomChatRequest::RandomChatRequest(ICQClient *client, unsigned short id)
: ServerRequest(id)
{
m_client = client;
}
bool RandomChatRequest::answer(ICQBuffer &b, unsigned short)
{
unsigned long uin;
b.unpack(uin);
// currently unhandled
// Event e(EventRandomChat, (void*)uin);
// e.process();
return true;
}
void RandomChatRequest::fail(unsigned short)
{
// currently unhandled
// Event e(EventRandomChat, NULL);
// e.process();
}
void ICQClient::searchChat(unsigned short group)
{
if (getState() != Connected){
// currently unhandled
// Event e(EventRandomChat, NULL);
// e.process();
return;
}
serverRequest(ICQ_SRVxREQ_MORE);
socket()->writeBuffer() << (unsigned short)ICQ_SRVxREQ_RANDOM_CHAT;
socket()->writeBuffer().pack(group);
sendServerRequest();
varRequests.push_back(new RandomChatRequest(this, m_nMsgSequence));
}
|