Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F470856
PhutilDisqusAuthAdapter.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
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
->
replaceQueryParam
(
'api_key'
,
$this
->
getClientID
());
$uri
->
replaceQueryParam
(
'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, May 6, 12:21 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
82090
Default Alt Text
PhutilDisqusAuthAdapter.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment