mirror of
https://github.com/nextcloud/server.git
synced 2026-02-15 16:59:47 -05:00
hide shared files located in group folder's trash bin
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
3e6e075358
commit
6b4644ba1a
1 changed files with 6 additions and 0 deletions
|
|
@ -55,6 +55,7 @@ use OCP\Share\Exceptions\ShareNotFound;
|
|||
use OCP\Share\IAttributes;
|
||||
use OCP\Share\IShare;
|
||||
use OCP\Share\IShareProvider;
|
||||
use function str_starts_with;
|
||||
|
||||
/**
|
||||
* Class DefaultShareProvider
|
||||
|
|
@ -885,6 +886,11 @@ class DefaultShareProvider implements IShareProvider {
|
|||
if ($pathSections[0] !== 'files'
|
||||
&& (strpos($data['storage_string_id'], 'home::') === 0 || strpos($data['storage_string_id'], 'object::user') === 0)) {
|
||||
return false;
|
||||
} elseif ($pathSections[0] === '__groupfolders'
|
||||
&& str_starts_with($pathSections[1], 'trash/')
|
||||
) {
|
||||
// exclude shares leading to trashbin on group folders storages
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue