diff options
author | Anderson Luiz Alves <alacn1@gmail.com> | 2021-12-03 10:57:00 -0300 |
---|---|---|
committer | Anderson Luiz Alves <alacn1@gmail.com> | 2021-12-03 10:57:00 -0300 |
commit | 4e65441cb2cfe7f93476d64cb0ce68de722632c6 (patch) | |
tree | 0e1a30a845058bc113640fc7b0d196933033b697 /apps/files_external | |
parent | b067ae78c5a8044e8066fe742d61c712387e7aa5 (diff) | |
download | nextcloud-server-4e65441cb2cfe7f93476d64cb0ce68de722632c6.tar.gz nextcloud-server-4e65441cb2cfe7f93476d64cb0ce68de722632c6.zip |
files_external SMB: throw InvalidArgument when user is not set
Signed-off-by: Anderson Luiz Alves <alacn1@gmail.com>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Lib/Backend/SMB.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Backend/SMB.php b/apps/files_external/lib/Lib/Backend/SMB.php index 73e6b67614b..867648824ac 100644 --- a/apps/files_external/lib/Lib/Backend/SMB.php +++ b/apps/files_external/lib/Lib/Backend/SMB.php @@ -76,6 +76,10 @@ class SMB extends Backend { public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { $auth = $storage->getAuthMechanism(); if ($auth->getScheme() === AuthMechanism::SCHEME_PASSWORD) { + if (!is_string($storage->getBackendOption('user')) || !is_string($storage->getBackendOption('password'))) { + throw new \InvalidArgumentException('user or password is not set'); + } + $smbAuth = new BasicAuth( $storage->getBackendOption('user'), $storage->getBackendOption('domain'), |