Allow access to addressbook unique uri

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Co-Authored-By: Joas Schilling <coding@schilljs.com>
pull/13642/head
John Molakvoæ (skjnldsv) 7 years ago
parent ac6ee0b8b7
commit 22112bf71d
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
  1. 9
      apps/dav/lib/CardDAV/AddressBookImpl.php
  2. 16
      lib/private/ContactsManager.php
  3. 12
      lib/public/Contacts/IManager.php
  4. 7
      lib/public/IAddressBook.php

@ -75,6 +75,15 @@ class AddressBookImpl implements IAddressBook {
return $this->addressBookInfo['id'];
}
/**
* @return string defining the unique uri
* @since 16.0.0
* @return string
*/
public function getUri(): string {
return $this->addressBookInfo['uri'];
}
/**
* In comparison to getKey() this function returns a human readable (maybe translated) name
*

@ -119,7 +119,12 @@ namespace OC {
}
/**
* Return a list of the user's addressbooks display names
* ! The addressBook displayName are not unique, please use getUserAddressBooks
*
* @return array
* @since 6.0.0
* @deprecated 16.0.0 - Use `$this->getUserAddressBooks()` instead
*/
public function getAddressBooks() {
$this->loadAddressBooks();
@ -131,6 +136,17 @@ namespace OC {
return $result;
}
/**
* Return a list of the user's addressbooks
*
* @return IAddressBook[]
* @since 16.0.0
*/
public function getUserAddressBooks(): Array {
$this->loadAddressBooks();
return $this->addressBooks;
}
/**
* removes all registered address book instances
*/

@ -154,13 +154,25 @@ interface IManager {
public function register(\Closure $callable);
/**
* Return a list of the user's addressbooks display names
*
* @return array
* @since 6.0.0
* @deprecated 16.0.0 - Use `$this->getUserAddressBooks()` instead
*/
public function getAddressBooks();
/**
* Return a list of the user's addressbooks
*
* @return IAddressBook[]
* @since 16.0.0
*/
public function getUserAddressBooks();
/**
* removes all registered address book instances
*
* @return void
* @since 6.0.0
*/

@ -45,6 +45,13 @@ namespace OCP {
*/
public function getKey();
/**
* @return string defining the unique uri
* @since 16.0.0
* @return string
*/
public function getUri(): string;
/**
* In comparison to getKey() this function returns a human readable (maybe translated) name
* @return mixed

Loading…
Cancel
Save