Completed
Push — master ( 59cb71...34a5b8 )
by Дмитрий
04:34
created

Microsoft::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 1
b 0
f 0
cc 1
eloc 2
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\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 Microsoft extends \SocialConnect\OAuth2\AbstractProvider
17
{
18
    /**
19
     * {@inheritdoc}
20
     */
21
    public function getBaseUri()
22
    {
23
        return 'https://apis.live.net/v5.0/';
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public function getAuthorizeUri()
30
    {
31
        return 'https://login.live.com/oauth20_authorize.srf';
32
    }
33
34
    /**
35
     * {@inheritdoc}
36
     */
37
    public function getRequestTokenUri()
38
    {
39
        return 'https://login.live.com/oauth20_token.srf';
40
    }
41
42
    /**
43
     * {@inheritdoc}
44
     */
45
    public function getName()
46
    {
47
        return 'microsoft';
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() . 'me',
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
                'id' => 'id',
97
                'first_name' => 'firstname',
98
                'last_name' => 'lastname',
99
                'name' => 'fullname',
100
            ]
101
        );
102
103
        /** @var User $user */
104
        $user = $hydrator->hydrate(new User(), $result);
105
106
        if ($result->emails) {
107
            if ($result->emails->preferred) {
108
                $user->email = $result->emails->preferred;
109
            } elseif ($result->emails->account) {
110
                $user->email = $result->emails->account;
111
            } elseif ($result->emails->personal) {
112
                $user->email = $result->emails->personal;
113
            }
114
        }
115
116
        return $user;
117
    }
118
}
119