Completed
Push — master ( 4c303e...0095fb )
by Дмитрий
03:38
created

Amazon::getBaseUri()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
/**
3
 * SocialConnect project
4
 * @author: Patsura Dmitry https://github.com/ovr <[email protected]>
5
 */
6
7
namespace SocialConnect\OAuth2\Provider;
8
9
use SocialConnect\Provider\AccessTokenInterface;
10
use SocialConnect\Provider\Exception\InvalidAccessToken;
11
use SocialConnect\Provider\Exception\InvalidResponse;
12
use SocialConnect\OAuth2\AccessToken;
13
use SocialConnect\Common\Entity\User;
14
use SocialConnect\Common\Hydrator\ObjectMap;
15
16
class Amazon extends \SocialConnect\OAuth2\AbstractProvider
17
{
18
    /**
19
     * {@inheritdoc}
20
     */
21 1
    public function getBaseUri()
22
    {
23 1
        return 'https://api.amazon.com/';
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     */
29 2
    public function getAuthorizeUri()
30
    {
31 2
        return 'https://www.amazon.com/ap/oa';
32
    }
33
34
    /**
35
     * {@inheritdoc}
36
     */
37 1
    public function getRequestTokenUri()
38
    {
39 1
        return 'https://api.amazon.com/auth/o2/token';
40
    }
41
42
    /**
43
     * {@inheritdoc}
44
     */
45 2
    public function getName()
46
    {
47 2
        return 'amazon';
48
    }
49
50
    /**
51
     * {@inheritdoc}
52
     */
53
    public function parseToken($body)
54
    {
55
        if (empty($body)) {
56
            throw new InvalidAccessToken('Provider response with empty body');
57
        }
58
59
        $result = json_decode($body, true);
60
        if ($result) {
61
            return new AccessToken($result);
62
        }
63
64
        throw new InvalidAccessToken('Provider response with not valid JSON');
65
    }
66
67
    /**
68
     * {@inheritdoc}
69
     */
70
    public function getIdentity(AccessTokenInterface $accessToken)
71
    {
72
        $response = $this->httpClient->request(
73
            $this->getBaseUri() . 'user/profile',
74
            [
75
                'access_token' => $accessToken->getToken()
76
            ]
77
        );
78
79
        if (!$response->isSuccess()) {
80
            throw new InvalidResponse(
81
                'API response with error code',
82
                $response
83
            );
84
        }
85
86
        $result = $response->json();
87
        if (!$result) {
88
            throw new InvalidResponse(
89
                'API response is not a valid JSON object',
90
                $response->getBody()
91
            );
92
        }
93
94
        $hydrator = new ObjectMap(
95
            [
96
                'user_id' => 'id',
97
                'name' => 'firstname',
98
            ]
99
        );
100
101
        return $hydrator->hydrate(new User(), $result);
102
    }
103
}
104