@@ -70,7 +70,7 @@ |
||
| 70 | 70 | ]); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 73 | + public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) { |
|
| 74 | 74 | if ($storage->getType() === StorageConfig::MOUNT_TYPE_ADMIN) { |
| 75 | 75 | $uid = ''; |
| 76 | 76 | } elseif (is_null($user)) { |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | ; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 60 | + public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) { |
|
| 61 | 61 | $auth = new RSACrypt(); |
| 62 | 62 | $auth->setPassword($this->config->getSystemValue('secret', '')); |
| 63 | 63 | if (!$auth->loadKey($storage->getBackendOption('private_key'))) { |
@@ -47,10 +47,10 @@ |
||
| 47 | 47 | return false; |
| 48 | 48 | } |
| 49 | 49 | while (($file = readdir($dh)) !== false) { |
| 50 | - if ($this->is_dir($path . '/' . $file)) { |
|
| 51 | - $this->rmdir($path . '/' . $file); |
|
| 50 | + if ($this->is_dir($path.'/'.$file)) { |
|
| 51 | + $this->rmdir($path.'/'.$file); |
|
| 52 | 52 | } else { |
| 53 | - $this->unlink($path . '/' . $file); |
|
| 53 | + $this->unlink($path.'/'.$file); |
|
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | 56 | $url = $this->constructUrl($path); |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | * @throws InsufficientDataForMeaningfulAnswerException |
| 52 | 52 | * @throws StorageNotAvailableException |
| 53 | 53 | */ |
| 54 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 54 | + public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) { |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /** |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | |
| 65 | 65 | public function listen(callable $callback) { |
| 66 | 66 | $oldRenamePath = null; |
| 67 | - $this->shareNotifyHandler->listen(function (\Icewind\SMB\Change $shareChange) use ($callback) { |
|
| 67 | + $this->shareNotifyHandler->listen(function(\Icewind\SMB\Change $shareChange) use ($callback) { |
|
| 68 | 68 | $change = $this->mapChange($shareChange); |
| 69 | 69 | if (!is_null($change)) { |
| 70 | 70 | return $callback($change); |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | * @param Backend $backend |
| 183 | 183 | */ |
| 184 | 184 | public function setBackend(Backend $backend) { |
| 185 | - $this->backend= $backend; |
|
| 185 | + $this->backend = $backend; |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
@@ -214,13 +214,13 @@ discard block |
||
| 214 | 214 | * @param array $backendOptions backend options |
| 215 | 215 | */ |
| 216 | 216 | public function setBackendOptions($backendOptions) { |
| 217 | - if($this->getBackend() instanceof Backend) { |
|
| 217 | + if ($this->getBackend() instanceof Backend) { |
|
| 218 | 218 | $parameters = $this->getBackend()->getParameters(); |
| 219 | - foreach($backendOptions as $key => $value) { |
|
| 220 | - if(isset($parameters[$key])) { |
|
| 219 | + foreach ($backendOptions as $key => $value) { |
|
| 220 | + if (isset($parameters[$key])) { |
|
| 221 | 221 | switch ($parameters[$key]->getType()) { |
| 222 | 222 | case \OCA\Files_External\Lib\DefinitionParameter::VALUE_BOOLEAN: |
| 223 | - $value = (bool)$value; |
|
| 223 | + $value = (bool) $value; |
|
| 224 | 224 | break; |
| 225 | 225 | } |
| 226 | 226 | $backendOptions[$key] = $value; |
@@ -426,7 +426,7 @@ discard block |
||
| 426 | 426 | $result['statusMessage'] = $this->statusMessage; |
| 427 | 427 | } |
| 428 | 428 | $result['userProvided'] = $this->authMechanism instanceof IUserProvided; |
| 429 | - $result['type'] = ($this->getType() === self::MOUNT_TYPE_PERSONAl) ? 'personal': 'system'; |
|
| 429 | + $result['type'] = ($this->getType() === self::MOUNT_TYPE_PERSONAl) ? 'personal' : 'system'; |
|
| 430 | 430 | return $result; |
| 431 | 431 | } |
| 432 | 432 | } |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | * @param StorageConfig $storage |
| 61 | 61 | * @param IUser $user |
| 62 | 62 | */ |
| 63 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 63 | + public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) { |
|
| 64 | 64 | $user = $storage->getBackendOption('user'); |
| 65 | 65 | if ($domain = $storage->getBackendOption('domain')) { |
| 66 | 66 | $storage->setBackendOption('user', $domain.'\\'.$user); |
@@ -61,11 +61,11 @@ |
||
| 61 | 61 | ; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 64 | + public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) { |
|
| 65 | 65 | $username_as_share = ($storage->getBackendOption('username_as_share') === true); |
| 66 | 66 | |
| 67 | 67 | if ($username_as_share) { |
| 68 | - $share = '/' . $storage->getBackendOption('user'); |
|
| 68 | + $share = '/'.$storage->getBackendOption('user'); |
|
| 69 | 69 | $storage->setBackendOption('share', $share); |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | 'path' => $path, |
| 61 | 61 | 'type' => 'dir', |
| 62 | 62 | 'backend' => $mountConfig['backend'], |
| 63 | - 'scope' => ( $isSystemMount ? 'system' : 'personal' ), |
|
| 63 | + 'scope' => ($isSystemMount ? 'system' : 'personal'), |
|
| 64 | 64 | 'permissions' => $permissions, |
| 65 | 65 | 'id' => $mountConfig['id'], |
| 66 | 66 | 'class' => $mountConfig['class'] |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | $user = \OC::$server->getUserSession()->getUser()->getUID(); |
| 80 | 80 | |
| 81 | 81 | $mounts = \OC_Mount_Config::getAbsoluteMountPoints($user); |
| 82 | - foreach($mounts as $mountPoint => $mount) { |
|
| 82 | + foreach ($mounts as $mountPoint => $mount) { |
|
| 83 | 83 | $entries[] = self::formatMount($mountPoint, $mount); |
| 84 | 84 | } |
| 85 | 85 | |