mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Add local share if remote cloud id matches a local user ones
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
61af607525
commit
7a65779316
1 changed files with 12 additions and 2 deletions
|
|
@ -88,8 +88,18 @@ class RemotePlugin implements ISearchPlugin {
|
|||
}
|
||||
|
||||
$localUser = $this->userManager->get($remoteUser);
|
||||
if ($localUser !== null && $cloudId === $localUser->getCloudId()) {
|
||||
continue;
|
||||
/**
|
||||
* Add local share if remote cloud id matches a local user ones
|
||||
*/
|
||||
if ($localUser !== null && $remoteUser !== $this->userId && $cloudId === $localUser->getCloudId() ) {
|
||||
$result['wide'][] = [
|
||||
'label' => $contact['FN'],
|
||||
'uuid' => $contact['UID'],
|
||||
'value' => [
|
||||
'shareType' => Share::SHARE_TYPE_USER,
|
||||
'shareWith' => $remoteUser
|
||||
]
|
||||
];
|
||||
}
|
||||
|
||||
if (strtolower($contact['FN']) === $lowerSearch || strtolower($cloudId) === $lowerSearch) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue