2012-12-08 19:42:54 +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>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
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>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2012-12-08 19:42:54 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2012-12-08 19:42:54 +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.
|
2012-12-08 19:42:54 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-12-08 19:42:54 +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.
|
2012-12-08 19:42:54 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-12-08 19:42:54 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* IAddressBook interface
|
|
|
|
*/
|
|
|
|
|
2012-12-11 20:42:09 +04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2012-12-11 20:42:09 +04:00
|
|
|
namespace OCP {
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Interface IAddressBook
|
|
|
|
*
|
|
|
|
* @package OCP
|
|
|
|
* @since 5.0.0
|
|
|
|
*/
|
2012-12-08 19:42:54 +04:00
|
|
|
interface IAddressBook {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string defining the technical unique key
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-12-08 19:42:54 +04:00
|
|
|
*/
|
|
|
|
public function getKey();
|
|
|
|
|
2019-01-17 13:13:45 +03:00
|
|
|
/**
|
|
|
|
* @return string defining the unique uri
|
|
|
|
* @since 16.0.0
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getUri(): string;
|
|
|
|
|
2012-12-08 19:42:54 +04:00
|
|
|
/**
|
|
|
|
* In comparison to getKey() this function returns a human readable (maybe translated) name
|
|
|
|
* @return mixed
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-12-08 19:42:54 +04:00
|
|
|
*/
|
|
|
|
public function getDisplayName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $pattern which should match within the $searchProperties
|
|
|
|
* @param array $searchProperties defines the properties within the query pattern should match
|
2019-07-22 19:48:47 +03:00
|
|
|
* @param array $options Options to define the output format and search behavior
|
|
|
|
* - 'types' boolean (since 15.0.0) If set to true, fields that come with a TYPE property will be an array
|
2018-10-29 19:00:09 +03:00
|
|
|
* example: ['id' => 5, 'FN' => 'Thomas Tanghus', 'EMAIL' => ['type => 'HOME', 'value' => 'g@h.i']]
|
2019-07-22 19:48:47 +03:00
|
|
|
* - 'escape_like_param' - If set to false wildcards _ and % are not escaped
|
2020-01-10 18:06:44 +03:00
|
|
|
* - 'limit' - Set a numeric limit for the search results
|
|
|
|
* - 'offset' - Set the offset for the limited search results
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of contacts which are arrays of key-value-pairs
|
2018-10-29 19:00:09 +03:00
|
|
|
* example result:
|
|
|
|
* [
|
|
|
|
* ['id' => 0, 'FN' => 'Thomas Müller', 'EMAIL' => 'a@b.c', 'GEO' => '37.386013;-122.082932'],
|
|
|
|
* ['id' => 5, 'FN' => 'Thomas Tanghus', 'EMAIL' => ['d@e.f', 'g@h.i']]
|
|
|
|
* ]
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-12-08 19:42:54 +04:00
|
|
|
*/
|
|
|
|
public function search($pattern, $searchProperties, $options);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $properties this array if key-value-pairs defines a contact
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array representing the contact just created or updated
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-12-08 19:42:54 +04:00
|
|
|
*/
|
|
|
|
public function createOrUpdate($properties);
|
2013-02-09 20:27:57 +04:00
|
|
|
// // dummy
|
|
|
|
// return array('id' => 0, 'FN' => 'Thomas Müller', 'EMAIL' => 'a@b.c',
|
|
|
|
// 'PHOTO' => 'VALUE=uri:http://www.abc.com/pub/photos/jqpublic.gif',
|
|
|
|
// 'ADR' => ';;123 Main Street;Any Town;CA;91921-1234'
|
|
|
|
// );
|
2012-12-08 19:42:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-12-08 19:42:54 +04:00
|
|
|
*/
|
|
|
|
public function getPermissions();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param object $id the unique identifier to a contact
|
|
|
|
* @return bool successful or not
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-12-08 19:42:54 +04:00
|
|
|
*/
|
|
|
|
public function delete($id);
|
|
|
|
}
|
|
|
|
}
|