Browse Source
Merge pull request #46073 from nextcloud/fix/save_global_credentials
pull/46095/head
Benjamin Gaussorgues
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
9 additions and
3 deletions
-
apps/files_external/lib/Controller/AjaxController.php
|
|
|
@ -84,15 +84,21 @@ class AjaxController extends Controller { |
|
|
|
*/ |
|
|
|
public function saveGlobalCredentials($uid, $user, $password) { |
|
|
|
$currentUser = $this->userSession->getUser(); |
|
|
|
if ($currentUser === null) { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
// Non-admins can only edit their own credentials
|
|
|
|
$allowedToEdit = ($currentUser->getUID() === $uid); |
|
|
|
// Admin can edit global credentials
|
|
|
|
$allowedToEdit = $uid === '' |
|
|
|
? $this->groupManager->isAdmin($currentUser->getUID()) |
|
|
|
: $currentUser->getUID() === $uid; |
|
|
|
|
|
|
|
if ($allowedToEdit) { |
|
|
|
$this->globalAuth->saveAuth($uid, $user, $password); |
|
|
|
return true; |
|
|
|
} else { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
return false; |
|
|
|
} |
|
|
|
} |