@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public function getEmail() |
| 51 | 51 | { |
| 52 | - if(isset($this->email)) |
|
| 52 | + if (isset($this->email)) |
|
| 53 | 53 | { |
| 54 | 54 | return $this->email; |
| 55 | 55 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | public function getGivenName() |
| 65 | 65 | { |
| 66 | - if(isset($this->givenName)) |
|
| 66 | + if (isset($this->givenName)) |
|
| 67 | 67 | { |
| 68 | 68 | return $this->givenName; |
| 69 | 69 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public function getLastName() |
| 79 | 79 | { |
| 80 | - if(isset($this->sn)) |
|
| 80 | + if (isset($this->sn)) |
|
| 81 | 81 | { |
| 82 | 82 | return $this->sn; |
| 83 | 83 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | function getLoginProviders() |
| 106 | 106 | { |
| 107 | - if(isset($this->host)) |
|
| 107 | + if (isset($this->host)) |
|
| 108 | 108 | { |
| 109 | 109 | return $this->host; |
| 110 | 110 | } |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | */ |
| 121 | 121 | function addLoginProvider($provider) |
| 122 | 122 | { |
| 123 | - if(isset($this->host)) |
|
| 123 | + if (isset($this->host)) |
|
| 124 | 124 | { |
| 125 | 125 | array_push($this->host, $provider); |
| 126 | 126 | } |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | Burning Flipside Technology Team'); |
| 200 | 200 | $email_msg->setSubject('Burning Flipside Registration'); |
| 201 | 201 | $email_provider = \EmailProvider::getInstance(); |
| 202 | - if($email_provider->sendEmail($email_msg) === false) |
|
| 202 | + if ($email_provider->sendEmail($email_msg) === false) |
|
| 203 | 203 | { |
| 204 | 204 | throw new \Exception('Unable to send email!'); |
| 205 | 205 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Auth; |
| 3 | -if(!class_exists('Httpful\Request')) |
|
| 3 | +if (!class_exists('Httpful\Request')) |
|
| 4 | 4 | { |
| 5 | 5 | require(realpath(dirname(__FILE__)).'/../libs/httpful/bootstrap.php'); |
| 6 | 6 | } |
@@ -10,16 +10,16 @@ discard block |
||
| 10 | 10 | private $userData; |
| 11 | 11 | private $groupData = null; |
| 12 | 12 | |
| 13 | - public function __construct($data=false) |
|
| 13 | + public function __construct($data = false) |
|
| 14 | 14 | { |
| 15 | - if($data !== false && !isset($data['extended'])) |
|
| 15 | + if ($data !== false && !isset($data['extended'])) |
|
| 16 | 16 | { |
| 17 | 17 | //Generic user object |
| 18 | 18 | //TODO get from API |
| 19 | 19 | } |
| 20 | 20 | else |
| 21 | 21 | { |
| 22 | - if(isset($data['extended'])) |
|
| 22 | + if (isset($data['extended'])) |
|
| 23 | 23 | { |
| 24 | 24 | $this->userData = $data['extended']; |
| 25 | 25 | } |
@@ -28,19 +28,19 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | function isInGroupNamed($name) |
| 30 | 30 | { |
| 31 | - if($this->groupData === null) |
|
| 31 | + if ($this->groupData === null) |
|
| 32 | 32 | { |
| 33 | 33 | $resp = \Httpful\Request::get('https://profiles.test.burningflipside.com/api/v1/users/me/groups')->authenticateWith($this->userData->uid, $this->userData->userPassword)->send(); |
| 34 | - if($resp->hasErrors()) |
|
| 34 | + if ($resp->hasErrors()) |
|
| 35 | 35 | { |
| 36 | 36 | return false; |
| 37 | 37 | } |
| 38 | 38 | $this->groupData = $resp->body; |
| 39 | 39 | } |
| 40 | 40 | $count = count($this->groupData); |
| 41 | - for($i = 0; $i < $count; $i++) |
|
| 41 | + for ($i = 0; $i < $count; $i++) |
|
| 42 | 42 | { |
| 43 | - if($this->groupData[$i]->cn === $name) |
|
| 43 | + if ($this->groupData[$i]->cn === $name) |
|
| 44 | 44 | { |
| 45 | 45 | return true; |
| 46 | 46 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | function getDisplayName() |
| 52 | 52 | { |
| 53 | - if($this->userData === null) |
|
| 53 | + if ($this->userData === null) |
|
| 54 | 54 | { |
| 55 | 55 | return parent::getDisplayName(); |
| 56 | 56 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | function getGivenName() |
| 61 | 61 | { |
| 62 | - if($this->userData === null) |
|
| 62 | + if ($this->userData === null) |
|
| 63 | 63 | { |
| 64 | 64 | return parent::getGivenName(); |
| 65 | 65 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | |
| 69 | 69 | function getEmail() |
| 70 | 70 | { |
| 71 | - if($this->userData === null) |
|
| 71 | + if ($this->userData === null) |
|
| 72 | 72 | { |
| 73 | 73 | return parent::getEmail(); |
| 74 | 74 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | function getUid() |
| 79 | 79 | { |
| 80 | - if($this->userData === null) |
|
| 80 | + if ($this->userData === null) |
|
| 81 | 81 | { |
| 82 | 82 | return parent::getUid(); |
| 83 | 83 | } |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | function getPhoneNumber() |
| 88 | 88 | { |
| 89 | - if($this->userData === null) |
|
| 89 | + if ($this->userData === null) |
|
| 90 | 90 | { |
| 91 | 91 | return parent::getPhoneNumber(); |
| 92 | 92 | } |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | function getOrganization() |
| 97 | 97 | { |
| 98 | - if($this->userData === null) |
|
| 98 | + if ($this->userData === null) |
|
| 99 | 99 | { |
| 100 | 100 | return parent::getOrganization(); |
| 101 | 101 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | function getTitles() |
| 106 | 106 | { |
| 107 | - if($this->userData === null) |
|
| 107 | + if ($this->userData === null) |
|
| 108 | 108 | { |
| 109 | 109 | return parent::getTitles(); |
| 110 | 110 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | function getState() |
| 115 | 115 | { |
| 116 | - if($this->userData === null) |
|
| 116 | + if ($this->userData === null) |
|
| 117 | 117 | { |
| 118 | 118 | return parent::getState(); |
| 119 | 119 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | function getCity() |
| 124 | 124 | { |
| 125 | - if($this->userData === null) |
|
| 125 | + if ($this->userData === null) |
|
| 126 | 126 | { |
| 127 | 127 | return parent::getCity(); |
| 128 | 128 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | |
| 132 | 132 | function getLastName() |
| 133 | 133 | { |
| 134 | - if($this->userData === null) |
|
| 134 | + if ($this->userData === null) |
|
| 135 | 135 | { |
| 136 | 136 | return parent::getLastName(); |
| 137 | 137 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | function getNickName() |
| 142 | 142 | { |
| 143 | - if($this->userData === null) |
|
| 143 | + if ($this->userData === null) |
|
| 144 | 144 | { |
| 145 | 145 | return parent::getNickName(); |
| 146 | 146 | } |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | function getAddress() |
| 151 | 151 | { |
| 152 | - if($this->userData === null) |
|
| 152 | + if ($this->userData === null) |
|
| 153 | 153 | { |
| 154 | 154 | return parent::getAddress(); |
| 155 | 155 | } |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | |
| 159 | 159 | function getPostalCode() |
| 160 | 160 | { |
| 161 | - if($this->userData === null) |
|
| 161 | + if ($this->userData === null) |
|
| 162 | 162 | { |
| 163 | 163 | return parent::getPostalCode(); |
| 164 | 164 | } |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | function getCountry() |
| 169 | 169 | { |
| 170 | - if($this->userData === null) |
|
| 170 | + if ($this->userData === null) |
|
| 171 | 171 | { |
| 172 | 172 | return parent::getCountry(); |
| 173 | 173 | } |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | |
| 177 | 177 | function getOrganizationUnits() |
| 178 | 178 | { |
| 179 | - if($this->userData === null) |
|
| 179 | + if ($this->userData === null) |
|
| 180 | 180 | { |
| 181 | 181 | return parent::getOrganizationUnits(); |
| 182 | 182 | } |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | |
| 186 | 186 | function getLoginProviders() |
| 187 | 187 | { |
| 188 | - if($this->userData === null) |
|
| 188 | + if ($this->userData === null) |
|
| 189 | 189 | { |
| 190 | 190 | return parent::getLoginProviders(); |
| 191 | 191 | } |
@@ -23,12 +23,12 @@ discard block |
||
| 23 | 23 | return false; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - public function getMemberUids($recursive=true) |
|
| 26 | + public function getMemberUids($recursive = true) |
|
| 27 | 27 | { |
| 28 | 28 | return array(); |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - public function members($details=false, $recursive=true, $includeGroups=true) |
|
| 31 | + public function members($details = false, $recursive = true, $includeGroups = true) |
|
| 32 | 32 | { |
| 33 | 33 | return array(); |
| 34 | 34 | } |
@@ -46,20 +46,20 @@ discard block |
||
| 46 | 46 | public function jsonSerialize() |
| 47 | 47 | { |
| 48 | 48 | $group = array(); |
| 49 | - try{ |
|
| 49 | + try { |
|
| 50 | 50 | $group['cn'] = $this->getGroupName(); |
| 51 | 51 | $group['description'] = $this->getDescription(); |
| 52 | 52 | $group['member'] = $this->getMemberUids(); |
| 53 | - } catch(\Exception $e) {echo $e->getMessage(); die();} |
|
| 53 | + } catch (\Exception $e) {echo $e->getMessage(); die(); } |
|
| 54 | 54 | return $group; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - public function getNonMembers($select=false) |
|
| 57 | + public function getNonMembers($select = false) |
|
| 58 | 58 | { |
| 59 | 59 | return array(); |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - public function addMember($name, $isGroup=false, $flush=true) |
|
| 62 | + public function addMember($name, $isGroup = false, $flush = true) |
|
| 63 | 63 | { |
| 64 | 64 | return false; |
| 65 | 65 | } |
@@ -70,24 +70,24 @@ discard block |
||
| 70 | 70 | $auth = \AuthProvider::getInstance(); |
| 71 | 71 | $ldap = $auth->getAuthenticator('Auth\LDAPAuthenticator'); |
| 72 | 72 | $ldap->get_and_bind_server(true); |
| 73 | - if(isset($group->description)) |
|
| 73 | + if (isset($group->description)) |
|
| 74 | 74 | { |
| 75 | 75 | $this->setDescription($group->description); |
| 76 | 76 | unset($group->description); |
| 77 | 77 | } |
| 78 | - if(isset($group->member)) |
|
| 78 | + if (isset($group->member)) |
|
| 79 | 79 | { |
| 80 | 80 | $this->clearMembers(); |
| 81 | 81 | $count = count($group->member); |
| 82 | - for($i = 0; $i < $count; $i++) |
|
| 82 | + for ($i = 0; $i < $count; $i++) |
|
| 83 | 83 | { |
| 84 | 84 | $isLast = false; |
| 85 | - if($i === $count - 1) |
|
| 85 | + if ($i === $count - 1) |
|
| 86 | 86 | { |
| 87 | 87 | $isLast = true; |
| 88 | 88 | } |
| 89 | - if(!isset($group->member[$i]->type)) continue; |
|
| 90 | - if($group->member[$i]->type === 'Group') |
|
| 89 | + if (!isset($group->member[$i]->type)) continue; |
|
| 90 | + if ($group->member[$i]->type === 'Group') |
|
| 91 | 91 | { |
| 92 | 92 | $this->addMember($group->member[$i]->cn, true, $isLast); |
| 93 | 93 | } |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | return true; |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - static function from_name($name, $data=false) |
|
| 104 | + static function from_name($name, $data = false) |
|
| 105 | 105 | { |
| 106 | 106 | return false; |
| 107 | 107 | } |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | function getEmail() |
| 30 | 30 | { |
| 31 | - if(is_array($this->blob->mail)) |
|
| 31 | + if (is_array($this->blob->mail)) |
|
| 32 | 32 | { |
| 33 | 33 | return $this->blob->mail[0]; |
| 34 | 34 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | function getUid() |
| 39 | 39 | { |
| 40 | - if(is_array($this->blob->uid)) |
|
| 40 | + if (is_array($this->blob->uid)) |
|
| 41 | 41 | { |
| 42 | 42 | return $this->blob->uid[0]; |
| 43 | 43 | } |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | function getPassword() |
| 48 | 48 | { |
| 49 | - if(is_array($this->blob->password)) |
|
| 49 | + if (is_array($this->blob->password)) |
|
| 50 | 50 | { |
| 51 | 51 | return $this->blob->password[0]; |
| 52 | 52 | } |
@@ -10,11 +10,11 @@ discard block |
||
| 10 | 10 | public function __construct($params) |
| 11 | 11 | {
|
| 12 | 12 | parent::__construct($params); |
| 13 | - if(!isset($params['client_secrets_path'])) |
|
| 13 | + if (!isset($params['client_secrets_path'])) |
|
| 14 | 14 | {
|
| 15 | 15 | throw new \Exception('Missing required parameter client_secrets_path!');
|
| 16 | 16 | } |
| 17 | - if(!isset($params['redirect_url'])) |
|
| 17 | + if (!isset($params['redirect_url'])) |
|
| 18 | 18 | {
|
| 19 | 19 | $params['redirect_url'] = 'https://'.$_SERVER['HTTP_HOST'].'/oauth2callback.php?src=google'; |
| 20 | 20 | } |
@@ -34,21 +34,21 @@ discard block |
||
| 34 | 34 | public function authenticate($code, &$currentUser = false) |
| 35 | 35 | {
|
| 36 | 36 | $googleUser = false; |
| 37 | - try{
|
|
| 37 | + try {
|
|
| 38 | 38 | $this->client->authenticate($code); |
| 39 | 39 | $this->token = $this->client->getAccessToken(); |
| 40 | 40 | \FlipSession::setVar('GoogleToken', $this->token);
|
| 41 | 41 | $oauth2Service = new \Google_Service_Oauth2($this->client); |
| 42 | 42 | $googleUser = $oauth2Service->userinfo->get(); |
| 43 | - } catch(\Exception $ex) {
|
|
| 43 | + } catch (\Exception $ex) {
|
|
| 44 | 44 | return self::LOGIN_FAILED; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | $auth = \AuthProvider::getInstance(); |
| 48 | 48 | $localUsers = $auth->getUsersByFilter(new \Data\Filter('mail eq '.$googleUser->email));
|
| 49 | - if($localUsers !== false && isset($localUsers[0])) |
|
| 49 | + if ($localUsers !== false && isset($localUsers[0])) |
|
| 50 | 50 | {
|
| 51 | - if($localUsers[0]->canLoginWith('google.com'))
|
|
| 51 | + if ($localUsers[0]->canLoginWith('google.com'))
|
|
| 52 | 52 | {
|
| 53 | 53 | $auth->impersonateUser($localUsers[0]); |
| 54 | 54 | return self::SUCCESS; |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | $user->setLastName($googleUser->familyName); |
| 65 | 65 | $user->addLoginProvider('google.com');
|
| 66 | 66 | $ret = $auth->activatePendingUser($user); |
| 67 | - if($ret === false) |
|
| 67 | + if ($ret === false) |
|
| 68 | 68 | {
|
| 69 | 69 | throw new \Exception('Unable to create user! '.$res);
|
| 70 | 70 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | |
| 75 | 75 | public function getUser($data = false) |
| 76 | 76 | {
|
| 77 | - if($data === false) |
|
| 77 | + if ($data === false) |
|
| 78 | 78 | {
|
| 79 | 79 | $data = $this->token; |
| 80 | 80 | } |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | $profileUser['displayName'] = $googleUser->name; |
| 90 | 90 | $profileUser['jpegPhoto'] = base64_encode(file_get_contents($googleUser->picture)); |
| 91 | 91 | return $profileUser; |
| 92 | - } catch(\Exception $e) |
|
| 92 | + } catch (\Exception $e) |
|
| 93 | 93 | {
|
| 94 | 94 | return false; |
| 95 | 95 | } |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | namespace Auth\OAuth2; |
| 15 | 15 | |
| 16 | 16 | /** Only load the HTTPFul bootstrap if it isn't already loaded*/ |
| 17 | -if(!class_exists('Httpful\Request')) |
|
| 17 | +if (!class_exists('Httpful\Request')) |
|
| 18 | 18 | { |
| 19 | 19 | require('/var/www/common/libs/httpful/bootstrap.php'); |
| 20 | 20 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | public function __construct($params) |
| 38 | 38 | { |
| 39 | 39 | parent::__construct($params); |
| 40 | - if(!isset($params['redirect_url'])) |
|
| 40 | + if (!isset($params['redirect_url'])) |
|
| 41 | 41 | { |
| 42 | 42 | $this->redirect_uri = 'https://'.$_SERVER['HTTP_HOST'].'/oauth/callbacks/'.$this->getHostName(); |
| 43 | 43 | } |
@@ -115,21 +115,21 @@ discard block |
||
| 115 | 115 | public function authenticate($params, &$current_user) |
| 116 | 116 | { |
| 117 | 117 | $resp = $this->doAuthPost($params); |
| 118 | - if($resp->hasErrors()) |
|
| 118 | + if ($resp->hasErrors()) |
|
| 119 | 119 | { |
| 120 | 120 | return self::LOGIN_FAILED; |
| 121 | 121 | } |
| 122 | 122 | \FlipSession::setVar('OAuthToken', $resp->body); |
| 123 | 123 | $user = $this->getUserFromToken($resp->body); |
| 124 | - if($user === false) |
|
| 124 | + if ($user === false) |
|
| 125 | 125 | { |
| 126 | 126 | return self::LOGIN_FAILED; |
| 127 | 127 | } |
| 128 | 128 | $auth = \AuthProvider::getInstance(); |
| 129 | 129 | $local_users = $auth->getUsersByFilter(new \Data\Filter('mail eq '.$user->getEmail())); |
| 130 | - if($local_users !== false && isset($local_users[0])) |
|
| 130 | + if ($local_users !== false && isset($local_users[0])) |
|
| 131 | 131 | { |
| 132 | - if($local_users[0]->canLoginWith($this->getHostName())) |
|
| 132 | + if ($local_users[0]->canLoginWith($this->getHostName())) |
|
| 133 | 133 | { |
| 134 | 134 | $auth->impersonateUser($local_users[0]); |
| 135 | 135 | return self::SUCCESS; |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | return self::ALREADY_PRESENT; |
| 139 | 139 | } |
| 140 | 140 | $ret = $auth->activatePendingUser($user); |
| 141 | - if($ret === false) |
|
| 141 | + if ($ret === false) |
|
| 142 | 142 | { |
| 143 | 143 | throw new \Exception('Unable to create user! '.$res); |
| 144 | 144 | } |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | public function getUserFromToken($token) |
| 32 | 32 | { |
| 33 | - if($token === false) |
|
| 33 | + if ($token === false) |
|
| 34 | 34 | { |
| 35 | 35 | $token = \FlipSession::getVar('OAuthToken'); |
| 36 | 36 | } |
@@ -25,14 +25,14 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | public function getUserFromToken($token) |
| 27 | 27 | { |
| 28 | - if($token === false) |
|
| 28 | + if ($token === false) |
|
| 29 | 29 | { |
| 30 | 30 | $token = \FlipSession::getVar('OAuthToken'); |
| 31 | 31 | } |
| 32 | 32 | $resp = \Httpful\Request::get('https://api.github.com/user')->addHeader('Authorization', 'token '.$token['access_token'])->send(); |
| 33 | 33 | $github_user = $resp->body; |
| 34 | 34 | $user = new \Auth\PendingUser(); |
| 35 | - if(isset($github_user->name)) |
|
| 35 | + if (isset($github_user->name)) |
|
| 36 | 36 | { |
| 37 | 37 | $name = explode(' ', $github_user->name); |
| 38 | 38 | $user->setGivenName($name[0]); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | public function login($username, $password) |
| 48 | 48 | { |
| 49 | 49 | $resp = \Httpful\Request::post('https://profiles.test.burningflipside.com/api/v1/login?username='.urlencode($username).'&password='.urlencode($password))->send(); |
| 50 | - if($resp->hasErrors()) |
|
| 50 | + if ($resp->hasErrors()) |
|
| 51 | 51 | { |
| 52 | 52 | return false; |
| 53 | 53 | } |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | public function isLoggedIn($data) |
| 60 | 60 | { |
| 61 | - if(isset($this->user)) |
|
| 61 | + if (isset($this->user)) |
|
| 62 | 62 | { |
| 63 | 63 | return true; |
| 64 | 64 | } |
| 65 | - if(isset($data['res'])) |
|
| 65 | + if (isset($data['res'])) |
|
| 66 | 66 | { |
| 67 | 67 | return $data['res']; |
| 68 | 68 | } |
@@ -30,14 +30,14 @@ |
||
| 30 | 30 | |
| 31 | 31 | public function getUserFromToken($token) |
| 32 | 32 | { |
| 33 | - if($token === false) |
|
| 33 | + if ($token === false) |
|
| 34 | 34 | { |
| 35 | 35 | $token = \FlipSession::getVar('OAuthToken'); |
| 36 | 36 | } |
| 37 | 37 | $resp = \Httpful\Request::get('https://api.github.com/user')->addHeader('Authorization', 'token '.$token['access_token'])->send(); |
| 38 | 38 | $github_user = $resp->body; |
| 39 | 39 | $user = new \Auth\PendingUser(); |
| 40 | - if(isset($github_user->name)) |
|
| 40 | + if (isset($github_user->name)) |
|
| 41 | 41 | { |
| 42 | 42 | $name = explode(' ', $github_user->name); |
| 43 | 43 | $user->setGivenName($name[0]); |