Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F539981
PhutilGitHubAuthAdapter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhutilGitHubAuthAdapter.php
View Options
<?php
/**
* Authentication adapter for Github OAuth2.
*/
final
class
PhutilGitHubAuthAdapter
extends
PhutilOAuthAuthAdapter
{
public
function
getAdapterType
()
{
return
'github'
;
}
public
function
getAdapterDomain
()
{
return
'github.com'
;
}
public
function
getAccountID
()
{
return
$this
->
getOAuthAccountData
(
'id'
);
}
public
function
getAccountEmail
()
{
return
$this
->
getOAuthAccountData
(
'email'
);
}
public
function
getAccountName
()
{
return
$this
->
getOAuthAccountData
(
'login'
);
}
public
function
getAccountImageURI
()
{
return
$this
->
getOAuthAccountData
(
'avatar_url'
);
}
public
function
getAccountURI
()
{
$name
=
$this
->
getAccountName
();
if
(
phutil_nonempty_string
(
$name
))
{
return
'https://github.com/'
.
$name
;
}
return
null
;
}
public
function
getAccountRealName
()
{
return
$this
->
getOAuthAccountData
(
'name'
);
}
protected
function
getAuthenticateBaseURI
()
{
return
'https://github.com/login/oauth/authorize'
;
}
protected
function
getTokenBaseURI
()
{
return
'https://github.com/login/oauth/access_token'
;
}
protected
function
loadOAuthAccountData
()
{
$uri
=
new
PhutilURI
(
'https://api.github.com/user'
);
$future
=
new
HTTPSFuture
(
$uri
);
// NOTE: GitHub requires a User-Agent string.
$future
->
addHeader
(
'User-Agent'
,
PhabricatorEnv
::
getEnvConfig
(
'phabricator.base-uri'
));
// See T13485. Circa early 2020, GitHub has deprecated use of the
// "access_token" URI parameter.
$token_header
=
sprintf
(
'token %s'
,
$this
->
getAccessToken
());
$future
->
addHeader
(
'Authorization'
,
$token_header
);
list
(
$body
)
=
$future
->
resolvex
();
try
{
return
phutil_json_decode
(
$body
);
}
catch
(
PhutilJSONParserException
$ex
)
{
throw
new
PhutilProxyException
(
pht
(
'Expected valid JSON response from GitHub account data request.'
),
$ex
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:23 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
97265
Default Alt Text
PhutilGitHubAuthAdapter.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment