@@ -172,11 +172,11 @@ |
||
| 172 | 172 | public function getStorageForAllUsers() { |
| 173 | 173 | $mounts = $this->dbConfig->getAllMounts(); |
| 174 | 174 | $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts); |
| 175 | - $configs = array_filter($configs, function ($config) { |
|
| 175 | + $configs = array_filter($configs, function($config) { |
|
| 176 | 176 | return $config instanceof StorageConfig; |
| 177 | 177 | }); |
| 178 | 178 | |
| 179 | - $keys = array_map(function (StorageConfig $config) { |
|
| 179 | + $keys = array_map(function(StorageConfig $config) { |
|
| 180 | 180 | return $config->getId(); |
| 181 | 181 | }, $configs); |
| 182 | 182 | |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | */ |
| 179 | 179 | public function getAdminMountsForMultiple($type, array $values) { |
| 180 | 180 | $builder = $this->connection->getQueryBuilder(); |
| 181 | - $params = array_map(function ($value) use ($builder) { |
|
| 181 | + $params = array_map(function($value) use ($builder) { |
|
| 182 | 182 | return $builder->createNamedParameter($value, IQueryBuilder::PARAM_STR); |
| 183 | 183 | }, $values); |
| 184 | 184 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | 'type' => $builder->createNamedParameter($type, IQueryBuilder::PARAM_INT) |
| 232 | 232 | ]); |
| 233 | 233 | $query->execute(); |
| 234 | - return (int)$this->connection->lastInsertId('*PREFIX*external_mounts'); |
|
| 234 | + return (int) $this->connection->lastInsertId('*PREFIX*external_mounts'); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | } |
| 368 | 368 | $uniqueMounts = array_values($uniqueMounts); |
| 369 | 369 | |
| 370 | - $mountIds = array_map(function ($mount) { |
|
| 370 | + $mountIds = array_map(function($mount) { |
|
| 371 | 371 | return $mount['mount_id']; |
| 372 | 372 | }, $uniqueMounts); |
| 373 | 373 | $mountIds = array_values(array_unique($mountIds)); |
@@ -376,9 +376,9 @@ discard block |
||
| 376 | 376 | $config = $this->getConfigForMounts($mountIds); |
| 377 | 377 | $options = $this->getOptionsForMounts($mountIds); |
| 378 | 378 | |
| 379 | - return array_map(function ($mount, $applicable, $config, $options) { |
|
| 380 | - $mount['type'] = (int)$mount['type']; |
|
| 381 | - $mount['priority'] = (int)$mount['priority']; |
|
| 379 | + return array_map(function($mount, $applicable, $config, $options) { |
|
| 380 | + $mount['type'] = (int) $mount['type']; |
|
| 381 | + $mount['priority'] = (int) $mount['priority']; |
|
| 382 | 382 | $mount['applicable'] = $applicable; |
| 383 | 383 | $mount['config'] = $config; |
| 384 | 384 | $mount['options'] = $options; |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | } |
| 401 | 401 | $builder = $this->connection->getQueryBuilder(); |
| 402 | 402 | $fields[] = 'mount_id'; |
| 403 | - $placeHolders = array_map(function ($id) use ($builder) { |
|
| 403 | + $placeHolders = array_map(function($id) use ($builder) { |
|
| 404 | 404 | return $builder->createPositionalParameter($id, IQueryBuilder::PARAM_INT); |
| 405 | 405 | }, $mountIds); |
| 406 | 406 | $query = $builder->select($fields) |
@@ -414,7 +414,7 @@ discard block |
||
| 414 | 414 | } |
| 415 | 415 | foreach ($rows as $row) { |
| 416 | 416 | if (isset($row['type'])) { |
| 417 | - $row['type'] = (int)$row['type']; |
|
| 417 | + $row['type'] = (int) $row['type']; |
|
| 418 | 418 | } |
| 419 | 419 | $result[$row['mount_id']][] = $row; |
| 420 | 420 | } |
@@ -445,8 +445,8 @@ discard block |
||
| 445 | 445 | public function getOptionsForMounts($mountIds) { |
| 446 | 446 | $mountOptions = $this->selectForMounts('external_options', ['key', 'value'], $mountIds); |
| 447 | 447 | $optionsMap = array_map([$this, 'createKeyValueMap'], $mountOptions); |
| 448 | - return array_map(function (array $options) { |
|
| 449 | - return array_map(function ($option) { |
|
| 448 | + return array_map(function(array $options) { |
|
| 449 | + return array_map(function($option) { |
|
| 450 | 450 | return json_decode($option); |
| 451 | 451 | }, $options); |
| 452 | 452 | }, $optionsMap); |
@@ -457,16 +457,16 @@ discard block |
||
| 457 | 457 | * @return array ['key1' => $value1, ...] |
| 458 | 458 | */ |
| 459 | 459 | private function createKeyValueMap(array $keyValuePairs) { |
| 460 | - $decryptedPairts = array_map(function ($pair) { |
|
| 460 | + $decryptedPairts = array_map(function($pair) { |
|
| 461 | 461 | if ($pair['key'] === 'password') { |
| 462 | 462 | $pair['value'] = $this->decryptValue($pair['value']); |
| 463 | 463 | } |
| 464 | 464 | return $pair; |
| 465 | 465 | }, $keyValuePairs); |
| 466 | - $keys = array_map(function ($pair) { |
|
| 466 | + $keys = array_map(function($pair) { |
|
| 467 | 467 | return $pair['key']; |
| 468 | 468 | }, $decryptedPairts); |
| 469 | - $values = array_map(function ($pair) { |
|
| 469 | + $values = array_map(function($pair) { |
|
| 470 | 470 | return $pair['value']; |
| 471 | 471 | }, $decryptedPairts); |
| 472 | 472 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | ) { |
| 59 | 59 | $backend = $this->backendService->getBackend($storageOptions['backend']); |
| 60 | 60 | if (!$backend) { |
| 61 | - throw new \UnexpectedValueException('Invalid backend ' . $storageOptions['backend']); |
|
| 61 | + throw new \UnexpectedValueException('Invalid backend '.$storageOptions['backend']); |
|
| 62 | 62 | } |
| 63 | 63 | $storageConfig->setBackend($backend); |
| 64 | 64 | if (isset($storageOptions['authMechanism']) && $storageOptions['authMechanism'] !== 'builtin::builtin') { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | $storageOptions['authMechanism'] = 'null'; // to make error handling easier |
| 69 | 69 | } |
| 70 | 70 | if (!$authMechanism) { |
| 71 | - throw new \UnexpectedValueException('Invalid authentication mechanism ' . $storageOptions['authMechanism']); |
|
| 71 | + throw new \UnexpectedValueException('Invalid authentication mechanism '.$storageOptions['authMechanism']); |
|
| 72 | 72 | } |
| 73 | 73 | $storageConfig->setAuthMechanism($authMechanism); |
| 74 | 74 | $storageConfig->setBackendOptions($storageOptions['options']); |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | // something went wrong, skip |
| 143 | 143 | \OCP\Util::writeLog( |
| 144 | 144 | 'files_external', |
| 145 | - 'Could not parse mount point "' . $rootMountPath . '"', |
|
| 145 | + 'Could not parse mount point "'.$rootMountPath.'"', |
|
| 146 | 146 | \OCP\Util::ERROR |
| 147 | 147 | ); |
| 148 | 148 | continue; |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | $storageOptions['authMechanism'] = null; // ensure config hash works |
| 159 | 159 | } |
| 160 | 160 | if (isset($storageOptions['id'])) { |
| 161 | - $configId = (int)$storageOptions['id']; |
|
| 161 | + $configId = (int) $storageOptions['id']; |
|
| 162 | 162 | if (isset($storages[$configId])) { |
| 163 | 163 | $currentStorage = $storages[$configId]; |
| 164 | 164 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | // don't die if a storage backend doesn't exist |
| 195 | 195 | \OCP\Util::writeLog( |
| 196 | 196 | 'files_external', |
| 197 | - 'Could not load storage: "' . $e->getMessage() . '"', |
|
| 197 | + 'Could not load storage: "'.$e->getMessage().'"', |
|
| 198 | 198 | \OCP\Util::ERROR |
| 199 | 199 | ); |
| 200 | 200 | } |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | |
| 47 | 47 | $container = $this->getContainer(); |
| 48 | 48 | |
| 49 | - $container->registerService('OCP\Files\Config\IUserMountCache', function (IAppContainer $c) { |
|
| 49 | + $container->registerService('OCP\Files\Config\IUserMountCache', function(IAppContainer $c) { |
|
| 50 | 50 | return $c->getServer()->query('UserMountCache'); |
| 51 | 51 | }); |
| 52 | 52 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | * @param StorageConfig $storage |
| 75 | 75 | * @param IUser $user |
| 76 | 76 | */ |
| 77 | - private function prepareStorageConfig(StorageConfig &$storage, IUser $user) { |
|
| 77 | + private function prepareStorageConfig(StorageConfig & $storage, IUser $user) { |
|
| 78 | 78 | foreach ($storage->getBackendOptions() as $option => $value) { |
| 79 | 79 | $storage->setBackendOption($option, \OC_Mount_Config::setUserVars( |
| 80 | 80 | $user->getUID(), $value |
@@ -141,12 +141,12 @@ discard block |
||
| 141 | 141 | return $storage->getId(); |
| 142 | 142 | }, $storages)); |
| 143 | 143 | |
| 144 | - $availableStorages = array_map(function (Storage\IStorage $storage, StorageConfig $storageConfig) { |
|
| 144 | + $availableStorages = array_map(function(Storage\IStorage $storage, StorageConfig $storageConfig) { |
|
| 145 | 145 | try { |
| 146 | 146 | $availability = $storage->getAvailability(); |
| 147 | 147 | if (!$availability['available'] && !Availability::shouldRecheck($availability)) { |
| 148 | 148 | $storage = new FailedStorage([ |
| 149 | - 'exception' => new StorageNotAvailableException('Storage with mount id ' . $storageConfig->getId() . ' is not available') |
|
| 149 | + 'exception' => new StorageNotAvailableException('Storage with mount id '.$storageConfig->getId().' is not available') |
|
| 150 | 150 | ]); |
| 151 | 151 | } |
| 152 | 152 | } catch (\Exception $e) { |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | $this->userStoragesService, |
| 163 | 163 | $storageConfig->getId(), |
| 164 | 164 | $storage, |
| 165 | - '/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(), |
|
| 165 | + '/'.$user->getUID().'/files'.$storageConfig->getMountPoint(), |
|
| 166 | 166 | null, |
| 167 | 167 | $loader, |
| 168 | 168 | $storageConfig->getMountOptions() |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | } else { |
| 171 | 171 | return new MountPoint( |
| 172 | 172 | $storage, |
| 173 | - '/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(), |
|
| 173 | + '/'.$user->getUID().'/files'.$storageConfig->getMountPoint(), |
|
| 174 | 174 | null, |
| 175 | 175 | $loader, |
| 176 | 176 | $storageConfig->getMountOptions(), |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | try { |
| 104 | 104 | $mount = $this->globalService->getStorage($mountId); |
| 105 | 105 | } catch (NotFoundException $e) { |
| 106 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts</error>'); |
|
| 106 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts</error>'); |
|
| 107 | 107 | return 404; |
| 108 | 108 | } |
| 109 | 109 | |
@@ -123,13 +123,13 @@ discard block |
||
| 123 | 123 | if ((count($addUsers) + count($removeUsers) + count($addGroups) + count($removeGroups) > 0) || $input->getOption('remove-all')) { |
| 124 | 124 | foreach ($addUsers as $addUser) { |
| 125 | 125 | if (!$this->userManager->userExists($addUser)) { |
| 126 | - $output->writeln('<error>User "' . $addUser . '" not found</error>'); |
|
| 126 | + $output->writeln('<error>User "'.$addUser.'" not found</error>'); |
|
| 127 | 127 | return 404; |
| 128 | 128 | } |
| 129 | 129 | } |
| 130 | 130 | foreach ($addGroups as $addGroup) { |
| 131 | 131 | if (!$this->groupManager->groupExists($addGroup)) { |
| 132 | - $output->writeln('<error>Group "' . $addGroup . '" not found</error>'); |
|
| 132 | + $output->writeln('<error>Group "'.$addGroup.'" not found</error>'); |
|
| 133 | 133 | return 404; |
| 134 | 134 | } |
| 135 | 135 | } |
@@ -156,11 +156,11 @@ discard block |
||
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | if ($outputType === self::OUTPUT_FORMAT_JSON || $outputType === self::OUTPUT_FORMAT_JSON_PRETTY) { |
| 159 | - $keys = array_map(function ($header) { |
|
| 159 | + $keys = array_map(function($header) { |
|
| 160 | 160 | return strtolower(str_replace(' ', '_', $header)); |
| 161 | 161 | }, $headers); |
| 162 | 162 | |
| 163 | - $pairs = array_map(function (StorageConfig $config) use ($keys, $userId) { |
|
| 163 | + $pairs = array_map(function(StorageConfig $config) use ($keys, $userId) { |
|
| 164 | 164 | $values = [ |
| 165 | 165 | $config->getId(), |
| 166 | 166 | $config->getMountPoint(), |
@@ -193,23 +193,23 @@ discard block |
||
| 193 | 193 | 'enable_sharing' => false, |
| 194 | 194 | 'encoding_compatibility' => false |
| 195 | 195 | ]; |
| 196 | - $rows = array_map(function (StorageConfig $config) use ($userId, $defaultMountOptions, $full) { |
|
| 196 | + $rows = array_map(function(StorageConfig $config) use ($userId, $defaultMountOptions, $full) { |
|
| 197 | 197 | $storageConfig = $config->getBackendOptions(); |
| 198 | 198 | $keys = array_keys($storageConfig); |
| 199 | 199 | $values = array_values($storageConfig); |
| 200 | 200 | |
| 201 | 201 | if (!$full) { |
| 202 | - $values = array_map(function ($value) { |
|
| 202 | + $values = array_map(function($value) { |
|
| 203 | 203 | if (is_string($value) && strlen($value) > 32) { |
| 204 | - return substr($value, 0, 6) . '...' . substr($value, -6, 6); |
|
| 204 | + return substr($value, 0, 6).'...'.substr($value, -6, 6); |
|
| 205 | 205 | } else { |
| 206 | 206 | return $value; |
| 207 | 207 | } |
| 208 | 208 | }, $values); |
| 209 | 209 | } |
| 210 | 210 | |
| 211 | - $configStrings = array_map(function ($key, $value) { |
|
| 212 | - return $key . ': ' . json_encode($value); |
|
| 211 | + $configStrings = array_map(function($key, $value) { |
|
| 212 | + return $key.': '.json_encode($value); |
|
| 213 | 213 | }, $keys, $values); |
| 214 | 214 | $configString = implode(', ', $configStrings); |
| 215 | 215 | |
@@ -223,8 +223,8 @@ discard block |
||
| 223 | 223 | $keys = array_keys($mountOptions); |
| 224 | 224 | $values = array_values($mountOptions); |
| 225 | 225 | |
| 226 | - $optionsStrings = array_map(function ($key, $value) { |
|
| 227 | - return $key . ': ' . json_encode($value); |
|
| 226 | + $optionsStrings = array_map(function($key, $value) { |
|
| 227 | + return $key.': '.json_encode($value); |
|
| 228 | 228 | }, $keys, $values); |
| 229 | 229 | $optionsString = implode(', ', $optionsStrings); |
| 230 | 230 | |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | try { |
| 69 | 69 | $mount = $this->globalService->getStorage($mountId); |
| 70 | 70 | } catch (NotFoundException $e) { |
| 71 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
| 71 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
| 72 | 72 | return 404; |
| 73 | 73 | } |
| 74 | 74 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | try { |
| 72 | 72 | $mount = $this->globalService->getStorage($mountId); |
| 73 | 73 | } catch (NotFoundException $e) { |
| 74 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
| 74 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
| 75 | 75 | return 404; |
| 76 | 76 | } |
| 77 | 77 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | $backend->manipulateStorageConfig($storage); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - private function updateStorageStatus(StorageConfig &$storage, $configInput, OutputInterface $output) { |
|
| 96 | + private function updateStorageStatus(StorageConfig & $storage, $configInput, OutputInterface $output) { |
|
| 97 | 97 | try { |
| 98 | 98 | try { |
| 99 | 99 | $this->manipulateStorageConfig($storage); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | foreach ($configInput as $configOption) { |
| 107 | 107 | if (!strpos($configOption, '=')) { |
| 108 | - $output->writeln('<error>Invalid mount configuration option "' . $configOption . '"</error>'); |
|
| 108 | + $output->writeln('<error>Invalid mount configuration option "'.$configOption.'"</error>'); |
|
| 109 | 109 | return; |
| 110 | 110 | } |
| 111 | 111 | list($key, $value) = explode('=', $configOption, 2); |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | // FIXME: convert storage exceptions to StorageNotAvailableException |
| 138 | 138 | $storage->setStatus( |
| 139 | 139 | StorageNotAvailableException::STATUS_ERROR, |
| 140 | - get_class($e) . ': ' . $e->getMessage() |
|
| 140 | + get_class($e).': '.$e->getMessage() |
|
| 141 | 141 | ); |
| 142 | 142 | } |
| 143 | 143 | } |