Completed
Push — master ( 956eb2...1b4b8f )
by Дмитрий
01:56
created

Trello::getRequestTokenUri()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * SocialConnect project
4
 * @author: Patsura Dmitry https://github.com/ovr <[email protected]>
5
 */
6
7
namespace SocialConnect\OAuth1\Provider;
8
9
use SocialConnect\Common\Http\Client\Client;
10
use SocialConnect\Provider\AccessTokenInterface;
11
use SocialConnect\Provider\Exception\InvalidResponse;
12
use SocialConnect\OAuth1\AbstractProvider;
13
use SocialConnect\Common\Entity\User;
14
use SocialConnect\Common\Hydrator\ObjectMap;
15
16
class Trello extends AbstractProvider
17
{
18
    const NAME = 'trello';
19
20
    /**
21
     * {@inheritdoc}
22
     */
23
    public function getBaseUri()
24
    {
25
        return 'https://api.trello.com/1/';
26
    }
27
28
    /**
29
     * {@inheritdoc}
30
     */
31
    public function getAuthorizeUri()
32
    {
33
        return 'https://trello.com/1/OAuthAuthorizeToken';
34
    }
35
36
    /**
37
     * {@inheritdoc}
38
     */
39
    public function getRequestTokenUri()
40
    {
41
        return 'https://trello.com/1/OAuthGetRequestToken';
42
    }
43
44
    /**
45
     * @return string
46
     */
47
    public function getRequestTokenAccessUri()
48
    {
49
        return 'https://trello.com/1/OAuthGetAccessToken';
50
    }
51
52
53
    /**
54
     * {@inheritdoc}
55
     */
56
    public function getName()
57
    {
58
        return self::NAME;
59
    }
60
61
    /**
62
     * {@inheritdoc}
63
     */
64
    public function getIdentity(AccessTokenInterface $accessToken)
65
    {
66
        $this->consumerToken = $accessToken;
0 ignored issues
show
Documentation Bug introduced by
It seems like $accessToken of type object<SocialConnect\Pro...r\AccessTokenInterface> is incompatible with the declared type object<SocialConnect\OAuth1\Token> of property $consumerToken.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
67
68
        $parameters = [
69
            'key' => $this->consumer->getKey(),
70
            'token' => $accessToken->getToken()
71
        ];
72
73
        $response = $this->oauthRequest(
74
            $this->getBaseUri() . 'members/me',
75
            Client::GET,
76
            $parameters
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
91
            );
92
        }
93
94
        $hydrator = new ObjectMap([
95
            'avatarUrl' => 'pictureURL',
96
            'fullName' => 'fullname',
97
        ]);
98
99
        return $hydrator->hydrate(new User(), $result);
100
    }
101
}
102