mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 01:28:08 -04:00
style(PHP): code cleanup, no effective changes
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
bf217fe741
commit
fb1fc94bc8
1 changed files with 7 additions and 11 deletions
|
|
@ -59,10 +59,7 @@ class SMB extends Backend {
|
|||
->setLegacyAuthMechanism($legacyAuth);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function manipulateStorageConfig(StorageConfig &$storage, ?IUser $user = null) {
|
||||
public function manipulateStorageConfig(StorageConfig &$storage, ?IUser $user = null): void {
|
||||
$auth = $storage->getAuthMechanism();
|
||||
if ($auth->getScheme() === AuthMechanism::SCHEME_PASSWORD) {
|
||||
if (!is_string($storage->getBackendOption('user')) || !is_string($storage->getBackendOption('password'))) {
|
||||
|
|
@ -92,26 +89,25 @@ class SMB extends Backend {
|
|||
} else {
|
||||
try {
|
||||
$credentials = $credentialsStore->getLoginCredentials();
|
||||
$user = $credentials->getLoginName();
|
||||
$loginName = $credentials->getLoginName();
|
||||
$pass = $credentials->getPassword();
|
||||
preg_match('/(.*)@(.*)/', $user, $matches);
|
||||
preg_match('/(.*)@(.*)/', $loginName, $matches);
|
||||
$realm = $storage->getBackendOption('default_realm');
|
||||
if (empty($realm)) {
|
||||
$realm = 'WORKGROUP';
|
||||
}
|
||||
if (count($matches) === 0) {
|
||||
$username = $user;
|
||||
$username = $loginName;
|
||||
$workgroup = $realm;
|
||||
} else {
|
||||
$username = $matches[1];
|
||||
$workgroup = $matches[2];
|
||||
[, $username, $workgroup] = $matches;
|
||||
}
|
||||
$smbAuth = new BasicAuth(
|
||||
$username,
|
||||
$workgroup,
|
||||
$pass
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
} catch (\Exception) {
|
||||
throw new InsufficientDataForMeaningfulAnswerException('No session credentials saved');
|
||||
}
|
||||
}
|
||||
|
|
@ -125,7 +121,7 @@ class SMB extends Backend {
|
|||
$storage->setBackendOption('auth', $smbAuth);
|
||||
}
|
||||
|
||||
public function checkDependencies() {
|
||||
public function checkDependencies(): array {
|
||||
$system = \OCP\Server::get(SystemBridge::class);
|
||||
if (NativeServer::available($system)) {
|
||||
return [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue