Correctly handle multi-values when converting VCards to array

This commit is contained in:
Joas Schilling 2016-08-31 12:19:16 +02:00
parent d2a96a69a4
commit d8adb48147
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 43 additions and 1 deletions

View File

@ -26,6 +26,7 @@ namespace OCA\DAV\CardDAV;
use OCP\Constants; use OCP\Constants;
use OCP\IAddressBook; use OCP\IAddressBook;
use Sabre\VObject\Component\VCard; use Sabre\VObject\Component\VCard;
use Sabre\VObject\Property;
use Sabre\VObject\Property\Text; use Sabre\VObject\Property\Text;
use Sabre\VObject\Reader; use Sabre\VObject\Reader;
use Sabre\VObject\UUIDUtil; use Sabre\VObject\UUIDUtil;
@ -214,12 +215,53 @@ class AddressBookImpl implements IAddressBook {
protected function vCard2Array(VCard $vCard) { protected function vCard2Array(VCard $vCard) {
$result = []; $result = [];
foreach ($vCard->children as $property) { foreach ($vCard->children as $property) {
$result[$property->name] = $property->getValue(); /** @var \Sabre\VObject\Property\Unknown $property */
if ($property->name === 'X-SOCIALPROFILE') {
$type = $this->getTypeFromProperty($property);
// Type is the social network, when it's empty we don't need this.
if ($type !== null) {
if (!isset($result[$property->name])) {
$result[$property->name] = [];
}
$result[$property->name][$type] = $property->getValue();
}
// The following properties can be set multiple times
} else if (in_array($property->name, ['CLOUD', 'EMAIL', 'IMPP', 'TEL', 'URL'])) {
if (!isset($result[$property->name])) {
$result[$property->name] = [];
}
$result[$property->name][] = $property->getValue();
} else {
$result[$property->name] = $property->getValue();
}
} }
if ($this->addressBookInfo['principaluri'] === 'principals/system/system' && if ($this->addressBookInfo['principaluri'] === 'principals/system/system' &&
$this->addressBookInfo['uri'] === 'system') { $this->addressBookInfo['uri'] === 'system') {
$result['isLocalSystemBook'] = true; $result['isLocalSystemBook'] = true;
} }
return $result; return $result;
} }
/**
* Get the type of the current property
*
* @param Property $property
* @return null|string
*/
protected function getTypeFromProperty(Property $property) {
$parameters = $property->parameters();
// Type is the social network, when it's empty we don't need this.
if (isset($parameters['TYPE'])) {
/** @var \Sabre\VObject\Parameter $type */
$type = $parameters['TYPE'];
return $type->getValue();
}
return null;
}
} }