| @@ -138,7 +138,7 @@ discard block | ||
| 138 | 138 | } | 
| 139 | 139 |  		foreach ($favorites['folders'] as $favorite) { | 
| 140 | 140 |  			$limitations[] = $query->expr()->like('file', $query->createNamedParameter( | 
| 141 | - $this->db->escapeLikeParameter($favorite . '/') . '%' | |
| 141 | + $this->db->escapeLikeParameter($favorite.'/').'%' | |
| 142 | 142 | )); | 
| 143 | 143 | } | 
| 144 | 144 | |
| @@ -148,9 +148,9 @@ discard block | ||
| 148 | 148 | |
| 149 | 149 |  		$function = $query->createFunction(' | 
| 150 | 150 | CASE | 
| 151 | -				WHEN ' . $query->getColumnName('app') . ' <> ' . $query->createNamedParameter('files') . ' THEN 1 | |
| 152 | -				WHEN ' . $query->getColumnName('app') . ' = ' . $query->createNamedParameter('files') . ' | |
| 153 | -					AND (' . implode(' OR ', $limitations) . ') | |
| 151 | +				WHEN ' . $query->getColumnName('app').' <> '.$query->createNamedParameter('files').' THEN 1 | |
| 152 | +				WHEN ' . $query->getColumnName('app').' = '.$query->createNamedParameter('files').' | |
| 153 | +					AND (' . implode(' OR ', $limitations).') | |
| 154 | 154 | THEN 1 | 
| 155 | 155 | END = 1' | 
| 156 | 156 | ); | 
| @@ -64,7 +64,7 @@ | ||
| 64 | 64 |  			if (!empty($nodes)) { | 
| 65 | 65 | /** @var \OCP\Files\Node $node */ | 
| 66 | 66 | $node = array_shift($nodes); | 
| 67 | - $path = substr($node->getPath(), strlen($user . '/files/')); | |
| 67 | + $path = substr($node->getPath(), strlen($user.'/files/')); | |
| 68 | 68 | |
| 69 | 69 | $items[] = $path; | 
| 70 | 70 |  				if ($node instanceof Folder) { | 
| @@ -51,7 +51,7 @@ | ||
| 51 | 51 | */ | 
| 52 | 52 |  	public function run($argument) { | 
| 53 | 53 | $lockingProvider = \OC::$server->getLockingProvider(); | 
| 54 | -		if($lockingProvider instanceof DBLockingProvider) { | |
| 54 | +		if ($lockingProvider instanceof DBLockingProvider) { | |
| 55 | 55 | $lockingProvider->cleanExpiredLocks(); | 
| 56 | 56 | } | 
| 57 | 57 | } | 
| @@ -80,12 +80,12 @@ | ||
| 80 | 80 | $deletedEntries = 0; | 
| 81 | 81 | |
| 82 | 82 | $query = $this->connection->getQueryBuilder(); | 
| 83 | -		$query->select('t1.' . $idCol) | |
| 83 | +		$query->select('t1.'.$idCol) | |
| 84 | 84 | ->from($table, 't1') | 
| 85 | 85 |  			->where($query->expr()->eq($typeCol, $query->expr()->literal('files'))) | 
| 86 | 86 |  			->andWhere($query->expr()->isNull('t2.fileid')) | 
| 87 | -			->leftJoin('t1', 'filecache', 't2', $query->expr()->eq($query->expr()->castColumn('t1.' . $idCol, IQueryBuilder::PARAM_INT), 't2.fileid')) | |
| 88 | -			->groupBy('t1.' . $idCol) | |
| 87 | +			->leftJoin('t1', 'filecache', 't2', $query->expr()->eq($query->expr()->castColumn('t1.'.$idCol, IQueryBuilder::PARAM_INT), 't2.fileid')) | |
| 88 | +			->groupBy('t1.'.$idCol) | |
| 89 | 89 | ->setMaxResults(self::CHUNK_SIZE); | 
| 90 | 90 | |
| 91 | 91 | $deleteQuery = $this->connection->getQueryBuilder(); | 
| @@ -38,14 +38,14 @@ | ||
| 38 | 38 | |
| 39 | 39 |  	public function run($argument) { | 
| 40 | 40 | $isUser = $this->proxy instanceof User_Proxy; | 
| 41 | -		foreach($argument['records'] as $record) { | |
| 41 | +		foreach ($argument['records'] as $record) { | |
| 42 | 42 | $access = $this->proxy->getLDAPAccess($record['name']); | 
| 43 | 43 | $uuid = $access->getUUID($record['dn'], $isUser); | 
| 44 | -			if($uuid === false) { | |
| 44 | +			if ($uuid === false) { | |
| 45 | 45 | // record not found, no prob, continue with the next | 
| 46 | 46 | continue; | 
| 47 | 47 | } | 
| 48 | -			if($uuid !== $record['uuid']) { | |
| 48 | +			if ($uuid !== $record['uuid']) { | |
| 49 | 49 | $this->mapper->setUUIDbyDN($uuid, $record['dn']); | 
| 50 | 50 | } | 
| 51 | 51 | } | 
| @@ -62,7 +62,7 @@ | ||
| 62 | 62 | |
| 63 | 63 | $success = $this->helper->deleteServerConfiguration($configPrefix); | 
| 64 | 64 | |
| 65 | -		if($success) { | |
| 65 | +		if ($success) { | |
| 66 | 66 |  			$output->writeln("Deleted configuration with configID '{$configPrefix}'"); | 
| 67 | 67 |  		} else { | 
| 68 | 68 |  			$output->writeln("Cannot delete configuration with configID '{$configPrefix}'"); | 
| @@ -60,7 +60,7 @@ | ||
| 60 | 60 | $helper = new Helper(\OC::$server->getConfig()); | 
| 61 | 61 | $availableConfigs = $helper->getServerConfigurationPrefixes(); | 
| 62 | 62 |  		$configID = $input->getArgument('configID'); | 
| 63 | -		if(!in_array($configID, $availableConfigs)) { | |
| 63 | +		if (!in_array($configID, $availableConfigs)) { | |
| 64 | 64 |  			$output->writeln("Invalid configID"); | 
| 65 | 65 | return; | 
| 66 | 66 | } | 
| @@ -63,9 +63,9 @@ | ||
| 63 | 63 | $configHolder->saveConfiguration(); | 
| 64 | 64 | |
| 65 | 65 | $prose = ''; | 
| 66 | -		if(!$input->getOption('only-print-prefix')) { | |
| 66 | +		if (!$input->getOption('only-print-prefix')) { | |
| 67 | 67 | $prose = 'Created new configuration with configID '; | 
| 68 | 68 | } | 
| 69 | -		$output->writeln($prose . "{$configPrefix}"); | |
| 69 | +		$output->writeln($prose."{$configPrefix}"); | |
| 70 | 70 | } | 
| 71 | 71 | } | 
| @@ -41,7 +41,7 @@ | ||
| 41 | 41 | $application->registerRoutes($this, [ | 
| 42 | 42 | 'ocs' => [ | 
| 43 | 43 | ['name' => 'ConfigAPI#create', 'url' => '/api/v1/config', 'verb' => 'POST'], | 
| 44 | -		['name' => 'ConfigAPI#show',   'url' => '/api/v1/config/{configID}', 'verb' => 'GET'], | |
| 44 | +		['name' => 'ConfigAPI#show', 'url' => '/api/v1/config/{configID}', 'verb' => 'GET'], | |
| 45 | 45 |  		['name' => 'ConfigAPI#modify', 'url' => '/api/v1/config/{configID}', 'verb' => 'PUT'], | 
| 46 | 46 |  		['name' => 'ConfigAPI#delete', 'url' => '/api/v1/config/{configID}', 'verb' => 'DELETE'], | 
| 47 | 47 | ] |