@@ -34,8 +34,7 @@ discard block |
||
| 34 | 34 | if($this->user === false || $this->user === null) |
| 35 | 35 | { |
| 36 | 36 | $this->add_link('<i class="fa fa-sign-in"></i> Login', $this->loginUrl); |
| 37 | - } |
|
| 38 | - else |
|
| 37 | + } else |
|
| 39 | 38 | { |
| 40 | 39 | $this->add_links(); |
| 41 | 40 | $this->add_link('<i class="fa fa-sign-out"></i> Logout', $this->logoutUrl); |
@@ -166,8 +165,7 @@ discard block |
||
| 166 | 165 | <h1 class="page-header">You must <a href="'.$this->loginUrl.'?return='.$this->current_url().'">log in <span class="glyphicon glyphicon-log-in"></span></a> to access the '.$this->title.' Admin system!</h1> |
| 167 | 166 | </div> |
| 168 | 167 | </div>'; |
| 169 | - } |
|
| 170 | - else if($this->is_admin === false) |
|
| 168 | + } else if($this->is_admin === false) |
|
| 171 | 169 | { |
| 172 | 170 | $this->body = ' |
| 173 | 171 | <div class="row"> |
@@ -8,8 +8,7 @@ discard block |
||
| 8 | 8 | try |
| 9 | 9 | { |
| 10 | 10 | return $this->server->update($obj); |
| 11 | - } |
|
| 12 | - catch(\Exception $ex) |
|
| 11 | + } catch(\Exception $ex) |
|
| 13 | 12 | { |
| 14 | 13 | $auth = \AuthProvider::getInstance(); |
| 15 | 14 | $ldap = $auth->getAuthenticator('Auth\LDAPAuthenticator'); |
@@ -115,8 +114,7 @@ discard block |
||
| 115 | 114 | if($fieldValue !== null && strlen($fieldValue) > 0) |
| 116 | 115 | { |
| 117 | 116 | $obj[$fieldName] = $fieldValue; |
| 118 | - } |
|
| 119 | - else |
|
| 117 | + } else |
|
| 120 | 118 | { |
| 121 | 119 | $obj[$fieldName] = null; |
| 122 | 120 | } |
@@ -133,8 +131,7 @@ discard block |
||
| 133 | 131 | $obj[$fieldName] = $this->ldapObj->{$fieldName}; |
| 134 | 132 | $obj[$fieldName][$obj[$fieldName]['count']] = $fieldValue; |
| 135 | 133 | $obj[$fieldName]['count']++; |
| 136 | - } |
|
| 137 | - else |
|
| 134 | + } else |
|
| 138 | 135 | { |
| 139 | 136 | $obj[$fieldName] = $fieldValue; |
| 140 | 137 | } |
@@ -86,12 +86,13 @@ |
||
| 86 | 86 | { |
| 87 | 87 | $isLast = true; |
| 88 | 88 | } |
| 89 | - if(!isset($group->member[$i]->type)) continue; |
|
| 89 | + if(!isset($group->member[$i]->type)) { |
|
| 90 | + continue; |
|
| 91 | + } |
|
| 90 | 92 | if($group->member[$i]->type === 'Group') |
| 91 | 93 | { |
| 92 | 94 | $this->addMember($group->member[$i]->cn, true, $isLast); |
| 93 | - } |
|
| 94 | - else |
|
| 95 | + } else |
|
| 95 | 96 | { |
| 96 | 97 | $this->addMember($group->member[$i]->uid, false, $isLast); |
| 97 | 98 | } |
@@ -264,7 +264,7 @@ |
||
| 264 | 264 | throw new \Exception('data must be set for LDAPGroup'); |
| 265 | 265 | } |
| 266 | 266 | $filter = new \Data\Filter("cn eq $name"); |
| 267 | - $group = $data->read($data->group_base, $filter); |
|
| 267 | + $group = $data->read($data->group_base, $filter); |
|
| 268 | 268 | if($group === false || !isset($group[0])) |
| 269 | 269 | { |
| 270 | 270 | return false; |
@@ -78,8 +78,7 @@ discard block |
||
| 78 | 78 | { |
| 79 | 79 | $members = array_merge($members, $child->members()); |
| 80 | 80 | } |
| 81 | - } |
|
| 82 | - else |
|
| 81 | + } else |
|
| 83 | 82 | { |
| 84 | 83 | array_push($members, $rawMembers[$i]); |
| 85 | 84 | } |
@@ -123,12 +122,10 @@ discard block |
||
| 123 | 122 | { |
| 124 | 123 | $members = array_merge($members, $child->members()); |
| 125 | 124 | } |
| 126 | - } |
|
| 127 | - else if($includeGroups === false && strncmp($rawMembers[$i], 'cn=', 3) === 0) |
|
| 125 | + } else if($includeGroups === false && strncmp($rawMembers[$i], 'cn=', 3) === 0) |
|
| 128 | 126 | { |
| 129 | 127 | //Drop this member |
| 130 | - } |
|
| 131 | - else |
|
| 128 | + } else |
|
| 132 | 129 | { |
| 133 | 130 | array_push($members, $rawMembers[$i]); |
| 134 | 131 | } |
@@ -160,8 +157,7 @@ discard block |
||
| 160 | 157 | if(strncmp($members[$i], "uid=", 4) == 0) |
| 161 | 158 | { |
| 162 | 159 | $userFilter.='(!('.$dnComps[0].'))'; |
| 163 | - } |
|
| 164 | - else |
|
| 160 | + } else |
|
| 165 | 161 | { |
| 166 | 162 | $groupFilter.='(!('.$dnComps[0].'))'; |
| 167 | 163 | } |
@@ -172,7 +168,9 @@ discard block |
||
| 172 | 168 | $count = count($groups); |
| 173 | 169 | for($i = 0; $i < $count; $i++) |
| 174 | 170 | { |
| 175 | - if($groups[$i] === false || $groups[$i] === null) continue; |
|
| 171 | + if($groups[$i] === false || $groups[$i] === null) { |
|
| 172 | + continue; |
|
| 173 | + } |
|
| 176 | 174 | array_push($data, new LDAPGroup($groups[$i])); |
| 177 | 175 | } |
| 178 | 176 | $users = $this->server->read($this->server->user_base, $userFilter, false, $select); |
@@ -189,12 +187,10 @@ discard block |
||
| 189 | 187 | if(isset($this->ldapObj['member'])) |
| 190 | 188 | { |
| 191 | 189 | $this->ldapObj['member'] = array(); |
| 192 | - } |
|
| 193 | - else if(isset($this->ldapObj['uniquemember'])) |
|
| 190 | + } else if(isset($this->ldapObj['uniquemember'])) |
|
| 194 | 191 | { |
| 195 | 192 | $this->ldapObj['uniquemember'] = array(); |
| 196 | - } |
|
| 197 | - else if(isset($this->ldapObj['memberuid'])) |
|
| 193 | + } else if(isset($this->ldapObj['memberuid'])) |
|
| 198 | 194 | { |
| 199 | 195 | $this->ldapObj['memberuid'] = array(); |
| 200 | 196 | } |
@@ -206,8 +202,7 @@ discard block |
||
| 206 | 202 | if($isGroup) |
| 207 | 203 | { |
| 208 | 204 | $dn = 'cn='.$name.','.$this->server->group_base; |
| 209 | - } |
|
| 210 | - else |
|
| 205 | + } else |
|
| 211 | 206 | { |
| 212 | 207 | $dn = 'uid='.$name.','.$this->server->user_base; |
| 213 | 208 | } |
@@ -224,8 +219,7 @@ discard block |
||
| 224 | 219 | throw new \Exception('Unable to add a group as a child of this group type'); |
| 225 | 220 | } |
| 226 | 221 | array_push($rawMembers, $name); |
| 227 | - } |
|
| 228 | - else |
|
| 222 | + } else |
|
| 229 | 223 | { |
| 230 | 224 | array_push($rawMembers, $dn); |
| 231 | 225 | } |
@@ -236,8 +230,7 @@ discard block |
||
| 236 | 230 | $obj = array('dn'=>$this->ldapObj->dn); |
| 237 | 231 | $obj[$propName] = $rawMembers; |
| 238 | 232 | return $this->server->update($obj); |
| 239 | - } |
|
| 240 | - else |
|
| 233 | + } else |
|
| 241 | 234 | { |
| 242 | 235 | return true; |
| 243 | 236 | } |
@@ -34,10 +34,14 @@ discard block |
||
| 34 | 34 | switch($orderby[$keys[0]]) |
| 35 | 35 | { |
| 36 | 36 | case 1: |
| 37 | - if($d > 0) swap($array, $i, $j); |
|
| 37 | + if($d > 0) { |
|
| 38 | + swap($array, $i, $j); |
|
| 39 | + } |
|
| 38 | 40 | break; |
| 39 | 41 | case 0: |
| 40 | - if($d < 0) swap($array, $i, $j); |
|
| 42 | + if($d < 0) { |
|
| 43 | + swap($array, $i, $j); |
|
| 44 | + } |
|
| 41 | 45 | break; |
| 42 | 46 | } |
| 43 | 47 | } |
@@ -158,8 +162,7 @@ discard block |
||
| 158 | 162 | if($bind_write === false) |
| 159 | 163 | { |
| 160 | 164 | $ret = $server->bind(); |
| 161 | - } |
|
| 162 | - else |
|
| 165 | + } else |
|
| 163 | 166 | { |
| 164 | 167 | $ret = $server->bind($this->bind_dn, $this->bind_pass); |
| 165 | 168 | } |
@@ -292,12 +295,10 @@ discard block |
||
| 292 | 295 | if($skip !== false && $top !== false) |
| 293 | 296 | { |
| 294 | 297 | $data = array_slice($data, $skip, $top); |
| 295 | - } |
|
| 296 | - else if($top !== false) |
|
| 298 | + } else if($top !== false) |
|
| 297 | 299 | { |
| 298 | 300 | $data = array_slice($data, 0, $top); |
| 299 | - } |
|
| 300 | - else if($skip !== false) |
|
| 301 | + } else if($skip !== false) |
|
| 301 | 302 | { |
| 302 | 303 | $data = array_slice($data, $skip); |
| 303 | 304 | } |
@@ -241,7 +241,7 @@ |
||
| 241 | 241 | $obj['userPassword'] = $this->generateLDAPPass($password); |
| 242 | 242 | if(isset($this->ldap_obj->uniqueidentifier)) |
| 243 | 243 | { |
| 244 | - $obj['uniqueIdentifier'] = null; |
|
| 244 | + $obj['uniqueIdentifier'] = null; |
|
| 245 | 245 | } |
| 246 | 246 | //Make sure we are bound in write mode |
| 247 | 247 | $auth = \AuthProvider::getInstance(); |
@@ -21,14 +21,12 @@ discard block |
||
| 21 | 21 | throw new \Exception('No such LDAP User!'); |
| 22 | 22 | } |
| 23 | 23 | $this->ldapObj = $users[0]; |
| 24 | - } |
|
| 25 | - else |
|
| 24 | + } else |
|
| 26 | 25 | { |
| 27 | 26 | if(isset($data['extended'])) |
| 28 | 27 | { |
| 29 | 28 | $this->ldapObj = $data['extended']; |
| 30 | - } |
|
| 31 | - else |
|
| 29 | + } else |
|
| 32 | 30 | { |
| 33 | 31 | $this->ldapObj = $data; |
| 34 | 32 | } |
@@ -44,7 +42,9 @@ discard block |
||
| 44 | 42 | { |
| 45 | 43 | $dn = explode(',', $array[$i]); |
| 46 | 44 | $res = $this->isInGroupNamed(substr($dn[0], 3)); |
| 47 | - if($res) return $res; |
|
| 45 | + if($res) { |
|
| 46 | + return $res; |
|
| 47 | + } |
|
| 48 | 48 | } |
| 49 | 49 | } |
| 50 | 50 | return $res; |
@@ -206,8 +206,7 @@ discard block |
||
| 206 | 206 | } |
| 207 | 207 | } |
| 208 | 208 | return $res; |
| 209 | - } |
|
| 210 | - else |
|
| 209 | + } else |
|
| 211 | 210 | { |
| 212 | 211 | return false; |
| 213 | 212 | } |
@@ -231,8 +230,7 @@ discard block |
||
| 231 | 230 | if(!is_object($this->ldapObj)) |
| 232 | 231 | { |
| 233 | 232 | return $this->setFieldLocal('userPassword', $this->generateLDAPPass($password)); |
| 234 | - } |
|
| 235 | - else |
|
| 233 | + } else |
|
| 236 | 234 | { |
| 237 | 235 | $obj = array('dn'=>$this->ldapObj->dn); |
| 238 | 236 | $obj['userPassword'] = $this->generateLDAPPass($password); |
@@ -321,8 +319,7 @@ discard block |
||
| 321 | 319 | if(!is_object($this->ldapObj)) |
| 322 | 320 | { |
| 323 | 321 | return $this->setFieldLocal('uid', $uid); |
| 324 | - } |
|
| 325 | - else |
|
| 322 | + } else |
|
| 326 | 323 | { |
| 327 | 324 | throw new \Exception('Unsupported!'); |
| 328 | 325 | } |
@@ -416,8 +413,7 @@ discard block |
||
| 416 | 413 | if(isset($ldapObj->userpassword)) |
| 417 | 414 | { |
| 418 | 415 | $hash = hash('sha512', $ldapObj->dn.';'.$ldapObj->userpassword[0].';'.$ldapObj->mail[0]); |
| 419 | - } |
|
| 420 | - else |
|
| 416 | + } else |
|
| 421 | 417 | { |
| 422 | 418 | $hash = hash('sha512', $ldapObj->dn.';'.openssl_random_pseudo_bytes(10).';'.$ldapObj->mail[0]); |
| 423 | 419 | } |
@@ -116,26 +116,26 @@ |
||
| 116 | 116 | |
| 117 | 117 | private function getDataTable($name, $pending=false) |
| 118 | 118 | { |
| 119 | - if(isset($this->dataTables[$name]) && isset($this->dataTables[$name][$pending])) |
|
| 120 | - { |
|
| 121 | - return $this->dataTables[$name][$pending]; |
|
| 122 | - } |
|
| 123 | - $dataSet = $this->dataSet; |
|
| 124 | - if($pending) |
|
| 125 | - { |
|
| 126 | - $dataSet = $this->pendingDataSet; |
|
| 127 | - } |
|
| 128 | - if($dataSet === null) |
|
| 129 | - { |
|
| 130 | - throw new \Exception('Unable to obtain dataset for SQL Authentication!'); |
|
| 131 | - } |
|
| 132 | - $dataTable = $dataSet[$name]; |
|
| 133 | - if(!isset($this->dataTables[$name])) |
|
| 134 | - { |
|
| 135 | - $this->dataTables[$name] = array(); |
|
| 136 | - } |
|
| 137 | - $this->dataTables[$name][$pending] = $dataTable; |
|
| 138 | - return $dataTable; |
|
| 119 | + if(isset($this->dataTables[$name]) && isset($this->dataTables[$name][$pending])) |
|
| 120 | + { |
|
| 121 | + return $this->dataTables[$name][$pending]; |
|
| 122 | + } |
|
| 123 | + $dataSet = $this->dataSet; |
|
| 124 | + if($pending) |
|
| 125 | + { |
|
| 126 | + $dataSet = $this->pendingDataSet; |
|
| 127 | + } |
|
| 128 | + if($dataSet === null) |
|
| 129 | + { |
|
| 130 | + throw new \Exception('Unable to obtain dataset for SQL Authentication!'); |
|
| 131 | + } |
|
| 132 | + $dataTable = $dataSet[$name]; |
|
| 133 | + if(!isset($this->dataTables[$name])) |
|
| 134 | + { |
|
| 135 | + $this->dataTables[$name] = array(); |
|
| 136 | + } |
|
| 137 | + $this->dataTables[$name][$pending] = $dataTable; |
|
| 138 | + return $dataTable; |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | private function getPendingUserDataTable() |
@@ -149,7 +149,9 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | public function login($username, $password) |
| 151 | 151 | { |
| 152 | - if($this->current === false) return false; |
|
| 152 | + if($this->current === false) { |
|
| 153 | + return false; |
|
| 154 | + } |
|
| 153 | 155 | $userDataTable = $this->getDataTable('user'); |
| 154 | 156 | $filter = new \Data\Filter("uid eq '$username'"); |
| 155 | 157 | $users = $userDataTable->read($filter, 'uid,pass'); |
@@ -235,9 +237,13 @@ discard block |
||
| 235 | 237 | |
| 236 | 238 | public function getPendingUserCount() |
| 237 | 239 | { |
| 238 | - if($this->pending === false) return 0; |
|
| 240 | + if($this->pending === false) { |
|
| 241 | + return 0; |
|
| 242 | + } |
|
| 239 | 243 | $dataTable = $this->getPendingUserDataTable(); |
| 240 | - if($dataTable === null) return 0; |
|
| 244 | + if($dataTable === null) { |
|
| 245 | + return 0; |
|
| 246 | + } |
|
| 241 | 247 | return $dataTable->count(); |
| 242 | 248 | } |
| 243 | 249 | |
@@ -275,7 +281,9 @@ discard block |
||
| 275 | 281 | public function getPendingUsersByFilter($filter, $select=false, $top=false, $skip=false, $orderby=false) |
| 276 | 282 | |
| 277 | 283 | { |
| 278 | - if($this->pending === false) return false; |
|
| 284 | + if($this->pending === false) { |
|
| 285 | + return false; |
|
| 286 | + } |
|
| 279 | 287 | if($filter !== false && !$filter->contains('hash')) |
| 280 | 288 | { |
| 281 | 289 | return $this->searchPendingUsers($filter, $select, $top, $skip, $orderby); |
@@ -296,7 +304,9 @@ discard block |
||
| 296 | 304 | |
| 297 | 305 | public function createPendingUser($user) |
| 298 | 306 | { |
| 299 | - if($this->pending === false) return false; |
|
| 307 | + if($this->pending === false) { |
|
| 308 | + return false; |
|
| 309 | + } |
|
| 300 | 310 | $userDataTable = $this->getPendingUserDataTable(); |
| 301 | 311 | if(isset($user->password2)) |
| 302 | 312 | { |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | $ret = $auth->activatePendingUser($user); |
| 67 | 67 | if($ret === false) |
| 68 | 68 | {
|
| 69 | - throw new \Exception('Unable to create user! '.$res);
|
|
| 69 | + throw new \Exception('Unable to create user! '.$res);
|
|
| 70 | 70 | } |
| 71 | 71 | return self::SUCCESS; |
| 72 | 72 | } |
@@ -55,8 +55,7 @@ |
||
| 55 | 55 | } |
| 56 | 56 | $currentUser = $localUsers[0]; |
| 57 | 57 | return self::ALREADY_PRESENT; |
| 58 | - } |
|
| 59 | - else |
|
| 58 | + } else |
|
| 60 | 59 | {
|
| 61 | 60 | $user = new PendingUser(); |
| 62 | 61 | $user->setEmail($googleUser->email); |
@@ -280,11 +280,15 @@ discard block |
||
| 280 | 280 | function canLoginWith($provider) |
| 281 | 281 | { |
| 282 | 282 | $hosts = $this->getLoginProviders(); |
| 283 | - if($hosts === false) return false; |
|
| 283 | + if($hosts === false) { |
|
| 284 | + return false; |
|
| 285 | + } |
|
| 284 | 286 | $count = count($hosts); |
| 285 | 287 | for($i = 0; $i < $count; $i++) |
| 286 | 288 | { |
| 287 | - if(strcasecmp($hosts[$i], $provider) === 0) return true; |
|
| 289 | + if(strcasecmp($hosts[$i], $provider) === 0) { |
|
| 290 | + return true; |
|
| 291 | + } |
|
| 288 | 292 | } |
| 289 | 293 | return false; |
| 290 | 294 | } |
@@ -607,8 +611,7 @@ discard block |
||
| 607 | 611 | $this->change_pass($data->oldpass, $data->password); |
| 608 | 612 | unset($data->oldpass); |
| 609 | 613 | unset($data->password); |
| 610 | - } |
|
| 611 | - else if(isset($data->hash) && isset($data->password)) |
|
| 614 | + } else if(isset($data->hash) && isset($data->password)) |
|
| 612 | 615 | { |
| 613 | 616 | $this->change_pass($data->hash, $data->password, true); |
| 614 | 617 | return; |