@@ -8,15 +8,15 @@ discard block |
||
| 8 | 8 | private $ldapObj; |
| 9 | 9 | private $server; |
| 10 | 10 | |
| 11 | - public function __construct($data=false) |
|
| 11 | + public function __construct($data = false) |
|
| 12 | 12 | { |
| 13 | 13 | $this->server = \LDAP\LDAPServer::getInstance(); |
| 14 | - if($data !== false && !isset($data['dn']) && !isset($data['extended'])) |
|
| 14 | + if ($data !== false && !isset($data['dn']) && !isset($data['extended'])) |
|
| 15 | 15 | { |
| 16 | 16 | //Generic user object |
| 17 | 17 | $filter = new \Data\Filter('mail eq '.$data['mail']); |
| 18 | 18 | $users = $this->server->read($this->server->user_base, $filter); |
| 19 | - if($users === false || !isset($users[0])) |
|
| 19 | + if ($users === false || !isset($users[0])) |
|
| 20 | 20 | { |
| 21 | 21 | throw new \Exception('No such LDAP User!'); |
| 22 | 22 | } |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | } |
| 25 | 25 | else |
| 26 | 26 | { |
| 27 | - if(isset($data['extended'])) |
|
| 27 | + if (isset($data['extended'])) |
|
| 28 | 28 | { |
| 29 | 29 | $this->ldapObj = $data['extended']; |
| 30 | 30 | } |
@@ -38,13 +38,13 @@ discard block |
||
| 38 | 38 | private function check_child_group($array) |
| 39 | 39 | { |
| 40 | 40 | $res = false; |
| 41 | - for($i = 0; $i < $array['count']; $i++) |
|
| 41 | + for ($i = 0; $i < $array['count']; $i++) |
|
| 42 | 42 | { |
| 43 | - if(strpos($array[$i], $this->server->group_base) !== false) |
|
| 43 | + if (strpos($array[$i], $this->server->group_base) !== false) |
|
| 44 | 44 | { |
| 45 | 45 | $dn = explode(',', $array[$i]); |
| 46 | 46 | $res = $this->isInGroupNamed(substr($dn[0], 3)); |
| 47 | - if($res) return $res; |
|
| 47 | + if ($res) return $res; |
|
| 48 | 48 | } |
| 49 | 49 | } |
| 50 | 50 | return $res; |
@@ -52,11 +52,11 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | private function isInListOrChild($listName, $group, $dn) |
| 54 | 54 | { |
| 55 | - if(!isset($group[$listName])) |
|
| 55 | + if (!isset($group[$listName])) |
|
| 56 | 56 | { |
| 57 | 57 | return false; |
| 58 | 58 | } |
| 59 | - if(in_array($dn, $group[$listName])) |
|
| 59 | + if (in_array($dn, $group[$listName])) |
|
| 60 | 60 | { |
| 61 | 61 | return true; |
| 62 | 62 | } |
@@ -67,17 +67,17 @@ discard block |
||
| 67 | 67 | { |
| 68 | 68 | $filter = new \Data\Filter('cn eq '.$name); |
| 69 | 69 | $group = $this->server->read($this->server->group_base, $filter); |
| 70 | - if(!empty($group)) |
|
| 70 | + if (!empty($group)) |
|
| 71 | 71 | { |
| 72 | 72 | $group = $group[0]; |
| 73 | 73 | $dn = $this->ldapObj->dn; |
| 74 | 74 | $uid = $this->ldapObj->uid[0]; |
| 75 | 75 | $ret = $this->isInListOrChild('member', $group, $dn); |
| 76 | - if($ret === false) |
|
| 76 | + if ($ret === false) |
|
| 77 | 77 | { |
| 78 | 78 | $ret = $this->isInListOrChild('uniquemember', $group, $dn); |
| 79 | 79 | } |
| 80 | - if($ret === false && isset($group['memberUid']) && in_array($uid, $group['memberUid'])) |
|
| 80 | + if ($ret === false && isset($group['memberUid']) && in_array($uid, $group['memberUid'])) |
|
| 81 | 81 | { |
| 82 | 82 | return true; |
| 83 | 83 | } |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | public function getOrganization() |
| 120 | 120 | { |
| 121 | 121 | $org = $this->getFieldSingleValue('o'); |
| 122 | - if($org === false) |
|
| 122 | + if ($org === false) |
|
| 123 | 123 | { |
| 124 | 124 | return 'Volunteer'; |
| 125 | 125 | } |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | public function getTitles() |
| 130 | 130 | { |
| 131 | 131 | $titles = $this->getField('title'); |
| 132 | - if(isset($titles['count'])) |
|
| 132 | + if (isset($titles['count'])) |
|
| 133 | 133 | { |
| 134 | 134 | unset($titles['count']); |
| 135 | 135 | } |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | public function getOrganizationUnits() |
| 175 | 175 | { |
| 176 | 176 | $units = $this->getField('ou'); |
| 177 | - if(isset($units['count'])) |
|
| 177 | + if (isset($units['count'])) |
|
| 178 | 178 | { |
| 179 | 179 | unset($units['count']); |
| 180 | 180 | } |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | public function getLoginProviders() |
| 185 | 185 | { |
| 186 | 186 | $hosts = $this->getField('host'); |
| 187 | - if(isset($hosts['count'])) |
|
| 187 | + if (isset($hosts['count'])) |
|
| 188 | 188 | { |
| 189 | 189 | unset($hosts['count']); |
| 190 | 190 | } |
@@ -195,12 +195,12 @@ discard block |
||
| 195 | 195 | { |
| 196 | 196 | $res = array(); |
| 197 | 197 | $groups = $this->server->read($this->server->group_base); |
| 198 | - if(!empty($groups)) |
|
| 198 | + if (!empty($groups)) |
|
| 199 | 199 | { |
| 200 | 200 | $count = count($groups); |
| 201 | - for($i = 0; $i < $count; $i++) |
|
| 201 | + for ($i = 0; $i < $count; $i++) |
|
| 202 | 202 | { |
| 203 | - if($this->isInGroupNamed($groups[$i]['cn'][0])) |
|
| 203 | + if ($this->isInGroupNamed($groups[$i]['cn'][0])) |
|
| 204 | 204 | { |
| 205 | 205 | array_push($res, new LDAPGroup($groups[$i])); |
| 206 | 206 | } |
@@ -220,23 +220,23 @@ discard block |
||
| 220 | 220 | |
| 221 | 221 | private function generateLDAPPass($pass) |
| 222 | 222 | { |
| 223 | - mt_srand((double)microtime()*1000000); |
|
| 223 | + mt_srand((double)microtime() * 1000000); |
|
| 224 | 224 | $salt = pack("CCCC", mt_rand(), mt_rand(), mt_rand(), mt_rand()); |
| 225 | - $hash = base64_encode(pack('H*',sha1($pass.$salt)).$salt); |
|
| 225 | + $hash = base64_encode(pack('H*', sha1($pass.$salt)).$salt); |
|
| 226 | 226 | return '{SSHA}'.$hash; |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | public function setPass($password) |
| 230 | 230 | { |
| 231 | - if(!is_object($this->ldapObj)) |
|
| 231 | + if (!is_object($this->ldapObj)) |
|
| 232 | 232 | { |
| 233 | - return $this->setFieldLocal('userPassword', $this->generateLDAPPass($password)); |
|
| 233 | + return $this->setFieldLocal('userPassword', $this->generateLDAPPass($password)); |
|
| 234 | 234 | } |
| 235 | 235 | else |
| 236 | 236 | { |
| 237 | 237 | $obj = array('dn'=>$this->ldapObj->dn); |
| 238 | 238 | $obj['userPassword'] = $this->generateLDAPPass($password); |
| 239 | - if(isset($this->ldapObj->uniqueidentifier)) |
|
| 239 | + if (isset($this->ldapObj->uniqueidentifier)) |
|
| 240 | 240 | { |
| 241 | 241 | $obj['uniqueIdentifier'] = null; |
| 242 | 242 | } |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | |
| 251 | 251 | public function validate_password($password) |
| 252 | 252 | { |
| 253 | - if($this->server->bind($this->ldapObj->dn, $password)) |
|
| 253 | + if ($this->server->bind($this->ldapObj->dn, $password)) |
|
| 254 | 254 | { |
| 255 | 255 | return true; |
| 256 | 256 | } |
@@ -259,37 +259,37 @@ discard block |
||
| 259 | 259 | |
| 260 | 260 | public function validate_reset_hash($hash) |
| 261 | 261 | { |
| 262 | - if(isset($this->ldapObj->uniqueidentifier) && strcmp($this->ldapObj->uniqueidentifier[0], $hash) === 0) |
|
| 262 | + if (isset($this->ldapObj->uniqueidentifier) && strcmp($this->ldapObj->uniqueidentifier[0], $hash) === 0) |
|
| 263 | 263 | { |
| 264 | 264 | return true; |
| 265 | 265 | } |
| 266 | 266 | return false; |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | - static function from_name($name, $data=false) |
|
| 269 | + static function from_name($name, $data = false) |
|
| 270 | 270 | { |
| 271 | - if($data === false) |
|
| 271 | + if ($data === false) |
|
| 272 | 272 | { |
| 273 | 273 | throw new \Exception('data must be set for LDAPUser'); |
| 274 | 274 | } |
| 275 | 275 | $filter = new \Data\Filter("uid eq $name"); |
| 276 | 276 | $user = $data->read($data->user_base, $filter); |
| 277 | - if($user === false || !isset($user[0])) |
|
| 277 | + if ($user === false || !isset($user[0])) |
|
| 278 | 278 | { |
| 279 | 279 | return false; |
| 280 | 280 | } |
| 281 | 281 | return new static($user[0]); |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | - static function from_dn($dn, $data=false) |
|
| 284 | + static function from_dn($dn, $data = false) |
|
| 285 | 285 | { |
| 286 | - if($data === false) |
|
| 286 | + if ($data === false) |
|
| 287 | 287 | { |
| 288 | 288 | throw new \Exception('data must be set for LDAPUser'); |
| 289 | 289 | } |
| 290 | 290 | $filter = new \Data\Filter("dn eq $dn"); |
| 291 | 291 | $user = $data->read($data->user_base, $filter); |
| 292 | - if($user === false || !isset($user[0])) |
|
| 292 | + if ($user === false || !isset($user[0])) |
|
| 293 | 293 | { |
| 294 | 294 | return false; |
| 295 | 295 | } |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | |
| 319 | 319 | public function setUid($uid) |
| 320 | 320 | { |
| 321 | - if(!is_object($this->ldapObj)) |
|
| 321 | + if (!is_object($this->ldapObj)) |
|
| 322 | 322 | { |
| 323 | 323 | return $this->setFieldLocal('uid', $uid); |
| 324 | 324 | } |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | |
| 367 | 367 | public function setTitles($titles) |
| 368 | 368 | { |
| 369 | - if(!is_array($titles)) |
|
| 369 | + if (!is_array($titles)) |
|
| 370 | 370 | { |
| 371 | 371 | $titles = array($titles); |
| 372 | 372 | } |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | |
| 376 | 376 | public function setOrganizationUnits($ous) |
| 377 | 377 | { |
| 378 | - if(!is_array($ous)) |
|
| 378 | + if (!is_array($ous)) |
|
| 379 | 379 | { |
| 380 | 380 | $ous = array($ous); |
| 381 | 381 | } |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | |
| 385 | 385 | public function flushUser() |
| 386 | 386 | { |
| 387 | - if(is_object($this->ldapObj)) |
|
| 387 | + if (is_object($this->ldapObj)) |
|
| 388 | 388 | { |
| 389 | 389 | //In this mode we are always up to date |
| 390 | 390 | return true; |
@@ -392,11 +392,11 @@ discard block |
||
| 392 | 392 | $obj = $this->ldapObj; |
| 393 | 393 | $obj['objectClass'] = array('top', 'inetOrgPerson', 'extensibleObject'); |
| 394 | 394 | $obj['dn'] = 'uid='.$this->ldapObj['uid'].','.$this->server->user_base; |
| 395 | - if(!isset($obj['sn'])) |
|
| 395 | + if (!isset($obj['sn'])) |
|
| 396 | 396 | { |
| 397 | 397 | $obj['sn'] = $obj['uid']; |
| 398 | 398 | } |
| 399 | - if(!isset($obj['cn'])) |
|
| 399 | + if (!isset($obj['cn'])) |
|
| 400 | 400 | { |
| 401 | 401 | $obj['cn'] = $obj['uid']; |
| 402 | 402 | } |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | $ldapObj = $this->server->read($ldap->user_base, new \Data\Filter('uid eq '.$this->getUid())); |
| 414 | 414 | $ldapObj = $ldapObj[0]; |
| 415 | 415 | $hash = false; |
| 416 | - if(isset($ldapObj->userpassword)) |
|
| 416 | + if (isset($ldapObj->userpassword)) |
|
| 417 | 417 | { |
| 418 | 418 | $hash = hash('sha512', $ldapObj->dn.';'.$ldapObj->userpassword[0].';'.$ldapObj->mail[0]); |
| 419 | 419 | } |
@@ -423,7 +423,7 @@ discard block |
||
| 423 | 423 | } |
| 424 | 424 | $obj = array('dn'=>$this->ldapObj->dn); |
| 425 | 425 | $obj['uniqueIdentifier'] = $hash; |
| 426 | - if($this->server->update($obj) === false) |
|
| 426 | + if ($this->server->update($obj) === false) |
|
| 427 | 427 | { |
| 428 | 428 | throw new \Exception('Unable to create hash in LDAP object!'); |
| 429 | 429 | } |