Merge pull request #34133 from nextcloud/showTag

Add includeTags to /share/id
This commit is contained in:
Vincent Petry 2022-09-22 10:23:48 +02:00 committed by GitHub
commit 938bc57f6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -366,10 +366,11 @@ class ShareAPIController extends OCSController {
* @NoAdminRequired
*
* @param string $id
* @param bool $includeTags
* @return DataResponse
* @throws OCSNotFoundException
*/
public function getShare(string $id): DataResponse {
public function getShare(string $id, bool $includeTags = false): DataResponse {
try {
$share = $this->getShareById($id);
} catch (ShareNotFound $e) {
@ -379,7 +380,14 @@ class ShareAPIController extends OCSController {
try {
if ($this->canAccessShare($share)) {
$share = $this->formatShare($share);
return new DataResponse([$share]);
if ($includeTags) {
$share = Helper::populateTags([$share], 'file_source', \OC::$server->getTagManager());
} else {
$share = [$share];
}
return new DataResponse($share);
}
} catch (NotFoundException $e) {
// Fall through