. * */ namespace OCA\Contacts; /** * This class manages our addressbooks. */ class Addressbook extends AbstractPIMCollection { /** * @brief language object * * @var OC_L10N */ public static $l10n; protected $_count; /** * @var Backend\AbstractBackend */ protected $backend; /** * An array containing the mandatory: * 'displayname' * 'discription' * 'permissions' * * And the optional: * 'Etag' * 'lastModified' * * @var array */ protected $addressBookInfo; /** * @param AbstractBackend $backend The storage backend * @param array $addressBookInfo */ public function __construct(Backend\AbstractBackend $backend, array $addressBookInfo) { self::$l10n = \OCP\Util::getL10N('contacts'); $this->backend = $backend; $this->addressBookInfo = $addressBookInfo; if(is_null($this->getId())) { $id = $this->backend->createAddressBook($addressBookInfo); if($id === false) { throw new \Exception('Error creating address book.', 500); } $this->addressBookInfo = $this->backend->getAddressBook($id); //print(__METHOD__. ' '. __LINE__ . ' addressBookInfo: ' . print_r($this->backend->getAddressBook($id), true)); } //\OCP\Util::writeLog('contacts', __METHOD__.' backend: ' . print_r($this->backend, true), \OCP\Util::DEBUG); } /** * @return string|null */ public function getId() { return isset($this->addressBookInfo['id']) ? $this->addressBookInfo['id'] : null; } /** * @return array */ public function getMetaData() { $metadata = $this->addressBookInfo; $metadata['lastmodified'] = $this->lastModified(); $metadata['active'] = $this->isActive(); $metadata['backend'] = $this->getBackend()->name; return $metadata; } /** * @return string */ public function getDisplayName() { return $this->addressBookInfo['displayname']; } /** * @return string */ public function getURI() { return $this->addressBookInfo['uri']; } /** * @return string */ public function getOwner() { return $this->addressBookInfo['owner']; } /** * Returns the lowest permission of what the backend allows and what it supports. * @return int */ public function getPermissions() { return $this->addressBookInfo['permissions']; } /** * @brief Query whether an address book is active * @return boolean */ public function isActive() { return $this->backend->isActive($this->getId()); } /** * @brief Activate an address book * @param bool active * @return void */ public function setActive($active) { $this->backend->setActive($active, $this->getId()); } /** * Returns a specific child node, referenced by its id * * @param string $id * @return Contact|null */ public function getChild($id) { //\OCP\Util::writeLog('contacts', __METHOD__.' id: '.$id, \OCP\Util::DEBUG); if(!$this->hasPermission(\OCP\PERMISSION_READ)) { throw new \Exception(self::$l10n->t('You do not have permissions to see this contacts'), 403); } if(!isset($this->objects[$id])) { $contact = $this->backend->getContact($this->getId(), $id); if($contact) { $this->objects[$id] = new Contact($this, $this->backend, $contact); } else { throw new \Exception(self::$l10n->t('Contact not found'), 404); } } // When requesting a single contact we preparse it if(isset($this->objects[$id])) { $this->objects[$id]->retrieve(); return $this->objects[$id]; } } /** * Checks if a child-node with the specified id exists * * @param string $id * @return bool */ public function childExists($id) { return ($this->getChild($id) !== null); } /** * Returns an array with all the child nodes * * @return Contact[] */ public function getChildren($limit = null, $offset = null, $omitdata = false) { if(!$this->hasPermission(\OCP\PERMISSION_READ)) { throw new \Exception(self::$l10n->t('You do not have permissions to see these contacts'), 403); } $contacts = array(); $options = array('limit' => $limit, 'offset' => $offset, 'omitdata' => $omitdata); foreach($this->backend->getContacts($this->getId(), $options) as $contact) { //\OCP\Util::writeLog('contacts', __METHOD__.' id: '.$contact['id'], \OCP\Util::DEBUG); if(!isset($this->objects[$contact['id']])) { $this->objects[$contact['id']] = new Contact($this, $this->backend, $contact); } $contacts[] = $this->objects[$contact['id']]; } //\OCP\Util::writeLog('contacts', __METHOD__.' children: '.count($contacts), \OCP\Util::DEBUG); return $contacts; } /** * Add a contact to the address book * This takes an array or a VCard|Contact and return * the ID or false. * * @param array|VObject\VCard $data * @return int|bool */ public function addChild($data = null) { if(!$this->hasPermission(\OCP\PERMISSION_CREATE)) { throw new \Exception(self::$l10n->t('You do not have permissions add contacts to the address book'), 403); } if(!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_CREATE)) { throw new \Exception(self::$l10n->t('The backend for this address book does not support adding contacts'), 501); } $contact = new Contact($this, $this->backend, $data); if($contact->save() === false) { return false; } $id = $contact->getId(); if($this->count() !== null) { $this->_count += 1; } \OCP\Util::writeLog('contacts', __METHOD__.' id: '.$id, \OCP\Util::DEBUG); return $id; } /** * Delete a contact from the address book * * @param string $id * @param array $options * @return bool * @throws \Exception on missing permissions */ public function deleteChild($id, $options = array()) { if(!$this->hasPermission(\OCP\PERMISSION_DELETE)) { throw new \Exception(self::$l10n->t('You do not have permissions to delete this contact'), 403); } if(!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_DELETE)) { throw new \Exception(self::$l10n->t('The backend for this address book does not support deleting contacts'), 501); } if($this->backend->deleteContact($this->getId(), $id, $options)) { if(isset($this->objects[$id])) { unset($this->objects[$id]); } if($this->count() !== null) { $this->_count -= 1; } return true; } return false; } /** * Delete a list of contacts from the address book * * @param array $ids * @return array containing the status * @throws \Exception on missing permissions */ public function deleteChildren($ids) { if(!$this->hasPermission(\OCP\PERMISSION_DELETE)) { throw new \Exception(self::$l10n->t('You do not have permissions to delete this contact'), 403); } if(!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_DELETE)) { throw new \Exception(self::$l10n->t('The backend for this address book does not support deleting contacts'), 501); } $response = array(); \OCP\Util::emitHook('OCA\Contacts', 'pre_deleteContact', array('id' => $ids) ); foreach($ids as $id) { try { if(!$this->deleteChild($id, array('isBatch' => true))) { \OCP\Util::writeLog( 'contacts', __METHOD__.' Error deleting contact: ' . $this->getBackend()->name . '::' . $this->getId() . '::' . $id, \OCP\Util::ERROR ); $response[] = array( 'id' => (string)$id, 'status' => 'error', 'message' => self::$l10n->t('Unknown error') ); } else { $response[] = array( 'id' => (string)$id, 'status' => 'success' ); } } catch(\Exception $e) { $response[] = array( 'id' => (string)$id, 'status' => 'error', 'message' => $e->getMessage() ); } } return $response; } /** * @internal implements Countable * @return int|null */ public function count() { if(!isset($this->_count)) { $this->_count = $this->backend->numContacts($this->getId()); } return $this->_count; } /** * Update and save the address book data to backend * NOTE: @see IPIMObject::update for consistency considerations. * * @param array $data * @return bool */ public function update(array $data) { if(!$this->hasPermission(\OCP\PERMISSION_UPDATE)) { throw new \Exception('Access denied'); } if(!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_UPDATE)) { throw new \Exception(self::$l10n->t('The backend for this address book does not support updating'), 501); } if(count($data) === 0) { return false; } foreach($data as $key => $value) { switch($key) { case 'displayname': $this->addressBookInfo['displayname'] = $value; break; case 'description': $this->addressBookInfo['description'] = $value; break; } } return $this->backend->updateAddressBook($this->getId(), $data); } /** * Save the address book data to backend * NOTE: @see IPIMObject::update for consistency considerations. * * @return bool */ public function save() { if(!$this->hasPermission(\OCP\PERMISSION_UPDATE)) { throw new Exception(self::$l10n->t('You don\'t have permissions to update the address book.'), 403); } } /** * Delete the address book from backend * * @return bool */ public function delete() { if(!$this->hasPermission(\OCP\PERMISSION_DELETE)) { throw new Exception(self::$l10n->t('You don\'t have permissions to delete the address book.'), 403); } return $this->backend->deleteAddressBook($this->getId()); } /** * @brief Get the last modification time for the object. * * Must return a UNIX time stamp or null if the backend * doesn't support it. * * @returns int | null */ public function lastModified() { return $this->backend->lastModifiedAddressBook($this->getId()); } /** * Get an array of birthday events for contacts in this address book. * * @return \Sabre\VObject\Component\VEvent[] */ public function getBirthdayEvents() { $events = array(); foreach($this->getChildren() as $contact) { if($event = $contact->getBirthdayEvent()) { $events[] = $event; } } return $events; } }