Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14399812
PhutilDisqusAuthAdapter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
PhutilDisqusAuthAdapter.php
View Options
<?php
/**
* Authentication adapter for Disqus OAuth2.
*/
final
class
PhutilDisqusAuthAdapter
extends
PhutilOAuthAuthAdapter
{
public
function
getAdapterType
()
{
return
'disqus'
;
}
public
function
getAdapterDomain
()
{
return
'disqus.com'
;
}
public
function
getAccountID
()
{
return
$this
->
getOAuthAccountData
(
'id'
);
}
public
function
getAccountEmail
()
{
return
$this
->
getOAuthAccountData
(
'email'
);
}
public
function
getAccountName
()
{
return
$this
->
getOAuthAccountData
(
'username'
);
}
public
function
getAccountImageURI
()
{
return
$this
->
getOAuthAccountData
(
'avatar'
,
'permalink'
);
}
public
function
getAccountURI
()
{
return
$this
->
getOAuthAccountData
(
'profileUrl'
);
}
public
function
getAccountRealName
()
{
return
$this
->
getOAuthAccountData
(
'name'
);
}
protected
function
getAuthenticateBaseURI
()
{
return
'https://disqus.com/api/oauth/2.0/authorize/'
;
}
protected
function
getTokenBaseURI
()
{
return
'https://disqus.com/api/oauth/2.0/access_token/'
;
}
public
function
getScope
()
{
return
'read'
;
}
public
function
getExtraAuthenticateParameters
()
{
return
array
(
'response_type'
=>
'code'
,
);
}
public
function
getExtraTokenParameters
()
{
return
array
(
'grant_type'
=>
'authorization_code'
,
);
}
protected
function
loadOAuthAccountData
()
{
$uri
=
new
PhutilURI
(
'https://disqus.com/api/3.0/users/details.json'
);
$uri
->
setQueryParam
(
'api_key'
,
$this
->
getClientID
());
$uri
->
setQueryParam
(
'access_token'
,
$this
->
getAccessToken
());
$uri
=
(
string
)
$uri
;
$future
=
new
HTTPSFuture
(
$uri
);
$future
->
setMethod
(
'GET'
);
list
(
$body
)
=
$future
->
resolvex
();
try
{
$data
=
phutil_json_decode
(
$body
);
return
$data
[
'response'
];
}
catch
(
PhutilJSONParserException
$ex
)
{
throw
new
PhutilProxyException
(
pht
(
'Expected valid JSON response from Disqus account data request.'
),
$ex
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Dec 24, 5:47 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6900828
Default Alt Text
PhutilDisqusAuthAdapter.php (1 KB)
Attached To
Mode
rPHU libphutil
Attached
Detach File
Event Timeline
Log In to Comment