Completed
Branch master (69e0e2)
by Johannes
12:08
created
apps/files_external/lib/Service/LegacyStoragesService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 					}
Please login to merge, or discard this patch.
apps/files_external/lib/Service/StoragesService.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -70,17 +70,17 @@  discard block
 block discarded – undo
70 70
 	}
71 71
 
72 72
 	protected function getStorageConfigFromDBMount(array $mount) {
73
-		$applicableUsers = array_filter($mount['applicable'], function ($applicable) {
73
+		$applicableUsers = array_filter($mount['applicable'], function($applicable) {
74 74
 			return $applicable['type'] === DBConfigService::APPLICABLE_TYPE_USER;
75 75
 		});
76
-		$applicableUsers = array_map(function ($applicable) {
76
+		$applicableUsers = array_map(function($applicable) {
77 77
 			return $applicable['value'];
78 78
 		}, $applicableUsers);
79 79
 
80
-		$applicableGroups = array_filter($mount['applicable'], function ($applicable) {
80
+		$applicableGroups = array_filter($mount['applicable'], function($applicable) {
81 81
 			return $applicable['type'] === DBConfigService::APPLICABLE_TYPE_GROUP;
82 82
 		});
83
-		$applicableGroups = array_map(function ($applicable) {
83
+		$applicableGroups = array_map(function($applicable) {
84 84
 			return $applicable['value'];
85 85
 		}, $applicableGroups);
86 86
 
@@ -96,20 +96,20 @@  discard block
 block discarded – undo
96 96
 				$mount['priority']
97 97
 			);
98 98
 			$config->setType($mount['type']);
99
-			$config->setId((int)$mount['mount_id']);
99
+			$config->setId((int) $mount['mount_id']);
100 100
 			return $config;
101 101
 		} catch (\UnexpectedValueException $e) {
102 102
 			// don't die if a storage backend doesn't exist
103 103
 			\OCP\Util::writeLog(
104 104
 				'files_external',
105
-				'Could not load storage: "' . $e->getMessage() . '"',
105
+				'Could not load storage: "'.$e->getMessage().'"',
106 106
 				\OCP\Util::ERROR
107 107
 			);
108 108
 			return null;
109 109
 		} catch (\InvalidArgumentException $e) {
110 110
 			\OCP\Util::writeLog(
111 111
 				'files_external',
112
-				'Could not load storage: "' . $e->getMessage() . '"',
112
+				'Could not load storage: "'.$e->getMessage().'"',
113 113
 				\OCP\Util::ERROR
114 114
 			);
115 115
 			return null;
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
 	protected function readConfig() {
125 125
 		$mounts = $this->readDBConfig();
126 126
 		$configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts);
127
-		$configs = array_filter($configs, function ($config) {
127
+		$configs = array_filter($configs, function($config) {
128 128
 			return $config instanceof StorageConfig;
129 129
 		});
130 130
 
131
-		$keys = array_map(function (StorageConfig $config) {
131
+		$keys = array_map(function(StorageConfig $config) {
132 132
 			return $config->getId();
133 133
 		}, $configs);
134 134
 
@@ -147,14 +147,14 @@  discard block
 block discarded – undo
147 147
 		$mount = $this->dbConfig->getMountById($id);
148 148
 
149 149
 		if (!is_array($mount)) {
150
-			throw new NotFoundException('Storage with id "' . $id . '" not found');
150
+			throw new NotFoundException('Storage with id "'.$id.'" not found');
151 151
 		}
152 152
 
153 153
 		$config = $this->getStorageConfigFromDBMount($mount);
154 154
 		if ($this->isApplicable($config)) {
155 155
 			return $config;
156 156
 		} else {
157
-			throw new NotFoundException('Storage with id "' . $id . '" not found');
157
+			throw new NotFoundException('Storage with id "'.$id.'" not found');
158 158
 		}
159 159
 	}
160 160
 
@@ -295,11 +295,11 @@  discard block
 block discarded – undo
295 295
 	) {
296 296
 		$backend = $this->backendService->getBackend($backendIdentifier);
297 297
 		if (!$backend) {
298
-			throw new \InvalidArgumentException('Unable to get backend for ' . $backendIdentifier);
298
+			throw new \InvalidArgumentException('Unable to get backend for '.$backendIdentifier);
299 299
 		}
300 300
 		$authMechanism = $this->backendService->getAuthMechanism($authMechanismIdentifier);
301 301
 		if (!$authMechanism) {
302
-			throw new \InvalidArgumentException('Unable to get authentication mechanism for ' . $authMechanismIdentifier);
302
+			throw new \InvalidArgumentException('Unable to get authentication mechanism for '.$authMechanismIdentifier);
303 303
 		}
304 304
 		$newStorage = new StorageConfig();
305 305
 		$newStorage->setMountPoint($mountPoint);
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
 		$existingMount = $this->dbConfig->getMountById($id);
378 378
 
379 379
 		if (!is_array($existingMount)) {
380
-			throw new NotFoundException('Storage with id "' . $id . '" not found while updating storage');
380
+			throw new NotFoundException('Storage with id "'.$id.'" not found while updating storage');
381 381
 		}
382 382
 
383 383
 		$oldStorage = $this->getStorageConfigFromDBMount($existingMount);
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 		$existingMount = $this->dbConfig->getMountById($id);
457 457
 
458 458
 		if (!is_array($existingMount)) {
459
-			throw new NotFoundException('Storage with id "' . $id . '" not found');
459
+			throw new NotFoundException('Storage with id "'.$id.'" not found');
460 460
 		}
461 461
 
462 462
 		$this->dbConfig->removeMount($id);
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
 			// the storage id could not be computed
475 475
 			\OCP\Util::writeLog(
476 476
 				'files_external',
477
-				'Exception: "' . $e->getMessage() . '"',
477
+				'Exception: "'.$e->getMessage().'"',
478 478
 				\OCP\Util::ERROR
479 479
 			);
480 480
 		}
Please login to merge, or discard this patch.
apps/files_external/lib/Controller/UserStoragesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
 		} catch (NotFoundException $e) {
199 199
 			return new DataResponse(
200 200
 				[
201
-					'message' => (string)$this->l10n->t('Storage with id "%i" not found', array($id))
201
+					'message' => (string) $this->l10n->t('Storage with id "%i" not found', array($id))
202 202
 				],
203 203
 				Http::STATUS_NOT_FOUND
204 204
 			);
Please login to merge, or discard this patch.
apps/files_external/lib/Controller/UserGlobalStoragesController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 			);
Please login to merge, or discard this patch.
apps/files_external/lib/AppInfo/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
apps/files_external/lib/Config/ConfigAdapter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.
apps/files_external/lib/config.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -255,11 +255,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	/**
Please login to merge, or discard this patch.
apps/files_external/lib/Command/Applicable.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 			}
Please login to merge, or discard this patch.
apps/files_external/lib/Command/ListCommand.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -156,11 +156,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.