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

131 lines
4.4 KiB
PHP
Raw Normal View History

<?php
/**
2014-01-26 00:40:22 +01:00
* @author Bart Visscher
* @copyright 2012 Bart Visscher <bartv@thisnet.nl>
* @copyright 2013-2014 Thomas Tanghus (thomas@tanghus.net)
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2013-04-25 01:03:05 +02:00
namespace OCA\Contacts\Share;
2013-10-30 16:14:48 +01:00
use OCA\Contacts\App;
2012-10-25 03:34:12 +02:00
2013-04-25 01:03:05 +02:00
class Addressbook implements \OCP\Share_Backend_Collection {
const FORMAT_ADDRESSBOOKS = 1;
const FORMAT_COLLECTION = 2;
2013-10-30 16:14:48 +01:00
/**
* @var \OCA\Contacts\App;
*/
public $app;
2013-03-12 09:15:40 +01:00
public function __construct() {
2013-10-30 16:14:48 +01:00
$this->app = new App(\OCP\User::getUser());
2013-03-12 09:15:40 +01:00
}
/**
* @brief Get the source of the item to be stored in the database
* @param string Item
* @param string Owner of the item
* @return mixed|array|false Source
*
* Return an array if the item is file dependent, the array needs two keys: 'item' and 'file'
* Return false if the item does not exist for the user
*
* The formatItems() function will translate the source returned back into the item
*/
public function isValidSource($itemSource, $uidOwner) {
2013-10-30 16:14:48 +01:00
$app = new App($uidOwner);
try {
$app->getAddressBook('local', $itemSource);
} catch(\Exception $e) {
return false;
}
return true;
}
/**
* @brief Get a unique name of the item for the specified user
* @param string Item
* @param string|false User the item is being shared with
* @param array|null List of similar item names already existing as shared items
* @return string Target name
*
* This function needs to verify that the user does not already have an item with this name.
* If it does generate a new name e.g. name_#
*/
public function generateTarget($itemSource, $shareWith, $exclude = null) {
2013-10-30 16:14:48 +01:00
// Get app for the sharee
$app = new App($shareWith);
$backend = $app->getBackend('local');
2013-03-12 09:15:40 +01:00
2013-10-30 16:14:48 +01:00
// Get address book for the owner
$addressBook = $this->app->getBackend('local')->getAddressBook($itemSource);
2013-03-12 09:15:40 +01:00
2013-10-30 16:14:48 +01:00
$userAddressBooks = array();
foreach($backend->getAddressBooksForUser() as $userAddressBook) {
$userAddressBooks[] = $userAddressBook['displayname'];
}
2013-11-28 14:21:06 +01:00
$name = $addressBook['displayname'] . '(' . $addressBook['owner'] . ')';
$suffix = '';
2013-10-30 16:14:48 +01:00
while (in_array($name.$suffix, $userAddressBooks)) {
$suffix++;
}
2012-08-23 14:45:19 +02:00
$suffix = $suffix ? ' ' . $suffix : '';
return $name.$suffix;
}
/**
* @brief Converts the shared item sources back into the item in the specified format
* @param array Shared items
* @param int Format
* @return ?
*
* The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info.
* The key/value pairs included in the share info depend on the function originally called:
* If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source
* If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target
* This function allows the backend to control the output of shared items with custom formats.
* It is only called through calls to the public getItem(s)Shared(With) functions.
*/
2013-03-12 09:15:40 +01:00
public function formatItems($items, $format, $parameters = null, $include = false) {
2013-03-16 15:59:23 +01:00
//\OCP\Util::writeLog('contacts', __METHOD__
// . ' ' . $include . ' ' . print_r($items, true), \OCP\Util::DEBUG);
2013-10-30 16:14:48 +01:00
$addressBooks = array();
$backend = $this->app->getBackend('local');
if ($format === self::FORMAT_ADDRESSBOOKS) {
2012-08-10 14:33:20 +02:00
foreach ($items as $item) {
2013-03-12 09:15:40 +01:00
//\OCP\Util::writeLog('contacts', __METHOD__.' item_source: ' . $item['item_source'] . ' include: '
// . (int)$include, \OCP\Util::DEBUG);
$addressBook = $backend->getAddressBook($item['item_source'], array('shared_by' => $item['uid_owner']));
2013-10-30 16:14:48 +01:00
if ($addressBook) {
$addressBook['displayname'] = $addressBook['displayname'] . ' (' . $addressBook['owner'] . ')';
$addressBook['permissions'] = $item['permissions'];
$addressBooks[] = $addressBook;
2012-08-10 14:33:20 +02:00
}
}
} elseif ($format === self::FORMAT_COLLECTION) {
foreach ($items as $item) {
}
}
2013-10-30 16:14:48 +01:00
return $addressBooks;
}
public function getChildren($itemSource) {
2013-03-12 09:15:40 +01:00
\OCP\Util::writeLog('contacts', __METHOD__.' item_source: ' . $itemSource, \OCP\Util::DEBUG);
2013-10-30 16:14:48 +01:00
$contacts = $this->app->getBackend('local')->getContacts($itemSource);
$children = array();
2013-03-12 09:15:40 +01:00
foreach($contacts as $contact) {
2013-10-30 16:14:48 +01:00
$children[] = array('source' => $contact['id'], 'target' => $contact['displayname']);
}
return $children;
}
2012-08-10 14:33:20 +02:00
}