2013-08-27 01:48:18 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Tobia De Koninck <tobia@ledfan.be>
|
2013-08-27 01:48:18 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-08-27 01:48:18 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-08-27 01:48:18 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-27 01:48:18 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-27 01:48:18 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-08-27 01:48:18 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-08-27 01:48:18 +04:00
|
|
|
namespace OC {
|
|
|
|
|
2013-08-31 23:34:29 +04:00
|
|
|
class ContactsManager implements \OCP\Contacts\IManager {
|
2013-08-27 01:48:18 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is used to search and find contacts within the users address books.
|
|
|
|
* In case $pattern is empty all contacts will be returned.
|
|
|
|
*
|
|
|
|
* @param string $pattern which should match within the $searchProperties
|
|
|
|
* @param array $searchProperties defines the properties within the query pattern should match
|
|
|
|
* @param array $options - for future use. One should always have options!
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of contacts which are arrays of key-value-pairs
|
2013-08-27 01:48:18 +04:00
|
|
|
*/
|
|
|
|
public function search($pattern, $searchProperties = array(), $options = array()) {
|
2014-04-09 23:53:06 +04:00
|
|
|
$this->loadAddressBooks();
|
2013-08-27 01:48:18 +04:00
|
|
|
$result = array();
|
2014-04-17 19:56:23 +04:00
|
|
|
foreach($this->addressBooks as $addressBook) {
|
|
|
|
$r = $addressBook->search($pattern, $searchProperties, $options);
|
2014-04-18 16:30:44 +04:00
|
|
|
$contacts = array();
|
|
|
|
foreach($r as $c){
|
2014-04-26 13:15:09 +04:00
|
|
|
$c['addressbook-key'] = $addressBook->getKey();
|
2014-04-18 16:30:44 +04:00
|
|
|
$contacts[] = $c;
|
|
|
|
}
|
|
|
|
$result = array_merge($result, $contacts);
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function can be used to delete the contact identified by the given id
|
|
|
|
*
|
|
|
|
* @param object $id the unique identifier to a contact
|
2014-04-17 19:56:23 +04:00
|
|
|
* @param string $addressBookKey identifier of the address book in which the contact shall be deleted
|
2013-08-27 01:48:18 +04:00
|
|
|
* @return bool successful or not
|
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
public function delete($id, $addressBookKey) {
|
|
|
|
$addressBook = $this->getAddressBook($addressBookKey);
|
|
|
|
if (!$addressBook) {
|
2013-08-27 01:48:18 +04:00
|
|
|
return null;
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
2013-08-27 01:48:18 +04:00
|
|
|
|
2014-11-25 18:28:41 +03:00
|
|
|
if ($addressBook->getPermissions() & \OCP\Constants::PERMISSION_DELETE) {
|
2014-12-06 15:58:10 +03:00
|
|
|
return $addressBook->delete($id);
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
2013-08-27 01:48:18 +04:00
|
|
|
|
2014-12-06 15:58:10 +03:00
|
|
|
return null;
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is used to create a new contact if 'id' is not given or not present.
|
|
|
|
* Otherwise the contact will be updated by replacing the entire data set.
|
|
|
|
*
|
|
|
|
* @param array $properties this array if key-value-pairs defines a contact
|
2014-04-17 19:56:23 +04:00
|
|
|
* @param string $addressBookKey identifier of the address book in which the contact shall be created or updated
|
2013-08-27 01:48:18 +04:00
|
|
|
* @return array representing the contact just created or updated
|
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
public function createOrUpdate($properties, $addressBookKey) {
|
|
|
|
$addressBook = $this->getAddressBook($addressBookKey);
|
|
|
|
if (!$addressBook) {
|
2013-08-27 01:48:18 +04:00
|
|
|
return null;
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
2013-08-27 01:48:18 +04:00
|
|
|
|
2014-11-25 18:28:41 +03:00
|
|
|
if ($addressBook->getPermissions() & \OCP\Constants::PERMISSION_CREATE) {
|
2014-12-06 15:58:10 +03:00
|
|
|
return $addressBook->createOrUpdate($properties);
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
2013-08-27 01:48:18 +04:00
|
|
|
|
2014-12-06 15:58:10 +03:00
|
|
|
return null;
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if contacts are available (e.g. contacts app enabled)
|
|
|
|
*
|
|
|
|
* @return bool true if enabled, false if not
|
|
|
|
*/
|
|
|
|
public function isEnabled() {
|
2014-04-17 19:56:23 +04:00
|
|
|
return !empty($this->addressBooks) || !empty($this->addressBookLoaders);
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-04-17 19:56:23 +04:00
|
|
|
* @param \OCP\IAddressBook $addressBook
|
2013-08-27 01:48:18 +04:00
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
public function registerAddressBook(\OCP\IAddressBook $addressBook) {
|
|
|
|
$this->addressBooks[$addressBook->getKey()] = $addressBook;
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-04-17 19:56:23 +04:00
|
|
|
* @param \OCP\IAddressBook $addressBook
|
2013-08-27 01:48:18 +04:00
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
public function unregisterAddressBook(\OCP\IAddressBook $addressBook) {
|
|
|
|
unset($this->addressBooks[$addressBook->getKey()]);
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAddressBooks() {
|
2014-04-09 23:53:06 +04:00
|
|
|
$this->loadAddressBooks();
|
2013-08-27 01:48:18 +04:00
|
|
|
$result = array();
|
2014-04-17 19:56:23 +04:00
|
|
|
foreach($this->addressBooks as $addressBook) {
|
|
|
|
$result[$addressBook->getKey()] = $addressBook->getDisplayName();
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* removes all registered address book instances
|
|
|
|
*/
|
|
|
|
public function clear() {
|
2014-04-17 19:56:23 +04:00
|
|
|
$this->addressBooks = array();
|
|
|
|
$this->addressBookLoaders = array();
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OCP\IAddressBook[] which holds all registered address books
|
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
private $addressBooks = array();
|
2013-08-27 01:48:18 +04:00
|
|
|
|
2014-04-09 23:53:06 +04:00
|
|
|
/**
|
|
|
|
* @var \Closure[] to call to load/register address books
|
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
private $addressBookLoaders = array();
|
2014-04-09 23:53:06 +04:00
|
|
|
|
2013-08-27 01:48:18 +04:00
|
|
|
/**
|
|
|
|
* In order to improve lazy loading a closure can be registered which will be called in case
|
|
|
|
* address books are actually requested
|
|
|
|
*
|
|
|
|
* @param \Closure $callable
|
|
|
|
*/
|
2014-04-10 20:06:31 +04:00
|
|
|
public function register(\Closure $callable)
|
2013-08-27 01:48:18 +04:00
|
|
|
{
|
2014-04-17 19:56:23 +04:00
|
|
|
$this->addressBookLoaders[] = $callable;
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get (and load when needed) the address book for $key
|
|
|
|
*
|
2014-04-17 19:56:23 +04:00
|
|
|
* @param string $addressBookKey
|
2014-04-09 23:53:06 +04:00
|
|
|
* @return \OCP\IAddressBook
|
|
|
|
*/
|
2014-04-17 19:56:23 +04:00
|
|
|
protected function getAddressBook($addressBookKey)
|
2014-04-09 23:53:06 +04:00
|
|
|
{
|
|
|
|
$this->loadAddressBooks();
|
2014-04-17 19:56:23 +04:00
|
|
|
if (!array_key_exists($addressBookKey, $this->addressBooks)) {
|
2014-04-09 23:53:06 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-04-17 19:56:23 +04:00
|
|
|
return $this->addressBooks[$addressBookKey];
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load all address books registered with 'register'
|
|
|
|
*/
|
|
|
|
protected function loadAddressBooks()
|
|
|
|
{
|
2014-04-17 19:56:23 +04:00
|
|
|
foreach($this->addressBookLoaders as $callable) {
|
2014-04-10 20:07:15 +04:00
|
|
|
$callable($this);
|
2014-04-09 23:53:06 +04:00
|
|
|
}
|
2014-04-17 19:56:23 +04:00
|
|
|
$this->addressBookLoaders = array();
|
2013-08-27 01:48:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|