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
|
<?php
/**
* The Turba_Driver:: class provides a common abstracted interface to the
* various directory search drivers. It includes functions for searching,
* adding, removing, and modifying directory entries.
*
* $Horde: turba/lib/Driver.php,v 1.57.2.32 2006/10/31 17:05:45 jan Exp $
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jon Parise <jon@csh.rit.edu>
* @package Turba
*/
class Turba_Driver {
/**
* The internal name of this source.
*
* @var string
*/
var $name;
/**
* The symbolic title of this source.
*
* @var string
*/
var $title;
/**
* Hash describing the mapping between Turba attributes and
* driver-specific fields.
*
* @var array
*/
var $map = array();
/**
* Hash with all tabs and their fields.
*
* @var array
*/
var $tabs = array();
/**
* List of all fields that can be accessed in the backend (excludes
* composite attributes, etc.).
*
* @var array
*/
var $fields = array();
/**
* Array of fields that must match exactly.
*
* @var array
*/
var $strict = array();
/**
* Whether this source stores one address book, or multiple private address
* books.
*
* @var boolean
*/
var $public = false;
/**
* Hash holding the driver's additional parameters.
*
* @var array
*/
var $_params = array();
/**
* What can this backend do?
*
* @var array
*/
var $_capabilities = array();
/**
* Horde_Share object for this source.
*
* @var Horde_Share
*/
var $share;
/**
* Are Horde_Shares enabled for this source?
*
* @var boolean
*/
var $usingShares;
/**
* Constructs a new Turba_Driver object.
*
* @param array $params Hash containing additional configuration
* parameters.
*/
function Turba_Driver($params)
{
$this->_params = $params;
}
/**
* Returns the current driver's additional parameters.
*
* @return array Hash containing the driver's additional parameters.
*/
function getParams()
{
return $this->_params;
}
/**
* Checks if this backend has a certain capability.
*
* @param string $capability The capability to check for.
*
* @return boolean Supported or not.
*/
function hasCapability($capability)
{
return !empty($this->_capabilities[$capability]);
}
/**
* Translates the keys of the first hash from the generalized Turba
* attributes to the driver-specific fields. The translation is based on
* the contents of $this->map. This ignores composite fields.
*
* @param array $hash Hash using Turba keys.
*
* @return array Translated version of $hash.
*/
function toDriverKeys($hash)
{
$fields = array();
foreach ($hash as $key => $val) {
if (isset($this->map[$key]) && !is_array($this->map[$key])) {
$fields[$this->map[$key]] = $val;
}
}
return $fields;
}
/**
* Takes a hash of Turba key => search value and return a (possibly
* nested) array, using backend attribute names, that can be turned into a
* search by the driver. The translation is based on the contents of
* $this->map, and includes nested OR searches for composite fields.
*
* @param array $hash Hash of criteria using Turba keys.
* @param string $search_type OR search or AND search?
* @param array $strict Fields that must be matched exactly.
*
* @return array An array of search criteria.
*/
function makeSearch($criteria, $search_type, $strict)
{
$search = array();
$strict_search = array();
$search_terms = array();
$subsearch = array();
$temp = '';
$lastChar = '\"';
$glue = '';
foreach ($criteria as $key => $val) {
if (isset($this->map[$key])) {
if (is_array($this->map[$key])) {
/* Composite field, break out the search terms. */
$parts = explode(' ', $val);
if (count($parts) > 1) {
/* Only parse if there was more than 1 search term and
* 'AND' the cumulitive subsearches. */
for ($i = 0; $i < count($parts); $i++) {
$term = $parts[$i];
$firstChar = substr($term, 0, 1);
if ($firstChar =="\"") {
$temp = substr($term, 1, strlen($term) - 1);
$done = false;
while (!$done && $i < count($parts) - 1) {
$lastChar = substr($parts[$i + 1], -1);
if ($lastChar =="\"") {
$temp .= ' ' . substr($parts[$i + 1], 0, -1);
$done = true;
$i++;
} else {
$temp .= ' ' . $parts[$i + 1];
$i++;
}
}
$search_terms[] = $temp;
} else {
$search_terms[] = $term;
}
}
$glue = 'AND';
} else {
/* If only one search term, use original input and
'OR' the searces since we're only looking for 1
term in any of the composite fields. */
$search_terms[0] = $val;
$glue = 'OR';
}
foreach ($this->map[$key]['fields'] as $field) {
$field = $this->toDriver($field);
if (!empty($strict[$field])) {
/* For strict matches, use the original search
* vals. */
$strict_search[] = array('field' => $field,
'op' => '=',
'test' => $val);
} else {
/* Create a subsearch for each individual search
* term. */
if (count($search_terms) > 1) {
/* Build the 'OR' search for each search term
* on this field. */
$atomsearch = array();
for ($i = 0; $i < count($search_terms); $i++) {
$atomsearch[] = array('field' => $field,
'op' => 'LIKE',
'test' => $search_terms[$i]);
}
$subsearch[] = array('OR' => $atomsearch);
unset($atomsearch);
$glue = 'AND';
} else {
/* $parts may have more than one element, but
* if they are all quoted we will only have 1
* $subsearch. */
$subsearch[] = array('field' => $field,
'op' => 'LIKE',
'test' => $search_terms[0]);
$glue = 'OR';
}
}
}
if (count($subsearch)) {
$search[] = array($glue => $subsearch);
}
} else {
/* Not a composite field. */
if (!empty($strict[$this->map[$key]])) {
$strict_search[] = array('field' => $this->map[$key],
'op' => '=',
'test' => $val);
} else {
$search[] = array('field' => $this->map[$key],
'op' => 'LIKE',
'test' => $val);
}
}
}
}
if (count($strict_search) && count($search)) {
return array('AND' => array($strict_search,
array($search_type => $search)));
} elseif (count($strict_search)) {
return array('AND' => $strict_search);
} elseif (count($search)) {
return array($search_type => $search);
} else {
return array();
}
}
/**
* Translates a single Turba attribute to the driver-specific
* counterpart. The translation is based on the contents of
* $this->map. This ignores composite fields.
*
* @param string $attribute The Turba attribute to translate.
*
* @return string The driver name for this attribute.
*/
function toDriver($attribute)
{
if (!isset($this->map[$attribute])) {
return null;
}
if (is_array($this->map[$attribute])) {
return $this->map[$attribute]['fields'];
} else {
return $this->map[$attribute];
}
}
/**
* Translates an array of hashes from being keyed on driver-specific
* fields to being keyed on the generalized Turba attributes. The
* translation is based on the contents of $this->map.
*
* @param array $objects Array of hashes using driver-specific keys.
*
* @return array Translated version of $objects.
*/
function toTurbaKeys($objects)
{
$attributes = array();
foreach ($objects as $entry) {
$new_entry = array();
foreach ($this->map as $key => $val) {
if (!is_array($val)) {
$new_entry[$key] = null;
if (isset($entry[$val]) && strlen($entry[$val])) {
$new_entry[$key] = $entry[$val];
}
}
}
$attributes[] = $new_entry;
}
return $attributes;
}
/**
* Searches the source based on the provided criteria.
*
* @todo Allow $criteria to contain the comparison operator (<, =, >,
* 'like') and modify the drivers accordingly.
*
* @param array $search_criteria Hash containing the search criteria.
* @param string $sort_criteria The requested sort order which is passed
* to Turba_List::sort().
* @param string $search_type Do an AND or an OR search (defaults to
* AND).
* @param array $return_fields A list of fields to return; defaults to
* all fields.
* @param array $custom_strict A list of fields that must match exactly.
*
* @return The sorted, filtered list of search results.
*/
function &search($search_criteria, $sort_criteria = 'lastname',
$search_type = 'AND', $sort_direction = 0,
$return_fields = array(), $custom_strict = array())
{
require_once TURBA_BASE . '/lib/List.php';
require_once TURBA_BASE . '/lib/Object.php';
/* If we are not using Horde_Share, enfore the requirement that the
current user must be the owner of the addressbook. */
$strict_fields = array();
if ($this->usingShares) {
$user = $this->share->get('uid');
} else {
$user = Auth::getAuth();
}
$search_criteria['__owner'] = $user;
$strict_fields = array($this->toDriver('__owner') => true);
/* Add any fields that must match exactly for this source to the
* $strict_fields array. */
foreach ($this->strict as $strict_field) {
$strict_fields[$strict_field] = true;
}
foreach ($custom_strict as $strict_field) {
$strict_fields[$this->map[$strict_field]] = true;
}
/* Translate the Turba attributes to driver-specific attributes. */
$fields = $this->makeSearch($search_criteria, $search_type, $strict_fields);
if (count($return_fields)) {
$return_fields_pre = array_unique(array_merge(array('__key', '__type', '__owner', 'name'), $return_fields));
$return_fields = array();
foreach ($return_fields_pre as $field) {
$result = $this->toDriver($field);
if (is_array($result)) {
foreach ($result as $composite_field) {
$composite_result = $this->toDriver($composite_field);
if ($composite_result) {
$return_fields[] = $composite_result;
}
}
} elseif ($result) {
$return_fields[] = $result;
}
}
} else {
$return_fields = array_values($this->fields);
}
/* Retrieve the search results from the driver. */
$objects = $this->_search($fields, $return_fields);
if (is_a($objects, 'PEAR_Error')) {
return $objects;
}
/* Translate the driver-specific fields in the result back to the more
* generalized common Turba attributes using the map. */
$objects = $this->toTurbaKeys($objects);
require_once TURBA_BASE . '/lib/Object.php';
$list = &new Turba_List();
foreach ($objects as $object) {
$done = false;
if (!empty($object['__type']) && ucwords($object['__type']) != 'Object') {
$type = ucwords($object['__type']);
$class = 'Turba_Object_' . $type;
if (!class_exists($class)) {
require_once TURBA_BASE . '/lib/Object/' . $type . '.php';
}
if (class_exists($class)) {
$list->insert(new $class($this, $object));
$done = true;
}
}
if (!$done) {
$list->insert(new Turba_Object($this, $object));
}
}
$list->sort($sort_criteria, $sort_direction);
/* Return the filtered (sorted) results. */
return $list;
}
/**
* Retrieves a set of objects from the source.
*
* @param array $objectIds The unique ids of the objects to retrieve.
*
* @return array The array of retrieved objects (Turba_Objects).
*/
function &getObjects($objectIds)
{
require_once TURBA_BASE . '/lib/Object.php';
$criteria = $this->map['__key'];
$objects = $this->_read($criteria, $objectIds, array_values($this->fields));
if (is_a($objects, 'PEAR_Error')) {
return $objects;
}
if (!is_array($objects)) {
$result = PEAR::raiseError(_("Requested object not found."));
return $result;
}
$results = array();
$objects = $this->toTurbaKeys($objects);
foreach ($objects as $object) {
$done = false;
if (!empty($object['__type']) && ucwords($object['__type']) != 'Object') {
$type = ucwords($object['__type']);
$class = 'Turba_Object_' . $type;
if (!class_exists($class)) {
require_once TURBA_BASE . '/lib/Object/' . $type . '.php';
}
if (class_exists($class)) {
$results[] = &new $class($this, $object);
$done = true;
}
}
if (!$done) {
$results[] = &new Turba_Object($this, $object);
}
}
return $results;
}
/**
* Retrieves one object from the source.
*
* @param string $objectId The unique id of the object to retrieve.
*
* @return Turba_Object The retrieved object.
*/
function &getObject($objectId)
{
$result = &$this->getObjects(array($objectId));
if (is_a($result, 'PEAR_Error')) {
// Fall through.
} elseif (empty($result[0])) {
$result = PEAR::raiseError('No results');
} else {
$result = $result[0];
if (!isset($this->map['__owner'])) {
$result->attributes['__owner'] = Auth::getAuth();
}
}
return $result;
}
/**
* Adds a new entry to the contact source.
*
* @param array $attributes The attributes of the new object to add.
*
* @return mixed The new __key value on success, or a PEAR_Error object
* on failure.
*/
function add($attributes)
{
/* Only set __type and __owner if they are not already set. */
if (!isset($attributes['__type'])) {
$attributes['__type'] = 'Object';
}
if (isset($this->map['__owner']) && !isset($attributes['__owner'])) {
if (strpos($this->name , ':')) {
list($source, $attributes['__owner']) = explode(':', $this->name, 2);
} else {
$attributes['__owner'] = Auth::getAuth();
}
}
/* Get field values before we translate keys so we can use
* them in the history log. */
if (isset($attributes['__owner'])) {
$turbaOwner = $attributes['__owner'];
}
if (!isset($attributes['__uid'])) {
$attributes['__uid'] = $this->generateUID();
}
$key = $attributes['__key'] = $this->_makeKey($this->toDriverKeys($attributes));
$uid = $attributes['__uid'];
$attributes = $this->toDriverKeys($attributes);
$result = $this->_add($attributes);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
/* Log the creation of this item in the history log. */
$history = &Horde_History::singleton();
$history->log('turba:' . (!empty($turbaOwner) ? $turbaOwner : Auth::getAuth()) . ':' . $uid, array('action' => 'add'), true);
return $key;
}
/**
* Deletes the specified entry from the contact source.
*
* @param string $object_id The ID of the object to delete.
*/
function delete($object_id)
{
$object = &$this->getObject($object_id);
if (is_a($object, 'PEAR_Error')) {
return $object;
}
if (!$object->hasPermission(PERMS_DELETE)) {
return PEAR::raiseError(_("Permission denied"));
}
$result = $this->_delete($this->toDriver('__key'), $object_id);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
/* Log the deletion of this item in the history log. */
if ($object->getValue('__uid')) {
$history = &Horde_History::singleton();
$history->log('turba:' . ($object->getValue('__owner') ? $object->getValue('__owner') : Auth::getAuth()) . ':' . $object->getValue('__uid'),
array('action' => 'delete'), true);
}
return true;
}
/**
* Deletes all contacts from an address book.
*
* @param string $sourceName The identifier of the address book to
* delete. If omitted, will clear the current
* user's 'default' address book for this source
* type.
*
* @return mixed True on success, PEAR_Error on failure.
*/
function deleteAll($sourceName = '')
{
if (!$this->hasCapability('delete_all')) {
return PEAR::raiseError('Not supported');
} else {
return $this->_deleteAll($sourceName);
}
}
/**
* Modifies an existing entry in the contact source.
*
* @param Turba_Object $object The object to update.
*
* @return string The object id, possibly updated.
*/
function save($object)
{
$attributes = $this->toDriverKeys($object->getAttributes());
$key = $this->toDriverKeys(array('__key' => $object->getValue('__key')));
list($object_key, $object_id) = each($key);
$object_id = $this->_save($object_key, $object_id, $attributes);
if (is_a($object_id, 'PEAR_Error')) {
return $object_id;
}
/* Log the modification of this item in the history log. */
if ($object->getValue('__uid')) {
$history = &Horde_History::singleton();
$history->log('turba:' . ($object->getValue('__owner') ? $object->getValue('__owner') : Auth::getAuth()) . ':' . $object->getValue('__uid'),
array('action' => 'modify'), true);
}
return $object_id;
}
/**
* Returns the number of contacts of the current user in this address book.
*
* @return integer The number of contacts that the user owns.
*/
function countContacts()
{
static $count;
if (!isset($count)) {
$count = $this->_search(array('AND' => array(array('field' => $this->toDriver('__owner'), 'op' => '=', 'test' => Auth::getAuth()))), array($this->toDriver('__key')));
if (is_a($count, 'PEAR_Error')) {
return $count;
}
$count = count($count);
}
return $count;
}
/**
* Returns the criteria available for this source except '__key'.
*
* @return array An array containing the criteria.
*/
function getCriteria()
{
$criteria = $this->map;
unset($criteria['__key']);
return $criteria;
}
/**
* Returns all non-composite fields for this source. Useful for importing
* and exporting data, etc.
*
* @return array The field list.
*/
function getFields()
{
return array_flip($this->fields);
}
/**
* Generates a universal/unique identifier for a contact. This is NOT
* something that we expect to be able to parse into an addressbook and a
* contactId.
*
* @return string A nice unique string (should be 255 chars or less).
*/
function generateUID()
{
return date('YmdHis') . '.' .
substr(base_convert(microtime(), 10, 36), -16) .
'@' . $GLOBALS['conf']['server']['name'];
}
/**
* Exports a given Turba_Object as an iCalendar vCard.
*
* @param Turba_Object $object A Turba_Object.
* @param string $version The vcard version to produce.
*
* @return Horde_iCalendar_vcard A Horde_iCalendar_vcard object.
*/
function tovCard($object, $version = '2.1')
{
require_once 'Horde/iCalendar/vcard.php';
$hash = $object->getAttributes();
$vcard = &new Horde_iCalendar_vcard();
$formattedname = false;
foreach ($hash as $key => $val) {
switch ($key) {
case 'name':
$vcard->setAttribute('FN', $val);
$formattedname = true;
break;
case 'nickname':
case 'alias':
$vcard->setAttribute('NICKNAME', $val);
break;
case 'homePhone':
if ($version == '2.1') {
$vcard->setAttribute('TEL', $val, array('HOME' => null));
} else {
$vcard->setAttribute('TEL', $val, array('TYPE'=>'HOME'));
}
break;
case 'workPhone':
if ($version == '2.1') {
$vcard->setAttribute('TEL', $val, array('WORK' => null));
} else {
$vcard->setAttribute('TEL', $val, array('TYPE'=>'WORK'));
}
break;
case 'cellPhone':
if ($version == '2.1') {
$vcard->setAttribute('TEL', $val, array('CELL' => null));
} else {
$vcard->setAttribute('TEL', $val, array('TYPE'=>'CELL'));
}
break;
case 'fax':
if ($version == '2.1') {
$vcard->setAttribute('TEL', $val, array('FAX' => null));
} else {
$vcard->setAttribute('TEL', $val, array('TYPE'=>'FAX'));
}
break;
case 'email':
$vcard->setAttribute('EMAIL', Horde_iCalendar_vcard::getBareEmail($val));
break;
case 'title':
$vcard->setAttribute('TITLE', $val);
break;
case 'notes':
$vcard->setAttribute('NOTE', $val);
break;
case 'website':
$vcard->setAttribute('URL', $val);
break;
case 'birthday':
$vcard->setAttribute('BDAY', $val);
break;
}
}
// No explicit firstname/lastname in data source: we have to guess.
if (!isset($this->map['lastname'])) {
$i = strpos($hash['name'], ',');
if (is_int($i)) {
// Assume Last, First
$hash['lastname'] = String::substr($hash['name'], 0, $i);
$hash['firstname'] = trim(String::substr($hash['name'], $i + 1));
} elseif (is_int(strpos($hash['name'], ' '))) {
// Assume everything after last space as lastname
$i = strrpos($hash['name'], ' ');
$hash['lastname'] = trim(String::substr($hash['name'], $i + 1));
$hash['firstname'] = String::substr($hash['name'], 0, $i);
} else {
$hash['lastname'] = $hash['name'];
$hash['fistname'] = '';
}
}
$a = array(
VCARD_N_FAMILY => isset($hash['lastname']) ? $hash['lastname'] : '',
VCARD_N_GIVEN => isset($hash['firstname']) ? $hash['firstname'] : '',
VCARD_N_ADDL => isset($hash['initials']) ? $hash['initials'] : '',
VCARD_N_PREFIX => isset($hash['salutation']) ? $hash['salutation'] : '',
VCARD_N_SUFFIX => '',
);
$vcard->setAttribute('N', implode(';', $a), array(), false, $a);
if (!$formattedname) {
if (empty($hash['firstname'])) {
$vcard->setAttribute('FN', $hash['lastname']);
} else {
$vcard->setAttribute('FN', $hash['firstname'] . ' '
. $hash['lastname']);
}
}
/* We can't know if this particular turba source uses a single Address
* field or multiple for street/city/province/postcode/country. Try to
* deal with both. */
if (isset($hash['homeAddress']) && !isset($hash['homeStreet'])) {
$hash['homeStreet'] = $hash['homeAddress'];
}
$a = array(
VCARD_ADR_POB => '',
VCARD_ADR_EXTEND => '',
VCARD_ADR_STREET => isset($hash['homeStreet']) ? $hash['homeStreet'] : '',
VCARD_ADR_LOCALITY => isset($hash['homeCity']) ? $hash['homeCity'] : '',
VCARD_ADR_REGION => isset($hash['homeProvince']) ? $hash['homeProvince'] : '',
VCARD_ADR_POSTCODE => isset($hash['homePostalCode']) ? $hash['homePostalCode'] : '',
VCARD_ADR_COUNTRY => isset($hash['homeCountry']) ? $hash['homeCountry'] : '',
);
if ($version == '2.1') {
$vcard->setAttribute('ADR', implode(';', $a), array('HOME' => null), true, $a);
} else {
$vcard->setAttribute('ADR', implode(';', $a), array('TYPE' => 'HOME'), true, $a);
}
$a = array(0 => isset($hash['company']) ? $hash['company'] : '',
1 => isset($hash['department']) ? $hash['department'] : '');
$vcard->setAttribute('ORG', implode(';', $a), array(), false, $a);
if (isset($hash['workAddress']) && !isset($hash['workStreet'])) {
$hash['workStreet'] = $hash['workAddress'];
}
$a = array(
VCARD_ADR_POB => '',
VCARD_ADR_EXTEND => '',
VCARD_ADR_STREET => isset($hash['workStreet']) ? $hash['workStreet'] : '',
VCARD_ADR_LOCALITY => isset($hash['workCity']) ? $hash['workCity'] : '',
VCARD_ADR_REGION => isset($hash['workProvince']) ? $hash['workProvince'] : '',
VCARD_ADR_POSTCODE => isset($hash['workPostalCode']) ? $hash['workPostalCode'] : '',
VCARD_ADR_COUNTRY => isset($hash['workCountry']) ? $hash['workCountry'] : '',
);
if ($version == '2.1') {
$vcard->setAttribute('ADR', implode(';', $a), array('WORK' => null), true, $a);
} else {
$vcard->setAttribute('ADR', implode(';', $a), array('TYPE' => 'WORK'), true, $a);
}
return $vcard;
}
/**
* Static function to convert a Horde_iCalendar_vcard object into a Turba
* Object Hash with Turba attributes suitable as a parameter for add().
*
* @see add()
*
* @param Horde_iCalendar_vcard $vcard The Horde_iCalendar_vcard object
* to parse.
*
* @return array A Turba attribute hash.
*/
function toHash(&$vcard)
{
if (!is_a($vcard, 'Horde_iCalendar_vcard')) {
return PEAR::raiseError('Invalid parameter for Turba_Driver::toHash(), expected Horde_iCalendar_vcard object.');
}
$hash = array();
$attr = $vcard->getAllAttributes();
foreach ($attr as $item) {
if (empty($item['value'])) {
continue;
}
switch ($item['name']) {
case 'FN':
if (isset($this->fields['name'])) {
$hash['name'] = $item['value'];
}
break;
case 'N':
$name = $item['values'];
$hash['lastname'] = $name[VCARD_N_FAMILY];
$hash['firstname'] = $name[VCARD_N_GIVEN];
break;
case 'NICKNAME':
$hash['nickname'] = $item['value'];
$hash['alias'] = $item['value'];
break;
// We use LABEL but also support ADR.
case 'LABEL':
if (isset($item['params']['HOME'])) {
$hash['homeAddress'] = $item['value'];
} elseif (isset($item['params']['WORK'])) {
$hash['workAddress'] = $item['value'];
} else {
$hash['workAddress'] = $item['value'];
}
break;
// For vCard 3.0.
case 'ADR':
if (isset($item['params']['TYPE'])) {
if (!is_array($item['params']['TYPE'])) {
$item['params']['TYPE'] = array($item['params']['TYPE']);
}
} else {
$item['params']['TYPE'] = array();
if (isset($item['params']['WORK'])) {
$item['params']['TYPE'][] = 'WORK';
}
if (isset($item['params']['HOME'])) {
$item['params']['TYPE'][] = 'HOME';
}
}
$address = $item['values'];
foreach ($item['params']['TYPE'] as $adr) {
switch (String::upper($adr)) {
case 'HOME':
$prefix = 'home';
break;
case 'WORK':
$prefix = 'work';
break;
default:
$prefix = null;
}
if ($prefix) {
$hash[$prefix . 'Address'] = '';
if (!empty($address[VCARD_ADR_STREET])) {
$hash[$prefix . 'Street'] = $address[VCARD_ADR_STREET];
$hash[$prefix . 'Address'] .= $hash[$prefix . 'Street'] . "\n";
}
if (!empty($address[VCARD_ADR_LOCALITY])) {
$hash[$prefix . 'City'] = $address[VCARD_ADR_LOCALITY];
$hash[$prefix . 'Address'] .= $hash[$prefix . 'City'];
}
if (!empty($address[VCARD_ADR_REGION])) {
$hash[$prefix . 'Province'] = $address[VCARD_ADR_REGION];
$hash[$prefix . 'Address'] .= ', ' . $hash[$prefix . 'Province'];
}
if (!empty($address[VCARD_ADR_POSTCODE])) {
$hash[$prefix . 'PostalCode'] = $address[VCARD_ADR_POSTCODE];
$hash[$prefix . 'Address'] .= ' ' . $hash[$prefix . 'PostalCode'];
}
if (!empty($address[VCARD_ADR_COUNTRY])) {
$hash[$prefix . 'Country'] = $address[VCARD_ADR_COUNTRY];
$hash[$prefix . 'Address'] .= "\n" . $hash[$prefix . 'Country'];
}
$hash[$prefix . 'Address'] = trim($hash[$prefix . 'Address']);
}
}
break;
case 'TEL':
if (isset($item['params']['FAX'])) {
$hash['fax'] = $item['value'];
} elseif (isset($item['params']['TYPE'])) {
if (!is_array($item['params']['TYPE'])) {
$item['params']['TYPE'] = array($item['params']['TYPE']);
}
// For vCard 3.0.
foreach ($item['params']['TYPE'] as $tel) {
if (String::upper($tel) == 'WORK') {
$hash['workPhone'] = $item['value'];
} elseif (String::upper($tel) == 'HOME') {
$hash['homePhone'] = $item['value'];
} elseif (String::upper($tel) == 'CELL') {
$hash['cellPhone'] = $item['value'];
} elseif (String::upper($tel) == 'FAX') {
$hash['fax'] = $item['value'];
}
}
} else {
if (isset($item['params']['CELL'])) {
$hash['cellPhone'] = $item['value'];
} elseif (isset($item['params']['HOME'])) {
$hash['homePhone'] = $item['value'];
} elseif (isset($item['params']['WORK'])) {
$hash['workPhone'] = $item['value'];
} else {
$hash['homePhone'] = $item['value'];
}
}
break;
case 'EMAIL':
if (isset($item['params']['PREF']) || !isset($hash['email'])) {
$hash['email'] = Horde_iCalendar_vcard::getBareEmail($item['value']);
}
break;
case 'TITLE':
$hash['title'] = $item['value'];
break;
case 'ORG':
// The VCARD 2.1 specification requires the presence of two
// SEMI-COLON separated fields: Organizational Name and
// Organizational Unit. Additional fields are optional.
$hash['company'] = !empty($item['values'][0]) ? $item['values'][0] : '';
$hash['department'] = !empty($item['values'][1]) ? $item['values'][1] : '';
break;
case 'NOTE':
$hash['notes'] = $item['value'];
break;
case 'URL':
$hash['website'] = $item['value'];
break;
case 'BDAY':
$hash['birthday'] = $item['value']['year'] . '-' . $item['value']['month'] . '-' . $item['value']['mday'];
break;
}
}
/* Ensure we have a valid name field. */
if (isset($this->fields['name']) && empty($hash['name'])) {
$hash['name'] = $hash['firstname'] . ' ' . $hash['lastname'];
if (trim($hash['name']) === '') {
$hash['name'] = $vcard->getAttributeDefault('FN');
}
}
if (isset($this->fields['lastname']) && empty($hash['lastname'])) {
$hash['lastname'] = $vcard->getAttributeDefault('FN');
}
return $hash;
}
/**
* Checks if the current user has the requested permissions on this
* source.
*
* @param integer $perm The permission to check for.
*
* @return boolean True if the user has permission, otherwise false.
*/
function hasPermission($perm)
{
if ($this->usingShares) {
return $this->share->hasPermission(Auth::getAuth(), $perm);
} else {
return Turba::hasPermission($this->name, 'source', $perm);
}
}
/**
* Creates an object key for a new object.
*
* @param array $attributes The attributes (in driver keys) of the
* object being added.
*
* @return string A unique ID for the new object.
*/
function _makeKey($attributes)
{
return md5(mt_rand());
}
/**
* Static method to construct Turba_Driver objects. Use this so that we
* can return PEAR_Error objects if anything goes wrong.
*
* Should only be called by Turba_Driver::singleton().
*
* @see Turba_Driver::singleton()
* @access private
*
* @param string $name String containing the internal name of this
* source.
* @param array $config Array containing the configuration information for
* this source.
*/
function &factory($name, $config)
{
$class = basename($config['type']);
include_once dirname(__FILE__) . '/Driver/' . $class . '.php';
$class = 'Turba_Driver_' . $class;
if (class_exists($class)) {
$driver = &new $class($config['params']);
} else {
$driver = PEAR::raiseError(sprintf(_("Unable to load the definition of %s."), $class));
return $driver;
}
$result = $driver->_init();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
/* Store name and title. */
$driver->name = $name;
$driver->title = $config['title'];
/* Store and translate the map at the Source level. */
$driver->map = $config['map'];
foreach ($driver->map as $key => $val) {
if (!is_array($val)) {
$driver->fields[$key] = $val;
}
}
/* Store tabs. */
if (isset($config['tabs'])) {
$driver->tabs = $config['tabs'];
}
/* Store strict fields. */
if (isset($config['strict'])) {
$driver->strict = $config['strict'];
}
/* Get a share object if we need it. */
if (!empty($config['use_shares'])) {
if ((strpos($name, ':') === false)) {
if (!$GLOBALS['turba_shares']->exists($name . ':' . Auth::getAuth())) {
/* User's 'default' share for this source type not present */
$params = array('sourceType' => $name);
$share = &Turba::createShare($params, true);
if (is_a($share, 'PEAR_Error')) {
return $share;
}
}
$name .= ':' . Auth::getAuth();
}
$driver->share = &$GLOBALS['turba_shares']->getShare($name);
if (is_a($driver->share, 'PEAR_Error')) {
return $driver->share;
}
$driver->usingShares = true;
} else {
$driver->usingShares = false;
}
return $driver;
}
/**
* Attempts to return a reference to a concrete Turba_Driver instance
* based on the $config array. It will only create a new instance if no
* Turba_Driver instance with the same parameters currently exists.
*
* This method must be invoked as:
* $driver = &Turba_Driver::singleton()
*
* @param string $name String containing the internal name of this
* source.
*
* @return Turba_Driver The concrete Turba_Driver reference, or a
* PEAR_Error on error.
*/
function &singleton($name)
{
static $instances = array();
if (!isset($instances[$name])) {
if (!isset($GLOBALS['cfgSources'][$name])) {
$error = PEAR::raiseError(sprintf(_("The address book \"%s\" does not exist."), $name));
return $error;
}
$instances[$name] = &Turba_Driver::factory($name, $GLOBALS['cfgSources'][$name]);
}
return $instances[$name];
}
}
|