1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00
OwncloudContactsOfficial/lib/contact.php

690 lines
19 KiB
PHP
Raw Normal View History

<?php
/**
* ownCloud - Contact object
*
* @author Thomas Tanghus
* @copyright 2012 Thomas Tanghus (thomas@tanghus.net)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Contacts;
2013-03-29 16:44:14 +01:00
use Sabre\VObject\Property;
/**
* Subclass this class or implement IPIMObject interface for PIM objects
*/
class Contact extends VObject\VCard implements IPIMObject {
const THUMBNAIL_PREFIX = 'contact-thumbnail-';
const THUMBNAIL_SIZE = 28;
/**
* The name of the object type in this case VCARD.
*
* This is used when serializing the object.
*
* @var string
*/
public $name = 'VCARD';
/**
* @brief language object
*
* @var OC_L10N
*/
public static $l10n;
protected $props = array();
2013-03-17 21:32:53 +01:00
/**
* Create a new Contact object
*
* @param AddressBook $parent
* @param AbstractBackend $backend
* @param mixed $data
*/
public function __construct($parent, $backend, $data = null) {
self::$l10n = $parent::$l10n;
//\OCP\Util::writeLog('contacts', __METHOD__ . ' parent: ' . print_r($parent, true) . ', backend: ' . print_r($backend, true) . ', data: ' . print_r($data, true), \OCP\Util::DEBUG);
//\OCP\Util::writeLog('contacts', __METHOD__, \OCP\Util::DEBUG);
$this->props['parent'] = $parent;
$this->props['backend'] = $backend;
2013-03-25 17:10:21 +01:00
$this->props['retrieved'] = false;
$this->props['saved'] = false;
2013-03-12 09:15:40 +01:00
2013-03-17 21:32:53 +01:00
if(!is_null($data)) {
if($data instanceof VObject\VCard) {
foreach($data->children as $child) {
2013-03-17 21:32:53 +01:00
$this->add($child);
}
2013-05-06 01:50:03 +02:00
$this->setRetrieved(true);
2013-03-17 21:32:53 +01:00
} elseif(is_array($data)) {
foreach($data as $key => $value) {
switch($key) {
case 'id':
$this->props['id'] = $value;
break;
case 'lastmodified':
$this->props['lastmodified'] = $value;
break;
case 'uri':
$this->props['uri'] = $value;
break;
case 'carddata':
$this->props['carddata'] = $value;
2013-03-20 11:26:01 +01:00
$this->retrieve();
2013-03-17 21:32:53 +01:00
break;
case 'vcard':
$this->props['vcard'] = $value;
$this->retrieve();
break;
case 'displayname':
case 'fullname':
$this->props['displayname'] = $value;
$this->FN = $value;
2013-03-17 21:32:53 +01:00
break;
}
2013-03-12 09:15:40 +01:00
}
}
2013-03-12 09:15:40 +01:00
}
}
2013-03-16 15:59:23 +01:00
/**
* @return array|null
*/
public function getMetaData() {
if(!$this->hasPermission(\OCP\PERMISSION_READ)) {
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('You do not have permissions to see this contact'), 403);
}
2013-03-16 15:59:23 +01:00
if(!isset($this->props['displayname'])) {
if(!$this->retrieve()) {
\OCP\Util::writeLog('contacts', __METHOD__.' error reading: '.print_r($this->props, true), \OCP\Util::ERROR);
return null;
}
}
return array(
'id' => $this->getId(),
'displayname' => $this->getDisplayName(),
'permissions' => $this->getPermissions(),
'lastmodified' => $this->lastModified(),
'owner' => $this->getOwner(),
'parent' => $this->getParent()->getId(),
2013-03-25 17:10:21 +01:00
'backend' => $this->getBackend()->name,
2013-03-16 15:59:23 +01:00
);
}
/**
* Get a unique key combined of backend name, address book id and contact id.
*
* @return string
*/
public function combinedKey() {
return $this->getBackend()->name . '::' . $this->getParent()->getId() . '::' . $this->getId();
}
/**
* @return string|null
*/
public function getOwner() {
2013-03-12 09:15:40 +01:00
return $this->props['parent']->getOwner();
}
/**
* @return string|null
*/
public function getId() {
2013-03-12 09:15:40 +01:00
return isset($this->props['id']) ? $this->props['id'] : null;
}
/**
* @return string|null
*/
function getDisplayName() {
if(!$this->hasPermission(\OCP\PERMISSION_READ)) {
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('You do not have permissions to see this contact'), 403);
}
return isset($this->props['displayname'])
? $this->props['displayname']
: (isset($this->FN) ? $this->FN : null);
2013-03-12 09:15:40 +01:00
}
/**
* @return string|null
*/
public function getURI() {
return isset($this->props['uri']) ? $this->props['uri'] : null;
}
2013-05-09 05:56:32 +02:00
/**
* @return string|null
* TODO: Cache result.
*/
public function getETag() {
$this->retrieve();
return md5($this->serialize());
}
/**
* If this object is part of a collection return a reference
* to the parent object, otherwise return null.
* @return IPIMObject|null
*/
function getParent() {
return $this->props['parent'];
}
function getBackend() {
return $this->props['backend'];
}
/** CRUDS permissions (Create, Read, Update, Delete, Share)
*
* @return integer
*/
function getPermissions() {
2013-03-16 15:59:23 +01:00
return $this->props['parent']->getPermissions();
}
/**
* @param integer $permission
* @return bool
*/
function hasPermission($permission) {
return $this->getPermissions() & $permission;
}
2013-03-12 20:00:22 +01:00
/**
* Save the address book data to backend
* FIXME
*
* @param array $data
* @return bool
*/
/* public function update(array $data) {
2013-03-12 20:00:22 +01:00
foreach($data as $key => $value) {
switch($key) {
case 'displayname':
$this->addressBookInfo['displayname'] = $value;
break;
case 'description':
$this->addressBookInfo['description'] = $value;
break;
}
}
return $this->props['backend']->updateContact(
$this->getParent()->getId(),
$this->getId(),
$this
);
}
*/
2013-03-12 20:00:22 +01:00
/**
* Delete the data from backend
*
* @return bool
*/
public function delete() {
if(!$this->hasPermission(\OCP\PERMISSION_DELETE)) {
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('You do not have permissions to delete this contact'), 403);
}
2013-03-12 20:00:22 +01:00
return $this->props['backend']->deleteContact(
$this->getParent()->getId(),
$this->getId()
);
}
/**
* Save the contact data to backend
*
* @return bool
*/
2013-03-25 17:10:21 +01:00
public function save($force = false) {
if(!$this->hasPermission(\OCP\PERMISSION_UPDATE)) {
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('You do not have permissions to update this contact'), 403);
}
2013-03-25 17:10:21 +01:00
if($this->isSaved() && !$force) {
\OCP\Util::writeLog('contacts', __METHOD__.' Already saved: ' . print_r($this->props, true), \OCP\Util::DEBUG);
return true;
}
2013-03-20 11:26:01 +01:00
if(isset($this->FN)) {
$this->props['displayname'] = (string)$this->FN;
}
2013-03-12 20:00:22 +01:00
if($this->getId()) {
if(!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_UPDATE)) {
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('The backend for this contact does not support updating it'), 501);
}
if($this->getBackend()
2013-03-25 17:10:21 +01:00
->updateContact(
$this->getParent()->getId(),
$this->getId(),
$this->serialize()
)
) {
$this->props['lastmodified'] = time();
$this->setSaved(true);
return true;
} else {
return false;
}
} else {
2013-03-20 11:26:01 +01:00
//print(__METHOD__.' ' . print_r($this->getParent(), true));
if(!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_CREATE)) {
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('This backend not support adding contacts'), 501);
}
$this->props['id'] = $this->getBackend()->createContact(
2013-03-20 11:26:01 +01:00
$this->getParent()->getId(), $this
);
2013-03-25 17:10:21 +01:00
$this->setSaved(true);
2013-03-17 21:32:53 +01:00
return $this->getId() !== false;
}
}
2013-03-16 15:59:23 +01:00
/**
* Get the data from the backend
2013-03-20 11:26:01 +01:00
* FIXME: Clean this up and make sure the logic is OK.
2013-03-16 15:59:23 +01:00
*/
public function retrieve() {
if($this->isRetrieved() || count($this->children) > 1) {
//\OCP\Util::writeLog('contacts', __METHOD__. ' children', \OCP\Util::DEBUG);
return true;
} else {
2013-03-20 11:26:01 +01:00
$data = null;
2013-03-12 20:00:22 +01:00
if(isset($this->props['vcard'])
&& $this->props['vcard'] instanceof VObject\VCard) {
2013-03-16 15:59:23 +01:00
foreach($this->props['vcard']->children() as $child) {
$this->add($child);
2013-03-20 11:26:01 +01:00
if($child->name === 'FN') {
$this->props['displayname']
= strtr($child->value, array('\,' => ',', '\;' => ';', '\\\\' => '\\'));
}
2013-03-16 15:59:23 +01:00
}
2013-03-25 17:10:21 +01:00
$this->setRetrieved(true);
2013-03-16 15:59:23 +01:00
//$this->children = $this->props['vcard']->children();
2013-03-12 20:00:22 +01:00
unset($this->props['vcard']);
return true;
2013-03-20 11:26:01 +01:00
} elseif(!isset($this->props['carddata'])) {
2013-03-12 20:00:22 +01:00
$result = $this->props['backend']->getContact(
2013-03-25 17:10:21 +01:00
$this->getParent()->getId(),
2013-03-12 20:00:22 +01:00
$this->id
);
if($result) {
2013-03-12 20:00:22 +01:00
if(isset($result['vcard'])
&& $result['vcard'] instanceof VObject\VCard) {
2013-03-16 15:59:23 +01:00
foreach($result['vcard']->children() as $child) {
$this->add($child);
}
2013-03-25 17:10:21 +01:00
$this->setRetrieved(true);
return true;
} elseif(isset($result['carddata'])) {
// Save internal values
$data = $result['carddata'];
$this->props['carddata'] = $result['carddata'];
$this->props['lastmodified'] = $result['lastmodified'];
2013-03-20 11:26:01 +01:00
$this->props['displayname'] = $result['displayname'];
$this->props['permissions'] = $result['permissions'];
} else {
\OCP\Util::writeLog('contacts', __METHOD__
. ' Could not get vcard or carddata: '
. $this->getId()
. print_r($result, true), \OCP\Util::DEBUG);
return false;
}
} else {
\OCP\Util::writeLog('contacts', __METHOD__.' Error getting contact: ' . $this->getId(), \OCP\Util::DEBUG);
}
2013-03-16 15:59:23 +01:00
} elseif(isset($this->props['carddata'])) {
$data = $this->props['carddata'];
//error_log(__METHOD__.' data: '.print_r($data, true));
}
try {
$obj = \Sabre\VObject\Reader::read(
$data,
2013-03-12 09:15:40 +01:00
\Sabre\VObject\Reader::OPTION_IGNORE_INVALID_LINES
);
2013-03-16 15:59:23 +01:00
if($obj) {
foreach($obj->children as $child) {
$this->add($child);
}
2013-03-25 17:10:21 +01:00
$this->setRetrieved(true);
2013-03-16 15:59:23 +01:00
} else {
\OCP\Util::writeLog('contacts', __METHOD__.' Error reading: ' . print_r($data, true), \OCP\Util::DEBUG);
2013-03-16 15:59:23 +01:00
return false;
}
} catch (\Exception $e) {
\OCP\Util::writeLog('contacts', __METHOD__ .
2013-03-25 17:10:21 +01:00
' Error parsing carddata for: ' . $this->getId() . ' ' . $e->getMessage(),
\OCP\Util::ERROR);
return false;
}
}
return true;
}
2013-03-26 12:35:37 +01:00
/**
* Get a property index in the contact by the checksum of its serialized value
*
* @param string $checksum An 8 char m5d checksum.
* @return \Sabre\VObject\Property Property by reference
* @throws An exception with error code 404 if the property is not found.
*/
public function getPropertyIndexByChecksum($checksum) {
$this->retrieve();
$idx = 0;
foreach($this->children as $i => &$property) {
if(substr(md5($property->serialize()), 0, 8) == $checksum ) {
return $idx;
}
$idx += 1;
}
2013-05-22 03:18:55 +02:00
throw new \Exception(self::$l10n->t('Property not found'), 404);
2013-03-26 12:35:37 +01:00
}
/**
2013-03-25 17:10:21 +01:00
* Get a property by the checksum of its serialized value
*
* @param string $checksum An 8 char m5d checksum.
2013-03-25 17:10:21 +01:00
* @return \Sabre\VObject\Property Property by reference
* @throws An exception with error code 404 if the property is not found.
*/
2013-03-25 17:10:21 +01:00
public function getPropertyByChecksum($checksum) {
2013-03-16 15:59:23 +01:00
$this->retrieve();
2013-03-25 17:10:21 +01:00
foreach($this->children as $i => &$property) {
if(substr(md5($property->serialize()), 0, 8) == $checksum ) {
2013-03-25 17:10:21 +01:00
return $property;
}
}
2013-05-18 16:49:02 +02:00
throw new \Exception(self::$l10n->t('Property not found'), 404);
2013-03-25 17:10:21 +01:00
}
/**
* Delete a property by the checksum of its serialized value
* It is up to the caller to call ->save()
*
* @param string $checksum An 8 char m5d checksum.
* @throws @see getPropertyByChecksum
*/
public function unsetPropertyByChecksum($checksum) {
2013-03-26 12:35:37 +01:00
$idx = $this->getPropertyIndexByChecksum($checksum);
unset($this->children[$idx]);
$this->setSaved(false);
2013-03-25 17:10:21 +01:00
}
/**
* Set a property by the checksum of its serialized value
* It is up to the caller to call ->save()
*
* @param string $checksum An 8 char m5d checksum.
* @param string $name Property name
* @param mixed $value
* @param array $parameters
* @throws @see getPropertyByChecksum
* @return string new checksum
*/
public function setPropertyByChecksum($checksum, $name, $value, $parameters=array()) {
if($checksum === 'new') {
$property = Property::create($name);
$this->add($property);
} else {
$property = $this->getPropertyByChecksum($checksum);
}
2013-03-25 17:10:21 +01:00
switch($name) {
case 'EMAIL':
$value = strtolower($value);
$property->setValue($value);
break;
case 'ADR':
if(is_array($value)) {
$property->setParts($value);
} else {
$property->setValue($value);
}
break;
case 'IMPP':
if(is_null($parameters) || !isset($parameters['X-SERVICE-TYPE'])) {
2013-05-18 16:49:02 +02:00
throw new \InvalidArgumentException(self::$l10n->t(' Missing IM parameter for: ') . $name. ' ' . $value, 412);
2013-03-25 17:10:21 +01:00
}
$serviceType = $parameters['X-SERVICE-TYPE'];
if(is_array($serviceType)) {
$serviceType = $serviceType[0];
}
$impp = Utils\Properties::getIMOptions($serviceType);
2013-03-25 17:10:21 +01:00
if(is_null($impp)) {
2013-05-18 16:49:02 +02:00
throw new \UnexpectedValueException(self::$l10n->t('Unknown IM: ') . $serviceType, 415);
2013-03-25 17:10:21 +01:00
}
$value = $impp['protocol'] . ':' . $value;
$property->setValue($value);
break;
default:
2013-04-03 16:55:56 +02:00
\OCP\Util::writeLog('contacts', __METHOD__.' adding: '.$name. ' ' . $value, \OCP\Util::DEBUG);
2013-03-25 17:10:21 +01:00
$property->setValue($value);
break;
}
$this->setParameters($property, $parameters, true);
2013-03-26 12:35:37 +01:00
$this->setSaved(false);
2013-03-25 17:10:21 +01:00
return substr(md5($property->serialize()), 0, 8);
}
/**
* Set a property by the property name.
* It is up to the caller to call ->save()
*
* @param string $name Property name
* @param mixed $value
* @param array $parameters
* @return bool
*/
public function setPropertyByName($name, $value, $parameters=array()) {
// TODO: parameters are ignored for now.
switch($name) {
case 'BDAY':
try {
$date = New \DateTime($value);
} catch(\Exception $e) {
\OCP\Util::writeLog('contacts',
__METHOD__.' DateTime exception: ' . $e->getMessage(),
\OCP\Util::ERROR
);
return false;
}
$value = $date->format('Y-m-d');
$this->BDAY = $value;
2013-03-30 07:29:39 +01:00
$this->BDAY->add('VALUE', 'DATE');
//\OCP\Util::writeLog('contacts', __METHOD__.' BDAY: '.$this->BDAY->serialize(), \OCP\Util::DEBUG);
2013-03-25 17:10:21 +01:00
break;
2013-04-03 16:43:18 +02:00
case 'CATEGORIES':
2013-03-25 17:10:21 +01:00
case 'N':
2013-04-03 16:43:18 +02:00
case 'ORG':
2013-03-25 17:10:21 +01:00
$property = $this->select($name);
if(count($property) === 0) {
2013-04-03 16:43:18 +02:00
$property = \Sabre\VObject\Property::create($name);
2013-03-25 17:10:21 +01:00
$this->add($property);
} else {
// Actually no idea why this works
$property = array_shift($property);
}
if(is_array($value)) {
$property->setParts($value);
} else {
2013-04-03 16:43:18 +02:00
$this->{$name} = $value;
2013-03-25 17:10:21 +01:00
}
break;
default:
2013-04-03 16:43:18 +02:00
\OCP\Util::writeLog('contacts', __METHOD__.' adding: '.$name. ' ' . $value, \OCP\Util::DEBUG);
2013-03-25 17:10:21 +01:00
$this->{$name} = $value;
break;
}
2013-03-26 12:35:37 +01:00
$this->setSaved(false);
2013-03-25 17:10:21 +01:00
return true;
}
protected function setParameters($property, $parameters, $reset = false) {
if(!$parameters) {
return;
}
if($reset) {
$property->parameters = array();
}
//debug('Setting parameters: ' . print_r($parameters, true));
2013-03-25 17:10:21 +01:00
foreach($parameters as $key => $parameter) {
//debug('Adding parameter: ' . $key);
2013-03-25 17:10:21 +01:00
if(is_array($parameter)) {
foreach($parameter as $val) {
if(is_array($val)) {
foreach($val as $val2) {
if(trim($key) && trim($val2)) {
//debug('Adding parameter: '.$key.'=>'.print_r($val2, true));
2013-03-25 17:10:21 +01:00
$property->add($key, strip_tags($val2));
}
}
} else {
if(trim($key) && trim($val)) {
//debug('Adding parameter: '.$key.'=>'.print_r($val, true));
2013-03-25 17:10:21 +01:00
$property->add($key, strip_tags($val));
}
}
}
} else {
if(trim($key) && trim($parameter)) {
//debug('Adding parameter: '.$key.'=>'.print_r($parameter, true));
2013-03-25 17:10:21 +01:00
$property->add($key, strip_tags($parameter));
}
}
}
}
public function lastModified() {
if(!isset($this->props['lastmodified'])) {
2013-03-16 15:59:23 +01:00
$this->retrieve();
}
return isset($this->props['lastmodified'])
2013-03-16 15:59:23 +01:00
? $this->props['lastmodified']
: null;
}
/**
* Merge in data from a multi-dimentional array
*
* NOTE: This is *NOT* tested!
* The data array has this structure:
*
* array(
* 'EMAIL' => array(array('value' => 'johndoe@example.com', 'parameters' = array('TYPE' => array('HOME','VOICE'))))
* );
* @param array $data
*/
2013-04-03 16:43:18 +02:00
public function mergeFromArray(array $data) {
foreach($data as $name => $properties) {
if(in_array($name, array('PHOTO', 'UID'))) {
continue;
}
2013-04-03 16:43:18 +02:00
if(!is_array($properties)) {
\OCP\Util::writeLog('contacts', __METHOD__.' not an array?: ' .$name. ' '.print_r($properties, true), \OCP\Util::DEBUG);
}
if(in_array($name, Utils\Properties::$multi_properties)) {
unset($this->{$name});
}
foreach($properties as $parray) {
2013-04-03 16:43:18 +02:00
\OCP\Util::writeLog('contacts', __METHOD__.' adding: ' .$name. ' '.print_r($parray['value'], true) . ' ' . print_r($parray['parameters'], true), \OCP\Util::DEBUG);
if(in_array($name, Utils\Properties::$multi_properties)) {
// TODO: wrap in try/catch, check return value
$this->setPropertyByChecksum('new', $name, $parray['value'], $parray['parameters']);
} else {
// TODO: Check return value
if(!isset($this->{$name})) {
$this->setPropertyByName($name, $parray['value'], $parray['parameters']);
}
}
}
}
$this->setSaved(false);
2013-04-03 16:43:18 +02:00
return true;
}
public function cacheThumbnail(\OC_Image $image = null, $remove = false) {
2013-04-06 02:09:04 +02:00
$key = self::THUMBNAIL_PREFIX . $this->combinedKey();
//\OC_Cache::remove($key);
if(\OC_Cache::hasKey($key) && $image === null && $remove === false) {
2013-04-06 02:09:04 +02:00
return \OC_Cache::get($key);
}
if($remove) {
\OC_Cache::remove($key);
return false;
}
if(is_null($image)) {
$this->retrieve();
$image = new \OC_Image();
if(!isset($this->PHOTO) && !isset($this->LOGO)) {
return false;
}
if(!$image->loadFromBase64((string)$this->PHOTO)) {
if(!$image->loadFromBase64((string)$this->LOGO)) {
return false;
}
}
}
if(!$image->centerCrop()) {
\OCP\Util::writeLog('contacts',
'thumbnail.php. Couldn\'t crop thumbnail for ID ' . $key,
\OCP\Util::ERROR);
return false;
}
if(!$image->resize(self::THUMBNAIL_SIZE)) {
\OCP\Util::writeLog('contacts',
'thumbnail.php. Couldn\'t resize thumbnail for ID ' . $key,
\OCP\Util::ERROR);
return false;
}
// Cache as base64 for around a month
2013-04-06 02:09:04 +02:00
\OC_Cache::set($key, strval($image), 3000000);
\OCP\Util::writeLog('contacts', 'Caching ' . $key, \OCP\Util::DEBUG);
2013-04-06 02:09:04 +02:00
return \OC_Cache::get($key);
}
2013-03-25 17:10:21 +01:00
public function __set($key, $value) {
parent::__set($key, $value);
$this->setSaved(false);
}
public function __unset($key) {
parent::__unset($key);
if($key === 'PHOTO') {
$this->cacheThumbnail(null, true);
}
2013-03-25 17:10:21 +01:00
$this->setSaved(false);
}
protected function setRetrieved($state) {
$this->props['retrieved'] = $state;
}
protected function isRetrieved() {
return $this->props['retrieved'];
}
protected function setSaved($state) {
$this->props['saved'] = $state;
}
protected function isSaved() {
return $this->props['saved'];
}
}