Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / auth / adapter / PhutilAmazonAuthAdapter.php
blob94c529ae2d271cf02300bcfb6951dc57557f2f11
1 <?php
3 /**
4 * Authentication adapter for Amazon OAuth2.
5 */
6 final class PhutilAmazonAuthAdapter extends PhutilOAuthAuthAdapter {
8 public function getAdapterType() {
9 return 'amazon';
12 public function getAdapterDomain() {
13 return 'amazon.com';
16 public function getAccountID() {
17 return $this->getOAuthAccountData('user_id');
20 public function getAccountEmail() {
21 return $this->getOAuthAccountData('email');
24 public function getAccountName() {
25 return null;
28 public function getAccountImageURI() {
29 return null;
32 public function getAccountURI() {
33 return null;
36 public function getAccountRealName() {
37 return $this->getOAuthAccountData('name');
40 protected function getAuthenticateBaseURI() {
41 return 'https://www.amazon.com/ap/oa';
44 protected function getTokenBaseURI() {
45 return 'https://api.amazon.com/auth/o2/token';
48 public function getScope() {
49 return 'profile';
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://api.amazon.com/user/profile');
66 $uri->replaceQueryParam('access_token', $this->getAccessToken());
68 $future = new HTTPSFuture($uri);
69 list($body) = $future->resolvex();
71 try {
72 return phutil_json_decode($body);
73 } catch (PhutilJSONParserException $ex) {
74 throw new PhutilProxyException(
75 pht('Expected valid JSON response from Amazon account data request.'),
76 $ex);