@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $this->logger->logException($e); |
128 | 128 | return new DataResponse( |
129 | 129 | [ |
130 | - 'message' => (string)$this->l10n->t('Invalid backend or authentication mechanism class') |
|
130 | + 'message' => (string) $this->l10n->t('Invalid backend or authentication mechanism class') |
|
131 | 131 | ], |
132 | 132 | Http::STATUS_UNPROCESSABLE_ENTITY |
133 | 133 | ); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | if ($mountPoint === '' || $mountPoint === '/') { |
147 | 147 | return new DataResponse( |
148 | 148 | array( |
149 | - 'message' => (string)$this->l10n->t('Invalid mount point') |
|
149 | + 'message' => (string) $this->l10n->t('Invalid mount point') |
|
150 | 150 | ), |
151 | 151 | Http::STATUS_UNPROCESSABLE_ENTITY |
152 | 152 | ); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | // objectstore must not be sent from client side |
157 | 157 | return new DataResponse( |
158 | 158 | array( |
159 | - 'message' => (string)$this->l10n->t('Objectstore forbidden') |
|
159 | + 'message' => (string) $this->l10n->t('Objectstore forbidden') |
|
160 | 160 | ), |
161 | 161 | Http::STATUS_UNPROCESSABLE_ENTITY |
162 | 162 | ); |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | // invalid backend |
171 | 171 | return new DataResponse( |
172 | 172 | array( |
173 | - 'message' => (string)$this->l10n->t('Invalid storage backend "%s"', [ |
|
173 | + 'message' => (string) $this->l10n->t('Invalid storage backend "%s"', [ |
|
174 | 174 | $backend->getIdentifier() |
175 | 175 | ]) |
176 | 176 | ), |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | // not permitted to use backend |
183 | 183 | return new DataResponse( |
184 | 184 | array( |
185 | - 'message' => (string)$this->l10n->t('Not permitted to use backend "%s"', [ |
|
185 | + 'message' => (string) $this->l10n->t('Not permitted to use backend "%s"', [ |
|
186 | 186 | $backend->getIdentifier() |
187 | 187 | ]) |
188 | 188 | ), |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | // not permitted to use auth mechanism |
194 | 194 | return new DataResponse( |
195 | 195 | array( |
196 | - 'message' => (string)$this->l10n->t('Not permitted to use authentication mechanism "%s"', [ |
|
196 | + 'message' => (string) $this->l10n->t('Not permitted to use authentication mechanism "%s"', [ |
|
197 | 197 | $authMechanism->getIdentifier() |
198 | 198 | ]) |
199 | 199 | ), |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | // unsatisfied parameters |
206 | 206 | return new DataResponse( |
207 | 207 | array( |
208 | - 'message' => (string)$this->l10n->t('Unsatisfied backend parameters') |
|
208 | + 'message' => (string) $this->l10n->t('Unsatisfied backend parameters') |
|
209 | 209 | ), |
210 | 210 | Http::STATUS_UNPROCESSABLE_ENTITY |
211 | 211 | ); |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | // unsatisfied parameters |
215 | 215 | return new DataResponse( |
216 | 216 | [ |
217 | - 'message' => (string)$this->l10n->t('Unsatisfied authentication mechanism parameters') |
|
217 | + 'message' => (string) $this->l10n->t('Unsatisfied authentication mechanism parameters') |
|
218 | 218 | ], |
219 | 219 | Http::STATUS_UNPROCESSABLE_ENTITY |
220 | 220 | ); |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * @param StorageConfig $storage storage configuration |
242 | 242 | * @param bool $testOnly whether to storage should only test the connection or do more things |
243 | 243 | */ |
244 | - protected function updateStorageStatus(StorageConfig &$storage, $testOnly = true) { |
|
244 | + protected function updateStorageStatus(StorageConfig & $storage, $testOnly = true) { |
|
245 | 245 | try { |
246 | 246 | $this->manipulateStorageConfig($storage); |
247 | 247 | |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | } catch (NotFoundException $e) { |
307 | 307 | return new DataResponse( |
308 | 308 | [ |
309 | - 'message' => (string)$this->l10n->t('Storage with id "%i" not found', array($id)) |
|
309 | + 'message' => (string) $this->l10n->t('Storage with id "%i" not found', array($id)) |
|
310 | 310 | ], |
311 | 311 | Http::STATUS_NOT_FOUND |
312 | 312 | ); |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | } catch (NotFoundException $e) { |
332 | 332 | return new DataResponse( |
333 | 333 | [ |
334 | - 'message' => (string)$this->l10n->t('Storage with id "%i" not found', array($id)) |
|
334 | + 'message' => (string) $this->l10n->t('Storage with id "%i" not found', array($id)) |
|
335 | 335 | ], |
336 | 336 | Http::STATUS_NOT_FOUND |
337 | 337 | ); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | } catch (NotFoundException $e) { |
123 | 123 | return new DataResponse( |
124 | 124 | [ |
125 | - 'message' => (string)$this->l10n->t('Storage with id "%i" not found', array($id)) |
|
125 | + 'message' => (string) $this->l10n->t('Storage with id "%i" not found', array($id)) |
|
126 | 126 | ], |
127 | 127 | Http::STATUS_NOT_FOUND |
128 | 128 | ); |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | } else { |
163 | 163 | return new DataResponse( |
164 | 164 | [ |
165 | - 'message' => (string)$this->l10n->t('Storage with id "%i" is not user editable', array($id)) |
|
165 | + 'message' => (string) $this->l10n->t('Storage with id "%i" is not user editable', array($id)) |
|
166 | 166 | ], |
167 | 167 | Http::STATUS_FORBIDDEN |
168 | 168 | ); |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | } catch (NotFoundException $e) { |
171 | 171 | return new DataResponse( |
172 | 172 | [ |
173 | - 'message' => (string)$this->l10n->t('Storage with id "%i" not found', array($id)) |
|
173 | + 'message' => (string) $this->l10n->t('Storage with id "%i" not found', array($id)) |
|
174 | 174 | ], |
175 | 175 | Http::STATUS_NOT_FOUND |
176 | 176 | ); |
@@ -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(), |
@@ -255,11 +255,11 @@ discard block |
||
255 | 255 | */ |
256 | 256 | public static function readData($user = null) { |
257 | 257 | if (isset($user)) { |
258 | - $jsonFile = \OC::$server->getUserManager()->get($user)->getHome() . '/mount.json'; |
|
258 | + $jsonFile = \OC::$server->getUserManager()->get($user)->getHome().'/mount.json'; |
|
259 | 259 | } else { |
260 | 260 | $config = \OC::$server->getConfig(); |
261 | - $datadir = $config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data/'); |
|
262 | - $jsonFile = $config->getSystemValue('mount_file', $datadir . '/mount.json'); |
|
261 | + $datadir = $config->getSystemValue('datadirectory', \OC::$SERVERROOT.'/data/'); |
|
262 | + $jsonFile = $config->getSystemValue('mount_file', $datadir.'/mount.json'); |
|
263 | 263 | } |
264 | 264 | if (is_file($jsonFile)) { |
265 | 265 | $mountPoints = json_decode(file_get_contents($jsonFile), true); |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | foreach ($backends as $backend) { |
286 | 286 | foreach ($backend->checkDependencies() as $dependency) { |
287 | 287 | if ($message = $dependency->getMessage()) { |
288 | - $message .= '<p>' . $message . '</p>'; |
|
288 | + $message .= '<p>'.$message.'</p>'; |
|
289 | 289 | } else { |
290 | 290 | $dependencyGroups[$dependency->getDependency()][] = $backend; |
291 | 291 | } |
@@ -294,9 +294,9 @@ discard block |
||
294 | 294 | |
295 | 295 | foreach ($dependencyGroups as $module => $dependants) { |
296 | 296 | $backends = implode(', ', array_map(function($backend) { |
297 | - return '"' . $backend->getText() . '"'; |
|
297 | + return '"'.$backend->getText().'"'; |
|
298 | 298 | }, $dependants)); |
299 | - $message .= '<p>' . OC_Mount_Config::getSingleDependencyMessage($l, $module, $backends) . '</p>'; |
|
299 | + $message .= '<p>'.OC_Mount_Config::getSingleDependencyMessage($l, $module, $backends).'</p>'; |
|
300 | 300 | } |
301 | 301 | |
302 | 302 | return $message; |
@@ -313,11 +313,11 @@ discard block |
||
313 | 313 | private static function getSingleDependencyMessage(\OCP\IL10N $l, $module, $backend) { |
314 | 314 | switch (strtolower($module)) { |
315 | 315 | case 'curl': |
316 | - return (string)$l->t('The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.', $backend); |
|
316 | + return (string) $l->t('The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.', $backend); |
|
317 | 317 | case 'ftp': |
318 | - return (string)$l->t('The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.', $backend); |
|
318 | + return (string) $l->t('The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.', $backend); |
|
319 | 319 | default: |
320 | - return (string)$l->t('"%s" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.', array($module, $backend)); |
|
320 | + return (string) $l->t('"%s" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.', array($module, $backend)); |
|
321 | 321 | } |
322 | 322 | } |
323 | 323 | |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | $cipher = self::getCipher(); |
363 | 363 | $iv = \OCP\Util::generateRandomBytes(16); |
364 | 364 | $cipher->setIV($iv); |
365 | - return base64_encode($iv . $cipher->encrypt($password)); |
|
365 | + return base64_encode($iv.$cipher->encrypt($password)); |
|
366 | 366 | } |
367 | 367 | |
368 | 368 | /** |
@@ -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 | } |