@@ -37,7 +37,7 @@ |
||
| 37 | 37 | private $filePath; |
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | - * @param string|resource $filePath the path to the file or a file handle which should be streamed |
|
| 40 | + * @param string $filePath the path to the file or a file handle which should be streamed |
|
| 41 | 41 | * @since 8.1.0 |
| 42 | 42 | */ |
| 43 | 43 | public function __construct ($filePath) { |
@@ -47,6 +47,9 @@ |
||
| 47 | 47 | $this->allowUnauthenticatedAccess = false; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | + /** |
|
| 51 | + * @param string $privileges |
|
| 52 | + */ |
|
| 50 | 53 | function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT, $throwExceptions = true) { |
| 51 | 54 | $access = parent::checkPrivileges($uri, $privileges, $recursion, false); |
| 52 | 55 | if($access === false && $throwExceptions) { |
@@ -100,6 +100,7 @@ discard block |
||
| 100 | 100 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 101 | 101 | * @param \OCP\Lock\ILockingProvider $provider |
| 102 | 102 | * @throws \OCP\Lock\LockedException |
| 103 | + * @return void |
|
| 103 | 104 | */ |
| 104 | 105 | public function acquireLock($path, $type, ILockingProvider $provider); |
| 105 | 106 | |
@@ -108,6 +109,7 @@ discard block |
||
| 108 | 109 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 109 | 110 | * @param \OCP\Lock\ILockingProvider $provider |
| 110 | 111 | * @throws \OCP\Lock\LockedException |
| 112 | + * @return void |
|
| 111 | 113 | */ |
| 112 | 114 | public function releaseLock($path, $type, ILockingProvider $provider); |
| 113 | 115 | |
@@ -116,6 +118,7 @@ discard block |
||
| 116 | 118 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 117 | 119 | * @param \OCP\Lock\ILockingProvider $provider |
| 118 | 120 | * @throws \OCP\Lock\LockedException |
| 121 | + * @return void |
|
| 119 | 122 | */ |
| 120 | 123 | public function changeLock($path, $type, ILockingProvider $provider); |
| 121 | 124 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | /** |
| 105 | 105 | * Return the number of address books for a principal |
| 106 | 106 | * |
| 107 | - * @param $principalUri |
|
| 107 | + * @param string $principalUri |
|
| 108 | 108 | * @return int |
| 109 | 109 | */ |
| 110 | 110 | public function getAddressBooksForUserCount($principalUri) { |
@@ -195,6 +195,9 @@ discard block |
||
| 195 | 195 | return array_values($addressBooks); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | + /** |
|
| 199 | + * @param string $principalUri |
|
| 200 | + */ |
|
| 198 | 201 | public function getUsersOwnAddressBooks($principalUri) { |
| 199 | 202 | $principalUriOriginal = $principalUri; |
| 200 | 203 | $principalUri = $this->convertPrincipal($principalUri, true); |
@@ -264,7 +267,8 @@ discard block |
||
| 264 | 267 | } |
| 265 | 268 | |
| 266 | 269 | /** |
| 267 | - * @param $addressBookUri |
|
| 270 | + * @param string $addressBookUri |
|
| 271 | + * @param string $principal |
|
| 268 | 272 | * @return array|null |
| 269 | 273 | */ |
| 270 | 274 | public function getAddressBooksByUri($principal, $addressBookUri) { |
@@ -953,6 +957,7 @@ discard block |
||
| 953 | 957 | * * readOnly - boolean |
| 954 | 958 | * * summary - Optional, a description for the share |
| 955 | 959 | * |
| 960 | + * @param integer $addressBookId |
|
| 956 | 961 | * @return array |
| 957 | 962 | */ |
| 958 | 963 | public function getShares($addressBookId) { |
@@ -1052,7 +1057,7 @@ discard block |
||
| 1052 | 1057 | |
| 1053 | 1058 | /** |
| 1054 | 1059 | * For shared address books the sharee is set in the ACL of the address book |
| 1055 | - * @param $addressBookId |
|
| 1060 | + * @param integer $addressBookId |
|
| 1056 | 1061 | * @param $acl |
| 1057 | 1062 | * @return array |
| 1058 | 1063 | */ |
@@ -1060,6 +1065,9 @@ discard block |
||
| 1060 | 1065 | return $this->sharingBackend->applyShareAcl($addressBookId, $acl); |
| 1061 | 1066 | } |
| 1062 | 1067 | |
| 1068 | + /** |
|
| 1069 | + * @param boolean $toV2 |
|
| 1070 | + */ |
|
| 1063 | 1071 | private function convertPrincipal($principalUri, $toV2) { |
| 1064 | 1072 | if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
| 1065 | 1073 | list(, $name) = URLUtil::splitPath($principalUri); |