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 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387
|
<?php
/***********************************************
* File : mapiprovider.php
* Project : Z-Push
* Descr :
*
* Created : 14.02.2011
*
* Copyright 2007 - 2011 Zarafa Deutschland GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation with the following additional
* term according to sec. 7:
*
* According to sec. 7 of the GNU Affero General Public License, version 3,
* the terms of the AGPL are supplemented with the following terms:
*
* "Zarafa" is a registered trademark of Zarafa B.V.
* "Z-Push" is a registered trademark of Zarafa Deutschland GmbH
* The licensing of the Program under the AGPL does not imply a trademark license.
* Therefore any rights, title and interest in our trademarks remain entirely with us.
*
* However, if you propagate an unmodified version of the Program you are
* allowed to use the term "Z-Push" to indicate that you distribute the Program.
* Furthermore you may use our trademarks where it is necessary to indicate
* the intended purpose of a product or service provided you use it in accordance
* with honest practices in industrial or commercial matters.
* If you want to propagate modified versions of the Program under the name "Z-Push",
* you may only do so if you have a written permission by Zarafa Deutschland GmbH
* (to acquire a permission please contact Zarafa at trademark@zarafa.com).
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Consult LICENSE file for details
************************************************/
class MAPIProvider {
private $session;
private $store;
private $zRFC822;
/**
* Constructor of the MAPI Provider
* Almost all methods of this class require a MAPI session and/or store
*
* @param ressource $session
* @param ressource $store
*
* @access public
*/
function MAPIProvider($session, $store) {
$this->session = $session;
$this->store = $store;
}
/**----------------------------------------------------------------------------------------------------------
* GETTER
*/
/**
* Reads a message from MAPI
* Depending on the message class, a contact, appointment, task or email is read
*
* @param mixed $mapimessage
* @param ContentParameters $contentparameters
*
* @access public
* @return SyncObject
*/
public function GetMessage($mapimessage, $contentparameters) {
// Gets the Sync object from a MAPI object according to its message class
$props = mapi_getprops($mapimessage, array(PR_MESSAGE_CLASS));
if(isset($props[PR_MESSAGE_CLASS]))
$messageclass = $props[PR_MESSAGE_CLASS];
else
$messageclass = "IPM";
if(strpos($messageclass,"IPM.Contact") === 0)
return $this->getContact($mapimessage, $contentparameters);
else if(strpos($messageclass,"IPM.Appointment") === 0)
return $this->getAppointment($mapimessage, $contentparameters);
else if(strpos($messageclass,"IPM.Task") === 0)
return $this->getTask($mapimessage, $contentparameters);
else if(strpos($messageclass,"IPM.StickyNote") === 0)
return $this->getNote($mapimessage, $contentparameters);
else
return $this->getEmail($mapimessage, $contentparameters);
}
/**
* Reads a contact object from MAPI
*
* @param mixed $mapimessage
* @param ContentParameters $contentparameters
*
* @access private
* @return SyncContact
*/
private function getContact($mapimessage, $contentparameters) {
$message = new SyncContact();
// Standard one-to-one mappings first
$this->getPropsFromMAPI($message, $mapimessage, MAPIMapping::GetContactMapping());
// Contact specific props
$contactproperties = MAPIMapping::GetContactProperties();
$messageprops = $this->getProps($mapimessage, $contactproperties);
//set the body according to contentparameters and supported AS version
$this->setMessageBody($mapimessage, $contentparameters, $message);
//check the picture
if (isset($messageprops[$contactproperties["haspic"]]) && $messageprops[$contactproperties["haspic"]]) {
// Add attachments
$attachtable = mapi_message_getattachmenttable($mapimessage);
mapi_table_restrict($attachtable, MAPIUtils::GetContactPicRestriction());
$rows = mapi_table_queryallrows($attachtable, array(PR_ATTACH_NUM, PR_ATTACH_SIZE));
foreach($rows as $row) {
if(isset($row[PR_ATTACH_NUM])) {
if (isset($row[PR_ATTACH_SIZE]) && $row[PR_ATTACH_SIZE] < MAX_EMBEDDED_SIZE) {
$mapiattach = mapi_message_openattach($mapimessage, $row[PR_ATTACH_NUM]);
$message->picture = base64_encode(mapi_attach_openbin($mapiattach, PR_ATTACH_DATA_BIN));
}
}
}
}
return $message;
}
/**
* Reads a task object from MAPI
*
* @param mixed $mapimessage
* @param ContentParameters $contentparameters
*
* @access private
* @return SyncTask
*/
private function getTask($mapimessage, $contentparameters) {
$message = new SyncTask();
// Standard one-to-one mappings first
$this->getPropsFromMAPI($message, $mapimessage, MAPIMapping::GetTaskMapping());
// Task specific props
$taskproperties = MAPIMapping::GetTaskProperties();
$messageprops = $this->getProps($mapimessage, $taskproperties);
//set the body according to contentparameters and supported AS version
$this->setMessageBody($mapimessage, $contentparameters, $message);
//task with deadoccur is an occurrence of a recurring task and does not need to be handled as recurring
//webaccess does not set deadoccur for the initial recurring task
if(isset($messageprops[$taskproperties["isrecurringtag"]]) &&
$messageprops[$taskproperties["isrecurringtag"]] &&
(!isset($messageprops[$taskproperties["deadoccur"]]) ||
(isset($messageprops[$taskproperties["deadoccur"]]) &&
!$messageprops[$taskproperties["deadoccur"]]))) {
// Process recurrence
$message->recurrence = new SyncTaskRecurrence();
$this->getRecurrence($mapimessage, $messageprops, $message, $message->recurrence, false);
}
// when set the task to complete using the WebAccess, the dateComplete property is not set correctly
if ($message->complete == 1 && !isset($message->datecompleted))
$message->datecompleted = time();
// if no reminder is set, announce that to the mobile
if (!isset($message->reminderset))
$message->reminderset = 0;
return $message;
}
/**
* Reads an appointment object from MAPI
*
* @param mixed $mapimessage
* @param ContentParameters $contentparameters
*
* @access private
* @return SyncAppointment
*/
private function getAppointment($mapimessage, $contentparameters) {
$message = new SyncAppointment();
// Standard one-to-one mappings first
$this->getPropsFromMAPI($message, $mapimessage, MAPIMapping::GetAppointmentMapping());
// Appointment specific props
$appointmentprops = MAPIMapping::GetAppointmentProperties();
$messageprops = $this->getProps($mapimessage, $appointmentprops);
//set the body according to contentparameters and supported AS version
$this->setMessageBody($mapimessage, $contentparameters, $message);
// Set reminder time if reminderset is true
if(isset($messageprops[$appointmentprops["reminderset"]]) && $messageprops[$appointmentprops["reminderset"]] == true) {
if ($messageprops[$appointmentprops["remindertime"]] == 0x5AE980E1)
$message->reminder = 15;
else
$message->reminder = $messageprops[$appointmentprops["remindertime"]];
}
if(!isset($message->uid))
$message->uid = bin2hex($messageprops[$appointmentprops["sourcekey"]]);
else
$message->uid = Utils::GetICalUidFromOLUid($message->uid);
// Get organizer information if it is a meetingrequest
if(isset($messageprops[$appointmentprops["meetingstatus"]]) &&
$messageprops[$appointmentprops["meetingstatus"]] > 0 &&
isset($messageprops[$appointmentprops["representingentryid"]]) &&
isset($messageprops[$appointmentprops["representingname"]])) {
$message->organizeremail = w2u($this->getSMTPAddressFromEntryID($messageprops[$appointmentprops["representingentryid"]]));
$message->organizername = w2u($messageprops[$appointmentprops["representingname"]]);
}
if(isset($messageprops[$appointmentprops["timezonetag"]]))
$tz = $this->getTZFromMAPIBlob($messageprops[$appointmentprops["timezonetag"]]);
else {
// set server default timezone (correct timezone should be configured!)
$tz = TimezoneUtil::GetFullTZ();
}
$message->timezone = base64_encode($this->getSyncBlobFromTZ($tz));
if(isset($messageprops[$appointmentprops["isrecurring"]]) && $messageprops[$appointmentprops["isrecurring"]]) {
// Process recurrence
$message->recurrence = new SyncRecurrence();
$this->getRecurrence($mapimessage, $messageprops, $message, $message->recurrence, $tz);
}
// Do attendees
$reciptable = mapi_message_getrecipienttable($mapimessage);
// Only get first 256 recipients, to prevent possible load issues.
$rows = mapi_table_queryrows($reciptable, array(PR_DISPLAY_NAME, PR_EMAIL_ADDRESS, PR_SMTP_ADDRESS, PR_ADDRTYPE, PR_RECIPIENT_TRACKSTATUS, PR_RECIPIENT_TYPE), 0, 256);
// Exception: we do not synchronize appointments with more than 250 attendees
if (count($rows) > 250) {
$message->id = bin2hex($messageprops[$appointmentprops["sourcekey"]]);
$mbe = new SyncObjectBrokenException("Appointment has too many attendees");
$mbe->SetSyncObject($message);
throw $mbe;
}
if(count($rows) > 0)
$message->attendees = array();
foreach($rows as $row) {
$attendee = new SyncAttendee();
$attendee->name = w2u($row[PR_DISPLAY_NAME]);
//smtp address is always a proper email address
if(isset($row[PR_SMTP_ADDRESS]))
$attendee->email = w2u($row[PR_SMTP_ADDRESS]);
elseif (isset($row[PR_ADDRTYPE]) && isset($row[PR_EMAIL_ADDRESS])) {
//if address type is SMTP, it's also a proper email address
if ($row[PR_ADDRTYPE] == "SMTP")
$attendee->email = w2u($row[PR_EMAIL_ADDRESS]);
//if address type is ZARAFA, the PR_EMAIL_ADDRESS contains username
elseif ($row[PR_ADDRTYPE] == "ZARAFA") {
$userinfo = mapi_zarafa_getuser_by_name($this->store, $row[PR_EMAIL_ADDRESS]);
if (is_array($userinfo) && isset($userinfo["emailaddress"]))
$attendee->email = w2u($userinfo["emailaddress"]);
}
}
//set attendee's status and type if they're available
if (isset($row[PR_RECIPIENT_TRACKSTATUS]))
$attendee->attendeestatus = $row[PR_RECIPIENT_TRACKSTATUS];
if (isset($row[PR_RECIPIENT_TYPE]))
$attendee->attendeetype = $row[PR_RECIPIENT_TYPE];
// Some attendees have no email or name (eg resources), and if you
// don't send one of those fields, the phone will give an error ... so
// we don't send it in that case.
// also ignore the "attendee" if the email is equal to the organizers' email
if(isset($attendee->name) && isset($attendee->email) && $attendee->email != "" && (!isset($message->organizeremail) || (isset($message->organizeremail) && $attendee->email != $message->organizeremail)))
array_push($message->attendees, $attendee);
}
if (!isset($message->nativebodytype)) $message->nativebodytype = $this->getNativeBodyType($messageprops);
return $message;
}
/**
* Reads recurrence information from MAPI
*
* @param mixed $mapimessage
* @param array $recurprops
* @param SyncObject &$syncMessage the message
* @param SyncObject &$syncRecurrence the recurrence message
* @param array $tz timezone information
*
* @access private
* @return
*/
private function getRecurrence($mapimessage, $recurprops, &$syncMessage, &$syncRecurrence, $tz) {
if ($syncRecurrence instanceof SyncTaskRecurrence)
$recurrence = new TaskRecurrence($this->store, $mapimessage);
else
$recurrence = new Recurrence($this->store, $mapimessage);
switch($recurrence->recur["type"]) {
case 10: // daily
switch($recurrence->recur["subtype"]) {
default:
$syncRecurrence->type = 0;
break;
case 1:
$syncRecurrence->type = 0;
$syncRecurrence->dayofweek = 62; // mon-fri
$syncRecurrence->interval = 1;
break;
}
break;
case 11: // weekly
$syncRecurrence->type = 1;
break;
case 12: // monthly
switch($recurrence->recur["subtype"]) {
default:
$syncRecurrence->type = 2;
break;
case 3:
$syncRecurrence->type = 3;
break;
}
break;
case 13: // yearly
switch($recurrence->recur["subtype"]) {
default:
$syncRecurrence->type = 4;
break;
case 2:
$syncRecurrence->type = 5;
break;
case 3:
$syncRecurrence->type = 6;
}
}
// Termination
switch($recurrence->recur["term"]) {
case 0x21:
$syncRecurrence->until = $recurrence->recur["end"];
// fixes Mantis #350 : recur-end does not consider timezones - use ClipEnd if available
if (isset($recurprops[$recurrence->proptags["enddate_recurring"]]))
$syncRecurrence->until = $recurprops[$recurrence->proptags["enddate_recurring"]];
// add one day (minus 1 sec) to the end time to make sure the last occurrence is covered
$syncRecurrence->until += 86399;
break;
case 0x22:
$syncRecurrence->occurrences = $recurrence->recur["numoccur"]; break;
case 0x23:
// never ends
break;
}
// Correct 'alldayevent' because outlook fails to set it on recurring items of 24 hours or longer
if(isset($recurrence->recur["endocc"], $recurrence->recur["startocc"]) && ($recurrence->recur["endocc"] - $recurrence->recur["startocc"] >= 1440))
$syncMessage->alldayevent = true;
// Interval is different according to the type/subtype
switch($recurrence->recur["type"]) {
case 10:
if($recurrence->recur["subtype"] == 0)
$syncRecurrence->interval = (int)($recurrence->recur["everyn"] / 1440); // minutes
break;
case 11:
case 12:
$syncRecurrence->interval = $recurrence->recur["everyn"];
break; // months / weeks
case 13:
$syncRecurrence->interval = (int)($recurrence->recur["everyn"] / 12);
break; // months
}
if(isset($recurrence->recur["weekdays"]))
$syncRecurrence->dayofweek = $recurrence->recur["weekdays"]; // bitmask of days (1 == sunday, 128 == saturday
if(isset($recurrence->recur["nday"]))
$syncRecurrence->weekofmonth = $recurrence->recur["nday"]; // N'th {DAY} of {X} (0-5)
if(isset($recurrence->recur["month"]))
$syncRecurrence->monthofyear = (int)($recurrence->recur["month"] / (60 * 24 * 29)) + 1; // works ok due to rounding. see also $monthminutes below (1-12)
if(isset($recurrence->recur["monthday"]))
$syncRecurrence->dayofmonth = $recurrence->recur["monthday"]; // day of month (1-31)
// All changed exceptions are appointments within the 'exceptions' array. They contain the same items as a normal appointment
foreach($recurrence->recur["changed_occurences"] as $change) {
$exception = new SyncAppointmentException();
// start, end, basedate, subject, remind_before, reminderset, location, busystatus, alldayevent, label
if(isset($change["start"]))
$exception->starttime = $this->getGMTTimeByTZ($change["start"], $tz);
if(isset($change["end"]))
$exception->endtime = $this->getGMTTimeByTZ($change["end"], $tz);
if(isset($change["basedate"])) {
$exception->exceptionstarttime = $this->getGMTTimeByTZ($this->getDayStartOfTimestamp($change["basedate"]) + $recurrence->recur["startocc"] * 60, $tz);
//open body because getting only property might not work because of memory limit
$exceptionatt = $recurrence->getExceptionAttachment($change["basedate"]);
if($exceptionatt) {
$exceptionobj = mapi_attach_openobj($exceptionatt, 0);
$exception->body = mapi_openproperty($exceptionobj, PR_BODY);
}
}
if(isset($change["subject"]))
$exception->subject = w2u($change["subject"]);
if(isset($change["reminder_before"]) && $change["reminder_before"])
$exception->reminder = $change["remind_before"];
if(isset($change["location"]))
$exception->location = w2u($change["location"]);
if(isset($change["busystatus"]))
$exception->busystatus = $change["busystatus"];
if(isset($change["alldayevent"]))
$exception->alldayevent = $change["alldayevent"];
// set some data from the original appointment
if (isset($syncMessage->uid))
$exception->uid = $syncMessage->uid;
if (isset($syncMessage->organizername))
$exception->organizername = $syncMessage->organizername;
if (isset($syncMessage->organizeremail))
$exception->organizeremail = $syncMessage->organizeremail;
if(!isset($syncMessage->exceptions))
$syncMessage->exceptions = array();
array_push($syncMessage->exceptions, $exception);
}
// Deleted appointments contain only the original date (basedate) and a 'deleted' tag
foreach($recurrence->recur["deleted_occurences"] as $deleted) {
$exception = new SyncAppointmentException();
$exception->exceptionstarttime = $this->getGMTTimeByTZ($this->getDayStartOfTimestamp($deleted) + $recurrence->recur["startocc"] * 60, $tz);
$exception->deleted = "1";
if(!isset($syncMessage->exceptions))
$syncMessage->exceptions = array();
array_push($syncMessage->exceptions, $exception);
}
if (isset($syncMessage->complete) && $syncMessage->complete) {
$syncRecurrence->complete = $syncMessage->complete;
}
}
/**
* Reads an email object from MAPI
*
* @param mixed $mapimessage
* @param ContentParameters $contentparameters
*
* @access private
* @return SyncEmail
*/
private function getEmail($mapimessage, $contentparameters) {
$message = new SyncMail();
$this->getPropsFromMAPI($message, $mapimessage, MAPIMapping::GetEmailMapping());
$emailproperties = MAPIMapping::GetEmailProperties();
$messageprops = $this->getProps($mapimessage, $emailproperties);
if(isset($messageprops[PR_SOURCE_KEY]))
$sourcekey = $messageprops[PR_SOURCE_KEY];
else
return false;
//set the body according to contentparameters and supported AS version
$this->setMessageBody($mapimessage, $contentparameters, $message);
$fromname = $fromaddr = "";
if(isset($messageprops[$emailproperties["representingname"]])) {
// remove encapsulating double quotes from the representingname
$fromname = preg_replace('/^\"(.*)\"$/',"\${1}", $messageprops[$emailproperties["representingname"]]);
}
if(isset($messageprops[$emailproperties["representingentryid"]]))
$fromaddr = $this->getSMTPAddressFromEntryID($messageprops[$emailproperties["representingentryid"]]);
if($fromname == $fromaddr)
$fromname = "";
if($fromname)
$from = "\"" . w2u($fromname) . "\" <" . w2u($fromaddr) . ">";
else
//START CHANGED dw2412 HTC shows "error" if sender name is unknown
$from = "\"" . w2u($fromaddr) . "\" <" . w2u($fromaddr) . ">";
//END CHANGED dw2412 HTC shows "error" if sender name is unknown
$message->from = $from;
// process Meeting Requests
if(isset($message->messageclass) && strpos($message->messageclass, "IPM.Schedule.Meeting") === 0) {
$message->meetingrequest = new SyncMeetingRequest();
$this->getPropsFromMAPI($message->meetingrequest, $mapimessage, MAPIMapping::GetMeetingRequestMapping());
$meetingrequestproperties = MAPIMapping::GetMeetingRequestProperties();
$props = $this->getProps($mapimessage, $meetingrequestproperties);
// Get the GOID
if(isset($props[$meetingrequestproperties["goidtag"]]))
$message->meetingrequest->globalobjid = base64_encode($props[$meetingrequestproperties["goidtag"]]);
// Set Timezone
if(isset($props[$meetingrequestproperties["timezonetag"]]))
$tz = $this->getTZFromMAPIBlob($props[$meetingrequestproperties["timezonetag"]]);
else
$tz = $this->getGMTTZ();
$message->meetingrequest->timezone = base64_encode($this->getSyncBlobFromTZ($tz));
// send basedate if exception
if(isset($props[$meetingrequestproperties["recReplTime"]]) ||
(isset($props[$meetingrequestproperties["lidIsException"]]) && $props[$meetingrequestproperties["lidIsException"]] == true)) {
if (isset($props[$meetingrequestproperties["recReplTime"]])){
$basedate = $props[$meetingrequestproperties["recReplTime"]];
$message->meetingrequest->recurrenceid = $this->getGMTTimeByTZ($basedate, $this->getGMTTZ());
}
else {
if (!isset($props[$meetingrequestproperties["goidtag"]]) || !isset($props[$meetingrequestproperties["recurStartTime"]]) || !isset($props[$meetingrequestproperties["timezonetag"]]))
ZLog::Write(LOGLEVEL_WARN, "Missing property to set correct basedate for exception");
else {
$basedate = Utils::ExtractBaseDate($props[$meetingrequestproperties["goidtag"]], $props[$meetingrequestproperties["recurStartTime"]]);
$message->meetingrequest->recurrenceid = $this->getGMTTimeByTZ($basedate, $tz);
}
}
}
// Organizer is the sender
$message->meetingrequest->organizer = $message->from;
// Process recurrence
if(isset($props[$meetingrequestproperties["isrecurringtag"]]) && $props[$meetingrequestproperties["isrecurringtag"]]) {
$myrec = new SyncMeetingRequestRecurrence();
// get recurrence -> put $message->meetingrequest as message so the 'alldayevent' is set correctly
$this->getRecurrence($mapimessage, $props, $message->meetingrequest, $myrec, $tz);
$message->meetingrequest->recurrences = array($myrec);
}
// Force the 'alldayevent' in the object at all times. (non-existent == 0)
if(!isset($message->meetingrequest->alldayevent) || $message->meetingrequest->alldayevent == "")
$message->meetingrequest->alldayevent = 0;
// Instancetype
// 0 = single appointment
// 1 = master recurring appointment
// 2 = single instance of recurring appointment
// 3 = exception of recurring appointment
$message->meetingrequest->instancetype = 0;
if (isset($props[$meetingrequestproperties["isrecurringtag"]]) && $props[$meetingrequestproperties["isrecurringtag"]] == 1)
$message->meetingrequest->instancetype = 1;
else if ((!isset($props[$meetingrequestproperties["isrecurringtag"]]) || $props[$meetingrequestproperties["isrecurringtag"]] == 0 )&& isset($message->meetingrequest->recurrenceid))
if (isset($props[$meetingrequestproperties["appSeqNr"]]) && $props[$meetingrequestproperties["appSeqNr"]] == 0 )
$message->meetingrequest->instancetype = 2;
else
$message->meetingrequest->instancetype = 3;
// Disable reminder if it is off
if(!isset($props[$meetingrequestproperties["reminderset"]]) || $props[$meetingrequestproperties["reminderset"]] == false)
$message->meetingrequest->reminder = "";
//the property saves reminder in minutes, but we need it in secs
else {
///set the default reminder time to seconds
if ($props[$meetingrequestproperties["remindertime"]] == 0x5AE980E1)
$message->meetingrequest->reminder = 900;
else
$message->meetingrequest->reminder = $props[$meetingrequestproperties["remindertime"]] * 60;
}
// Set sensitivity to 0 if missing
if(!isset($message->meetingrequest->sensitivity))
$message->meetingrequest->sensitivity = 0;
// if a meeting request response hasn't been processed yet,
// do it so that the attendee status is updated on the mobile
if(!isset($messageprops[$emailproperties["processed"]])) {
$req = new Meetingrequest($this->store, $mapimessage, $this->session);
if ($req->isMeetingRequestResponse()) {
$req->processMeetingRequestResponse();
}
if ($req->isMeetingCancellation()) {
$req->processMeetingCancellation();
}
}
}
// Add attachments
$attachtable = mapi_message_getattachmenttable($mapimessage);
$rows = mapi_table_queryallrows($attachtable, array(PR_ATTACH_NUM));
$entryid = bin2hex($messageprops[$emailproperties["entryid"]]);
foreach($rows as $row) {
if(isset($row[PR_ATTACH_NUM])) {
$mapiattach = mapi_message_openattach($mapimessage, $row[PR_ATTACH_NUM]);
$attachprops = mapi_getprops($mapiattach, array(PR_ATTACH_LONG_FILENAME, PR_ATTACH_FILENAME, PR_ATTACHMENT_HIDDEN, PR_ATTACH_CONTENT_ID, PR_ATTACH_CONTENT_ID_W, PR_ATTACH_MIME_TAG, PR_ATTACH_MIME_TAG_W));
$stream = mapi_openpropertytostream($mapiattach, PR_ATTACH_DATA_BIN);
if($stream) {
$stat = mapi_stream_stat($stream);
if (Request::GetProtocolVersion() >= 12.0) {
$attach = new SyncBaseAttachment();
}
else {
$attach = new SyncAttachment();
}
// the displayname is handled equal for all AS versions
$attach->displayname = w2u((isset($attachprops[PR_ATTACH_LONG_FILENAME])) ? $attachprops[PR_ATTACH_LONG_FILENAME] : ((isset($attachprops[PR_ATTACH_FILENAME])) ? $attachprops[PR_ATTACH_FILENAME] : "attachment.bin"));
// fix attachment name in case of inline images
if ($attach->displayname == "inline.txt" && (isset($attachprops[PR_ATTACH_MIME_TAG]) || $attachprops[PR_ATTACH_MIME_TAG_W])) {
$mimetype = (isset($attachprops[PR_ATTACH_MIME_TAG]))?$attachprops[PR_ATTACH_MIME_TAG]:$attachprops[PR_ATTACH_MIME_TAG_W];
$mime = explode("/", $mimetype);
if (count($mime) == 2 && $mime[0] == "image") {
$attach->displayname = "inline." . $mime[1];
}
}
// set AS version specific parameters
if (Request::GetProtocolVersion() >= 12.0) {
$attach->filereference = $entryid.":".$row[PR_ATTACH_NUM];
$attach->method = 1;
$attach->estimatedDataSize = $stat["cb"];
if (isset($attachprops[PR_ATTACH_CONTENT_ID]) && $attachprops[PR_ATTACH_CONTENT_ID])
$attach->contentid = $attachprops[PR_ATTACH_CONTENT_ID];
if (!isset($attach->contentid) && isset($attachprops[PR_ATTACH_CONTENT_ID_W]) && $attachprops[PR_ATTACH_CONTENT_ID_W])
$attach->contentid = $attachprops[PR_ATTACH_CONTENT_ID_W];
if (isset($attachprops[PR_ATTACHMENT_HIDDEN]) && $attachprops[PR_ATTACHMENT_HIDDEN]) $attach->isinline = 1;
if(!isset($message->asattachments))
$message->asattachments = array();
array_push($message->asattachments, $attach);
}
else {
$attach->attsize = $stat["cb"];
$attach->attname = $entryid.":".$row[PR_ATTACH_NUM];
if(!isset($message->attachments))
$message->attachments = array();
array_push($message->attachments, $attach);
}
}
}
}
// Get To/Cc as SMTP addresses (this is different from displayto and displaycc because we are putting
// in the SMTP addresses as well, while displayto and displaycc could just contain the display names
$message->to = array();
$message->cc = array();
$reciptable = mapi_message_getrecipienttable($mapimessage);
$rows = mapi_table_queryallrows($reciptable, array(PR_RECIPIENT_TYPE, PR_DISPLAY_NAME, PR_ADDRTYPE, PR_EMAIL_ADDRESS, PR_SMTP_ADDRESS, PR_ENTRYID));
foreach ($rows as $row) {
$address = "";
$fulladdr = "";
$addrtype = isset($row[PR_ADDRTYPE]) ? $row[PR_ADDRTYPE] : "";
if (isset($row[PR_SMTP_ADDRESS]))
$address = $row[PR_SMTP_ADDRESS];
elseif ($addrtype == "SMTP" && isset($row[PR_EMAIL_ADDRESS]))
$address = $row[PR_EMAIL_ADDRESS];
elseif ($addrtype == "ZARAFA" && isset($row[PR_ENTRYID]))
$address = $this->getSMTPAddressFromEntryID($row[PR_ENTRYID]);
$name = isset($row[PR_DISPLAY_NAME]) ? $row[PR_DISPLAY_NAME] : "";
if($name == "" || $name == $address)
$fulladdr = w2u($address);
else {
if (substr($name, 0, 1) != '"' && substr($name, -1) != '"') {
$fulladdr = "\"" . w2u($name) ."\" <" . w2u($address) . ">";
}
else {
$fulladdr = w2u($name) ."<" . w2u($address) . ">";
}
}
if($row[PR_RECIPIENT_TYPE] == MAPI_TO) {
array_push($message->to, $fulladdr);
} else if($row[PR_RECIPIENT_TYPE] == MAPI_CC) {
array_push($message->cc, $fulladdr);
}
}
if (is_array($message->to) && !empty($message->to)) $message->to = implode(", ", $message->to);
if (is_array($message->cc) && !empty($message->cc)) $message->cc = implode(", ", $message->cc);
// without importance some mobiles assume "0" (low) - Mantis #439
if (!isset($message->importance))
$message->importance = IMPORTANCE_NORMAL;
//TODO contentclass and nativebodytype and internetcpid
if (!isset($message->internetcpid)) $message->internetcpid = (defined('STORE_INTERNET_CPID')) ? constant('STORE_INTERNET_CPID') : INTERNET_CPID_WINDOWS1252;
$this->setFlag($mapimessage, $message);
$message->contentclass = DEFAULT_EMAIL_CONTENTCLASS;
if (!isset($message->nativebodytype)) $message->nativebodytype = $this->getNativeBodyType($messageprops);
return $message;
}
/**
* Reads a note object from MAPI
*
* @param mixed $mapimessage
* @param ContentParameters $contentparameters
*
* @access private
* @return SyncNote
*/
private function getNote($mapimessage, $contentparameters) {
$message = new SyncNote();
// Standard one-to-one mappings first
$this->getPropsFromMAPI($message, $mapimessage, MAPIMapping::GetNoteMapping());
//set the body according to contentparameters and supported AS version
$this->setMessageBody($mapimessage, $contentparameters, $message);
return $message;
}
/**
* Reads a folder object from MAPI
*
* @param mixed $mapimessage
*
* @access public
* @return SyncFolder
*/
public function GetFolder($mapifolder) {
$folder = new SyncFolder();
$folderprops = mapi_getprops($mapifolder, array(PR_DISPLAY_NAME, PR_PARENT_ENTRYID, PR_SOURCE_KEY, PR_PARENT_SOURCE_KEY, PR_ENTRYID, PR_CONTAINER_CLASS, PR_ATTR_HIDDEN));
$storeprops = mapi_getprops($this->store, array(PR_IPM_SUBTREE_ENTRYID));
if(!isset($folderprops[PR_DISPLAY_NAME]) ||
!isset($folderprops[PR_PARENT_ENTRYID]) ||
!isset($folderprops[PR_SOURCE_KEY]) ||
!isset($folderprops[PR_ENTRYID]) ||
!isset($folderprops[PR_PARENT_SOURCE_KEY]) ||
!isset($storeprops[PR_IPM_SUBTREE_ENTRYID])) {
ZLog::Write(LOGLEVEL_ERROR, "MAPIProvider->GetFolder(): invalid folder. Missing properties");
return false;
}
// ignore hidden folders
if (isset($folderprops[PR_ATTR_HIDDEN]) && $folderprops[PR_ATTR_HIDDEN] != false) {
ZLog::Write(LOGLEVEL_DEBUG, sprintf("MAPIProvider->GetFolder(): invalid folder '%s' as it is a hidden folder (PR_ATTR_HIDDEN)", $folderprops[PR_DISPLAY_NAME]));
return false;
}
$folder->serverid = bin2hex($folderprops[PR_SOURCE_KEY]);
if($folderprops[PR_PARENT_ENTRYID] == $storeprops[PR_IPM_SUBTREE_ENTRYID])
$folder->parentid = "0";
else
$folder->parentid = bin2hex($folderprops[PR_PARENT_SOURCE_KEY]);
$folder->displayname = w2u($folderprops[PR_DISPLAY_NAME]);
$folder->type = $this->GetFolderType($folderprops[PR_ENTRYID], isset($folderprops[PR_CONTAINER_CLASS])?$folderprops[PR_CONTAINER_CLASS]:false);
return $folder;
}
/**
* Returns the foldertype for an entryid
* Gets the folder type by checking the default folders in MAPI
*
* @param string $entryid
* @param string $class (opt)
*
* @access public
* @return long
*/
public function GetFolderType($entryid, $class = false) {
$storeprops = mapi_getprops($this->store, array(PR_IPM_OUTBOX_ENTRYID, PR_IPM_WASTEBASKET_ENTRYID, PR_IPM_SENTMAIL_ENTRYID));
$inbox = mapi_msgstore_getreceivefolder($this->store);
$inboxprops = mapi_getprops($inbox, array(PR_ENTRYID, PR_IPM_DRAFTS_ENTRYID, PR_IPM_TASK_ENTRYID, PR_IPM_APPOINTMENT_ENTRYID, PR_IPM_CONTACT_ENTRYID, PR_IPM_NOTE_ENTRYID, PR_IPM_JOURNAL_ENTRYID));
if($entryid == $inboxprops[PR_ENTRYID])
return SYNC_FOLDER_TYPE_INBOX;
if($entryid == $inboxprops[PR_IPM_DRAFTS_ENTRYID])
return SYNC_FOLDER_TYPE_DRAFTS;
if($entryid == $storeprops[PR_IPM_WASTEBASKET_ENTRYID])
return SYNC_FOLDER_TYPE_WASTEBASKET;
if($entryid == $storeprops[PR_IPM_SENTMAIL_ENTRYID])
return SYNC_FOLDER_TYPE_SENTMAIL;
if($entryid == $storeprops[PR_IPM_OUTBOX_ENTRYID])
return SYNC_FOLDER_TYPE_OUTBOX;
if($entryid == $inboxprops[PR_IPM_TASK_ENTRYID])
return SYNC_FOLDER_TYPE_TASK;
if($entryid == $inboxprops[PR_IPM_APPOINTMENT_ENTRYID])
return SYNC_FOLDER_TYPE_APPOINTMENT;
if($entryid == $inboxprops[PR_IPM_CONTACT_ENTRYID])
return SYNC_FOLDER_TYPE_CONTACT;
if($entryid == $inboxprops[PR_IPM_NOTE_ENTRYID])
return SYNC_FOLDER_TYPE_NOTE;
if($entryid == $inboxprops[PR_IPM_JOURNAL_ENTRYID])
return SYNC_FOLDER_TYPE_JOURNAL;
// user created folders
if ($class == "IPF.Note")
return SYNC_FOLDER_TYPE_USER_MAIL;
if ($class == "IPF.Task")
return SYNC_FOLDER_TYPE_USER_TASK;
if ($class == "IPF.Appointment")
return SYNC_FOLDER_TYPE_USER_APPOINTMENT;
if ($class == "IPF.Contact")
return SYNC_FOLDER_TYPE_USER_CONTACT;
if ($class == "IPF.StickyNote")
return SYNC_FOLDER_TYPE_USER_NOTE;
if ($class == "IPF.Journal")
return SYNC_FOLDER_TYPE_USER_JOURNAL;
return SYNC_FOLDER_TYPE_OTHER;
}
/**----------------------------------------------------------------------------------------------------------
* SETTER
*/
/**
* Writes a SyncObject to MAPI
* Depending on the message class, a contact, appointment, task or email is written
*
* @param mixed $mapimessage
* @param SyncObject $message
*
* @access public
* @return boolean
*/
public function SetMessage($mapimessage, $message) {
// TODO check with instanceof
switch(strtolower(get_class($message))) {
case "synccontact":
return $this->setContact($mapimessage, $message);
case "syncappointment":
return $this->setAppointment($mapimessage, $message);
case "synctask":
return $this->setTask($mapimessage, $message);
case "syncnote":
return $this->setNote($mapimessage, $message);
default:
//for emails only flag (read and todo) changes are possible
return $this->setEmail($mapimessage, $message);
}
}
/**
* Writes SyncMail to MAPI (actually flags only)
*
* @param mixed $mapimessage
* @param SyncMail $message
*/
private function setEmail($mapimessage, $message) {
$flagmapping = MAPIMapping::GetMailFlagsMapping();
$flagprops = MAPIMapping::GetMailFlagsProperties();
$flagprops = array_merge($this->getPropIdsFromStrings($flagmapping), $this->getPropIdsFromStrings($flagprops));
// flag specific properties to be set
$props = $delprops = array();
// unset message flags if:
// flag is not set
if (empty($message->flag) ||
// flag status is not set
!isset($message->flag->flagstatus) ||
// flag status is 0 or empty
(isset($message->flag->flagstatus) && ($message->flag->flagstatus == 0 || $message->flag->flagstatus == "")) ) {
// if message flag is empty, some properties need to be deleted
// and some set to 0 or false
$props[$flagprops["todoitemsflags"]] = 0;
$props[$flagprops["status"]] = 0;
$props[$flagprops["completion"]] = 0.0;
$props[$flagprops["flagtype"]] = "";
$props[$flagprops["ordinaldate"]] = 0x7fffffff; // ordinal date is 12am 1.1.4501, set it to max possible value
$props[$flagprops["subordinaldate"]] = "";
$props[$flagprops["replyrequested"]] = false;
$props[$flagprops["responserequested"]] = false;
$props[$flagprops["reminderset"]] = false;
$props[$flagprops["complete"]] = false;
$delprops[] = $flagprops["todotitle"];
$delprops[] = $flagprops["duedate"];
$delprops[] = $flagprops["startdate"];
$delprops[] = $flagprops["datecompleted"];
$delprops[] = $flagprops["utcstartdate"];
$delprops[] = $flagprops["utcduedate"];
$delprops[] = $flagprops["completetime"];
$delprops[] = $flagprops["flagstatus"];
$delprops[] = $flagprops["flagicon"];
}
else {
$this->setPropsInMAPI($mapimessage, $message->flag, $flagmapping);
$props[$flagprops["todoitemsflags"]] = 1;
$props[$flagprops["todotitle"]] = $message->subject;
// ordinal date is utc current time
if (!isset($message->flag->ordinaldate) || empty($message->flag->ordinaldate)) {
$props[$flagprops["ordinaldate"]] = time();
}
// the default value
if (!isset($message->flag->subordinaldate) || empty($message->flag->subordinaldate)) {
$props[$flagprops["subordinaldate"]] = "5555555";
}
$props[$flagprops["flagicon"]] = 6; //red flag icon
$props[$flagprops["replyrequested"]] = true;
$props[$flagprops["responserequested"]] = true;
if ($message->flag->flagstatus == SYNC_FLAGSTATUS_COMPLETE) {
$props[$flagprops["status"]] = olTaskComplete;
$props[$flagprops["completion"]] = 1.0;
$props[$flagprops["complete"]] = true;
$props[$flagprops["replyrequested"]] = false;
$props[$flagprops["responserequested"]] = false;
unset($props[$flagprops["flagicon"]]);
$delprops[] = $flagprops["flagicon"];
}
}
if (!empty($props)) {
mapi_setprops($mapimessage, $props);
}
if (!empty($delprops)) {
mapi_deleteprops($mapimessage, $delprops);
}
}
/**
* Writes a SyncAppointment to MAPI
*
* @param mixed $mapimessage
* @param SyncAppointment $message
*
* @access private
* @return boolean
*/
private function setAppointment($mapimessage, $appointment) {
// Get timezone info
if(isset($appointment->timezone))
$tz = $this->getTZFromSyncBlob(base64_decode($appointment->timezone));
else
$tz = false;
//calculate duration because without it some webaccess views are broken. duration is in min
$localstart = $this->getLocaltimeByTZ($appointment->starttime, $tz);
$localend = $this->getLocaltimeByTZ($appointment->endtime, $tz);
$duration = ($localend - $localstart)/60;
//nokia sends an yearly event with 0 mins duration but as all day event,
//so make it end next day
if ($appointment->starttime == $appointment->endtime && isset($appointment->alldayevent) && $appointment->alldayevent) {
$duration = 1440;
$appointment->endtime = $appointment->starttime + 24 * 60 * 60;
$localend = $localstart + 24 * 60 * 60;
}
// is the transmitted UID OL compatible?
// if not, encapsulate the transmitted uid
$appointment->uid = Utils::GetOLUidFromICalUid($appointment->uid);
mapi_setprops($mapimessage, array(PR_MESSAGE_CLASS => "IPM.Appointment"));
$appointmentmapping = MAPIMapping::GetAppointmentMapping();
$this->setPropsInMAPI($mapimessage, $appointment, $appointmentmapping);
$appointmentprops = MAPIMapping::GetAppointmentProperties();
$appointmentprops = array_merge($this->getPropIdsFromStrings($appointmentmapping), $this->getPropIdsFromStrings($appointmentprops));
//appointment specific properties to be set
$props = array();
//we also have to set the responsestatus and not only meetingstatus, so we use another mapi tag
if (isset($appointment->meetingstatus)) $props[$appointmentprops["meetingstatus"]] = $appointment->meetingstatus;
//sensitivity is not enough to mark an appointment as private, so we use another mapi tag
$private = (isset($appointment->sensitivity) && $appointment->sensitivity == 0) ? false : true;
// Set commonstart/commonend to start/end and remindertime to start, duration, private and cleanGlobalObjectId
$props[$appointmentprops["commonstart"]] = $appointment->starttime;
$props[$appointmentprops["commonend"]] = $appointment->endtime;
$props[$appointmentprops["reminderstart"]] = $appointment->starttime;
// Set reminder boolean to 'true' if reminder is set
$props[$appointmentprops["reminderset"]] = isset($appointment->reminder) ? true : false;
$props[$appointmentprops["duration"]] = $duration;
$props[$appointmentprops["private"]] = $private;
$props[$appointmentprops["uid"]] = $appointment->uid;
// Set named prop 8510, unknown property, but enables deleting a single occurrence of a recurring
// type in OLK2003.
$props[$appointmentprops["sideeffects"]] = 369;
if(isset($appointment->reminder) && $appointment->reminder > 0) {
// Set 'flagdueby' to correct value (start - reminderminutes)
$props[$appointmentprops["flagdueby"]] = $appointment->starttime - $appointment->reminder * 60;
$props[$appointmentprops["remindertime"]] = $appointment->reminder;
}
// unset the reminder
else {
$props[$appointmentprops["reminderset"]] = false;
}
if (isset($appointment->asbody)) {
$this->setASbody($appointment->asbody, $props, $appointmentprops);
}
if(isset($appointment->recurrence)) {
// Set PR_ICON_INDEX to 1025 to show correct icon in category view
$props[$appointmentprops["icon"]] = 1025;
//if there aren't any exceptions, use the 'old style' set recurrence
$noexceptions = true;
$recurrence = new Recurrence($this->store, $mapimessage);
$recur = array();
$this->setRecurrence($appointment, $recur);
// set the recurrence type to that of the MAPI
$props[$appointmentprops["recurrencetype"]] = $recur["recurrencetype"];
$starttime = $this->gmtime($localstart);
$endtime = $this->gmtime($localend);
//set recurrence start here because it's calculated differently for tasks and appointments
$recur["start"] = $this->getDayStartOfTimestamp($this->getGMTTimeByTZ($localstart, $tz));
$recur["startocc"] = $starttime["tm_hour"] * 60 + $starttime["tm_min"];
$recur["endocc"] = $recur["startocc"] + $duration; // Note that this may be > 24*60 if multi-day
//only tasks can regenerate
$recur["regen"] = false;
// Process exceptions. The PDA will send all exceptions for this recurring item.
if(isset($appointment->exceptions)) {
foreach($appointment->exceptions as $exception) {
// we always need the base date
if(!isset($exception->exceptionstarttime))
continue;
if(isset($exception->deleted) && $exception->deleted) {
// Delete exception
if(!isset($recur["deleted_occurences"]))
$recur["deleted_occurences"] = array();
array_push($recur["deleted_occurences"], $this->getDayStartOfTimestamp($exception->exceptionstarttime));
} else {
// Change exception
$basedate = $this->getDayStartOfTimestamp($exception->exceptionstarttime);
$mapiexception = array("basedate" => $basedate);
//other exception properties which are not handled in recurrence
$exceptionprops = array();
if(isset($exception->starttime)) {
$mapiexception["start"] = $this->getLocaltimeByTZ($exception->starttime, $tz);
$exceptionprops[$appointmentprops["starttime"]] = $exception->starttime;
}
if(isset($exception->endtime)) {
$mapiexception["end"] = $this->getLocaltimeByTZ($exception->endtime, $tz);
$exceptionprops[$appointmentprops["endtime"]] = $exception->endtime;
}
if(isset($exception->subject))
$exceptionprops[$appointmentprops["subject"]] = $mapiexception["subject"] = u2w($exception->subject);
if(isset($exception->location))
$exceptionprops[$appointmentprops["location"]] = $mapiexception["location"] = u2w($exception->location);
if(isset($exception->busystatus))
$exceptionprops[$appointmentprops["busystatus"]] = $mapiexception["busystatus"] = $exception->busystatus;
if(isset($exception->reminder)) {
$exceptionprops[$appointmentprops["reminderset"]] = $mapiexception["reminder_set"] = 1;
$exceptionprops[$appointmentprops["remindertime"]] = $mapiexception["remind_before"] = $exception->reminder;
}
if(isset($exception->alldayevent))
$exceptionprops[$appointmentprops["alldayevent"]] = $mapiexception["alldayevent"] = $exception->alldayevent;
if(!isset($recur["changed_occurences"]))
$recur["changed_occurences"] = array();
if (isset($exception->body))
$exceptionprops[$appointmentprops["body"]] = u2w($exception->body);
array_push($recur["changed_occurences"], $mapiexception);
if (!empty($exceptionprops)) {
$noexceptions = false;
if($recurrence->isException($basedate)){
$recurrence->modifyException($exceptionprops, $basedate);
}
else {
$recurrence->createException($exceptionprops, $basedate);
}
}
}
}
}
//setRecurrence deletes the attachments from an appointment
if ($noexceptions) {
$recurrence->setRecurrence($tz, $recur);
}
}
else {
$props[$appointmentprops["isrecurring"]] = false;
}
// Do attendees
if(isset($appointment->attendees) && is_array($appointment->attendees)) {
$recips = array();
//open addresss book for user resolve
$addrbook = mapi_openaddressbook($this->session);
//set the PR_SENT_REPRESENTING_* props so that the attendee status update also works with the webaccess
if (!isset($props[$appointmentprops["representingentryid"]])) {
$props[$appointmentprops["representingname"]] = Request::GetAuthUser();
$props[$appointmentprops["representingentryid"]] = mapi_createoneoff(Request::GetAuthUser(), "ZARAFA", Request::GetAuthUser());
}
foreach($appointment->attendees as $attendee) {
$recip = array();
$recip[PR_EMAIL_ADDRESS] = u2w($attendee->email);
// lookup information in GAB if possible so we have up-to-date name for given address
$userinfo = array( array( PR_DISPLAY_NAME => $recip[PR_EMAIL_ADDRESS] ) );
$userinfo = mapi_ab_resolvename($addrbook, $userinfo, EMS_AB_ADDRESS_LOOKUP);
if(mapi_last_hresult() == NOERROR) {
$recip[PR_DISPLAY_NAME] = $userinfo[0][PR_DISPLAY_NAME];
$recip[PR_EMAIL_ADDRESS] = $userinfo[0][PR_EMAIL_ADDRESS];
$recip[PR_SEARCH_KEY] = $userinfo[0][PR_SEARCH_KEY];
$recip[PR_ADDRTYPE] = $userinfo[0][PR_ADDRTYPE];
$recip[PR_ENTRYID] = $userinfo[0][PR_ENTRYID];
$recip[PR_RECIPIENT_TYPE] = MAPI_TO;
}
else {
$recip[PR_DISPLAY_NAME] = u2w($attendee->name);
$recip[PR_SEARCH_KEY] = "SMTP:".$recip[PR_EMAIL_ADDRESS]."\0";
$recip[PR_ADDRTYPE] = "SMTP";
$recip[PR_RECIPIENT_TYPE] = MAPI_TO;
$recip[PR_ENTRYID] = mapi_createoneoff($recip[PR_DISPLAY_NAME], $recip[PR_ADDRTYPE], $recip[PR_EMAIL_ADDRESS]);
}
array_push($recips, $recip);
}
mapi_message_modifyrecipients($mapimessage, 0, $recips);
$props[$appointmentprops["icon"]] = 1026;
$props[$appointmentprops["mrwassent"]] = true;
}
mapi_setprops($mapimessage, $props);
}
/**
* Writes a SyncContact to MAPI
*
* @param mixed $mapimessage
* @param SyncContact $contact
*
* @access private
* @return boolean
*/
private function setContact($mapimessage, $contact) {
mapi_setprops($mapimessage, array(PR_MESSAGE_CLASS => "IPM.Contact"));
// normalize email addresses
if (isset($contact->email1address) && (($contact->email1address = $this->extractEmailAddress($contact->email1address)) === false))
unset($contact->email1address);
if (isset($contact->email2address) && (($contact->email2address = $this->extractEmailAddress($contact->email2address)) === false))
unset($contact->email2address);
if (isset($contact->email3address) && (($contact->email3address = $this->extractEmailAddress($contact->email3address)) === false))
unset($contact->email3address);
$contactmapping = MAPIMapping::GetContactMapping();
$contactprops = MAPIMapping::GetContactProperties();
$this->setPropsInMAPI($mapimessage, $contact, $contactmapping);
///set display name from contact's properties
$cname = $this->composeDisplayName($contact);
//get contact specific mapi properties and merge them with the AS properties
$contactprops = array_merge($this->getPropIdsFromStrings($contactmapping), $this->getPropIdsFromStrings($contactprops));
//contact specific properties to be set
$props = array();
//need to be set in order to show contacts properly in outlook and wa
$nremails = array();
$abprovidertype = 0;
$this->setEmailAddress($contact->email1address, $cname, 1, $props, $contactprops, $nremails, $abprovidertype);
$this->setEmailAddress($contact->email2address, $cname, 2, $props, $contactprops, $nremails, $abprovidertype);
$this->setEmailAddress($contact->email3address, $cname, 3, $props, $contactprops, $nremails, $abprovidertype);
$props[$contactprops["addressbooklong"]] = $abprovidertype;
$props[$contactprops["displayname"]] = $props[$contactprops["subject"]] = $cname;
//pda multiple e-mail addresses bug fix for the contact
if (!empty($nremails)) $props[$contactprops["addressbookmv"]] = $nremails;
//set addresses
$this->setAddress("home", $contact->homecity, $contact->homecountry, $contact->homepostalcode, $contact->homestate, $contact->homestreet, $props, $contactprops);
$this->setAddress("business", $contact->businesscity, $contact->businesscountry, $contact->businesspostalcode, $contact->businessstate, $contact->businessstreet, $props, $contactprops);
$this->setAddress("other", $contact->othercity, $contact->othercountry, $contact->otherpostalcode, $contact->otherstate, $contact->otherstreet, $props, $contactprops);
//set the mailing address and its type
if (isset($props[$contactprops["businessaddress"]])) {
$props[$contactprops["mailingaddress"]] = 2;
$this->setMailingAddress($contact->businesscity, $contact->businesscountry, $contact->businesspostalcode, $contact->businessstate, $contact->businessstreet, $props[$contactprops["businessaddress"]], $props, $contactprops);
}
elseif (isset($props[$contactprops["homeaddress"]])) {
$props[$contactprops["mailingaddress"]] = 1;
$this->setMailingAddress($contact->homecity, $contact->homecountry, $contact->homepostalcode, $contact->homestate, $contact->homestreet, $props[$contactprops["homeaddress"]], $props, $contactprops);
}
elseif (isset($props[$contactprops["otheraddress"]])) {
$props[$contactprops["mailingaddress"]] = 3;
$this->setMailingAddress($contact->othercity, $contact->othercountry, $contact->otherpostalcode, $contact->otherstate, $contact->otherstreet, $props[$contactprops["otheraddress"]], $props, $contactprops);
}
if (isset($contact->picture)) {
$picbinary = base64_decode($contact->picture);
$picsize = strlen($picbinary);
if ($picsize < MAX_EMBEDDED_SIZE) {
$props[$contactprops["haspic"]] = false;
// TODO contact picture handling
// check if contact has already got a picture. delete it first in that case
// delete it also if it was removed on a mobile
$picprops = mapi_getprops($mapimessage, array($props[$contactprops["haspic"]]));
if (isset($picprops[$props[$contactprops["haspic"]]]) && $picprops[$props[$contactprops["haspic"]]]) {
ZLog::Write(LOGLEVEL_DEBUG, "Contact already has a picture. Delete it");
$attachtable = mapi_message_getattachmenttable($mapimessage);
mapi_table_restrict($attachtable, MAPIUtils::GetContactPicRestriction());
$rows = mapi_table_queryallrows($attachtable, array(PR_ATTACH_NUM));
if (isset($rows) && is_array($rows)) {
foreach ($rows as $row) {
mapi_message_deleteattach($mapimessage, $row[PR_ATTACH_NUM]);
}
}
}
// only set picture if there's data in the request
if ($picbinary !== false && $picsize > 0) {
$props[$contactprops["haspic"]] = true;
$pic = mapi_message_createattach($mapimessage);
// Set properties of the attachment
$picprops = array(
PR_ATTACH_LONG_FILENAME_A => "ContactPicture.jpg",
PR_DISPLAY_NAME => "ContactPicture.jpg",
0x7FFF000B => true,
PR_ATTACHMENT_HIDDEN => false,
PR_ATTACHMENT_FLAGS => 1,
PR_ATTACH_METHOD => ATTACH_BY_VALUE,
PR_ATTACH_EXTENSION_A => ".jpg",
PR_ATTACH_NUM => 1,
PR_ATTACH_SIZE => $picsize,
PR_ATTACH_DATA_BIN => $picbinary,
);
mapi_setprops($pic, $picprops);
mapi_savechanges($pic);
}
}
}
if (isset($contact->asbody)) {
$this->setASbody($contact->asbody, $props, $contactprops);
}
mapi_setprops($mapimessage, $props);
}
/**
* Writes a SyncTask to MAPI
*
* @param mixed $mapimessage
* @param SyncTask $task
*
* @access private
* @return boolean
*/
private function setTask($mapimessage, $task) {
mapi_setprops($mapimessage, array(PR_MESSAGE_CLASS => "IPM.Task"));
$taskmapping = MAPIMapping::GetTaskMapping();
$taskprops = MAPIMapping::GetTaskProperties();
$this->setPropsInMAPI($mapimessage, $task, $taskmapping);
$taskprops = array_merge($this->getPropIdsFromStrings($taskmapping), $this->getPropIdsFromStrings($taskprops));
// task specific properties to be set
$props = array();
if (isset($task->asbody)) {
$this->setASbody($task->asbody, $props, $taskprops);
}
if(isset($task->complete)) {
if($task->complete) {
// Set completion to 100%
// Set status to 'complete'
$props[$taskprops["completion"]] = 1.0;
$props[$taskprops["status"]] = 2;
} else {
// Set completion to 0%
// Set status to 'not started'
$props[$taskprops["completion"]] = 0.0;
$props[$taskprops["status"]] = 0;
}
}
if (isset($task->recurrence) && class_exists('TaskRecurrence')) {
$deadoccur = false;
if ((isset($task->recurrence->occurrences) && $task->recurrence->occurrences == 1) ||
(isset($task->recurrence->deadoccur) && $task->recurrence->deadoccur == 1)) //ios5 sends deadoccur inside the recurrence
$deadoccur = true;
// Set PR_ICON_INDEX to 1281 to show correct icon in category view
$props[$taskprops["icon"]] = 1281;
// dead occur - false if new occurrences should be generated from the task
// true - if it is the last ocurrence of the task
$props[$taskprops["deadoccur"]] = $deadoccur;
$props[$taskprops["isrecurringtag"]] = true;
$recurrence = new TaskRecurrence($this->store, $mapimessage);
$recur = array();
$this->setRecurrence($task, $recur);
// task specific recurrence properties which we need to set here
// "start" and "end" are in GMT when passing to class.recurrence
// set recurrence start here because it's calculated differently for tasks and appointments
$recur["start"] = $task->recurrence->start;
$recur["regen"] = $task->regenerate;
//Also add dates to $recur
$recur["duedate"] = $task->duedate;
$recurrence->setRecurrence($recur);
}
mapi_setprops($mapimessage, $props);
}
/**
* Writes a SyncNote to MAPI
*
* @param mixed $mapimessage
* @param SyncNote $note
*
* @access private
* @return boolean
*/
private function setNote($mapimessage, $note) {
// Touchdown does not send categories if all are unset or there is none.
// Setting it to an empty array will unset the property in Zarafa as well
if (!isset($note->categories)) $note->categories = array();
$this->setPropsInMAPI($mapimessage, $note, MAPIMapping::GetNoteMapping());
$noteprops = MAPIMapping::GetNoteProperties();
$noteprops = $this->getPropIdsFromStrings($noteprops);
// note specific properties to be set
$props = array();
$props[$noteprops["messageclass"]] = "IPM.StickyNote";
// set body otherwise the note will be "broken" when editing it in outlook
$props[$noteprops["body"]] = $note->asbody->data;
mapi_setprops($mapimessage, $props);
}
/**----------------------------------------------------------------------------------------------------------
* HELPER
*/
/**
* Returns the tiemstamp offset
*
* @param string $ts
*
* @access private
* @return long
*/
private function GetTZOffset($ts) {
$Offset = date("O", $ts);
$Parity = $Offset < 0 ? -1 : 1;
$Offset = $Parity * $Offset;
$Offset = ($Offset - ($Offset % 100)) / 100 * 60 + $Offset % 100;
return $Parity * $Offset;
}
/**
* Localtime of the timestamp
*
* @param long $time
*
* @access private
* @return array
*/
private function gmtime($time) {
$TZOffset = $this->GetTZOffset($time);
$t_time = $time - $TZOffset * 60; #Counter adjust for localtime()
$t_arr = localtime($t_time, 1);
return $t_arr;
}
/**
* Sets the properties in a MAPI object according to an Sync object and a property mapping
*
* @param mixed $mapimessage
* @param SyncObject $message
* @param array $mapping
*
* @access private
* @return
*/
private function setPropsInMAPI($mapimessage, $message, $mapping) {
$mapiprops = $this->getPropIdsFromStrings($mapping);
$unsetVars = $message->getUnsetVars();
$propsToDelete = array();
$propsToSet = array();
foreach ($mapiprops as $asprop => $mapiprop) {
if(isset($message->$asprop)) {
// UTF8->windows1252.. this is ok for all numerical values
if(mapi_prop_type($mapiprop) != PT_BINARY && mapi_prop_type($mapiprop) != PT_MV_BINARY) {
if(is_array($message->$asprop))
$value = array_map("u2wi", $message->$asprop);
else
$value = u2wi($message->$asprop);
} else {
$value = $message->$asprop;
}
// Make sure the php values are the correct type
switch(mapi_prop_type($mapiprop)) {
case PT_BINARY:
case PT_STRING8:
settype($value, "string");
break;
case PT_BOOLEAN:
settype($value, "boolean");
break;
case PT_SYSTIME:
case PT_LONG:
settype($value, "integer");
break;
}
// decode base64 value
if($mapiprop == PR_RTF_COMPRESSED) {
$value = base64_decode($value);
if(strlen($value) == 0)
continue; // PDA will sometimes give us an empty RTF, which we'll ignore.
// Note that you can still remove notes because when you remove notes it gives
// a valid compressed RTF with nothing in it.
}
// if an "empty array" is to be saved, it the mvprop should be deleted - fixes Mantis #468
if (is_array($value) && empty($value)) {
$propsToDelete[] = $mapiprop;
ZLog::Write(LOGLEVEL_DEBUG, sprintf("MAPIProvider->setPropsInMAPI(): Property '%s' to be deleted as it is an empty array", $asprop));
}
else {
// all properties will be set at once
$propsToSet[$mapiprop] = $value;
}
}
elseif (in_array($asprop, $unsetVars)) {
$propsToDelete[] = $mapiprop;
}
}
mapi_setprops($mapimessage, $propsToSet);
if (mapi_last_hresult()) {
Zlog::Write(LOGLEVEL_WARN, sprintf("Failed to set properties, trying to set them separately. Error code was:%x", mapi_last_hresult()));
$this->setPropsIndividually($mapimessage, $propsToSet, $mapiprops);
}
mapi_deleteprops($mapimessage, $propsToDelete);
//clean up
unset($unsetVars, $propsToDelete);
}
/**
* Sets the properties one by one in a MAPI object
*
* @param mixed &$mapimessage
* @param array &$propsToSet
* @param array &$mapiprops
*
* @access private
* @return
*/
private function setPropsIndividually(&$mapimessage, &$propsToSet, &$mapiprops) {
foreach ($propsToSet as $prop => $value) {
mapi_setprops($mapimessage, array($prop => $value));
if (mapi_last_hresult()) {
Zlog::Write(LOGLEVEL_ERROR, sprintf("Failed setting property [%s] with value [%s], error code was:%x", array_search($prop, $mapiprops), $value, mapi_last_hresult()));
}
}
}
/**
* Gets the properties from a MAPI object and sets them in the Sync object according to mapping
*
* @param SyncObject &$message
* @param mixed $mapimessage
* @param array $mapping
*
* @access private
* @return
*/
private function getPropsFromMAPI(&$message, $mapimessage, $mapping) {
$messageprops = $this->getProps($mapimessage, $mapping);
foreach ($mapping as $asprop => $mapiprop) {
// Get long strings via openproperty
if (isset($messageprops[mapi_prop_tag(PT_ERROR, mapi_prop_id($mapiprop))])) {
if ($messageprops[mapi_prop_tag(PT_ERROR, mapi_prop_id($mapiprop))] == MAPI_E_NOT_ENOUGH_MEMORY_32BIT ||
$messageprops[mapi_prop_tag(PT_ERROR, mapi_prop_id($mapiprop))] == MAPI_E_NOT_ENOUGH_MEMORY_64BIT) {
$messageprops[$mapiprop] = MAPIUtils::readPropStream($mapimessage, $mapiprop);
}
}
if(isset($messageprops[$mapiprop])) {
if(mapi_prop_type($mapiprop) == PT_BOOLEAN) {
// Force to actual '0' or '1'
if($messageprops[$mapiprop])
$message->$asprop = 1;
else
$message->$asprop = 0;
} else {
// Special handling for PR_MESSAGE_FLAGS
if($mapiprop == PR_MESSAGE_FLAGS)
$message->$asprop = $messageprops[$mapiprop] & 1; // only look at 'read' flag
else if($mapiprop == PR_RTF_COMPRESSED)
//do not send rtf to the mobile
continue;
else if(is_array($messageprops[$mapiprop]))
$message->$asprop = array_map("w2u", $messageprops[$mapiprop]);
else {
if(mapi_prop_type($mapiprop) != PT_BINARY && mapi_prop_type($mapiprop) != PT_MV_BINARY)
$message->$asprop = w2u($messageprops[$mapiprop]);
else
$message->$asprop = $messageprops[$mapiprop];
}
}
}
}
}
/**
* Wraps getPropIdsFromStrings() calls
*
* @param mixed &$mapiprops
*
* @access private
* @return
*/
private function getPropIdsFromStrings(&$mapiprops) {
return getPropIdsFromStrings($this->store, $mapiprops);
}
/**
* Wraps mapi_getprops() calls
*
* @param mixed &$mapiprops
*
* @access private
* @return
*/
protected function getProps($mapimessage, &$mapiproperties) {
$mapiproperties = $this->getPropIdsFromStrings($mapiproperties);
return mapi_getprops($mapimessage, $mapiproperties);
}
/**
* Returns an GMT timezone array
*
* @access private
* @return array
*/
private function getGMTTZ() {
$tz = array(
"bias" => 0,
"tzname" => "",
"dstendyear" => 0,
"dstendmonth" => 10,
"dstendday" => 0,
"dstendweek" => 5,
"dstendhour" => 2,
"dstendminute" => 0,
"dstendsecond" => 0,
"dstendmillis" => 0,
"stdbias" => 0,
"tznamedst" => "",
"dststartyear" => 0,
"dststartmonth" => 3,
"dststartday" => 0,
"dststartweek" => 5,
"dststarthour" => 1,
"dststartminute" => 0,
"dststartsecond" => 0,
"dststartmillis" => 0,
"dstbias" => -60
);
return $tz;
}
/**
* Unpack timezone info from MAPI
*
* @param string $data
*
* @access private
* @return array
*/
private function getTZFromMAPIBlob($data) {
$unpacked = unpack("lbias/lstdbias/ldstbias/" .
"vconst1/vdstendyear/vdstendmonth/vdstendday/vdstendweek/vdstendhour/vdstendminute/vdstendsecond/vdstendmillis/" .
"vconst2/vdststartyear/vdststartmonth/vdststartday/vdststartweek/vdststarthour/vdststartminute/vdststartsecond/vdststartmillis", $data);
return $unpacked;
}
/**
* Unpack timezone info from Sync
*
* @param string $data
*
* @access private
* @return array
*/
private function getTZFromSyncBlob($data) {
$tz = unpack( "lbias/a64tzname/vdstendyear/vdstendmonth/vdstendday/vdstendweek/vdstendhour/vdstendminute/vdstendsecond/vdstendmillis/" .
"lstdbias/a64tznamedst/vdststartyear/vdststartmonth/vdststartday/vdststartweek/vdststarthour/vdststartminute/vdststartsecond/vdststartmillis/" .
"ldstbias", $data);
// Make the structure compatible with class.recurrence.php
$tz["timezone"] = $tz["bias"];
$tz["timezonedst"] = $tz["dstbias"];
return $tz;
}
/**
* Pack timezone info for Sync
*
* @param array $tz
*
* @access private
* @return string
*/
private function getSyncBlobFromTZ($tz) {
// set the correct TZ name (done using the Bias)
if (!isset($tz["tzname"]) || !$tz["tzname"] || !isset($tz["tznamedst"]) || !$tz["tznamedst"])
$tz = TimezoneUtil::FillTZNames($tz);
$packed = pack("la64vvvvvvvv" . "la64vvvvvvvv" . "l",
$tz["bias"], $tz["tzname"], 0, $tz["dstendmonth"], $tz["dstendday"], $tz["dstendweek"], $tz["dstendhour"], $tz["dstendminute"], $tz["dstendsecond"], $tz["dstendmillis"],
$tz["stdbias"], $tz["tznamedst"], 0, $tz["dststartmonth"], $tz["dststartday"], $tz["dststartweek"], $tz["dststarthour"], $tz["dststartminute"], $tz["dststartsecond"], $tz["dststartmillis"],
$tz["dstbias"]);
return $packed;
}
/**
* Pack timezone info for MAPI
*
* @param array $tz
*
* @access private
* @return string
*/
private function getMAPIBlobFromTZ($tz) {
$packed = pack("lll" . "vvvvvvvvv" . "vvvvvvvvv",
$tz["bias"], $tz["stdbias"], $tz["dstbias"],
0, 0, $tz["dstendmonth"], $tz["dstendday"], $tz["dstendweek"], $tz["dstendhour"], $tz["dstendminute"], $tz["dstendsecond"], $tz["dstendmillis"],
0, 0, $tz["dststartmonth"], $tz["dststartday"], $tz["dststartweek"], $tz["dststarthour"], $tz["dststartminute"], $tz["dststartsecond"], $tz["dststartmillis"]);
return $packed;
}
/**
* Checks the date to see if it is in DST, and returns correct GMT date accordingly
*
* @param long $localtime
* @param array $tz
*
* @access private
* @return long
*/
private function getGMTTimeByTZ($localtime, $tz) {
if(!isset($tz) || !is_array($tz))
return $localtime;
if($this->isDST($localtime, $tz))
return $localtime + $tz["bias"]*60 + $tz["dstbias"]*60;
else
return $localtime + $tz["bias"]*60;
}
/**
* Returns the local time for the given GMT time, taking account of the given timezone
*
* @param long $gmttime
* @param array $tz
*
* @access private
* @return long
*/
private function getLocaltimeByTZ($gmttime, $tz) {
if(!isset($tz) || !is_array($tz))
return $gmttime;
if($this->isDST($gmttime - $tz["bias"]*60, $tz)) // may bug around the switch time because it may have to be 'gmttime - bias - dstbias'
return $gmttime - $tz["bias"]*60 - $tz["dstbias"]*60;
else
return $gmttime - $tz["bias"]*60;
}
/**
* Returns TRUE if it is the summer and therefore DST is in effect
*
* @param long $localtime
* @param array $tz
*
* @access private
* @return boolean
*/
private function isDST($localtime, $tz) {
if( !isset($tz) || !is_array($tz) ||
!isset($tz["dstbias"]) || $tz["dstbias"] == 0 ||
!isset($tz["dststartmonth"]) || $tz["dststartmonth"] == 0 ||
!isset($tz["dstendmonth"]) || $tz["dstendmonth"] == 0)
return false;
$year = gmdate("Y", $localtime);
$start = $this->getTimestampOfWeek($year, $tz["dststartmonth"], $tz["dststartweek"], $tz["dststartday"], $tz["dststarthour"], $tz["dststartminute"], $tz["dststartsecond"]);
$end = $this->getTimestampOfWeek($year, $tz["dstendmonth"], $tz["dstendweek"], $tz["dstendday"], $tz["dstendhour"], $tz["dstendminute"], $tz["dstendsecond"]);
if($start < $end) {
// northern hemisphere (july = dst)
if($localtime >= $start && $localtime < $end)
$dst = true;
else
$dst = false;
} else {
// southern hemisphere (january = dst)
if($localtime >= $end && $localtime < $start)
$dst = false;
else
$dst = true;
}
return $dst;
}
/**
* Returns the local timestamp for the $week'th $wday of $month in $year at $hour:$minute:$second
*
* @param int $year
* @param int $month
* @param int $week
* @param int $wday
* @param int $hour
* @param int $minute
* @param int $second
*
* @access private
* @return long
*/
private function getTimestampOfWeek($year, $month, $week, $wday, $hour, $minute, $second) {
if ($month == 0)
return;
$date = gmmktime($hour, $minute, $second, $month, 1, $year);
// Find first day in month which matches day of the week
while(1) {
$wdaynow = gmdate("w", $date);
if($wdaynow == $wday)
break;
$date += 24 * 60 * 60;
}
// Forward $week weeks (may 'overflow' into the next month)
$date = $date + $week * (24 * 60 * 60 * 7);
// Reverse 'overflow'. Eg week '10' will always be the last week of the month in which the
// specified weekday exists
while(1) {
$monthnow = gmdate("n", $date); // gmdate returns 1-12
if($monthnow > $month)
$date = $date - (24 * 7 * 60 * 60);
else
break;
}
return $date;
}
/**
* Normalize the given timestamp to the start of the day
*
* @param long $timestamp
*
* @access private
* @return long
*/
private function getDayStartOfTimestamp($timestamp) {
return $timestamp - ($timestamp % (60 * 60 * 24));
}
/**
* Returns an SMTP address from an entry id
*
* @param string $entryid
*
* @access private
* @return string
*/
private function getSMTPAddressFromEntryID($entryid) {
$ab = mapi_openaddressbook($this->session);
$mailuser = mapi_ab_openentry($ab, $entryid);
if(!$mailuser)
return "";
$props = mapi_getprops($mailuser, array(PR_ADDRTYPE, PR_SMTP_ADDRESS, PR_EMAIL_ADDRESS));
$addrtype = isset($props[PR_ADDRTYPE]) ? $props[PR_ADDRTYPE] : "";
if(isset($props[PR_SMTP_ADDRESS]))
return $props[PR_SMTP_ADDRESS];
if($addrtype == "SMTP" && isset($props[PR_EMAIL_ADDRESS]))
return $props[PR_EMAIL_ADDRESS];
return "";
}
/**
* Builds a displayname from several separated values
*
* @param SyncContact $contact
*
* @access private
* @return string
*/
private function composeDisplayName(&$contact) {
// Set display name and subject to a combined value of firstname and lastname
$cname = (isset($contact->prefix))?u2w($contact->prefix)." ":"";
$cname .= u2w($contact->firstname);
$cname .= (isset($contact->middlename))?" ". u2w($contact->middlename):"";
$cname .= " ". u2w($contact->lastname);
$cname .= (isset($contact->suffix))?" ". u2w($contact->suffix):"";
return trim($cname);
}
/**
* Sets all dependent properties for an email address
*
* @param string $emailAddress
* @param string $displayName
* @param int $cnt
* @param array &$props
* @param array &$properties
* @param array &$nremails
* @param int &$abprovidertype
*
* @access private
* @return
*/
private function setEmailAddress($emailAddress, $displayName, $cnt, &$props, &$properties, &$nremails, &$abprovidertype){
if (isset($emailAddress)) {
$name = (isset($displayName)) ? $displayName : $emailAddress;
$props[$properties["emailaddress$cnt"]] = $emailAddress;
$props[$properties["emailaddressdemail$cnt"]] = $emailAddress;
$props[$properties["emailaddressdname$cnt"]] = $name;
$props[$properties["emailaddresstype$cnt"]] = "SMTP";
$props[$properties["emailaddressentryid$cnt"]] = mapi_createoneoff($name, "SMTP", $emailAddress);
$nremails[] = $cnt - 1;
$abprovidertype |= 2 ^ ($cnt - 1);
}
}
/**
* Sets the properties for an address string
*
* @param string $type which address is being set
* @param string $city
* @param string $country
* @param string $postalcode
* @param string $state
* @param string $street
* @param array &$props
* @param array &$properties
*
* @access private
* @return
*/
private function setAddress($type, &$city, &$country, &$postalcode, &$state, &$street, &$props, &$properties) {
if (isset($city)) $props[$properties[$type."city"]] = $city = u2w($city);
if (isset($country)) $props[$properties[$type."country"]] = $country = u2w($country);
if (isset($postalcode)) $props[$properties[$type."postalcode"]] = $postalcode = u2w($postalcode);
if (isset($state)) $props[$properties[$type."state"]] = $state = u2w($state);
if (isset($street)) $props[$properties[$type."street"]] = $street = u2w($street);
//set composed address
$address = Utils::BuildAddressString($street, $postalcode, $city, $state, $country);
if ($address) $props[$properties[$type."address"]] = $address;
}
/**
* Sets the properties for a mailing address
*
* @param string $city
* @param string $country
* @param string $postalcode
* @param string $state
* @param string $street
* @param string $address
* @param array &$props
* @param array &$properties
*
* @access private
* @return
*/
private function setMailingAddress($city, $country, $postalcode, $state, $street, $address, &$props, &$properties) {
if (isset($city)) $props[$properties["city"]] = $city;
if (isset($country)) $props[$properties["country"]] = $country;
if (isset($postalcode)) $props[$properties["postalcode"]] = $postalcode;
if (isset($state)) $props[$properties["state"]] = $state;
if (isset($street)) $props[$properties["street"]] = $street;
if (isset($address)) $props[$properties["postaladdress"]] = $address;
}
/**
* Sets data in a recurrence array
*
* @param SyncObject $message
* @param array &$recur
*
* @access private
* @return
*/
private function setRecurrence($message, &$recur) {
if (isset($message->complete)) {
$recur["complete"] = $message->complete;
}
if(!isset($message->recurrence->interval))
$message->recurrence->interval = 1;
//set the default value of numoccur
$recur["numoccur"] = 0;
//a place holder for recurrencetype property
$recur["recurrencetype"] = 0;
switch($message->recurrence->type) {
case 0:
$recur["type"] = 10;
if(isset($message->recurrence->dayofweek))
$recur["subtype"] = 1;
else
$recur["subtype"] = 0;
$recur["everyn"] = $message->recurrence->interval * (60 * 24);
$recur["recurrencetype"] = 1;
break;
case 1:
$recur["type"] = 11;
$recur["subtype"] = 1;
$recur["everyn"] = $message->recurrence->interval;
$recur["recurrencetype"] = 2;
break;
case 2:
$recur["type"] = 12;
$recur["subtype"] = 2;
$recur["everyn"] = $message->recurrence->interval;
$recur["recurrencetype"] = 3;
break;
case 3:
$recur["type"] = 12;
$recur["subtype"] = 3;
$recur["everyn"] = $message->recurrence->interval;
$recur["recurrencetype"] = 3;
break;
case 4:
$recur["type"] = 13;
$recur["subtype"] = 1;
$recur["everyn"] = $message->recurrence->interval * 12;
$recur["recurrencetype"] = 4;
break;
case 5:
$recur["type"] = 13;
$recur["subtype"] = 2;
$recur["everyn"] = $message->recurrence->interval * 12;
$recur["recurrencetype"] = 4;
break;
case 6:
$recur["type"] = 13;
$recur["subtype"] = 3;
$recur["everyn"] = $message->recurrence->interval * 12;
$recur["recurrencetype"] = 4;
break;
}
// "start" and "end" are in GMT when passing to class.recurrence
$recur["end"] = $this->getDayStartOfTimestamp(0x7fffffff); // Maximum GMT value for end by default
if(isset($message->recurrence->until)) {
$recur["term"] = 0x21;
$recur["end"] = $message->recurrence->until;
} else if(isset($message->recurrence->occurrences)) {
$recur["term"] = 0x22;
$recur["numoccur"] = $message->recurrence->occurrences;
} else {
$recur["term"] = 0x23;
}
if(isset($message->recurrence->dayofweek))
$recur["weekdays"] = $message->recurrence->dayofweek;
if(isset($message->recurrence->weekofmonth))
$recur["nday"] = $message->recurrence->weekofmonth;
if(isset($message->recurrence->monthofyear)) {
// MAPI stores months as the amount of minutes until the beginning of the month in a
// non-leapyear. Why this is, is totally unclear.
$monthminutes = array(0,44640,84960,129600,172800,217440,260640,305280,348480,393120,437760,480960);
$recur["month"] = $monthminutes[$message->recurrence->monthofyear-1];
}
if(isset($message->recurrence->dayofmonth))
$recur["monthday"] = $message->recurrence->dayofmonth;
}
/**
* Extracts the email address (mailbox@host) from an email address because
* some devices send email address as "Firstname Lastname" <email@me.com>
*
* @link http://developer.berlios.de/mantis/view.php?id=486
*
* @param string $email
*
* @access private
* @return string or false on error
*/
private function extractEmailAddress($email) {
if (!isset($this->zRFC822)) $this->zRFC822 = new Mail_RFC822();
$parsedAddress = $this->zRFC822->parseAddressList($email);
if (!isset($parsedAddress[0]->mailbox) || !isset($parsedAddress[0]->host)) return false;
return $parsedAddress[0]->mailbox.'@'.$parsedAddress[0]->host;
}
/**
* Returns the best match of preferred body preference types.
*
* @param array $bpTypes
*
* @access private
* @return int
*/
private function getBodyPreferenceBestMatch($bpTypes) {
// The best choice is RTF, then HTML and then MIME in order to save bandwidth
// because MIME is a complete message including the headers and attachments
if (in_array(SYNC_BODYPREFERENCE_RTF, $bpTypes)) return SYNC_BODYPREFERENCE_RTF;
if (in_array(SYNC_BODYPREFERENCE_HTML, $bpTypes)) return SYNC_BODYPREFERENCE_HTML;
if (in_array(SYNC_BODYPREFERENCE_MIME, $bpTypes)) return SYNC_BODYPREFERENCE_MIME;
return SYNC_BODYPREFERENCE_PLAIN;
}
/**
* Returns the message body for a required format
*
* @param MAPIMessage $mapimessage
* @param int $bpReturnType
* @param SyncObject $message
*
* @access private
* @return boolean
*/
private function setMessageBodyForType($mapimessage, $bpReturnType, &$message) {
//default value is PR_BODY
$property = PR_BODY;
switch ($bpReturnType) {
case SYNC_BODYPREFERENCE_HTML:
$property = PR_HTML;
break;
case SYNC_BODYPREFERENCE_RTF:
$property = PR_RTF_COMPRESSED;
break;
case SYNC_BODYPREFERENCE_MIME:
$stat = $this->imtoinet($mapimessage, $message);
if (isset($message->asbody))
$message->asbody->type = $bpReturnType;
return $stat;
}
$body = mapi_message_openproperty($mapimessage, $property);
//set the properties according to supported AS version
if (Request::GetProtocolVersion() >= 12.0) {
$message->asbody = new SyncBaseBody();
$message->asbody->type = $bpReturnType;
$message->asbody->data = ($bpReturnType == SYNC_BODYPREFERENCE_RTF) ? base64_encode($body) :
(isset($message->internetcpid) && $message->internetcpid == INTERNET_CPID_WINDOWS1252 && $bpReturnType == SYNC_BODYPREFERENCE_HTML) ?
windows1252_to_utf8($body, "", true) : w2u($body);
$message->asbody->estimatedDataSize = strlen($message->asbody->data);
$message->asbody->truncated = 0;
}
else {
$message->body = str_replace("\n","\r\n", w2u(str_replace("\r", "", $body)));
$message->bodysize = strlen($message->body);
$message->bodytruncated = 0;
}
return true;
}
/**
* A wrapper for mapi_inetmapi_imtoinet function
*
* @param MAPIMessage $mapimessage
* @param SyncObject $message
*
* @access private
* @return boolean
*/
private function imtoinet($mapimessage, &$message) {
if (function_exists("mapi_inetmapi_imtoinet")) {
$addrBook = mapi_openaddressbook($this->session);
$mstream = mapi_inetmapi_imtoinet($this->session, $addrBook, $mapimessage, array());
$mstreamstat = mapi_stream_stat($mstream);
if ($mstreamstat['cb'] < MAX_EMBEDDED_SIZE) {
if (Request::GetProtocolVersion() >= 12.0) {
if (!isset($message->asbody))
$message->asbody = new SyncBaseBody();
//TODO data should be wrapped in a MapiStreamWrapper
$message->asbody->data = mapi_stream_read($mstream, MAX_EMBEDDED_SIZE);
$message->asbody->estimatedDataSize = $mstreamstat["cb"];
$message->asbody->truncated = 0;
}
else {
$message->mimetruncated = 0;
//TODO mimedata should be a wrapped in a MapiStreamWrapper
$message->mimedata = mapi_stream_read($mstream, MAX_EMBEDDED_SIZE);
$message->mimesize = $mstreamstat["cb"];
}
unset($message->body, $message->bodytruncated);
return true;
}
}
return false;
}
/**
* Sets the message body
*
* @param MAPIMessage $mapimessage
* @param ContentParameters $contentparameters
* @param SyncObject $message
*/
private function setMessageBody($mapimessage, $contentparameters, &$message) {
//get the available body preference types
$bpTypes = $contentparameters->GetBodyPreference();
if ($bpTypes !== false) {
ZLog::Write(LOGLEVEL_DEBUG, sprintf("BodyPreference types: %s", implode(', ', $bpTypes)));
//do not send mime data if the client requests it
if (($contentparameters->GetMimeSupport() == SYNC_MIMESUPPORT_NEVER) && ($key = array_search(SYNC_BODYPREFERENCE_MIME, $bpTypes)!== false)) {
unset($bpTypes[$key]);
ZLog::Write(LOGLEVEL_DEBUG, sprintf("Remove mime body preference type because the device required no mime support. BodyPreference types: %s", implode(', ', $bpTypes)));
}
//get the best fitting preference type
$bpReturnType = $this->getBodyPreferenceBestMatch($bpTypes);
ZLog::Write(LOGLEVEL_DEBUG, sprintf("getBodyPreferenceBestMatch: %d", $bpReturnType));
$bpo = $contentparameters->BodyPreference($bpReturnType);
ZLog::Write(LOGLEVEL_DEBUG, sprintf("bpo: truncation size:'%d', allornone:'%d', preview:'%d'", $bpo->GetTruncationSize(), $bpo->GetAllOrNone(), $bpo->GetPreview()));
$this->setMessageBodyForType($mapimessage, $bpReturnType, $message);
//only set the truncation size data if device set it in request
if ($bpo->GetTruncationSize() != false && $bpReturnType != SYNC_BODYPREFERENCE_MIME && $message->asbody->estimatedDataSize > $bpo->GetTruncationSize()) {
$message->asbody->data = Utils::Utf8_truncate($message->asbody->data, $bpo->GetTruncationSize());
$message->asbody->truncated = 1;
}
}
else {
// Override 'body' for truncation
$truncsize = Utils::GetTruncSize($contentparameters->GetTruncation());
$this->setMessageBodyForType($mapimessage, SYNC_BODYPREFERENCE_PLAIN, $message);
if($message->bodysize > $truncsize) {
$message->body = Utils::Utf8_truncate($message->body, $truncsize);
$message->bodytruncated = 1;
}
if (!isset($message->body) || strlen($message->body) == 0)
$message->body = " ";
if ($contentparameters->GetMimeSupport() == SYNC_MIMESUPPORT_ALWAYS) {
//set the html body for iphone in AS 2.5 version
$this->imtoinet($mapimessage, $message);
}
}
}
/**
* Calculates the native body type of a message using available properties. Refer to oxbbody
*
* @param array $messageprops
*
* @access private
* @return int
*/
private function getNativeBodyType($messageprops) {
//check if the properties are set and get the error code if needed
if (!isset($messageprops[PR_BODY])) $messageprops[PR_BODY] = $this->getError(PR_BODY, $messageprops);
if (!isset($messageprops[PR_RTF_COMPRESSED])) $messageprops[PR_RTF_COMPRESSED] = $this->getError(PR_RTF_COMPRESSED, $messageprops);
if (!isset($messageprops[PR_HTML])) $messageprops[PR_HTML] = $this->getError(PR_HTML, $messageprops);
if (!isset($messageprops[PR_RTF_IN_SYNC])) $messageprops[PR_RTF_IN_SYNC] = $this->getError(PR_RTF_IN_SYNC, $messageprops);
if ( // 1
($messageprops[PR_BODY] == MAPI_E_NOT_FOUND) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_FOUND) &&
($messageprops[PR_HTML] == MAPI_E_NOT_FOUND))
return SYNC_BODYPREFERENCE_UNDEFINED;
elseif ( // 2
($messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_FOUND) &&
($messageprops[PR_HTML] == MAPI_E_NOT_FOUND))
return SYNC_BODYPREFERENCE_PLAIN;
elseif ( // 3
($messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_HTML] == MAPI_E_NOT_FOUND))
return SYNC_BODYPREFERENCE_RTF;
elseif ( // 4
($messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_HTML] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_IN_SYNC]))
return SYNC_BODYPREFERENCE_RTF;
elseif ( // 5
($messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_HTML] == MAPI_E_NOT_ENOUGH_MEMORY) &&
(!$messageprops[PR_RTF_IN_SYNC]))
return SYNC_BODYPREFERENCE_HTML;
elseif ( // 6
($messageprops[PR_RTF_COMPRESSED] != MAPI_E_NOT_FOUND || $messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_HTML] != MAPI_E_NOT_FOUND || $messageprops[PR_HTML] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_IN_SYNC]))
return SYNC_BODYPREFERENCE_RTF;
elseif ( // 7
($messageprops[PR_RTF_COMPRESSED] != MAPI_E_NOT_FOUND || $messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_HTML] != MAPI_E_NOT_FOUND || $messageprops[PR_HTML] == MAPI_E_NOT_ENOUGH_MEMORY) &&
(!$messageprops[PR_RTF_IN_SYNC]))
return SYNC_BODYPREFERENCE_HTML;
elseif ( // 8
($messageprops[PR_BODY] != MAPI_E_NOT_FOUND || $messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] != MAPI_E_NOT_FOUND || $messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_IN_SYNC]))
return SYNC_BODYPREFERENCE_RTF;
elseif ( // 9.1
($messageprops[PR_BODY] != MAPI_E_NOT_FOUND || $messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] != MAPI_E_NOT_FOUND || $messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
(!$messageprops[PR_RTF_IN_SYNC]))
return SYNC_BODYPREFERENCE_PLAIN;
elseif ( // 9.2
($messageprops[PR_RTF_COMPRESSED] != MAPI_E_NOT_FOUND || $messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_BODY] == MAPI_E_NOT_FOUND) &&
($messageprops[PR_HTML] == MAPI_E_NOT_FOUND))
return SYNC_BODYPREFERENCE_RTF;
elseif ( // 9.3
($messageprops[PR_BODY] != MAPI_E_NOT_FOUND || $messageprops[PR_BODY] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_FOUND) &&
($messageprops[PR_HTML] == MAPI_E_NOT_FOUND))
return SYNC_BODYPREFERENCE_PLAIN;
elseif ( // 9.4
($messageprops[PR_HTML] != MAPI_E_NOT_FOUND || $messageprops[PR_HTML] == MAPI_E_NOT_ENOUGH_MEMORY) &&
($messageprops[PR_BODY] == MAPI_E_NOT_FOUND) &&
($messageprops[PR_RTF_COMPRESSED] == MAPI_E_NOT_FOUND))
return SYNC_BODYPREFERENCE_HTML;
else // 10
return SYNC_BODYPREFERENCE_PLAIN;
}
/**
* Returns the error code for a given property. Helper for getNativeBodyType function.
*
* @param int $tag
* @param array $messageprops
*
* @access private
* @return int (MAPI_ERROR_CODE)
*/
private function getError($tag, $messageprops) {
$prBodyError = mapi_prop_tag(PT_ERROR, mapi_prop_id($tag));
if(isset($messageprops[$prBodyError]) && mapi_is_error($messageprops[$prBodyError])) {
if($messageprops[$prBodyError] == MAPI_E_NOT_ENOUGH_MEMORY_32BIT ||
$messageprops[$prBodyError] == MAPI_E_NOT_ENOUGH_MEMORY_64BIT) {
return MAPI_E_NOT_ENOUGH_MEMORY;
}
}
return MAPI_E_NOT_FOUND;
}
/**
* Sets properties for an email message
*
* @param mixed $mapimessage
* @param SyncMail $message
*
* @access private
* @return void
*/
private function setFlag($mapimessage, &$message){
// do nothing if protocoll version is lower than 12.0 as flags haven't been defined before
if (Request::GetProtocolVersion() < 12.0 ) return;
$message->flag = new SyncMailFlags();
$this->getPropsFromMAPI($message->flag, $mapimessage, MAPIMapping::GetMailFlagsMapping());
}
/**
* Sets information from SyncBaseBody type for a MAPI message.
*
* @param SyncBaseBody $asbody
* @param array $props
* @param array $appointmentprops
*
* @access private
* @return void
*/
private function setASbody($asbody, &$props, $appointmentprops) {
if (isset($asbody->type) && isset($asbody->data) && strlen($asbody->data) > 0) {
switch ($asbody->type) {
case SYNC_BODYPREFERENCE_PLAIN:
default:
//set plain body if the type is not in valid range
$props[$appointmentprops["body"]] = u2w($asbody->data);
break;
case SYNC_BODYPREFERENCE_HTML:
$props[$appointmentprops["html"]] = u2w($asbody->data);
break;
case SYNC_BODYPREFERENCE_RTF:
break;
case SYNC_BODYPREFERENCE_MIME:
break;
}
}
else {
ZLog::Write(LOGLEVEL_INFO, "MAPIProvider->setASbody either type or data are not set. Setting to empty body");
$props[$appointmentprops["body"]] = "";
}
}
}
?>
|