You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IAddressBook.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bart Visscher <bartv@thisnet.nl>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. * @author Robin McCorkell <robin@mccorkell.me.uk>
  8. * @author Thomas Müller <thomas.mueller@tmit.eu>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. /**
  26. * Public interface of ownCloud for apps to use.
  27. * IAddressBook interface
  28. */
  29. // use OCP namespace for all classes that are considered public.
  30. // This means that they should be used by apps instead of the internal ownCloud classes
  31. namespace OCP {
  32. /**
  33. * Interface IAddressBook
  34. *
  35. * @package OCP
  36. * @since 5.0.0
  37. */
  38. interface IAddressBook {
  39. /**
  40. * @return string defining the technical unique key
  41. * @since 5.0.0
  42. */
  43. public function getKey();
  44. /**
  45. * In comparison to getKey() this function returns a human readable (maybe translated) name
  46. * @return mixed
  47. * @since 5.0.0
  48. */
  49. public function getDisplayName();
  50. /**
  51. * @param string $pattern which should match within the $searchProperties
  52. * @param array $searchProperties defines the properties within the query pattern should match
  53. * @param array $options Options to define the output format
  54. * - types boolean (since 15.0.0) If set to true, fields that come with a TYPE property will be an array
  55. * example: ['id' => 5, 'FN' => 'Thomas Tanghus', 'EMAIL' => ['type => 'HOME', 'value' => 'g@h.i']]
  56. * @return array an array of contacts which are arrays of key-value-pairs
  57. * example result:
  58. * [
  59. * ['id' => 0, 'FN' => 'Thomas Müller', 'EMAIL' => 'a@b.c', 'GEO' => '37.386013;-122.082932'],
  60. * ['id' => 5, 'FN' => 'Thomas Tanghus', 'EMAIL' => ['d@e.f', 'g@h.i']]
  61. * ]
  62. * @since 5.0.0
  63. */
  64. public function search($pattern, $searchProperties, $options);
  65. /**
  66. * @param array $properties this array if key-value-pairs defines a contact
  67. * @return array an array representing the contact just created or updated
  68. * @since 5.0.0
  69. */
  70. public function createOrUpdate($properties);
  71. // // dummy
  72. // return array('id' => 0, 'FN' => 'Thomas Müller', 'EMAIL' => 'a@b.c',
  73. // 'PHOTO' => 'VALUE=uri:http://www.abc.com/pub/photos/jqpublic.gif',
  74. // 'ADR' => ';;123 Main Street;Any Town;CA;91921-1234'
  75. // );
  76. /**
  77. * @return mixed
  78. * @since 5.0.0
  79. */
  80. public function getPermissions();
  81. /**
  82. * @param object $id the unique identifier to a contact
  83. * @return bool successful or not
  84. * @since 5.0.0
  85. */
  86. public function delete($id);
  87. }
  88. }