Completed
Push — master ( bda8d5...d74c6d )
by Дмитрий
03:32 queued 01:52
created

Trello::getAuthorizeUri()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
ccs 0
cts 2
cp 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 SocialConnect\Provider\AccessTokenInterface is incompatible with the declared type 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