@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | protected function run($argument) { |
155 | 155 | |
156 | 156 | $target = $argument['url']; |
157 | - $created = isset($argument['created']) ? (int)$argument['created'] : $this->timeFactory->getTime(); |
|
157 | + $created = isset($argument['created']) ? (int) $argument['created'] : $this->timeFactory->getTime(); |
|
158 | 158 | $currentTime = $this->timeFactory->getTime(); |
159 | 159 | $source = $this->urlGenerator->getAbsoluteURL('/'); |
160 | 160 | $source = rtrim($source, '/'); |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | $endPoint = isset($endPoints['shared-secret']) ? $endPoints['shared-secret'] : $this->defaultEndPoint; |
173 | 173 | |
174 | 174 | // make sure that we have a well formated url |
175 | - $url = rtrim($target, '/') . '/' . trim($endPoint, '/'); |
|
175 | + $url = rtrim($target, '/').'/'.trim($endPoint, '/'); |
|
176 | 176 | |
177 | 177 | try { |
178 | 178 | $result = $this->httpClient->post( |
@@ -193,16 +193,16 @@ discard block |
||
193 | 193 | } catch (ClientException $e) { |
194 | 194 | $status = $e->getCode(); |
195 | 195 | if ($status === Http::STATUS_FORBIDDEN) { |
196 | - $this->logger->info($target . ' refused to ask for a shared secret.', ['app' => 'federation']); |
|
196 | + $this->logger->info($target.' refused to ask for a shared secret.', ['app' => 'federation']); |
|
197 | 197 | } else { |
198 | - $this->logger->info($target . ' responded with a ' . $status . ' containing: ' . $e->getMessage(), ['app' => 'federation']); |
|
198 | + $this->logger->info($target.' responded with a '.$status.' containing: '.$e->getMessage(), ['app' => 'federation']); |
|
199 | 199 | } |
200 | 200 | } catch (RequestException $e) { |
201 | 201 | $status = -1; // There is no status code if we could not connect |
202 | - $this->logger->info('Could not connect to ' . $target, ['app' => 'federation']); |
|
202 | + $this->logger->info('Could not connect to '.$target, ['app' => 'federation']); |
|
203 | 203 | } catch (RingException $e) { |
204 | 204 | $status = -1; // There is no status code if we could not connect |
205 | - $this->logger->info('Could not connect to ' . $target, ['app' => 'federation']); |
|
205 | + $this->logger->info('Could not connect to '.$target, ['app' => 'federation']); |
|
206 | 206 | } catch (\Exception $e) { |
207 | 207 | $status = Http::STATUS_INTERNAL_SERVER_ERROR; |
208 | 208 | $this->logger->logException($e, ['app' => 'federation']); |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | */ |
226 | 226 | protected function reAddJob(array $argument) { |
227 | 227 | $url = $argument['url']; |
228 | - $created = isset($argument['created']) ? (int)$argument['created'] : $this->timeFactory->getTime(); |
|
228 | + $created = isset($argument['created']) ? (int) $argument['created'] : $this->timeFactory->getTime(); |
|
229 | 229 | $token = $argument['token']; |
230 | 230 | |
231 | 231 | $this->jobList->add( |
@@ -62,12 +62,12 @@ discard block |
||
62 | 62 | $post['dbpass'] = $post['dbpassword']; |
63 | 63 | } |
64 | 64 | |
65 | - if(isset($post['install']) AND $post['install']=='true') { |
|
65 | + if (isset($post['install']) AND $post['install'] == 'true') { |
|
66 | 66 | // We have to launch the installation process : |
67 | 67 | $e = $this->setupHelper->install($post); |
68 | 68 | $errors = array('errors' => $e); |
69 | 69 | |
70 | - if(count($e) > 0) { |
|
70 | + if (count($e) > 0) { |
|
71 | 71 | $options = array_merge($opts, $post, $errors); |
72 | 72 | $this->display($options); |
73 | 73 | } else { |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | } |
100 | 100 | |
101 | 101 | public function finishSetup() { |
102 | - if( file_exists( $this->autoConfigFile )) { |
|
102 | + if (file_exists($this->autoConfigFile)) { |
|
103 | 103 | unlink($this->autoConfigFile); |
104 | 104 | } |
105 | 105 | \OC::$server->getIntegrityCodeChecker()->runInstanceVerification(); |
@@ -107,11 +107,11 @@ discard block |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | public function loadAutoConfig($post) { |
110 | - if( file_exists($this->autoConfigFile)) { |
|
110 | + if (file_exists($this->autoConfigFile)) { |
|
111 | 111 | \OCP\Util::writeLog('core', 'Autoconfig file found, setting up ownCloud…', ILogger::INFO); |
112 | 112 | $AUTOCONFIG = array(); |
113 | 113 | include $this->autoConfigFile; |
114 | - $post = array_merge ($post, $AUTOCONFIG); |
|
114 | + $post = array_merge($post, $AUTOCONFIG); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | $dbIsSet = isset($post['dbtype']); |
@@ -164,12 +164,12 @@ discard block |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | $user = $params['user']; |
167 | - $this->id = 'swift::' . $user . md5($params['bucket']); |
|
167 | + $this->id = 'swift::'.$user.md5($params['bucket']); |
|
168 | 168 | |
169 | 169 | $bucketUrl = new Uri($params['bucket']); |
170 | 170 | if ($bucketUrl->getHost()) { |
171 | 171 | $params['bucket'] = basename($bucketUrl->getPath()); |
172 | - $params['endpoint_url'] = (string)$bucketUrl->withPath(dirname($bucketUrl->getPath())); |
|
172 | + $params['endpoint_url'] = (string) $bucketUrl->withPath(dirname($bucketUrl->getPath())); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | if (empty($params['url'])) { |
@@ -258,16 +258,16 @@ discard block |
||
258 | 258 | continue; |
259 | 259 | } |
260 | 260 | |
261 | - if ($this->is_dir($path . '/' . $file)) { |
|
262 | - $this->rmdir($path . '/' . $file); |
|
261 | + if ($this->is_dir($path.'/'.$file)) { |
|
262 | + $this->rmdir($path.'/'.$file); |
|
263 | 263 | } else { |
264 | - $this->unlink($path . '/' . $file); |
|
264 | + $this->unlink($path.'/'.$file); |
|
265 | 265 | } |
266 | 266 | } |
267 | 267 | |
268 | 268 | try { |
269 | - $this->objectStore->deleteObject($path . '/'); |
|
270 | - $this->objectCache->remove($path . '/'); |
|
269 | + $this->objectStore->deleteObject($path.'/'); |
|
270 | + $this->objectCache->remove($path.'/'); |
|
271 | 271 | } catch (BadResponseError $e) { |
272 | 272 | \OC::$server->getLogger()->logException($e, [ |
273 | 273 | 'level' => ILogger::ERROR, |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | } |
351 | 351 | |
352 | 352 | $stat = array(); |
353 | - $stat['size'] = (int)$object->contentLength; |
|
353 | + $stat['size'] = (int) $object->contentLength; |
|
354 | 354 | $stat['mtime'] = $mtime; |
355 | 355 | $stat['atime'] = time(); |
356 | 356 | return $stat; |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | try { |
383 | 383 | $this->objectStore->deleteObject($path); |
384 | 384 | $this->objectCache->remove($path); |
385 | - $this->objectCache->remove($path . '/'); |
|
385 | + $this->objectCache->remove($path.'/'); |
|
386 | 386 | } catch (BadResponseError $e) { |
387 | 387 | if ($e->getResponse()->getStatusCode() !== 404) { |
388 | 388 | \OC::$server->getLogger()->logException($e, [ |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | file_put_contents($tmpFile, $source); |
441 | 441 | } |
442 | 442 | $handle = fopen($tmpFile, $mode); |
443 | - return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
443 | + return CallbackWrapper::wrap($handle, null, null, function() use ($path, $tmpFile) { |
|
444 | 444 | $this->writeBack($tmpFile, $path); |
445 | 445 | }); |
446 | 446 | } |
@@ -490,11 +490,11 @@ discard block |
||
490 | 490 | try { |
491 | 491 | $source = $this->fetchObject($path1); |
492 | 492 | $source->copy([ |
493 | - 'destination' => $this->bucket . '/' . $path2 |
|
493 | + 'destination' => $this->bucket.'/'.$path2 |
|
494 | 494 | ]); |
495 | 495 | // invalidate target object to force repopulation on fetch |
496 | 496 | $this->objectCache->remove($path2); |
497 | - $this->objectCache->remove($path2 . '/'); |
|
497 | + $this->objectCache->remove($path2.'/'); |
|
498 | 498 | } catch (BadResponseError $e) { |
499 | 499 | \OC::$server->getLogger()->logException($e, [ |
500 | 500 | 'level' => ILogger::ERROR, |
@@ -505,13 +505,13 @@ discard block |
||
505 | 505 | |
506 | 506 | } else if ($fileType === 'dir') { |
507 | 507 | try { |
508 | - $source = $this->fetchObject($path1 . '/'); |
|
508 | + $source = $this->fetchObject($path1.'/'); |
|
509 | 509 | $source->copy([ |
510 | - 'destination' => $this->bucket . '/' . $path2 . '/' |
|
510 | + 'destination' => $this->bucket.'/'.$path2.'/' |
|
511 | 511 | ]); |
512 | 512 | // invalidate target object to force repopulation on fetch |
513 | 513 | $this->objectCache->remove($path2); |
514 | - $this->objectCache->remove($path2 . '/'); |
|
514 | + $this->objectCache->remove($path2.'/'); |
|
515 | 515 | } catch (BadResponseError $e) { |
516 | 516 | \OC::$server->getLogger()->logException($e, [ |
517 | 517 | 'level' => ILogger::ERROR, |
@@ -526,8 +526,8 @@ discard block |
||
526 | 526 | continue; |
527 | 527 | } |
528 | 528 | |
529 | - $source = $path1 . '/' . $file; |
|
530 | - $target = $path2 . '/' . $file; |
|
529 | + $source = $path1.'/'.$file; |
|
530 | + $target = $path2.'/'.$file; |
|
531 | 531 | $this->copy($source, $target); |
532 | 532 | } |
533 | 533 | |
@@ -608,7 +608,7 @@ discard block |
||
608 | 608 | $path = ''; |
609 | 609 | } |
610 | 610 | $cachedContent = $this->getCache()->getFolderContents($path); |
611 | - $cachedNames = array_map(function ($content) { |
|
611 | + $cachedNames = array_map(function($content) { |
|
612 | 612 | return $content['name']; |
613 | 613 | }, $cachedContent); |
614 | 614 | sort($cachedNames); |
@@ -50,14 +50,14 @@ discard block |
||
50 | 50 | |
51 | 51 | static private $groupBE; |
52 | 52 | |
53 | - public function __construct(){ |
|
53 | + public function __construct() { |
|
54 | 54 | $this->interval = self::getRefreshInterval(); |
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | 58 | * @param mixed $argument |
59 | 59 | */ |
60 | - public function run($argument){ |
|
60 | + public function run($argument) { |
|
61 | 61 | self::updateGroups(); |
62 | 62 | } |
63 | 63 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $knownGroups = array_keys(self::getKnownGroups()); |
68 | 68 | $actualGroups = self::getGroupBE()->getGroups(); |
69 | 69 | |
70 | - if(empty($actualGroups) && empty($knownGroups)) { |
|
70 | + if (empty($actualGroups) && empty($knownGroups)) { |
|
71 | 71 | \OCP\Util::writeLog('user_ldap', |
72 | 72 | 'bgJ "updateGroups" – groups do not seem to be configured properly, aborting.', |
73 | 73 | ILogger::INFO); |
@@ -99,26 +99,26 @@ discard block |
||
99 | 99 | SET `owncloudusers` = ? |
100 | 100 | WHERE `owncloudname` = ? |
101 | 101 | '); |
102 | - foreach($groups as $group) { |
|
102 | + foreach ($groups as $group) { |
|
103 | 103 | //we assume, that self::$groupsFromDB has been retrieved already |
104 | 104 | $knownUsers = unserialize(self::$groupsFromDB[$group]['owncloudusers']); |
105 | 105 | $actualUsers = self::getGroupBE()->usersInGroup($group); |
106 | 106 | $hasChanged = false; |
107 | - foreach(array_diff($knownUsers, $actualUsers) as $removedUser) { |
|
107 | + foreach (array_diff($knownUsers, $actualUsers) as $removedUser) { |
|
108 | 108 | \OCP\Util::emitHook('OC_User', 'post_removeFromGroup', array('uid' => $removedUser, 'gid' => $group)); |
109 | 109 | \OCP\Util::writeLog('user_ldap', |
110 | 110 | 'bgJ "updateGroups" – "'.$removedUser.'" removed from "'.$group.'".', |
111 | 111 | ILogger::INFO); |
112 | 112 | $hasChanged = true; |
113 | 113 | } |
114 | - foreach(array_diff($actualUsers, $knownUsers) as $addedUser) { |
|
114 | + foreach (array_diff($actualUsers, $knownUsers) as $addedUser) { |
|
115 | 115 | \OCP\Util::emitHook('OC_User', 'post_addToGroup', array('uid' => $addedUser, 'gid' => $group)); |
116 | 116 | \OCP\Util::writeLog('user_ldap', |
117 | 117 | 'bgJ "updateGroups" – "'.$addedUser.'" added to "'.$group.'".', |
118 | 118 | ILogger::INFO); |
119 | 119 | $hasChanged = true; |
120 | 120 | } |
121 | - if($hasChanged) { |
|
121 | + if ($hasChanged) { |
|
122 | 122 | $query->execute(array(serialize($actualUsers), $group)); |
123 | 123 | } |
124 | 124 | } |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | INTO `*PREFIX*ldap_group_members` (`owncloudname`, `owncloudusers`) |
138 | 138 | VALUES (?, ?) |
139 | 139 | '); |
140 | - foreach($createdGroups as $createdGroup) { |
|
140 | + foreach ($createdGroups as $createdGroup) { |
|
141 | 141 | \OCP\Util::writeLog('user_ldap', |
142 | 142 | 'bgJ "updateGroups" – new group "'.$createdGroup.'" found.', |
143 | 143 | ILogger::INFO); |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | FROM `*PREFIX*ldap_group_members` |
160 | 160 | WHERE `owncloudname` = ? |
161 | 161 | '); |
162 | - foreach($removedGroups as $removedGroup) { |
|
162 | + foreach ($removedGroups as $removedGroup) { |
|
163 | 163 | \OCP\Util::writeLog('user_ldap', |
164 | 164 | 'bgJ "updateGroups" – group "'.$removedGroup.'" was removed.', |
165 | 165 | ILogger::INFO); |
@@ -174,13 +174,13 @@ discard block |
||
174 | 174 | * @return \OCA\User_LDAP\Group_LDAP|\OCA\User_LDAP\Group_Proxy |
175 | 175 | */ |
176 | 176 | static private function getGroupBE() { |
177 | - if(!is_null(self::$groupBE)) { |
|
177 | + if (!is_null(self::$groupBE)) { |
|
178 | 178 | return self::$groupBE; |
179 | 179 | } |
180 | 180 | $helper = new Helper(\OC::$server->getConfig()); |
181 | 181 | $configPrefixes = $helper->getServerConfigurationPrefixes(true); |
182 | 182 | $ldapWrapper = new LDAP(); |
183 | - if(count($configPrefixes) === 1) { |
|
183 | + if (count($configPrefixes) === 1) { |
|
184 | 184 | //avoid the proxy when there is only one LDAP server configured |
185 | 185 | $dbc = \OC::$server->getDatabaseConnection(); |
186 | 186 | $userManager = new Manager( |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | * @return array |
211 | 211 | */ |
212 | 212 | static private function getKnownGroups() { |
213 | - if(is_array(self::$groupsFromDB)) { |
|
213 | + if (is_array(self::$groupsFromDB)) { |
|
214 | 214 | return self::$groupsFromDB; |
215 | 215 | } |
216 | 216 | $query = \OC_DB::prepare(' |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | '); |
220 | 220 | $result = $query->execute()->fetchAll(); |
221 | 221 | self::$groupsFromDB = array(); |
222 | - foreach($result as $dataset) { |
|
222 | + foreach ($result as $dataset) { |
|
223 | 223 | self::$groupsFromDB[$dataset['owncloudname']] = $dataset; |
224 | 224 | } |
225 | 225 |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | public function __construct(Configuration $configuration, ILDAPWrapper $ldap, Access $access) { |
73 | 73 | parent::__construct($ldap); |
74 | 74 | $this->configuration = $configuration; |
75 | - if(is_null(Wizard::$l)) { |
|
75 | + if (is_null(Wizard::$l)) { |
|
76 | 76 | Wizard::$l = \OC::$server->getL10N('user_ldap'); |
77 | 77 | } |
78 | 78 | $this->access = $access; |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | public function __destruct() { |
83 | - if($this->result->hasChanges()) { |
|
83 | + if ($this->result->hasChanges()) { |
|
84 | 84 | $this->configuration->saveConfiguration(); |
85 | 85 | } |
86 | 86 | } |
@@ -95,18 +95,18 @@ discard block |
||
95 | 95 | */ |
96 | 96 | public function countEntries(string $filter, string $type): int { |
97 | 97 | $reqs = ['ldapHost', 'ldapPort', 'ldapBase']; |
98 | - if($type === 'users') { |
|
98 | + if ($type === 'users') { |
|
99 | 99 | $reqs[] = 'ldapUserFilter'; |
100 | 100 | } |
101 | - if(!$this->checkRequirements($reqs)) { |
|
101 | + if (!$this->checkRequirements($reqs)) { |
|
102 | 102 | throw new \Exception('Requirements not met', 400); |
103 | 103 | } |
104 | 104 | |
105 | 105 | $attr = ['dn']; // default |
106 | 106 | $limit = 1001; |
107 | - if($type === 'groups') { |
|
108 | - $result = $this->access->countGroups($filter, $attr, $limit); |
|
109 | - } else if($type === 'users') { |
|
107 | + if ($type === 'groups') { |
|
108 | + $result = $this->access->countGroups($filter, $attr, $limit); |
|
109 | + } else if ($type === 'users') { |
|
110 | 110 | $result = $this->access->countUsers($filter, $attr, $limit); |
111 | 111 | } else if ($type === 'objects') { |
112 | 112 | $result = $this->access->countObjects($limit); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | throw new \Exception('Internal error: Invalid object type', 500); |
115 | 115 | } |
116 | 116 | |
117 | - return (int)$result; |
|
117 | + return (int) $result; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -125,16 +125,16 @@ discard block |
||
125 | 125 | * @return string |
126 | 126 | */ |
127 | 127 | private function formatCountResult(int $count): string { |
128 | - if($count > 1000) { |
|
128 | + if ($count > 1000) { |
|
129 | 129 | return '> 1000'; |
130 | 130 | } |
131 | - return (string)$count; |
|
131 | + return (string) $count; |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | public function countGroups() { |
135 | 135 | $filter = $this->configuration->ldapGroupFilter; |
136 | 136 | |
137 | - if(empty($filter)) { |
|
137 | + if (empty($filter)) { |
|
138 | 138 | $output = self::$l->n('%s group found', '%s groups found', 0, array(0)); |
139 | 139 | $this->result->addChange('ldap_group_count', $output); |
140 | 140 | return $this->result; |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $groupsTotal = $this->countEntries($filter, 'groups'); |
145 | 145 | } catch (\Exception $e) { |
146 | 146 | //400 can be ignored, 500 is forwarded |
147 | - if($e->getCode() === 500) { |
|
147 | + if ($e->getCode() === 500) { |
|
148 | 148 | throw $e; |
149 | 149 | } |
150 | 150 | return false; |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | public function countInBaseDN() { |
187 | 187 | // we don't need to provide a filter in this case |
188 | 188 | $total = $this->countEntries('', 'objects'); |
189 | - if($total === false) { |
|
189 | + if ($total === false) { |
|
190 | 190 | throw new \Exception('invalid results received'); |
191 | 191 | } |
192 | 192 | $this->result->addChange('ldap_test_base', $total); |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * @return int|bool |
201 | 201 | */ |
202 | 202 | public function countUsersWithAttribute($attr, $existsCheck = false) { |
203 | - if(!$this->checkRequirements(array('ldapHost', |
|
203 | + if (!$this->checkRequirements(array('ldapHost', |
|
204 | 204 | 'ldapPort', |
205 | 205 | 'ldapBase', |
206 | 206 | 'ldapUserFilter', |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | |
211 | 211 | $filter = $this->access->combineFilterWithAnd(array( |
212 | 212 | $this->configuration->ldapUserFilter, |
213 | - $attr . '=*' |
|
213 | + $attr.'=*' |
|
214 | 214 | )); |
215 | 215 | |
216 | 216 | $limit = ($existsCheck === false) ? null : 1; |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * @throws \Exception |
226 | 226 | */ |
227 | 227 | public function detectUserDisplayNameAttribute() { |
228 | - if(!$this->checkRequirements(array('ldapHost', |
|
228 | + if (!$this->checkRequirements(array('ldapHost', |
|
229 | 229 | 'ldapPort', |
230 | 230 | 'ldapBase', |
231 | 231 | 'ldapUserFilter', |
@@ -237,8 +237,8 @@ discard block |
||
237 | 237 | if ($attr !== '' && $attr !== 'displayName') { |
238 | 238 | // most likely not the default value with upper case N, |
239 | 239 | // verify it still produces a result |
240 | - $count = (int)$this->countUsersWithAttribute($attr, true); |
|
241 | - if($count > 0) { |
|
240 | + $count = (int) $this->countUsersWithAttribute($attr, true); |
|
241 | + if ($count > 0) { |
|
242 | 242 | //no change, but we sent it back to make sure the user interface |
243 | 243 | //is still correct, even if the ajax call was cancelled meanwhile |
244 | 244 | $this->result->addChange('ldap_display_name', $attr); |
@@ -249,9 +249,9 @@ discard block |
||
249 | 249 | // first attribute that has at least one result wins |
250 | 250 | $displayNameAttrs = array('displayname', 'cn'); |
251 | 251 | foreach ($displayNameAttrs as $attr) { |
252 | - $count = (int)$this->countUsersWithAttribute($attr, true); |
|
252 | + $count = (int) $this->countUsersWithAttribute($attr, true); |
|
253 | 253 | |
254 | - if($count > 0) { |
|
254 | + if ($count > 0) { |
|
255 | 255 | $this->applyFind('ldap_display_name', $attr); |
256 | 256 | return $this->result; |
257 | 257 | } |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @return WizardResult|bool |
268 | 268 | */ |
269 | 269 | public function detectEmailAttribute() { |
270 | - if(!$this->checkRequirements(array('ldapHost', |
|
270 | + if (!$this->checkRequirements(array('ldapHost', |
|
271 | 271 | 'ldapPort', |
272 | 272 | 'ldapBase', |
273 | 273 | 'ldapUserFilter', |
@@ -277,8 +277,8 @@ discard block |
||
277 | 277 | |
278 | 278 | $attr = $this->configuration->ldapEmailAttribute; |
279 | 279 | if ($attr !== '') { |
280 | - $count = (int)$this->countUsersWithAttribute($attr, true); |
|
281 | - if($count > 0) { |
|
280 | + $count = (int) $this->countUsersWithAttribute($attr, true); |
|
281 | + if ($count > 0) { |
|
282 | 282 | return false; |
283 | 283 | } |
284 | 284 | $writeLog = true; |
@@ -289,19 +289,19 @@ discard block |
||
289 | 289 | $emailAttributes = array('mail', 'mailPrimaryAddress'); |
290 | 290 | $winner = ''; |
291 | 291 | $maxUsers = 0; |
292 | - foreach($emailAttributes as $attr) { |
|
292 | + foreach ($emailAttributes as $attr) { |
|
293 | 293 | $count = $this->countUsersWithAttribute($attr); |
294 | - if($count > $maxUsers) { |
|
294 | + if ($count > $maxUsers) { |
|
295 | 295 | $maxUsers = $count; |
296 | 296 | $winner = $attr; |
297 | 297 | } |
298 | 298 | } |
299 | 299 | |
300 | - if($winner !== '') { |
|
300 | + if ($winner !== '') { |
|
301 | 301 | $this->applyFind('ldap_email_attr', $winner); |
302 | - if($writeLog) { |
|
303 | - \OCP\Util::writeLog('user_ldap', 'The mail attribute has ' . |
|
304 | - 'automatically been reset, because the original value ' . |
|
302 | + if ($writeLog) { |
|
303 | + \OCP\Util::writeLog('user_ldap', 'The mail attribute has '. |
|
304 | + 'automatically been reset, because the original value '. |
|
305 | 305 | 'did not return any results.', ILogger::INFO); |
306 | 306 | } |
307 | 307 | } |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | * @throws \Exception |
315 | 315 | */ |
316 | 316 | public function determineAttributes() { |
317 | - if(!$this->checkRequirements(array('ldapHost', |
|
317 | + if (!$this->checkRequirements(array('ldapHost', |
|
318 | 318 | 'ldapPort', |
319 | 319 | 'ldapBase', |
320 | 320 | 'ldapUserFilter', |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | $this->result->addOptions('ldap_loginfilter_attributes', $attributes); |
331 | 331 | |
332 | 332 | $selected = $this->configuration->ldapLoginFilterAttributes; |
333 | - if(is_array($selected) && !empty($selected)) { |
|
333 | + if (is_array($selected) && !empty($selected)) { |
|
334 | 334 | $this->result->addChange('ldap_loginfilter_attributes', $selected); |
335 | 335 | } |
336 | 336 | |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | * @throws \Exception |
344 | 344 | */ |
345 | 345 | private function getUserAttributes() { |
346 | - if(!$this->checkRequirements(array('ldapHost', |
|
346 | + if (!$this->checkRequirements(array('ldapHost', |
|
347 | 347 | 'ldapPort', |
348 | 348 | 'ldapBase', |
349 | 349 | 'ldapUserFilter', |
@@ -351,20 +351,20 @@ discard block |
||
351 | 351 | return false; |
352 | 352 | } |
353 | 353 | $cr = $this->getConnection(); |
354 | - if(!$cr) { |
|
354 | + if (!$cr) { |
|
355 | 355 | throw new \Exception('Could not connect to LDAP'); |
356 | 356 | } |
357 | 357 | |
358 | 358 | $base = $this->configuration->ldapBase[0]; |
359 | 359 | $filter = $this->configuration->ldapUserFilter; |
360 | 360 | $rr = $this->ldap->search($cr, $base, $filter, array(), 1, 1); |
361 | - if(!$this->ldap->isResource($rr)) { |
|
361 | + if (!$this->ldap->isResource($rr)) { |
|
362 | 362 | return false; |
363 | 363 | } |
364 | 364 | $er = $this->ldap->firstEntry($cr, $rr); |
365 | 365 | $attributes = $this->ldap->getAttributes($cr, $er); |
366 | 366 | $pureAttributes = array(); |
367 | - for($i = 0; $i < $attributes['count']; $i++) { |
|
367 | + for ($i = 0; $i < $attributes['count']; $i++) { |
|
368 | 368 | $pureAttributes[] = $attributes[$i]; |
369 | 369 | } |
370 | 370 | |
@@ -399,23 +399,23 @@ discard block |
||
399 | 399 | * @throws \Exception |
400 | 400 | */ |
401 | 401 | private function determineGroups($dbKey, $confKey, $testMemberOf = true) { |
402 | - if(!$this->checkRequirements(array('ldapHost', |
|
402 | + if (!$this->checkRequirements(array('ldapHost', |
|
403 | 403 | 'ldapPort', |
404 | 404 | 'ldapBase', |
405 | 405 | ))) { |
406 | 406 | return false; |
407 | 407 | } |
408 | 408 | $cr = $this->getConnection(); |
409 | - if(!$cr) { |
|
409 | + if (!$cr) { |
|
410 | 410 | throw new \Exception('Could not connect to LDAP'); |
411 | 411 | } |
412 | 412 | |
413 | 413 | $this->fetchGroups($dbKey, $confKey); |
414 | 414 | |
415 | - if($testMemberOf) { |
|
415 | + if ($testMemberOf) { |
|
416 | 416 | $this->configuration->hasMemberOfFilterSupport = $this->testMemberOf(); |
417 | 417 | $this->result->markChange(); |
418 | - if(!$this->configuration->hasMemberOfFilterSupport) { |
|
418 | + if (!$this->configuration->hasMemberOfFilterSupport) { |
|
419 | 419 | throw new \Exception('memberOf is not supported by the server'); |
420 | 420 | } |
421 | 421 | } |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | $obclasses = array('posixGroup', 'group', 'zimbraDistributionList', 'groupOfNames', 'groupOfUniqueNames'); |
436 | 436 | |
437 | 437 | $filterParts = array(); |
438 | - foreach($obclasses as $obclass) { |
|
438 | + foreach ($obclasses as $obclass) { |
|
439 | 439 | $filterParts[] = 'objectclass='.$obclass; |
440 | 440 | } |
441 | 441 | //we filter for everything |
@@ -452,8 +452,8 @@ discard block |
||
452 | 452 | // we need to request dn additionally here, otherwise memberOf |
453 | 453 | // detection will fail later |
454 | 454 | $result = $this->access->searchGroups($filter, array('cn', 'dn'), $limit, $offset); |
455 | - foreach($result as $item) { |
|
456 | - if(!isset($item['cn']) && !is_array($item['cn']) && !isset($item['cn'][0])) { |
|
455 | + foreach ($result as $item) { |
|
456 | + if (!isset($item['cn']) && !is_array($item['cn']) && !isset($item['cn'][0])) { |
|
457 | 457 | // just in case - no issue known |
458 | 458 | continue; |
459 | 459 | } |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | $offset += $limit; |
464 | 464 | } while ($this->access->hasMoreResults()); |
465 | 465 | |
466 | - if(count($groupNames) > 0) { |
|
466 | + if (count($groupNames) > 0) { |
|
467 | 467 | natsort($groupNames); |
468 | 468 | $this->result->addOptions($dbKey, array_values($groupNames)); |
469 | 469 | } else { |
@@ -471,7 +471,7 @@ discard block |
||
471 | 471 | } |
472 | 472 | |
473 | 473 | $setFeatures = $this->configuration->$confKey; |
474 | - if(is_array($setFeatures) && !empty($setFeatures)) { |
|
474 | + if (is_array($setFeatures) && !empty($setFeatures)) { |
|
475 | 475 | //something is already configured? pre-select it. |
476 | 476 | $this->result->addChange($dbKey, $setFeatures); |
477 | 477 | } |
@@ -479,14 +479,14 @@ discard block |
||
479 | 479 | } |
480 | 480 | |
481 | 481 | public function determineGroupMemberAssoc() { |
482 | - if(!$this->checkRequirements(array('ldapHost', |
|
482 | + if (!$this->checkRequirements(array('ldapHost', |
|
483 | 483 | 'ldapPort', |
484 | 484 | 'ldapGroupFilter', |
485 | 485 | ))) { |
486 | 486 | return false; |
487 | 487 | } |
488 | 488 | $attribute = $this->detectGroupMemberAssoc(); |
489 | - if($attribute === false) { |
|
489 | + if ($attribute === false) { |
|
490 | 490 | return false; |
491 | 491 | } |
492 | 492 | $this->configuration->setConfiguration(array('ldapGroupMemberAssocAttr' => $attribute)); |
@@ -501,14 +501,14 @@ discard block |
||
501 | 501 | * @throws \Exception |
502 | 502 | */ |
503 | 503 | public function determineGroupObjectClasses() { |
504 | - if(!$this->checkRequirements(array('ldapHost', |
|
504 | + if (!$this->checkRequirements(array('ldapHost', |
|
505 | 505 | 'ldapPort', |
506 | 506 | 'ldapBase', |
507 | 507 | ))) { |
508 | 508 | return false; |
509 | 509 | } |
510 | 510 | $cr = $this->getConnection(); |
511 | - if(!$cr) { |
|
511 | + if (!$cr) { |
|
512 | 512 | throw new \Exception('Could not connect to LDAP'); |
513 | 513 | } |
514 | 514 | |
@@ -528,14 +528,14 @@ discard block |
||
528 | 528 | * @throws \Exception |
529 | 529 | */ |
530 | 530 | public function determineUserObjectClasses() { |
531 | - if(!$this->checkRequirements(array('ldapHost', |
|
531 | + if (!$this->checkRequirements(array('ldapHost', |
|
532 | 532 | 'ldapPort', |
533 | 533 | 'ldapBase', |
534 | 534 | ))) { |
535 | 535 | return false; |
536 | 536 | } |
537 | 537 | $cr = $this->getConnection(); |
538 | - if(!$cr) { |
|
538 | + if (!$cr) { |
|
539 | 539 | throw new \Exception('Could not connect to LDAP'); |
540 | 540 | } |
541 | 541 | |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | * @throws \Exception |
559 | 559 | */ |
560 | 560 | public function getGroupFilter() { |
561 | - if(!$this->checkRequirements(array('ldapHost', |
|
561 | + if (!$this->checkRequirements(array('ldapHost', |
|
562 | 562 | 'ldapPort', |
563 | 563 | 'ldapBase', |
564 | 564 | ))) { |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | * @throws \Exception |
583 | 583 | */ |
584 | 584 | public function getUserListFilter() { |
585 | - if(!$this->checkRequirements(array('ldapHost', |
|
585 | + if (!$this->checkRequirements(array('ldapHost', |
|
586 | 586 | 'ldapPort', |
587 | 587 | 'ldapBase', |
588 | 588 | ))) { |
@@ -595,7 +595,7 @@ discard block |
||
595 | 595 | $this->applyFind('ldap_display_name', $d['ldap_display_name']); |
596 | 596 | } |
597 | 597 | $filter = $this->composeLdapFilter(self::LFILTER_USER_LIST); |
598 | - if(!$filter) { |
|
598 | + if (!$filter) { |
|
599 | 599 | throw new \Exception('Cannot create filter'); |
600 | 600 | } |
601 | 601 | |
@@ -608,7 +608,7 @@ discard block |
||
608 | 608 | * @throws \Exception |
609 | 609 | */ |
610 | 610 | public function getUserLoginFilter() { |
611 | - if(!$this->checkRequirements(array('ldapHost', |
|
611 | + if (!$this->checkRequirements(array('ldapHost', |
|
612 | 612 | 'ldapPort', |
613 | 613 | 'ldapBase', |
614 | 614 | 'ldapUserFilter', |
@@ -617,7 +617,7 @@ discard block |
||
617 | 617 | } |
618 | 618 | |
619 | 619 | $filter = $this->composeLdapFilter(self::LFILTER_LOGIN); |
620 | - if(!$filter) { |
|
620 | + if (!$filter) { |
|
621 | 621 | throw new \Exception('Cannot create filter'); |
622 | 622 | } |
623 | 623 | |
@@ -631,7 +631,7 @@ discard block |
||
631 | 631 | * @throws \Exception |
632 | 632 | */ |
633 | 633 | public function testLoginName($loginName) { |
634 | - if(!$this->checkRequirements(array('ldapHost', |
|
634 | + if (!$this->checkRequirements(array('ldapHost', |
|
635 | 635 | 'ldapPort', |
636 | 636 | 'ldapBase', |
637 | 637 | 'ldapLoginFilter', |
@@ -640,17 +640,17 @@ discard block |
||
640 | 640 | } |
641 | 641 | |
642 | 642 | $cr = $this->access->connection->getConnectionResource(); |
643 | - if(!$this->ldap->isResource($cr)) { |
|
643 | + if (!$this->ldap->isResource($cr)) { |
|
644 | 644 | throw new \Exception('connection error'); |
645 | 645 | } |
646 | 646 | |
647 | - if(mb_strpos($this->access->connection->ldapLoginFilter, '%uid', 0, 'UTF-8') |
|
647 | + if (mb_strpos($this->access->connection->ldapLoginFilter, '%uid', 0, 'UTF-8') |
|
648 | 648 | === false) { |
649 | 649 | throw new \Exception('missing placeholder'); |
650 | 650 | } |
651 | 651 | |
652 | 652 | $users = $this->access->countUsersByLoginName($loginName); |
653 | - if($this->ldap->errno($cr) !== 0) { |
|
653 | + if ($this->ldap->errno($cr) !== 0) { |
|
654 | 654 | throw new \Exception($this->ldap->error($cr)); |
655 | 655 | } |
656 | 656 | $filter = str_replace('%uid', $loginName, $this->access->connection->ldapLoginFilter); |
@@ -665,22 +665,22 @@ discard block |
||
665 | 665 | * @throws \Exception |
666 | 666 | */ |
667 | 667 | public function guessPortAndTLS() { |
668 | - if(!$this->checkRequirements(array('ldapHost', |
|
668 | + if (!$this->checkRequirements(array('ldapHost', |
|
669 | 669 | ))) { |
670 | 670 | return false; |
671 | 671 | } |
672 | 672 | $this->checkHost(); |
673 | 673 | $portSettings = $this->getPortSettingsToTry(); |
674 | 674 | |
675 | - if(!is_array($portSettings)) { |
|
675 | + if (!is_array($portSettings)) { |
|
676 | 676 | throw new \Exception(print_r($portSettings, true)); |
677 | 677 | } |
678 | 678 | |
679 | 679 | //proceed from the best configuration and return on first success |
680 | - foreach($portSettings as $setting) { |
|
680 | + foreach ($portSettings as $setting) { |
|
681 | 681 | $p = $setting['port']; |
682 | 682 | $t = $setting['tls']; |
683 | - \OCP\Util::writeLog('user_ldap', 'Wiz: trying port '. $p . ', TLS '. $t, ILogger::DEBUG); |
|
683 | + \OCP\Util::writeLog('user_ldap', 'Wiz: trying port '.$p.', TLS '.$t, ILogger::DEBUG); |
|
684 | 684 | //connectAndBind may throw Exception, it needs to be catched by the |
685 | 685 | //callee of this method |
686 | 686 | |
@@ -690,7 +690,7 @@ discard block |
||
690 | 690 | // any reply other than -1 (= cannot connect) is already okay, |
691 | 691 | // because then we found the server |
692 | 692 | // unavailable startTLS returns -11 |
693 | - if($e->getCode() > 0) { |
|
693 | + if ($e->getCode() > 0) { |
|
694 | 694 | $settingsFound = true; |
695 | 695 | } else { |
696 | 696 | throw $e; |
@@ -700,10 +700,10 @@ discard block |
||
700 | 700 | if ($settingsFound === true) { |
701 | 701 | $config = array( |
702 | 702 | 'ldapPort' => $p, |
703 | - 'ldapTLS' => (int)$t |
|
703 | + 'ldapTLS' => (int) $t |
|
704 | 704 | ); |
705 | 705 | $this->configuration->setConfiguration($config); |
706 | - \OCP\Util::writeLog('user_ldap', 'Wiz: detected Port ' . $p, ILogger::DEBUG); |
|
706 | + \OCP\Util::writeLog('user_ldap', 'Wiz: detected Port '.$p, ILogger::DEBUG); |
|
707 | 707 | $this->result->addChange('ldap_port', $p); |
708 | 708 | return $this->result; |
709 | 709 | } |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | * @return WizardResult|false WizardResult on success, false otherwise |
719 | 719 | */ |
720 | 720 | public function guessBaseDN() { |
721 | - if(!$this->checkRequirements(array('ldapHost', |
|
721 | + if (!$this->checkRequirements(array('ldapHost', |
|
722 | 722 | 'ldapPort', |
723 | 723 | ))) { |
724 | 724 | return false; |
@@ -727,9 +727,9 @@ discard block |
||
727 | 727 | //check whether a DN is given in the agent name (99.9% of all cases) |
728 | 728 | $base = null; |
729 | 729 | $i = stripos($this->configuration->ldapAgentName, 'dc='); |
730 | - if($i !== false) { |
|
730 | + if ($i !== false) { |
|
731 | 731 | $base = substr($this->configuration->ldapAgentName, $i); |
732 | - if($this->testBaseDN($base)) { |
|
732 | + if ($this->testBaseDN($base)) { |
|
733 | 733 | $this->applyFind('ldap_base', $base); |
734 | 734 | return $this->result; |
735 | 735 | } |
@@ -740,13 +740,13 @@ discard block |
||
740 | 740 | //a base DN |
741 | 741 | $helper = new Helper(\OC::$server->getConfig()); |
742 | 742 | $domain = $helper->getDomainFromURL($this->configuration->ldapHost); |
743 | - if(!$domain) { |
|
743 | + if (!$domain) { |
|
744 | 744 | return false; |
745 | 745 | } |
746 | 746 | |
747 | 747 | $dparts = explode('.', $domain); |
748 | - while(count($dparts) > 0) { |
|
749 | - $base2 = 'dc=' . implode(',dc=', $dparts); |
|
748 | + while (count($dparts) > 0) { |
|
749 | + $base2 = 'dc='.implode(',dc=', $dparts); |
|
750 | 750 | if ($base !== $base2 && $this->testBaseDN($base2)) { |
751 | 751 | $this->applyFind('ldap_base', $base2); |
752 | 752 | return $this->result; |
@@ -779,7 +779,7 @@ discard block |
||
779 | 779 | $hostInfo = parse_url($host); |
780 | 780 | |
781 | 781 | //removes Port from Host |
782 | - if(is_array($hostInfo) && isset($hostInfo['port'])) { |
|
782 | + if (is_array($hostInfo) && isset($hostInfo['port'])) { |
|
783 | 783 | $port = $hostInfo['port']; |
784 | 784 | $host = str_replace(':'.$port, '', $host); |
785 | 785 | $this->applyFind('ldap_host', $host); |
@@ -796,30 +796,30 @@ discard block |
||
796 | 796 | private function detectGroupMemberAssoc() { |
797 | 797 | $possibleAttrs = array('uniqueMember', 'memberUid', 'member', 'gidNumber'); |
798 | 798 | $filter = $this->configuration->ldapGroupFilter; |
799 | - if(empty($filter)) { |
|
799 | + if (empty($filter)) { |
|
800 | 800 | return false; |
801 | 801 | } |
802 | 802 | $cr = $this->getConnection(); |
803 | - if(!$cr) { |
|
803 | + if (!$cr) { |
|
804 | 804 | throw new \Exception('Could not connect to LDAP'); |
805 | 805 | } |
806 | 806 | $base = $this->configuration->ldapBase[0]; |
807 | 807 | $rr = $this->ldap->search($cr, $base, $filter, $possibleAttrs, 0, 1000); |
808 | - if(!$this->ldap->isResource($rr)) { |
|
808 | + if (!$this->ldap->isResource($rr)) { |
|
809 | 809 | return false; |
810 | 810 | } |
811 | 811 | $er = $this->ldap->firstEntry($cr, $rr); |
812 | - while(is_resource($er)) { |
|
812 | + while (is_resource($er)) { |
|
813 | 813 | $this->ldap->getDN($cr, $er); |
814 | 814 | $attrs = $this->ldap->getAttributes($cr, $er); |
815 | 815 | $result = array(); |
816 | 816 | $possibleAttrsCount = count($possibleAttrs); |
817 | - for($i = 0; $i < $possibleAttrsCount; $i++) { |
|
818 | - if(isset($attrs[$possibleAttrs[$i]])) { |
|
817 | + for ($i = 0; $i < $possibleAttrsCount; $i++) { |
|
818 | + if (isset($attrs[$possibleAttrs[$i]])) { |
|
819 | 819 | $result[$possibleAttrs[$i]] = $attrs[$possibleAttrs[$i]]['count']; |
820 | 820 | } |
821 | 821 | } |
822 | - if(!empty($result)) { |
|
822 | + if (!empty($result)) { |
|
823 | 823 | natsort($result); |
824 | 824 | return key($result); |
825 | 825 | } |
@@ -838,14 +838,14 @@ discard block |
||
838 | 838 | */ |
839 | 839 | private function testBaseDN($base) { |
840 | 840 | $cr = $this->getConnection(); |
841 | - if(!$cr) { |
|
841 | + if (!$cr) { |
|
842 | 842 | throw new \Exception('Could not connect to LDAP'); |
843 | 843 | } |
844 | 844 | |
845 | 845 | //base is there, let's validate it. If we search for anything, we should |
846 | 846 | //get a result set > 0 on a proper base |
847 | 847 | $rr = $this->ldap->search($cr, $base, 'objectClass=*', array('dn'), 0, 1); |
848 | - if(!$this->ldap->isResource($rr)) { |
|
848 | + if (!$this->ldap->isResource($rr)) { |
|
849 | 849 | $errorNo = $this->ldap->errno($cr); |
850 | 850 | $errorMsg = $this->ldap->error($cr); |
851 | 851 | \OCP\Util::writeLog('user_ldap', 'Wiz: Could not search base '.$base. |
@@ -867,11 +867,11 @@ discard block |
||
867 | 867 | */ |
868 | 868 | private function testMemberOf() { |
869 | 869 | $cr = $this->getConnection(); |
870 | - if(!$cr) { |
|
870 | + if (!$cr) { |
|
871 | 871 | throw new \Exception('Could not connect to LDAP'); |
872 | 872 | } |
873 | 873 | $result = $this->access->countUsers('memberOf=*', array('memberOf'), 1); |
874 | - if(is_int($result) && $result > 0) { |
|
874 | + if (is_int($result) && $result > 0) { |
|
875 | 875 | return true; |
876 | 876 | } |
877 | 877 | return false; |
@@ -892,27 +892,27 @@ discard block |
||
892 | 892 | case self::LFILTER_USER_LIST: |
893 | 893 | $objcs = $this->configuration->ldapUserFilterObjectclass; |
894 | 894 | //glue objectclasses |
895 | - if(is_array($objcs) && count($objcs) > 0) { |
|
895 | + if (is_array($objcs) && count($objcs) > 0) { |
|
896 | 896 | $filter .= '(|'; |
897 | - foreach($objcs as $objc) { |
|
898 | - $filter .= '(objectclass=' . $objc . ')'; |
|
897 | + foreach ($objcs as $objc) { |
|
898 | + $filter .= '(objectclass='.$objc.')'; |
|
899 | 899 | } |
900 | 900 | $filter .= ')'; |
901 | 901 | $parts++; |
902 | 902 | } |
903 | 903 | //glue group memberships |
904 | - if($this->configuration->hasMemberOfFilterSupport) { |
|
904 | + if ($this->configuration->hasMemberOfFilterSupport) { |
|
905 | 905 | $cns = $this->configuration->ldapUserFilterGroups; |
906 | - if(is_array($cns) && count($cns) > 0) { |
|
906 | + if (is_array($cns) && count($cns) > 0) { |
|
907 | 907 | $filter .= '(|'; |
908 | 908 | $cr = $this->getConnection(); |
909 | - if(!$cr) { |
|
909 | + if (!$cr) { |
|
910 | 910 | throw new \Exception('Could not connect to LDAP'); |
911 | 911 | } |
912 | 912 | $base = $this->configuration->ldapBase[0]; |
913 | - foreach($cns as $cn) { |
|
914 | - $rr = $this->ldap->search($cr, $base, 'cn=' . $cn, array('dn', 'primaryGroupToken')); |
|
915 | - if(!$this->ldap->isResource($rr)) { |
|
913 | + foreach ($cns as $cn) { |
|
914 | + $rr = $this->ldap->search($cr, $base, 'cn='.$cn, array('dn', 'primaryGroupToken')); |
|
915 | + if (!$this->ldap->isResource($rr)) { |
|
916 | 916 | continue; |
917 | 917 | } |
918 | 918 | $er = $this->ldap->firstEntry($cr, $rr); |
@@ -921,11 +921,11 @@ discard block |
||
921 | 921 | if ($dn === false || $dn === '') { |
922 | 922 | continue; |
923 | 923 | } |
924 | - $filterPart = '(memberof=' . $dn . ')'; |
|
925 | - if(isset($attrs['primaryGroupToken'])) { |
|
924 | + $filterPart = '(memberof='.$dn.')'; |
|
925 | + if (isset($attrs['primaryGroupToken'])) { |
|
926 | 926 | $pgt = $attrs['primaryGroupToken'][0]; |
927 | - $primaryFilterPart = '(primaryGroupID=' . $pgt .')'; |
|
928 | - $filterPart = '(|' . $filterPart . $primaryFilterPart . ')'; |
|
927 | + $primaryFilterPart = '(primaryGroupID='.$pgt.')'; |
|
928 | + $filterPart = '(|'.$filterPart.$primaryFilterPart.')'; |
|
929 | 929 | } |
930 | 930 | $filter .= $filterPart; |
931 | 931 | } |
@@ -934,8 +934,8 @@ discard block |
||
934 | 934 | $parts++; |
935 | 935 | } |
936 | 936 | //wrap parts in AND condition |
937 | - if($parts > 1) { |
|
938 | - $filter = '(&' . $filter . ')'; |
|
937 | + if ($parts > 1) { |
|
938 | + $filter = '(&'.$filter.')'; |
|
939 | 939 | } |
940 | 940 | if ($filter === '') { |
941 | 941 | $filter = '(objectclass=*)'; |
@@ -945,27 +945,27 @@ discard block |
||
945 | 945 | case self::LFILTER_GROUP_LIST: |
946 | 946 | $objcs = $this->configuration->ldapGroupFilterObjectclass; |
947 | 947 | //glue objectclasses |
948 | - if(is_array($objcs) && count($objcs) > 0) { |
|
948 | + if (is_array($objcs) && count($objcs) > 0) { |
|
949 | 949 | $filter .= '(|'; |
950 | - foreach($objcs as $objc) { |
|
951 | - $filter .= '(objectclass=' . $objc . ')'; |
|
950 | + foreach ($objcs as $objc) { |
|
951 | + $filter .= '(objectclass='.$objc.')'; |
|
952 | 952 | } |
953 | 953 | $filter .= ')'; |
954 | 954 | $parts++; |
955 | 955 | } |
956 | 956 | //glue group memberships |
957 | 957 | $cns = $this->configuration->ldapGroupFilterGroups; |
958 | - if(is_array($cns) && count($cns) > 0) { |
|
958 | + if (is_array($cns) && count($cns) > 0) { |
|
959 | 959 | $filter .= '(|'; |
960 | - foreach($cns as $cn) { |
|
961 | - $filter .= '(cn=' . $cn . ')'; |
|
960 | + foreach ($cns as $cn) { |
|
961 | + $filter .= '(cn='.$cn.')'; |
|
962 | 962 | } |
963 | 963 | $filter .= ')'; |
964 | 964 | } |
965 | 965 | $parts++; |
966 | 966 | //wrap parts in AND condition |
967 | - if($parts > 1) { |
|
968 | - $filter = '(&' . $filter . ')'; |
|
967 | + if ($parts > 1) { |
|
968 | + $filter = '(&'.$filter.')'; |
|
969 | 969 | } |
970 | 970 | break; |
971 | 971 | |
@@ -977,47 +977,47 @@ discard block |
||
977 | 977 | $userAttributes = array_change_key_case(array_flip($userAttributes)); |
978 | 978 | $parts = 0; |
979 | 979 | |
980 | - if($this->configuration->ldapLoginFilterUsername === '1') { |
|
980 | + if ($this->configuration->ldapLoginFilterUsername === '1') { |
|
981 | 981 | $attr = ''; |
982 | - if(isset($userAttributes['uid'])) { |
|
982 | + if (isset($userAttributes['uid'])) { |
|
983 | 983 | $attr = 'uid'; |
984 | - } else if(isset($userAttributes['samaccountname'])) { |
|
984 | + } else if (isset($userAttributes['samaccountname'])) { |
|
985 | 985 | $attr = 'samaccountname'; |
986 | - } else if(isset($userAttributes['cn'])) { |
|
986 | + } else if (isset($userAttributes['cn'])) { |
|
987 | 987 | //fallback |
988 | 988 | $attr = 'cn'; |
989 | 989 | } |
990 | 990 | if ($attr !== '') { |
991 | - $filterUsername = '(' . $attr . $loginpart . ')'; |
|
991 | + $filterUsername = '('.$attr.$loginpart.')'; |
|
992 | 992 | $parts++; |
993 | 993 | } |
994 | 994 | } |
995 | 995 | |
996 | 996 | $filterEmail = ''; |
997 | - if($this->configuration->ldapLoginFilterEmail === '1') { |
|
997 | + if ($this->configuration->ldapLoginFilterEmail === '1') { |
|
998 | 998 | $filterEmail = '(|(mailPrimaryAddress=%uid)(mail=%uid))'; |
999 | 999 | $parts++; |
1000 | 1000 | } |
1001 | 1001 | |
1002 | 1002 | $filterAttributes = ''; |
1003 | 1003 | $attrsToFilter = $this->configuration->ldapLoginFilterAttributes; |
1004 | - if(is_array($attrsToFilter) && count($attrsToFilter) > 0) { |
|
1004 | + if (is_array($attrsToFilter) && count($attrsToFilter) > 0) { |
|
1005 | 1005 | $filterAttributes = '(|'; |
1006 | - foreach($attrsToFilter as $attribute) { |
|
1007 | - $filterAttributes .= '(' . $attribute . $loginpart . ')'; |
|
1006 | + foreach ($attrsToFilter as $attribute) { |
|
1007 | + $filterAttributes .= '('.$attribute.$loginpart.')'; |
|
1008 | 1008 | } |
1009 | 1009 | $filterAttributes .= ')'; |
1010 | 1010 | $parts++; |
1011 | 1011 | } |
1012 | 1012 | |
1013 | 1013 | $filterLogin = ''; |
1014 | - if($parts > 1) { |
|
1014 | + if ($parts > 1) { |
|
1015 | 1015 | $filterLogin = '(|'; |
1016 | 1016 | } |
1017 | 1017 | $filterLogin .= $filterUsername; |
1018 | 1018 | $filterLogin .= $filterEmail; |
1019 | 1019 | $filterLogin .= $filterAttributes; |
1020 | - if($parts > 1) { |
|
1020 | + if ($parts > 1) { |
|
1021 | 1021 | $filterLogin .= ')'; |
1022 | 1022 | } |
1023 | 1023 | |
@@ -1042,12 +1042,12 @@ discard block |
||
1042 | 1042 | //connect, does not really trigger any server communication |
1043 | 1043 | $host = $this->configuration->ldapHost; |
1044 | 1044 | $hostInfo = parse_url($host); |
1045 | - if(!$hostInfo) { |
|
1045 | + if (!$hostInfo) { |
|
1046 | 1046 | throw new \Exception(self::$l->t('Invalid Host')); |
1047 | 1047 | } |
1048 | 1048 | \OCP\Util::writeLog('user_ldap', 'Wiz: Attempting to connect ', ILogger::DEBUG); |
1049 | 1049 | $cr = $this->ldap->connect($host, $port); |
1050 | - if(!is_resource($cr)) { |
|
1050 | + if (!is_resource($cr)) { |
|
1051 | 1051 | throw new \Exception(self::$l->t('Invalid Host')); |
1052 | 1052 | } |
1053 | 1053 | |
@@ -1057,9 +1057,9 @@ discard block |
||
1057 | 1057 | $this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); |
1058 | 1058 | |
1059 | 1059 | try { |
1060 | - if($tls) { |
|
1060 | + if ($tls) { |
|
1061 | 1061 | $isTlsWorking = @$this->ldap->startTls($cr); |
1062 | - if(!$isTlsWorking) { |
|
1062 | + if (!$isTlsWorking) { |
|
1063 | 1063 | return false; |
1064 | 1064 | } |
1065 | 1065 | } |
@@ -1073,17 +1073,17 @@ discard block |
||
1073 | 1073 | $errNo = $this->ldap->errno($cr); |
1074 | 1074 | $error = ldap_error($cr); |
1075 | 1075 | $this->ldap->unbind($cr); |
1076 | - } catch(ServerNotAvailableException $e) { |
|
1076 | + } catch (ServerNotAvailableException $e) { |
|
1077 | 1077 | return false; |
1078 | 1078 | } |
1079 | 1079 | |
1080 | - if($login === true) { |
|
1080 | + if ($login === true) { |
|
1081 | 1081 | $this->ldap->unbind($cr); |
1082 | - \OCP\Util::writeLog('user_ldap', 'Wiz: Bind successful to Port '. $port . ' TLS ' . (int)$tls, ILogger::DEBUG); |
|
1082 | + \OCP\Util::writeLog('user_ldap', 'Wiz: Bind successful to Port '.$port.' TLS '.(int) $tls, ILogger::DEBUG); |
|
1083 | 1083 | return true; |
1084 | 1084 | } |
1085 | 1085 | |
1086 | - if($errNo === -1) { |
|
1086 | + if ($errNo === -1) { |
|
1087 | 1087 | //host, port or TLS wrong |
1088 | 1088 | return false; |
1089 | 1089 | } |
@@ -1111,9 +1111,9 @@ discard block |
||
1111 | 1111 | */ |
1112 | 1112 | private function checkRequirements($reqs) { |
1113 | 1113 | $this->checkAgentRequirements(); |
1114 | - foreach($reqs as $option) { |
|
1114 | + foreach ($reqs as $option) { |
|
1115 | 1115 | $value = $this->configuration->$option; |
1116 | - if(empty($value)) { |
|
1116 | + if (empty($value)) { |
|
1117 | 1117 | return false; |
1118 | 1118 | } |
1119 | 1119 | } |
@@ -1135,33 +1135,33 @@ discard block |
||
1135 | 1135 | $dnRead = array(); |
1136 | 1136 | $foundItems = array(); |
1137 | 1137 | $maxEntries = 0; |
1138 | - if(!is_array($this->configuration->ldapBase) |
|
1138 | + if (!is_array($this->configuration->ldapBase) |
|
1139 | 1139 | || !isset($this->configuration->ldapBase[0])) { |
1140 | 1140 | return false; |
1141 | 1141 | } |
1142 | 1142 | $base = $this->configuration->ldapBase[0]; |
1143 | 1143 | $cr = $this->getConnection(); |
1144 | - if(!$this->ldap->isResource($cr)) { |
|
1144 | + if (!$this->ldap->isResource($cr)) { |
|
1145 | 1145 | return false; |
1146 | 1146 | } |
1147 | 1147 | $lastFilter = null; |
1148 | - if(isset($filters[count($filters)-1])) { |
|
1149 | - $lastFilter = $filters[count($filters)-1]; |
|
1148 | + if (isset($filters[count($filters) - 1])) { |
|
1149 | + $lastFilter = $filters[count($filters) - 1]; |
|
1150 | 1150 | } |
1151 | - foreach($filters as $filter) { |
|
1152 | - if($lastFilter === $filter && count($foundItems) > 0) { |
|
1151 | + foreach ($filters as $filter) { |
|
1152 | + if ($lastFilter === $filter && count($foundItems) > 0) { |
|
1153 | 1153 | //skip when the filter is a wildcard and results were found |
1154 | 1154 | continue; |
1155 | 1155 | } |
1156 | 1156 | // 20k limit for performance and reason |
1157 | 1157 | $rr = $this->ldap->search($cr, $base, $filter, array($attr), 0, 20000); |
1158 | - if(!$this->ldap->isResource($rr)) { |
|
1158 | + if (!$this->ldap->isResource($rr)) { |
|
1159 | 1159 | continue; |
1160 | 1160 | } |
1161 | 1161 | $entries = $this->ldap->countEntries($cr, $rr); |
1162 | 1162 | $getEntryFunc = 'firstEntry'; |
1163 | - if(($entries !== false) && ($entries > 0)) { |
|
1164 | - if(!is_null($maxF) && $entries > $maxEntries) { |
|
1163 | + if (($entries !== false) && ($entries > 0)) { |
|
1164 | + if (!is_null($maxF) && $entries > $maxEntries) { |
|
1165 | 1165 | $maxEntries = $entries; |
1166 | 1166 | $maxF = $filter; |
1167 | 1167 | } |
@@ -1169,13 +1169,13 @@ discard block |
||
1169 | 1169 | do { |
1170 | 1170 | $entry = $this->ldap->$getEntryFunc($cr, $rr); |
1171 | 1171 | $getEntryFunc = 'nextEntry'; |
1172 | - if(!$this->ldap->isResource($entry)) { |
|
1172 | + if (!$this->ldap->isResource($entry)) { |
|
1173 | 1173 | continue 2; |
1174 | 1174 | } |
1175 | 1175 | $rr = $entry; //will be expected by nextEntry next round |
1176 | 1176 | $attributes = $this->ldap->getAttributes($cr, $entry); |
1177 | 1177 | $dn = $this->ldap->getDN($cr, $entry); |
1178 | - if($dn === false || in_array($dn, $dnRead)) { |
|
1178 | + if ($dn === false || in_array($dn, $dnRead)) { |
|
1179 | 1179 | continue; |
1180 | 1180 | } |
1181 | 1181 | $newItems = array(); |
@@ -1186,7 +1186,7 @@ discard block |
||
1186 | 1186 | $foundItems = array_merge($foundItems, $newItems); |
1187 | 1187 | $this->resultCache[$dn][$attr] = $newItems; |
1188 | 1188 | $dnRead[] = $dn; |
1189 | - } while(($state === self::LRESULT_PROCESSED_SKIP |
|
1189 | + } while (($state === self::LRESULT_PROCESSED_SKIP |
|
1190 | 1190 | || $this->ldap->isResource($entry)) |
1191 | 1191 | && ($dnReadLimit === 0 || $dnReadCount < $dnReadLimit)); |
1192 | 1192 | } |
@@ -1209,11 +1209,11 @@ discard block |
||
1209 | 1209 | */ |
1210 | 1210 | private function determineFeature($objectclasses, $attr, $dbkey, $confkey, $po = false) { |
1211 | 1211 | $cr = $this->getConnection(); |
1212 | - if(!$cr) { |
|
1212 | + if (!$cr) { |
|
1213 | 1213 | throw new \Exception('Could not connect to LDAP'); |
1214 | 1214 | } |
1215 | 1215 | $p = 'objectclass='; |
1216 | - foreach($objectclasses as $key => $value) { |
|
1216 | + foreach ($objectclasses as $key => $value) { |
|
1217 | 1217 | $objectclasses[$key] = $p.$value; |
1218 | 1218 | } |
1219 | 1219 | $maxEntryObjC = ''; |
@@ -1225,7 +1225,7 @@ discard block |
||
1225 | 1225 | $availableFeatures = |
1226 | 1226 | $this->cumulativeSearchOnAttribute($objectclasses, $attr, |
1227 | 1227 | $dig, $maxEntryObjC); |
1228 | - if(is_array($availableFeatures) |
|
1228 | + if (is_array($availableFeatures) |
|
1229 | 1229 | && count($availableFeatures) > 0) { |
1230 | 1230 | natcasesort($availableFeatures); |
1231 | 1231 | //natcasesort keeps indices, but we must get rid of them for proper |
@@ -1236,7 +1236,7 @@ discard block |
||
1236 | 1236 | } |
1237 | 1237 | |
1238 | 1238 | $setFeatures = $this->configuration->$confkey; |
1239 | - if(is_array($setFeatures) && !empty($setFeatures)) { |
|
1239 | + if (is_array($setFeatures) && !empty($setFeatures)) { |
|
1240 | 1240 | //something is already configured? pre-select it. |
1241 | 1241 | $this->result->addChange($dbkey, $setFeatures); |
1242 | 1242 | } else if ($po && $maxEntryObjC !== '') { |
@@ -1258,7 +1258,7 @@ discard block |
||
1258 | 1258 | * LRESULT_PROCESSED_INVALID or LRESULT_PROCESSED_SKIP |
1259 | 1259 | */ |
1260 | 1260 | private function getAttributeValuesFromEntry($result, $attribute, &$known) { |
1261 | - if(!is_array($result) |
|
1261 | + if (!is_array($result) |
|
1262 | 1262 | || !isset($result['count']) |
1263 | 1263 | || !$result['count'] > 0) { |
1264 | 1264 | return self::LRESULT_PROCESSED_INVALID; |
@@ -1267,12 +1267,12 @@ discard block |
||
1267 | 1267 | // strtolower on all keys for proper comparison |
1268 | 1268 | $result = \OCP\Util::mb_array_change_key_case($result); |
1269 | 1269 | $attribute = strtolower($attribute); |
1270 | - if(isset($result[$attribute])) { |
|
1271 | - foreach($result[$attribute] as $key => $val) { |
|
1272 | - if($key === 'count') { |
|
1270 | + if (isset($result[$attribute])) { |
|
1271 | + foreach ($result[$attribute] as $key => $val) { |
|
1272 | + if ($key === 'count') { |
|
1273 | 1273 | continue; |
1274 | 1274 | } |
1275 | - if(!in_array($val, $known)) { |
|
1275 | + if (!in_array($val, $known)) { |
|
1276 | 1276 | $known[] = $val; |
1277 | 1277 | } |
1278 | 1278 | } |
@@ -1286,7 +1286,7 @@ discard block |
||
1286 | 1286 | * @return bool|mixed |
1287 | 1287 | */ |
1288 | 1288 | private function getConnection() { |
1289 | - if(!is_null($this->cr)) { |
|
1289 | + if (!is_null($this->cr)) { |
|
1290 | 1290 | return $this->cr; |
1291 | 1291 | } |
1292 | 1292 | |
@@ -1298,14 +1298,14 @@ discard block |
||
1298 | 1298 | $this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3); |
1299 | 1299 | $this->ldap->setOption($cr, LDAP_OPT_REFERRALS, 0); |
1300 | 1300 | $this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); |
1301 | - if($this->configuration->ldapTLS === 1) { |
|
1301 | + if ($this->configuration->ldapTLS === 1) { |
|
1302 | 1302 | $this->ldap->startTls($cr); |
1303 | 1303 | } |
1304 | 1304 | |
1305 | 1305 | $lo = @$this->ldap->bind($cr, |
1306 | 1306 | $this->configuration->ldapAgentName, |
1307 | 1307 | $this->configuration->ldapAgentPassword); |
1308 | - if($lo === true) { |
|
1308 | + if ($lo === true) { |
|
1309 | 1309 | $this->$cr = $cr; |
1310 | 1310 | return $cr; |
1311 | 1311 | } |
@@ -1336,18 +1336,18 @@ discard block |
||
1336 | 1336 | //636 ← LDAPS / SSL |
1337 | 1337 | //7xxx ← UCS. need to be checked first, because both ports may be open |
1338 | 1338 | $host = $this->configuration->ldapHost; |
1339 | - $port = (int)$this->configuration->ldapPort; |
|
1339 | + $port = (int) $this->configuration->ldapPort; |
|
1340 | 1340 | $portSettings = array(); |
1341 | 1341 | |
1342 | 1342 | //In case the port is already provided, we will check this first |
1343 | - if($port > 0) { |
|
1343 | + if ($port > 0) { |
|
1344 | 1344 | $hostInfo = parse_url($host); |
1345 | - if(!(is_array($hostInfo) |
|
1345 | + if (!(is_array($hostInfo) |
|
1346 | 1346 | && isset($hostInfo['scheme']) |
1347 | 1347 | && stripos($hostInfo['scheme'], 'ldaps') !== false)) { |
1348 | 1348 | $portSettings[] = array('port' => $port, 'tls' => true); |
1349 | 1349 | } |
1350 | - $portSettings[] =array('port' => $port, 'tls' => false); |
|
1350 | + $portSettings[] = array('port' => $port, 'tls' => false); |
|
1351 | 1351 | } |
1352 | 1352 | |
1353 | 1353 | //default ports |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | $this->recoveryKeyId = $this->config->getAppValue('encryption', |
129 | 129 | 'recoveryKeyId'); |
130 | 130 | if (empty($this->recoveryKeyId)) { |
131 | - $this->recoveryKeyId = 'recoveryKey_' . substr(md5(time()), 0, 8); |
|
131 | + $this->recoveryKeyId = 'recoveryKey_'.substr(md5(time()), 0, 8); |
|
132 | 132 | $this->config->setAppValue('encryption', |
133 | 133 | 'recoveryKeyId', |
134 | 134 | $this->recoveryKeyId); |
@@ -137,14 +137,14 @@ discard block |
||
137 | 137 | $this->publicShareKeyId = $this->config->getAppValue('encryption', |
138 | 138 | 'publicShareKeyId'); |
139 | 139 | if (empty($this->publicShareKeyId)) { |
140 | - $this->publicShareKeyId = 'pubShare_' . substr(md5(time()), 0, 8); |
|
140 | + $this->publicShareKeyId = 'pubShare_'.substr(md5(time()), 0, 8); |
|
141 | 141 | $this->config->setAppValue('encryption', 'publicShareKeyId', $this->publicShareKeyId); |
142 | 142 | } |
143 | 143 | |
144 | 144 | $this->masterKeyId = $this->config->getAppValue('encryption', |
145 | 145 | 'masterKeyId'); |
146 | 146 | if (empty($this->masterKeyId)) { |
147 | - $this->masterKeyId = 'master_' . substr(md5(time()), 0, 8); |
|
147 | + $this->masterKeyId = 'master_'.substr(md5(time()), 0, 8); |
|
148 | 148 | $this->config->setAppValue('encryption', 'masterKeyId', $this->masterKeyId); |
149 | 149 | } |
150 | 150 | |
@@ -162,13 +162,13 @@ discard block |
||
162 | 162 | |
163 | 163 | // Save public key |
164 | 164 | $this->keyStorage->setSystemUserKey( |
165 | - $this->publicShareKeyId . '.publicKey', $keyPair['publicKey'], |
|
165 | + $this->publicShareKeyId.'.publicKey', $keyPair['publicKey'], |
|
166 | 166 | Encryption::ID); |
167 | 167 | |
168 | 168 | // Encrypt private key empty passphrase |
169 | 169 | $encryptedKey = $this->crypt->encryptPrivateKey($keyPair['privateKey'], ''); |
170 | 170 | $header = $this->crypt->generateHeader(); |
171 | - $this->setSystemPrivateKey($this->publicShareKeyId, $header . $encryptedKey); |
|
171 | + $this->setSystemPrivateKey($this->publicShareKeyId, $header.$encryptedKey); |
|
172 | 172 | } |
173 | 173 | } |
174 | 174 | |
@@ -187,13 +187,13 @@ discard block |
||
187 | 187 | |
188 | 188 | // Save public key |
189 | 189 | $this->keyStorage->setSystemUserKey( |
190 | - $this->masterKeyId . '.publicKey', $keyPair['publicKey'], |
|
190 | + $this->masterKeyId.'.publicKey', $keyPair['publicKey'], |
|
191 | 191 | Encryption::ID); |
192 | 192 | |
193 | 193 | // Encrypt private key with system password |
194 | 194 | $encryptedKey = $this->crypt->encryptPrivateKey($keyPair['privateKey'], $this->getMasterKeyPassword(), $this->masterKeyId); |
195 | 195 | $header = $this->crypt->generateHeader(); |
196 | - $this->setSystemPrivateKey($this->masterKeyId, $header . $encryptedKey); |
|
196 | + $this->setSystemPrivateKey($this->masterKeyId, $header.$encryptedKey); |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | if (!$this->session->isPrivateKeySet()) { |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * @return string |
221 | 221 | */ |
222 | 222 | public function getRecoveryKey() { |
223 | - return $this->keyStorage->getSystemUserKey($this->recoveryKeyId . '.publicKey', Encryption::ID); |
|
223 | + return $this->keyStorage->getSystemUserKey($this->recoveryKeyId.'.publicKey', Encryption::ID); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * @return bool |
238 | 238 | */ |
239 | 239 | public function checkRecoveryPassword($password) { |
240 | - $recoveryKey = $this->keyStorage->getSystemUserKey($this->recoveryKeyId . '.privateKey', Encryption::ID); |
|
240 | + $recoveryKey = $this->keyStorage->getSystemUserKey($this->recoveryKeyId.'.privateKey', Encryption::ID); |
|
241 | 241 | $decryptedRecoveryKey = $this->crypt->decryptPrivateKey($recoveryKey, $password); |
242 | 242 | |
243 | 243 | if ($decryptedRecoveryKey) { |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | $header = $this->crypt->generateHeader(); |
262 | 262 | |
263 | 263 | if ($encryptedKey) { |
264 | - $this->setPrivateKey($uid, $header . $encryptedKey); |
|
264 | + $this->setPrivateKey($uid, $header.$encryptedKey); |
|
265 | 265 | return true; |
266 | 266 | } |
267 | 267 | return false; |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | $header = $this->crypt->generateHeader(); |
284 | 284 | |
285 | 285 | if ($encryptedKey) { |
286 | - $this->setSystemPrivateKey($this->getRecoveryKeyId(), $header . $encryptedKey); |
|
286 | + $this->setSystemPrivateKey($this->getRecoveryKeyId(), $header.$encryptedKey); |
|
287 | 287 | return true; |
288 | 288 | } |
289 | 289 | return false; |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | * @return boolean |
344 | 344 | */ |
345 | 345 | public function setShareKey($path, $uid, $key) { |
346 | - $keyId = $uid . '.' . $this->shareKeyId; |
|
346 | + $keyId = $uid.'.'.$this->shareKeyId; |
|
347 | 347 | return $this->keyStorage->setFileKey($path, $keyId, $key, Encryption::ID); |
348 | 348 | } |
349 | 349 | |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | $this->session->setStatus(Session::INIT_EXECUTED); |
360 | 360 | |
361 | 361 | try { |
362 | - if($this->util->isMasterKeyEnabled()) { |
|
362 | + if ($this->util->isMasterKeyEnabled()) { |
|
363 | 363 | $uid = $this->getMasterKeyId(); |
364 | 364 | $passPhrase = $this->getMasterKeyPassword(); |
365 | 365 | $privateKey = $this->getSystemPrivateKey($uid); |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | return false; |
374 | 374 | } catch (\Exception $e) { |
375 | 375 | $this->log->logException($e, [ |
376 | - 'message' => 'Could not decrypt the private key from user "' . $uid . '"" during login. Assume password change on the user back-end.', |
|
376 | + 'message' => 'Could not decrypt the private key from user "'.$uid.'"" during login. Assume password change on the user back-end.', |
|
377 | 377 | 'level' => ILogger::WARN, |
378 | 378 | 'app' => 'encryption', |
379 | 379 | ]); |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | // use public share key for public links |
435 | 435 | $uid = $this->getPublicShareKeyId(); |
436 | 436 | $shareKey = $this->getShareKey($path, $uid); |
437 | - $privateKey = $this->keyStorage->getSystemUserKey($this->publicShareKeyId . '.privateKey', Encryption::ID); |
|
437 | + $privateKey = $this->keyStorage->getSystemUserKey($this->publicShareKeyId.'.privateKey', Encryption::ID); |
|
438 | 438 | $privateKey = $this->crypt->decryptPrivateKey($privateKey); |
439 | 439 | } else { |
440 | 440 | $shareKey = $this->getShareKey($path, $uid); |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | */ |
460 | 460 | public function getVersion($path, View $view) { |
461 | 461 | $fileInfo = $view->getFileInfo($path); |
462 | - if($fileInfo === false) { |
|
462 | + if ($fileInfo === false) { |
|
463 | 463 | return 0; |
464 | 464 | } |
465 | 465 | return $fileInfo->getEncryptedVersion(); |
@@ -473,9 +473,9 @@ discard block |
||
473 | 473 | * @param View $view |
474 | 474 | */ |
475 | 475 | public function setVersion($path, $version, View $view) { |
476 | - $fileInfo= $view->getFileInfo($path); |
|
476 | + $fileInfo = $view->getFileInfo($path); |
|
477 | 477 | |
478 | - if($fileInfo !== false) { |
|
478 | + if ($fileInfo !== false) { |
|
479 | 479 | $cache = $fileInfo->getStorage()->getCache(); |
480 | 480 | $cache->update($fileInfo->getId(), ['encrypted' => $version, 'encryptedVersion' => $version]); |
481 | 481 | } |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | public function deleteShareKey($path, $keyId) { |
505 | 505 | return $this->keyStorage->deleteFileKey( |
506 | 506 | $path, |
507 | - $keyId . '.' . $this->shareKeyId, |
|
507 | + $keyId.'.'.$this->shareKeyId, |
|
508 | 508 | Encryption::ID); |
509 | 509 | } |
510 | 510 | |
@@ -515,7 +515,7 @@ discard block |
||
515 | 515 | * @return mixed |
516 | 516 | */ |
517 | 517 | public function getShareKey($path, $uid) { |
518 | - $keyId = $uid . '.' . $this->shareKeyId; |
|
518 | + $keyId = $uid.'.'.$this->shareKeyId; |
|
519 | 519 | return $this->keyStorage->getFileKey($path, $keyId, Encryption::ID); |
520 | 520 | } |
521 | 521 | |
@@ -577,7 +577,7 @@ discard block |
||
577 | 577 | * @return string |
578 | 578 | */ |
579 | 579 | public function getPublicShareKey() { |
580 | - return $this->keyStorage->getSystemUserKey($this->publicShareKeyId . '.publicKey', Encryption::ID); |
|
580 | + return $this->keyStorage->getSystemUserKey($this->publicShareKeyId.'.publicKey', Encryption::ID); |
|
581 | 581 | } |
582 | 582 | |
583 | 583 | /** |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | * @return string returns openssl key |
648 | 648 | */ |
649 | 649 | public function getSystemPrivateKey($keyId) { |
650 | - return $this->keyStorage->getSystemUserKey($keyId . '.' . $this->privateKeyId, Encryption::ID); |
|
650 | + return $this->keyStorage->getSystemUserKey($keyId.'.'.$this->privateKeyId, Encryption::ID); |
|
651 | 651 | } |
652 | 652 | |
653 | 653 | /** |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | */ |
658 | 658 | public function setSystemPrivateKey($keyId, $key) { |
659 | 659 | return $this->keyStorage->setSystemUserKey( |
660 | - $keyId . '.' . $this->privateKeyId, |
|
660 | + $keyId.'.'.$this->privateKeyId, |
|
661 | 661 | $key, |
662 | 662 | Encryption::ID); |
663 | 663 | } |
@@ -697,7 +697,7 @@ discard block |
||
697 | 697 | */ |
698 | 698 | public function getMasterKeyPassword() { |
699 | 699 | $password = $this->config->getSystemValue('secret'); |
700 | - if (empty($password)){ |
|
700 | + if (empty($password)) { |
|
701 | 701 | throw new \Exception('Can not get secret from Nextcloud instance'); |
702 | 702 | } |
703 | 703 | |
@@ -719,6 +719,6 @@ discard block |
||
719 | 719 | * @return string |
720 | 720 | */ |
721 | 721 | public function getPublicMasterKey() { |
722 | - return $this->keyStorage->getSystemUserKey($this->masterKeyId . '.publicKey', Encryption::ID); |
|
722 | + return $this->keyStorage->getSystemUserKey($this->masterKeyId.'.publicKey', Encryption::ID); |
|
723 | 723 | } |
724 | 724 | } |
@@ -101,24 +101,24 @@ discard block |
||
101 | 101 | * Remove "apps/" from inclusion path for smooth migration to multi app dir |
102 | 102 | */ |
103 | 103 | if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) { |
104 | - \OCP\Util::writeLog('core', 'include path for class "' . $class . '" starts with "apps/"', ILogger::DEBUG); |
|
104 | + \OCP\Util::writeLog('core', 'include path for class "'.$class.'" starts with "apps/"', ILogger::DEBUG); |
|
105 | 105 | $paths[] = str_replace('apps/', '', \OC::$CLASSPATH[$class]); |
106 | 106 | } |
107 | 107 | } elseif (strpos($class, 'OC_') === 0) { |
108 | - $paths[] = \OC::$SERVERROOT . '/lib/private/legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); |
|
108 | + $paths[] = \OC::$SERVERROOT.'/lib/private/legacy/'.strtolower(str_replace('_', '/', substr($class, 3)).'.php'); |
|
109 | 109 | } elseif (strpos($class, 'OCA\\') === 0) { |
110 | 110 | list(, $app, $rest) = explode('\\', $class, 3); |
111 | 111 | $app = strtolower($app); |
112 | 112 | $appPath = \OC_App::getAppPath($app); |
113 | 113 | if ($appPath && stream_resolve_include_path($appPath)) { |
114 | - $paths[] = $appPath . '/' . strtolower(str_replace('\\', '/', $rest) . '.php'); |
|
114 | + $paths[] = $appPath.'/'.strtolower(str_replace('\\', '/', $rest).'.php'); |
|
115 | 115 | // If not found in the root of the app directory, insert '/lib' after app id and try again. |
116 | - $paths[] = $appPath . '/lib/' . strtolower(str_replace('\\', '/', $rest) . '.php'); |
|
116 | + $paths[] = $appPath.'/lib/'.strtolower(str_replace('\\', '/', $rest).'.php'); |
|
117 | 117 | } |
118 | 118 | } elseif ($class === 'Test\\TestCase') { |
119 | 119 | // This File is considered public API, so we make sure that the class |
120 | 120 | // can still be loaded, although the PSR-4 paths have not been loaded. |
121 | - $paths[] = \OC::$SERVERROOT . '/tests/lib/TestCase.php'; |
|
121 | + $paths[] = \OC::$SERVERROOT.'/tests/lib/TestCase.php'; |
|
122 | 122 | } |
123 | 123 | return $paths; |
124 | 124 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | protected function isValidPath(string $fullPath): bool { |
132 | 132 | foreach ($this->validRoots as $root => $true) { |
133 | - if (substr($fullPath, 0, strlen($root) + 1) === $root . '/') { |
|
133 | + if (substr($fullPath, 0, strlen($root) + 1) === $root.'/') { |
|
134 | 134 | return true; |
135 | 135 | } |
136 | 136 | } |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | $pathsToRequire = $this->memoryCache->get($class); |
151 | 151 | } |
152 | 152 | |
153 | - if(class_exists($class, false)) { |
|
153 | + if (class_exists($class, false)) { |
|
154 | 154 | return false; |
155 | 155 | } |
156 | 156 |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | try { |
66 | 66 | return new \DateTimeZone($timeZone); |
67 | 67 | } catch (\Exception $e) { |
68 | - \OCP\Util::writeLog('datetimezone', 'Failed to created DateTimeZone "' . $timeZone . "'", ILogger::DEBUG); |
|
68 | + \OCP\Util::writeLog('datetimezone', 'Failed to created DateTimeZone "'.$timeZone."'", ILogger::DEBUG); |
|
69 | 69 | return new \DateTimeZone($this->getDefaultTimeZone()); |
70 | 70 | } |
71 | 71 | } |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | // so a positive offset means negative timeZone |
87 | 87 | // and the other way around. |
88 | 88 | if ($offset > 0) { |
89 | - $timeZone = 'Etc/GMT-' . $offset; |
|
89 | + $timeZone = 'Etc/GMT-'.$offset; |
|
90 | 90 | } else { |
91 | - $timeZone = 'Etc/GMT+' . abs($offset); |
|
91 | + $timeZone = 'Etc/GMT+'.abs($offset); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | return new \DateTimeZone($timeZone); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | } |
111 | 111 | |
112 | 112 | // No timezone found, fallback to UTC |
113 | - \OCP\Util::writeLog('datetimezone', 'Failed to find DateTimeZone for offset "' . $offset . "'", ILogger::DEBUG); |
|
113 | + \OCP\Util::writeLog('datetimezone', 'Failed to find DateTimeZone for offset "'.$offset."'", ILogger::DEBUG); |
|
114 | 114 | return new \DateTimeZone($this->getDefaultTimeZone()); |
115 | 115 | } |
116 | 116 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $this->createDatabase($connection); |
54 | 54 | |
55 | 55 | //fill the database if needed |
56 | - $query='select count(*) from information_schema.tables where table_schema=? AND table_name = ?'; |
|
56 | + $query = 'select count(*) from information_schema.tables where table_schema=? AND table_name = ?'; |
|
57 | 57 | $connection->executeQuery($query, [$this->dbName, $this->tablePrefix.'users']); |
58 | 58 | } |
59 | 59 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @param \OC\DB\Connection $connection |
62 | 62 | */ |
63 | 63 | private function createDatabase($connection) { |
64 | - try{ |
|
64 | + try { |
|
65 | 65 | $name = $this->dbName; |
66 | 66 | $user = $this->dbUser; |
67 | 67 | //we can't use OC_DB functions here because we need to connect as the administrative user. |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | try { |
81 | 81 | //this query will fail if there aren't the right permissions, ignore the error |
82 | - $query="GRANT ALL PRIVILEGES ON `$name` . * TO '$user'"; |
|
82 | + $query = "GRANT ALL PRIVILEGES ON `$name` . * TO '$user'"; |
|
83 | 83 | $connection->executeUpdate($query); |
84 | 84 | } catch (\Exception $ex) { |
85 | 85 | $this->logger->logException($ex, [ |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @throws \OC\DatabaseSetupException |
96 | 96 | */ |
97 | 97 | private function createDBUser($connection) { |
98 | - try{ |
|
98 | + try { |
|
99 | 99 | $name = $this->dbUser; |
100 | 100 | $password = $this->dbPassword; |
101 | 101 | // we need to create 2 accounts, one for global use and one for local user. if we don't specify the local one, |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'"; |
106 | 106 | $connection->executeUpdate($query); |
107 | 107 | } |
108 | - catch (\Exception $ex){ |
|
108 | + catch (\Exception $ex) { |
|
109 | 109 | $this->logger->logException($ex, [ |
110 | 110 | 'message' => 'Database user creation failed.', |
111 | 111 | 'level' => ILogger::ERROR, |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | //we don't have a dbuser specified in config |
128 | 128 | if ($this->dbUser !== $oldUser) { |
129 | 129 | //add prefix to the admin username to prevent collisions |
130 | - $adminUser = substr('oc_' . $username, 0, 16); |
|
130 | + $adminUser = substr('oc_'.$username, 0, 16); |
|
131 | 131 | |
132 | 132 | $i = 1; |
133 | 133 | while (true) { |
@@ -144,15 +144,15 @@ discard block |
||
144 | 144 | $this->dbUser = $adminUser; |
145 | 145 | |
146 | 146 | //create a random password so we don't need to store the admin password in the config file |
147 | - $this->dbPassword = $this->random->generate(30); |
|
147 | + $this->dbPassword = $this->random->generate(30); |
|
148 | 148 | |
149 | 149 | $this->createDBUser($connection); |
150 | 150 | |
151 | 151 | break; |
152 | 152 | } else { |
153 | 153 | //repeat with different username |
154 | - $length = strlen((string)$i); |
|
155 | - $adminUser = substr('oc_' . $username, 0, 16 - $length) . $i; |
|
154 | + $length = strlen((string) $i); |
|
155 | + $adminUser = substr('oc_'.$username, 0, 16 - $length).$i; |
|
156 | 156 | $i++; |
157 | 157 | } |
158 | 158 | } else { |