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:
<?php
require_once('XMLElement.php');
require_once('AwlQuery.php');
class iCalProp {
var $name;
var $parameters;
var $content;
var $rendered;
function iCalProp( $propstring = null ) {
$this->name = "";
$this->content = "";
$this->parameters = array();
unset($this->rendered);
if ( $propstring != null && gettype($propstring) == 'string' ) {
$this->ParseFrom($propstring);
}
}
function ParseFrom( $propstring ) {
$this->rendered = (strlen($propstring) < 72 ? $propstring : null);
$unescaped = preg_replace('{\\\\[nN]}', "\n", $propstring);
$split = $this->SplitQuoted($unescaped, ':', 2);
if (count($split) != 2) {
throw new \RuntimeException(sprintf("Couldn't parse property from string: `%s`", $propstring));
}
list($prop, $value) = $split;
$this->content = preg_replace( "/\\\\([,;:\"\\\\])/", '$1', $value);
$parameters = $this->SplitQuoted($prop, ';');
$this->name = array_shift($parameters);
$this->parameters = array();
foreach ($parameters AS $k => $v) {
$pos = strpos($v, '=');
$name = substr($v, 0, $pos);
$value = substr($v, $pos + 1);
$this->parameters[$name] = preg_replace('/^"(.+)"$/', '$1', $value);
}
}
function SplitQuoted($str, $sep = ',', $limit = 0) {
$result = array();
$cursor = 0;
$inquote = false;
$num = 0;
for($i = 0, $len = strlen($str); $i < $len; ++$i) {
$ch = $str[$i];
if ($ch == '"') {
$inquote = !$inquote;
}
if (!$inquote && $ch == $sep) {
++$num;
if ($limit > 0 && $num == $limit) {
$result[] = substr($str, $cursor);
break;
}
$result[] = substr($str, $cursor, $i - $cursor);
$cursor = $i + 1;
}
if ($i + 1 == $len) {
$result[] = substr($str, $cursor);
}
}
return $result;
}
function Name( $newname = null ) {
if ( $newname != null ) {
$this->name = $newname;
if ( isset($this->rendered) ) unset($this->rendered);
}
return $this->name;
}
function Value( $newvalue = null ) {
if ( $newvalue != null ) {
$this->content = $newvalue;
if ( isset($this->rendered) ) unset($this->rendered);
}
return $this->content;
}
function Parameters( $newparams = null ) {
if ( $newparams != null ) {
$this->parameters = $newparams;
if ( isset($this->rendered) ) unset($this->rendered);
}
return $this->parameters;
}
function TextMatch( $search ) {
if ( isset($this->content) ) {
return (stristr( $this->content, $search ) !== false);
}
return false;
}
function GetParameterValue( $name ) {
if ( isset($this->parameters[$name]) ) return $this->parameters[$name];
}
function SetParameterValue( $name, $value ) {
if ( isset($this->rendered) ) unset($this->rendered);
$this->parameters[$name] = $value;
}
function RenderParameters() {
$rendered = "";
foreach( $this->parameters AS $k => $v ) {
$escaped = preg_replace( "/([;:])/", '\\\\$1', $v);
$rendered .= sprintf( ";%s=%s", $k, $escaped );
}
return $rendered;
}
function Render() {
if ( isset($this->rendered) ) return $this->rendered;
$property = preg_replace( '/[;].*$/', '', $this->name );
$escaped = $this->content;
switch( $property ) {
case 'ATTACH': case 'GEO': case 'PERCENT-COMPLETE': case 'PRIORITY':
case 'DURATION': case 'FREEBUSY': case 'TZOFFSETFROM': case 'TZOFFSETTO':
case 'TZURL': case 'ATTENDEE': case 'ORGANIZER': case 'RECURRENCE-ID':
case 'URL': case 'EXRULE': case 'SEQUENCE': case 'CREATED':
case 'RRULE': case 'REPEAT': case 'TRIGGER':
break;
case 'COMPLETED': case 'DTEND':
case 'DUE': case 'DTSTART':
case 'DTSTAMP': case 'LAST-MODIFIED':
case 'CREATED': case 'EXDATE':
case 'RDATE':
if ( isset($this->parameters['VALUE']) && $this->parameters['VALUE'] == 'DATE' ) {
$escaped = substr( $escaped, 0, 8);
}
break;
default:
$escaped = str_replace( '\\', '\\\\', $escaped);
$escaped = preg_replace( '/\r?\n/', '\\n', $escaped);
$escaped = preg_replace( "/([,;])/", '\\\\$1', $escaped);
}
$property = sprintf( "%s%s:", $this->name, $this->RenderParameters() );
if ( (strlen($property) + strlen($escaped)) <= 72 ) {
$this->rendered = $property . $escaped;
}
else if ( (strlen($property) + strlen($escaped)) > 72 && (strlen($property) < 72) && (strlen($escaped) < 72) ) {
$this->rendered = $property . "\r\n " . $escaped;
}
else {
$this->rendered = preg_replace( '/(.{72})/u', '$1'."\r\n ", $property . $escaped );
}
return $this->rendered;
}
}
class iCalComponent {
var $type;
var $properties;
var $components;
var $rendered;
function iCalComponent( $content = null ) {
$this->type = "";
$this->properties = array();
$this->components = array();
$this->rendered = "";
if ( $content != null && (gettype($content) == 'string' || gettype($content) == 'array') ) {
$this->ParseFrom($content);
}
}
function VCalendar( $extra_properties = null ) {
$this->SetType('VCALENDAR');
$this->AddProperty('PRODID', '-//davical.org//NONSGML AWL Calendar//EN');
$this->AddProperty('VERSION', '2.0');
$this->AddProperty('CALSCALE', 'GREGORIAN');
if ( is_array($extra_properties) ) {
foreach( $extra_properties AS $k => $v ) {
$this->AddProperty($k,$v);
}
}
}
function CollectParameterValues( $parameter_name ) {
$values = array();
foreach( $this->components AS $k => $v ) {
$also = $v->CollectParameterValues($parameter_name);
$values = array_merge( $values, $also );
}
foreach( $this->properties AS $k => $v ) {
$also = $v->GetParameterValue($parameter_name);
if ( isset($also) && $also != "" ) {
$values[$also] = 1;
}
}
return $values;
}
function ParseFrom( $content ) {
$this->rendered = $content;
$content = $this->UnwrapComponent($content);
$type = false;
$subtype = false;
$finish = null;
$subfinish = null;
$length = strlen($content);
$linefrom = 0;
while( $linefrom < $length ) {
$lineto = strpos( $content, "\n", $linefrom );
if ( $lineto === false ) {
$lineto = strpos( $content, "\r", $linefrom );
}
if ( $lineto > 0 ) {
$line = substr( $content, $linefrom, $lineto - $linefrom);
$linefrom = $lineto + 1;
}
else {
$line = substr( $content, $linefrom );
$linefrom = $length;
}
if ( preg_match('/^\s*$/', $line ) ) continue;
$line = rtrim( $line, "\r\n" );
if ( $type === false ) {
if ( preg_match( '/^BEGIN:(.+)$/', $line, $matches ) ) {
$type = $matches[1];
$finish = "END:$type";
$this->type = $type;
dbg_error_log( 'iCalendar', "::ParseFrom: Start component of type '%s'", $type);
}
else {
dbg_error_log( 'iCalendar', "::ParseFrom: Ignoring crap before start of component: $line");
if ( $line != "" ) $this->rendered = null;
}
}
else if ( $type == null ) {
dbg_error_log( 'iCalendar', "::ParseFrom: Ignoring crap after end of component");
if ( $line != "" ) $this->rendered = null;
}
else if ( $line == $finish ) {
dbg_error_log( 'iCalendar', "::ParseFrom: End of component");
$type = null;
}
else {
if ( $subtype === false && preg_match( '/^BEGIN:(.+)$/', $line, $matches ) ) {
$subtype = $matches[1];
$subfinish = "END:$subtype";
$subcomponent = $line . "\r\n";
dbg_error_log( 'iCalendar', "::ParseFrom: Found a subcomponent '%s'", $subtype);
}
else if ( $subtype ) {
$subcomponent .= $this->WrapComponent($line);
if ( $line == $subfinish ) {
dbg_error_log( 'iCalendar', "::ParseFrom: End of subcomponent '%s'", $subtype);
$this->components[] = new iCalComponent($subcomponent);
$subtype = false;
}
}
else {
$this->properties[] = new iCalProp($line);
}
}
}
}
function UnwrapComponent( $content ) {
return preg_replace('/\r?\n[ \t]/', '', $content );
}
function WrapComponent( $content ) {
$strs = preg_split( "/\r?\n/", $content );
$wrapped = "";
foreach ($strs as $str) {
$wrapped .= preg_replace( '/(.{72})/u', '$1'."\r\n ", $str ) ."\r\n";
}
return $wrapped;
}
function GetType() {
return $this->type;
}
function SetType( $type ) {
if ( isset($this->rendered) ) unset($this->rendered);
$this->type = $type;
return $this->type;
}
function GetProperties( $type = null ) {
$properties = array();
foreach( $this->properties AS $k => $v ) {
if ( $type == null || $v->Name() == $type ) {
$properties[$k] = $v;
}
}
return $properties;
}
function GetPValue( $type ) {
foreach( $this->properties AS $k => $v ) {
if ( $v->Name() == $type ) return $v->Value();
}
return null;
}
function GetPParamValue( $type, $parameter_name ) {
foreach( $this->properties AS $k => $v ) {
if ( $v->Name() == $type ) return $v->GetParameterValue($parameter_name);
}
return null;
}
function ClearProperties( $type = null ) {
if ( $type != null ) {
foreach( $this->properties AS $k => $v ) {
if ( $v->Name() == $type ) {
unset($this->properties[$k]);
if ( isset($this->rendered) ) unset($this->rendered);
}
}
$this->properties = array_values($this->properties);
}
else {
if ( isset($this->rendered) ) unset($this->rendered);
$this->properties = array();
}
}
function SetProperties( $new_properties, $type = null ) {
if ( isset($this->rendered) && count($new_properties) > 0 ) unset($this->rendered);
$this->ClearProperties($type);
foreach( $new_properties AS $k => $v ) {
$this->AddProperty($v);
}
}
function AddProperty( $new_property, $value = null, $parameters = null ) {
if ( isset($this->rendered) ) unset($this->rendered);
if ( isset($value) && gettype($new_property) == 'string' ) {
$new_prop = new iCalProp();
$new_prop->Name($new_property);
$new_prop->Value($value);
if ( $parameters != null ) $new_prop->Parameters($parameters);
dbg_error_log('iCalendar'," Adding new property '%s'", $new_prop->Render() );
$this->properties[] = $new_prop;
}
else if ( gettype($new_property) ) {
$this->properties[] = $new_property;
}
}
function &FirstNonTimezone( $type = null ) {
foreach( $this->components AS $k => $v ) {
if ( $v->GetType() != 'VTIMEZONE' ) return $this->components[$k];
}
$result = false;
return $result;
}
function IsOrganizer( $email ) {
if ( !preg_match( '#^mailto:#', $email ) ) $email = 'mailto:'.$email;
$props = $this->GetPropertiesByPath('!VTIMEZONE/ORGANIZER');
foreach( $props AS $k => $prop ) {
if ( $prop->Value() == $email ) return true;
}
return false;
}
function IsAttendee( $email ) {
if ( !preg_match( '#^mailto:#', $email ) ) $email = 'mailto:'.$email;
if ( $this->IsOrganizer($email) ) return true;
$props = $this->GetPropertiesByPath('!VTIMEZONE/ATTENDEE');
foreach( $props AS $k => $prop ) {
if ( $prop->Value() == $email ) return true;
}
return false;
}
function GetComponents( $type = null, $normal_match = true ) {
$components = $this->components;
if ( $type != null ) {
foreach( $components AS $k => $v ) {
if ( ($v->GetType() != $type) === $normal_match ) {
unset($components[$k]);
}
}
$components = array_values($components);
}
return $components;
}
function ClearComponents( $type = null ) {
if ( $type != null ) {
foreach( $this->components AS $k => $v ) {
if ( $v->GetType() == $type ) {
unset($this->components[$k]);
if ( isset($this->rendered) ) unset($this->rendered);
}
else {
if ( ! $this->components[$k]->ClearComponents($type) ) {
if ( isset($this->rendered) ) unset($this->rendered);
}
}
}
return isset($this->rendered);
}
else {
if ( isset($this->rendered) ) unset($this->rendered);
$this->components = array();
}
}
function SetComponents( $new_component, $type = null ) {
if ( isset($this->rendered) ) unset($this->rendered);
if ( count($new_component) > 0 ) $this->ClearComponents($type);
foreach( $new_component AS $k => $v ) {
$this->components[] = $v;
}
}
function AddComponent( $new_component ) {
if ( is_array($new_component) && count($new_component) == 0 ) return;
if ( isset($this->rendered) ) unset($this->rendered);
if ( is_array($new_component) ) {
foreach( $new_component AS $k => $v ) {
$this->components[] = $v;
}
}
else {
$this->components[] = $new_component;
}
}
function MaskComponents( $keep ) {
foreach( $this->components AS $k => $v ) {
if ( ! in_array( $v->GetType(), $keep ) ) {
unset($this->components[$k]);
if ( isset($this->rendered) ) unset($this->rendered);
}
else {
$v->MaskComponents($keep);
}
}
}
function MaskProperties( $keep, $component_list=null ) {
foreach( $this->components AS $k => $v ) {
$v->MaskProperties($keep, $component_list);
}
if ( !isset($component_list) || in_array($this->GetType(), $component_list) ) {
foreach( $this->properties AS $k => $v ) {
if ( ! in_array( $v->name, $keep ) ) {
unset($this->properties[$k]);
if ( isset($this->rendered) ) unset($this->rendered);
}
}
}
}
function CloneConfidential() {
$confidential = clone($this);
$keep_properties = array( 'DTSTAMP', 'DTSTART', 'RRULE', 'DURATION', 'DTEND', 'DUE', 'UID', 'CLASS', 'TRANSP', 'CREATED', 'LAST-MODIFIED' );
$resource_components = array( 'VEVENT', 'VTODO', 'VJOURNAL' );
$confidential->MaskComponents(array( 'VTIMEZONE', 'STANDARD', 'DAYLIGHT', 'VEVENT', 'VTODO', 'VJOURNAL' ));
$confidential->MaskProperties($keep_properties, $resource_components );
if ( isset($confidential->rendered) )
unset($confidential->rendered);
if ( in_array( $confidential->GetType(), $resource_components ) ) {
$confidential->AddProperty( 'SUMMARY', translate('Busy') );
}
foreach( $confidential->components AS $k => $v ) {
if ( in_array( $v->GetType(), $resource_components ) ) {
$v->AddProperty( 'SUMMARY', translate('Busy') );
}
}
return $confidential;
}
function RenderWithoutWrap($restricted_properties = null){
return substr($this->Render($restricted_properties), 0 , -2);
}
function Render( $restricted_properties = null) {
$unrestricted = (!isset($restricted_properties) || count($restricted_properties) == 0);
if ( isset($this->rendered) && $unrestricted )
return $this->rendered;
$rendered = "BEGIN:$this->type\r\n";
foreach( $this->properties AS $k => $v ) {
if ( method_exists($v, 'Render') ) {
if ( $unrestricted || isset($restricted_properties[$v]) ) $rendered .= $v->Render() . "\r\n";
}
}
foreach( $this->components AS $v ) { $rendered .= $v->Render(); }
$rendered .= "END:$this->type\r\n";
$rendered = preg_replace('{(?<!\r)\n}', "\r\n", $rendered);
if ( $unrestricted ) $this->rendered = $rendered;
return $rendered;
}
function GetPropertiesByPath( $path ) {
$properties = array();
dbg_error_log( 'iCalendar', "GetPropertiesByPath: Querying within '%s' for path '%s'", $this->type, $path );
if ( !preg_match( '#(/?)(!?)([^/]+)(/?.*)$#', $path, $matches ) ) return $properties;
$adrift = ($matches[1] == '');
$normal = ($matches[2] == '');
$ourtest = $matches[3];
$therest = $matches[4];
dbg_error_log( 'iCalendar', "GetPropertiesByPath: Matches: %s -- %s -- %s -- %s\n", $matches[1], $matches[2], $matches[3], $matches[4] );
if ( $ourtest == '*' || (($ourtest == $this->type) === $normal) && $therest != '' ) {
if ( preg_match( '#^/(!?)([^/]+)$#', $therest, $matches ) ) {
$normmatch = ($matches[1] =='');
$proptest = $matches[2];
foreach( $this->properties AS $k => $v ) {
if ( $proptest == '*' || (($v->Name() == $proptest) === $normmatch ) ) {
$properties[] = $v;
}
}
}
else {
foreach( $this->components AS $k => $v ) {
$properties = array_merge( $properties, $v->GetPropertiesByPath($therest) );
}
}
}
if ( $adrift ) {
foreach( $this->components AS $k => $v ) {
$properties = array_merge( $properties, $v->GetPropertiesByPath($path) );
}
}
dbg_error_log('iCalendar', "GetPropertiesByPath: Found %d within '%s' for path '%s'\n", count($properties), $this->type, $path );
return $properties;
}
}
class iCalendar {
var $component;
var $properties;
var $lines;
var $tz_locn;
var $type;
function iCalendar( $args ) {
global $c;
deprecated('iCalendar::iCalendar');
$this->tz_locn = "";
if ( !isset($args) || !(is_array($args) || is_object($args)) ) return;
if ( is_object($args) ) {
settype($args,'array');
}
$this->component = new iCalComponent();
if ( isset($args['icalendar']) ) {
$this->component->ParseFrom($args['icalendar']);
$this->lines = preg_split('/\r?\n/', $args['icalendar'] );
$this->SaveTimeZones();
$first =& $this->component->FirstNonTimezone();
if ( $first ) {
$this->type = $first->GetType();
$this->properties = $first->GetProperties();
}
else {
$this->properties = array();
}
$this->properties['VCALENDAR'] = array('***ERROR*** This class is being referenced in an unsupported way!');
return;
}
if ( isset($args['type'] ) ) {
$this->type = $args['type'];
unset( $args['type'] );
}
else {
$this->type = 'VEVENT';
}
$this->component->SetType('VCALENDAR');
$this->component->SetProperties(
array(
new iCalProp('VERSION:2.0'),
new iCalProp('PRODID:-//davical.org//NONSGML AWL Calendar//EN'),
new iCalProp('CALSCALE:GREGORIAN')
)
);
$first = new iCalComponent();
$first->SetType($this->type);
$this->properties = array();
foreach( $args AS $k => $v ) {
dbg_error_log( 'iCalendar', ":Initialise: %s to >>>%s<<<", $k, $v );
$property = new iCalProp();
$property->Name($k);
$property->Value($v);
$this->properties[] = $property;
}
$first->SetProperties($this->properties);
$this->component->SetComponents( array($first) );
$this->properties['VCALENDAR'] = array('***ERROR*** This class is being referenced in an unsupported way!');
if ( $this->tz_locn == "" ) {
$this->tz_locn = $this->Get("tzid");
if ( (!isset($this->tz_locn) || $this->tz_locn == "") && isset($c->local_tzid) ) {
$this->tz_locn = $c->local_tzid;
}
}
}
function SaveTimeZones() {
global $c;
deprecated('iCalendar::SaveTimeZones');
$this->tzid_list = array_keys($this->component->CollectParameterValues('TZID'));
if ( ! isset($this->tzid) && count($this->tzid_list) > 0 ) {
dbg_error_log( 'iCalendar', "::TZID_List[0] = '%s', count=%d", $this->tzid_list[0], count($this->tzid_list) );
$this->tzid = $this->tzid_list[0];
}
$timezones = $this->component->GetComponents('VTIMEZONE');
if ( $timezones === false || count($timezones) == 0 ) return;
$this->vtimezone = $timezones[0]->Render();
$tzid = $this->Get('TZID');
if ( isset($c->save_time_zone_defs) && $c->save_time_zone_defs ) {
foreach( $timezones AS $k => $tz ) {
$tzid = $tz->GetPValue('TZID');
$qry = new AwlQuery( "SELECT tz_locn FROM time_zone WHERE tz_id = ?;", $tzid );
if ( $qry->Exec('iCalendar') && $qry->rows() == 1 ) {
$row = $qry->Fetch();
if ( !isset($first_tzid) ) $first_tzid = $row->tz_locn;
continue;
}
if ( $tzid != "" && $qry->rows() == 0 ) {
$tzname = $tz->GetPValue('X-LIC-LOCATION');
if ( !isset($tzname) ) $tzname = olson_from_tzstring($tzid);
$qry2 = new AwlQuery( "INSERT INTO time_zone (tz_id, tz_locn, tz_spec) VALUES( ?, ?, ? );",
$tzid, $tzname, $tz->Render() );
$qry2->Exec('iCalendar');
}
}
}
if ( ! isset($this->tzid) && isset($first_tzid) ) $this->tzid = $first_tzid;
if ( (!isset($this->tz_locn) || $this->tz_locn == '') && isset($first_tzid) && $first_tzid != '' ) {
$tzname = preg_replace('#^(.*[^a-z])?([a-z]+/[a-z]+)$#i','$2', $first_tzid );
if ( preg_match( '#\S+/\S+#', $tzname) ) {
$this->tz_locn = $tzname;
}
dbg_error_log( 'iCalendar', " TZCrap1: TZID '%s', Location '%s', Perhaps: %s", $tzid, $this->tz_locn, $tzname );
}
if ( (!isset($this->tz_locn) || $this->tz_locn == "") && isset($c->local_tzid) ) {
$this->tz_locn = $c->local_tzid;
}
if ( ! isset($this->tzid) && isset($this->tz_locn) ) $this->tzid = $this->tz_locn;
}
function DefaultPropertyList() {
dbg_error_log( "LOG", " iCalendar: Call to deprecated method '%s'", 'DefaultPropertyList' );
return array( "UID" => 1, "DTSTAMP" => 1, "DTSTART" => 1, "DURATION" => 1,
"LAST-MODIFIED" => 1,"CLASS" => 1, "TRANSP" => 1, "SEQUENCE" => 1,
"DUE" => 1, "SUMMARY" => 1, "RRULE" => 1 );
}
function JustThisBitPlease( $type, $count=1 ) {
deprecated('iCalendar::JustThisBitPlease' );
$answer = "";
$intags = false;
$start = "BEGIN:$type";
$finish = "END:$type";
dbg_error_log( 'iCalendar', ":JTBP: Looking for %d subsets of type %s", $count, $type );
reset($this->lines);
foreach( $this->lines AS $k => $v ) {
if ( !$intags && $v == $start ) {
$answer .= $v . "\n";
$intags = true;
}
else if ( $intags && $v == $finish ) {
$answer .= $v . "\n";
$intags = false;
}
else if ( $intags ) {
$answer .= $v . "\n";
}
}
return $answer;
}
function &ParseSomeLines( $type ) {
deprecated('iCalendar::ParseSomeLines' );
$props = array();
$properties =& $props;
while( isset($this->lines[$this->_current_parse_line]) ) {
$i = $this->_current_parse_line++;
$line =& $this->lines[$i];
dbg_error_log( 'iCalendar', ":Parse:%s LINE %03d: >>>%s<<<", $type, $i, $line );
if ( $this->parsing_vtimezone ) {
$this->vtimezone .= $line."\n";
}
if ( preg_match( '/^(BEGIN|END):([^:]+)$/', $line, $matches ) ) {
if ( $matches[1] == 'END' && $matches[2] == $type ) {
if ( $type == 'VTIMEZONE' ) {
$this->parsing_vtimezone = false;
}
return $properties;
}
else if( $matches[1] == 'END' ) {
dbg_error_log("ERROR"," iCalendar: parse error: Unexpected END:%s when we were looking for END:%s", $matches[2], $type );
return $properties;
}
else if( $matches[1] == 'BEGIN' ) {
$subtype = $matches[2];
if ( $subtype == 'VTIMEZONE' ) {
$this->parsing_vtimezone = true;
$this->vtimezone = $line."\n";
}
if ( !isset($properties['INSIDE']) ) $properties['INSIDE'] = array();
$properties['INSIDE'][] = $subtype;
if ( !isset($properties[$subtype]) ) $properties[$subtype] = array();
$properties[$subtype][] = $this->ParseSomeLines($subtype);
}
}
else {
@list( $property, $value ) = explode(':', $line, 2 );
if ( strpos( $property, ';' ) > 0 ) {
$parameterlist = explode(';', $property );
$property = array_shift($parameterlist);
foreach( $parameterlist AS $pk => $pv ) {
if ( $pv == "VALUE=DATE" ) {
$value .= 'T000000';
}
elseif ( preg_match('/^([^;:=]+)=([^;:=]+)$/', $pv, $matches) ) {
switch( $matches[1] ) {
case 'TZID': $properties['TZID'] = $matches[2]; break;
default:
dbg_error_log( 'iCalendar', " FYI: Ignoring Resource '%s', Property '%s', Parameter '%s', Value '%s'", $type, $property, $matches[1], $matches[2] );
}
}
}
}
if ( $this->parsing_vtimezone && (!isset($this->tz_locn) || $this->tz_locn == "") && $property == 'X-LIC-LOCATION' ) {
$this->tz_locn = $value;
}
$properties[strtoupper($property)] = $this->RFC2445ContentUnescape($value);
}
}
return $properties;
}
function BuildFromText( $icalendar ) {
deprecated('iCalendar::BuildFromText' );
$icalendar = preg_replace('/\r?\n[ \t]/', '', $icalendar );
$this->lines = preg_split('/\r?\n/', $icalendar );
$this->_current_parse_line = 0;
$this->properties = $this->ParseSomeLines('');
if ( isset($this->properties['VCALENDAR'][0]['INSIDE']) ) {
foreach ( $this->properties['VCALENDAR'][0]['INSIDE'] AS $k => $v ) {
if ( $v == 'VTIMEZONE' ) continue;
$this->type = $v;
break;
}
}
}
function RFC2445ContentUnescape( $escaped ) {
deprecated( 'RFC2445ContentUnescape' );
$unescaped = str_replace( '\\n', "\n", $escaped);
$unescaped = str_replace( '\\N', "\n", $unescaped);
$unescaped = preg_replace( "/\\\\([,;:\"\\\\])/", '$1', $unescaped);
return $unescaped;
}
function DealWithTimeZones() {
global $c;
deprecated('iCalendar::DealWithTimeZones' );
$tzid = $this->Get('TZID');
if ( isset($c->save_time_zone_defs) && $c->save_time_zone_defs ) {
$qry = new AwlQuery( "SELECT tz_locn FROM time_zone WHERE tz_id = ?;", $tzid );
if ( $qry->Exec('iCalendar') && $qry->rows() == 1 ) {
$row = $qry->Fetch();
$this->tz_locn = $row->tz_locn;
}
dbg_error_log( 'iCalendar', " TZCrap2: TZID '%s', DB Rows=%d, Location '%s'", $tzid, $qry->rows(), $this->tz_locn );
}
if ( (!isset($this->tz_locn) || $this->tz_locn == '') && $tzid != '' ) {
$tzname = preg_replace('#^(.*[^a-z])?([a-z]+/[a-z]+)$#i','$1',$tzid );
if ( preg_match( '#\S+/\S+#', $tzname) ) {
$this->tz_locn = $tzname;
}
dbg_error_log( 'iCalendar', " TZCrap3: TZID '%s', Location '%s', Perhaps: %s", $tzid, $this->tz_locn, $tzname );
}
if ( $tzid != '' && isset($c->save_time_zone_defs) && $c->save_time_zone_defs && $qry->rows() != 1 && isset($this->vtimezone) && $this->vtimezone != "" ) {
$qry2 = new AwlQuery( "INSERT INTO time_zone (tz_id, tz_locn, tz_spec) VALUES( ?, ?, ? );",
$tzid, $this->tz_locn, $this->vtimezone );
$qry2->Exec('iCalendar');
}
if ( (!isset($this->tz_locn) || $this->tz_locn == "") && isset($c->local_tzid) ) {
$this->tz_locn = $c->local_tzid;
}
}
function Get( $key ) {
deprecated('iCalendar::Get' );
if ( strtoupper($key) == 'TZID' ) {
dbg_error_log( 'iCalendar', " Get(TZID): TZID '%s', Location '%s'", (isset($this->tzid)?$this->tzid:"[not set]"), $this->tz_locn );
if ( isset($this->tzid) ) return $this->tzid;
return $this->tz_locn;
}
$component =& $this->component->FirstNonTimezone();
if ( $component === false ) return null;
return $component->GetPValue(strtoupper($key));
}
function Set( $key, $value ) {
deprecated('iCalendar::Set' );
if ( $value == "" ) return;
$key = strtoupper($key);
$property = new iCalProp();
$property->Name($key);
$property->Value($value);
if (isset($this->component->rendered) ) unset( $this->component->rendered );
$component =& $this->component->FirstNonTimezone();
$component->SetProperties( array($property), $key);
return $this->Get($key);
}
function Add( $key, $value, $parameters = null ) {
deprecated('iCalendar::Add' );
if ( $value == "" ) return;
$key = strtoupper($key);
$property = new iCalProp();
$property->Name($key);
$property->Value($value);
if ( isset($parameters) && is_array($parameters) ) {
$property->parameters = $parameters;
}
$component =& $this->component->FirstNonTimezone();
$component->AddProperty($property);
if (isset($this->component->rendered) ) unset( $this->component->rendered );
}
function GetComponents( $type = null, $normal_match = true ) {
deprecated('iCalendar::GetComponents' );
return $this->component->GetComponents($type,$normal_match);
}
function ClearComponents( $type = null ) {
deprecated('iCalendar::ClearComponents' );
$this->component->ClearComponents($type);
}
function SetComponents( $new_component, $type = null ) {
deprecated('iCalendar::SetComponents' );
$this->component->SetComponents( $new_component, $type );
}
function AddComponent( $new_component ) {
deprecated('iCalendar::AddComponent' );
$this->component->AddComponent($new_component);
}
function MaskComponents( $keep ) {
deprecated('iCalendar::MaskComponents' );
$this->component->MaskComponents($keep);
}
static function HttpDateFormat() {
deprecated('iCalendar::HttpDateFormat() use AwlDBDialect::HttpDateFormat instead.' );
return "'Dy, DD Mon IYYY HH24:MI:SS \"GMT\"'";
}
static function SqlDateFormat() {
deprecated('iCalendar::SqlDateFormat() use AwlDatabase::SqlDateFormat instead.' );
return "'YYYYMMDD\"T\"HH24MISS'";
}
static function SqlUTCFormat() {
deprecated('iCalendar::SqlUTCFormat() use AwlDatabase::SqlUTCFormat instead.' );
return "'YYYYMMDD\"T\"HH24MISS\"Z\"'";
}
static function SqlDurationFormat() {
deprecated('iCalendar::SqlDurationFormat() use AwlDatabase::SqlDurationFormat instead.' );
return "'\"PT\"HH24\"H\"MI\"M\"'";
}
function RFC2445ContentEscape( $name, $value ) {
deprecated('iCalendar::RFC2445ContentEscape' );
$property = preg_replace( '/[;].*$/', '', $name );
switch( $property ) {
case 'ATTACH': case 'GEO': case 'PERCENT-COMPLETE': case 'PRIORITY':
case 'COMPLETED': case 'DTEND': case 'DUE': case 'DTSTART':
case 'DURATION': case 'FREEBUSY': case 'TZOFFSETFROM': case 'TZOFFSETTO':
case 'TZURL': case 'ATTENDEE': case 'ORGANIZER': case 'RECURRENCE-ID':
case 'URL': case 'EXDATE': case 'EXRULE': case 'RDATE':
case 'RRULE': case 'REPEAT': case 'TRIGGER': case 'CREATED':
case 'DTSTAMP': case 'LAST-MODIFIED': case 'SEQUENCE':
break;
default:
$value = str_replace( '\\', '\\\\', $value);
$value = preg_replace( '/\r?\n/', '\\n', $value);
$value = preg_replace( "/([,;:\"])/", '\\\\$1', $value);
}
$result = preg_replace( '/(.{72})/u', '$1'."\r\n ", $name.':'.$value ) ."\r\n";
return $result;
}
function ExtractSubComponent( $component, $type, $count=9999 ) {
deprecated('iCalendar::ExtractSubComponent' );
$answer = array();
$intags = false;
$start = "BEGIN:$type";
$finish = "END:$type";
dbg_error_log( 'iCalendar', ":ExtractSubComponent: Looking for %d subsets of type %s", $count, $type );
reset($component);
foreach( $component AS $k => $v ) {
if ( !$intags && $v == $start ) {
$answer[] = $v;
$intags = true;
}
else if ( $intags && $v == $finish ) {
$answer[] = $v;
$intags = false;
}
else if ( $intags ) {
$answer[] = $v;
}
}
return $answer;
}
function ExtractProperty( $component, $type, $count=9999 ) {
deprecated('iCalendar::ExtractProperty' );
$answer = array();
dbg_error_log( 'iCalendar', ":ExtractProperty: Looking for %d properties of type %s", $count, $type );
reset($component);
foreach( $component AS $k => $v ) {
if ( preg_match( "/$type"."[;:]/i", $v ) ) {
$answer[] = new iCalProp($v);
dbg_error_log( 'iCalendar', ":ExtractProperty: Found property %s", $type );
if ( --$count < 1 ) return $answer;
}
}
return $answer;
}
function ApplyFilter( $filter, $value ) {
deprecated('iCalendar::ApplyFilter' );
foreach( $filter AS $k => $v ) {
$tag = $v->GetNSTag();
$value_type = gettype($value);
$value_defined = (isset($value) && $value_type == 'string') || ($value_type == 'array' && count($value) > 0 );
if ( $tag == 'urn:ietf:params:xml:ns:caldav:is-not-defined' && $value_defined ) {
dbg_error_log( 'iCalendar', ":ApplyFilter: Value is set ('%s'), want unset, for filter %s", count($value), $tag );
return false;
}
elseif ( $tag == 'urn:ietf:params:xml:ns:caldav:is-defined' && !$value_defined ) {
dbg_error_log( 'iCalendar', ":ApplyFilter: Want value, but it is not set for filter %s", $tag );
return false;
}
else {
dbg_error_log( 'iCalendar', ":ApplyFilter: Have values for '%s' filter", $tag );
switch( $tag ) {
case 'urn:ietf:params:xml:ns:caldav:time-range':
break;
case 'urn:ietf:params:xml:ns:caldav:text-match':
$search = $v->GetContent();
if ( !is_string($value) ) {
if ( is_array($value) ) {
$match = false;
foreach( $value AS $k1 => $v1 ) {
if ( $match = $v1->TextMatch($search)) break;
}
}
else {
dbg_error_log( 'iCalendar', ":ApplyFilter: TEXT-MATCH will only work on strings or arrays of iCalProp. %s unsupported", gettype($value) );
return true;
}
}
else {
$match = (stristr( $value, $search ) !== false);
}
$negate = $v->GetAttribute("negate-condition");
if ( isset($negate) && strtolower($negate) == "yes" ) $match = !$match;
return $match;
break;
case 'urn:ietf:params:xml:ns:caldav:comp-filter':
$subfilter = $v->GetContent();
$component = $this->ExtractSubComponent($value,$v->GetAttribute("name"));
if ( ! $this->ApplyFilter($subfilter,$component) ) return false;
break;
case 'urn:ietf:params:xml:ns:caldav:prop-filter':
$subfilter = $v->GetContent();
$properties = $this->ExtractProperty($value,$v->GetAttribute("name"));
if ( ! $this->ApplyFilter($subfilter,$properties) ) return false;
break;
case 'urn:ietf:params:xml:ns:caldav:param-filter':
$subfilter = $v->GetContent();
$parameter = $this->ExtractParameter($value,$v->GetAttribute("NAME"));
if ( ! $this->ApplyFilter($subfilter,$parameter) ) return false;
break;
}
}
}
return true;
}
function TestFilter( $filters ) {
deprecated('iCalendar::TestFilter' );
foreach( $filters AS $k => $v ) {
$tag = $v->GetNSTag();
$name = $v->GetAttribute("name");
$filter = $v->GetContent();
if ( $tag == "urn:ietf:params:xml:ns:caldav:prop-filter" ) {
$value = $this->ExtractProperty($this->lines,$name);
}
else {
$value = $this->ExtractSubComponent($this->lines,$v->GetAttribute("name"));
}
if ( count($value) == 0 ) unset($value);
if ( ! $this->ApplyFilter($filter,$value) ) return false;
}
return true;
}
static function iCalHeader() {
deprecated('iCalendar::iCalHeader' );
return <<<EOTXT
BEGIN:VCALENDAR\r
VERSION:2.0\r
PRODID:-//davical.org//NONSGML AWL Calendar//EN\r
EOTXT;
}
static function iCalFooter() {
deprecated('iCalendar::iCalFooter' );
return "END:VCALENDAR\r\n";
}
function Render( $as_calendar = true, $type = null, $restrict_properties = null ) {
deprecated('iCalendar::Render' );
if ( $as_calendar ) {
return $this->component->Render();
}
else {
$components = $this->component->GetComponents($type);
$rendered = "";
foreach( $components AS $k => $v ) {
$rendered .= $v->Render($restrict_properties);
}
return $rendered;
}
}
}