Remove all "FileHasObject" edge reads and writes
[phabricator.git] / src / applications / auth / adapter / PhutilDisqusAuthAdapter.php
blobb9a33b293a06563a956b237cb673078cfef4d050
1 <?php
3 /**
4 * Authentication adapter for Disqus OAuth2.
5 */
6 final class PhutilDisqusAuthAdapter extends PhutilOAuthAuthAdapter {
8 public function getAdapterType() {
9 return 'disqus';
12 public function getAdapterDomain() {
13 return 'disqus.com';
16 public function getAccountID() {
17 return $this->getOAuthAccountData('id');
20 public function getAccountEmail() {
21 return $this->getOAuthAccountData('email');
24 public function getAccountName() {
25 return $this->getOAuthAccountData('username');
28 public function getAccountImageURI() {
29 return $this->getOAuthAccountData('avatar', 'permalink');
32 public function getAccountURI() {
33 return $this->getOAuthAccountData('profileUrl');
36 public function getAccountRealName() {
37 return $this->getOAuthAccountData('name');
40 protected function getAuthenticateBaseURI() {
41 return 'https://disqus.com/api/oauth/2.0/authorize/';
44 protected function getTokenBaseURI() {
45 return 'https://disqus.com/api/oauth/2.0/access_token/';
48 public function getScope() {
49 return 'read';
52 public function getExtraAuthenticateParameters() {
53 return array(
54 'response_type' => 'code',
58 public function getExtraTokenParameters() {
59 return array(
60 'grant_type' => 'authorization_code',
64 protected function loadOAuthAccountData() {
65 $uri = new PhutilURI('https://disqus.com/api/3.0/users/details.json');
66 $uri->replaceQueryParam('api_key', $this->getClientID());
67 $uri->replaceQueryParam('access_token', $this->getAccessToken());
68 $uri = (string)$uri;
70 $future = new HTTPSFuture($uri);
71 $future->setMethod('GET');
72 list($body) = $future->resolvex();
74 try {
75 $data = phutil_json_decode($body);
76 return $data['response'];
77 } catch (PhutilJSONParserException $ex) {
78 throw new PhutilProxyException(
79 pht('Expected valid JSON response from Disqus account data request.'),
80 $ex);