Merge pull request #13642 from nextcloud/contacts-menu-url-fix

Allow access to addressbook unique uri
This commit is contained in:
John Molakvoæ 2019-01-22 13:00:07 +01:00 committed by GitHub
commit b1d4c3f50b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 44 additions and 0 deletions

View File

@ -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
*

View File

@ -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
*/

View File

@ -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
*/

View File

@ -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