forked from SocialiteProviders/Zoho
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProvider.php
More file actions
81 lines (70 loc) · 1.91 KB
/
Provider.php
File metadata and controls
81 lines (70 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
namespace SocialiteProviders\Zoho;
use SocialiteProviders\Manager\OAuth2\AbstractProvider;
use SocialiteProviders\Manager\OAuth2\User;
class Provider extends AbstractProvider
{
/**
* Unique Provider Identifier.
*/
public const IDENTIFIER = 'ZOHO';
/**
* {@inheritdoc}
*/
protected $scopes = ['aaaserver.profile.READ'];
/**
* {@inheritdoc}
*/
protected function getAuthUrl($state)
{
return $this->buildAuthUrlFromBase('https://accounts.zoho.com/oauth/v2/auth', $state);
}
/**
* Gets the Accounts Server to use from Zoho provider.
*/
protected function getAccountsServerUrl()
{
return $this->request->input('accounts-server', 'https://accounts.zoho.com');
}
/**
* {@inheritdoc}
*/
protected function getTokenUrl()
{
return $this->getAccountsServerUrl().'/oauth/v2/token';
}
/**
* {@inheritdoc}
*/
protected function getUserByToken($token)
{
$response = $this->getHttpClient()->get($this->getAccountsServerUrl().'/oauth/user/info', [
'headers' => [
'Authorization' => 'Bearer '.$token,
],
]);
return json_decode($response->getBody(), true);
}
/**
* {@inheritdoc}
*/
protected function mapUserToObject(array $user)
{
return (new User())->setRaw($user)->map([
'id' => $user['ZUID'],
'email' => $user['Email'],
'nickname' => $user['Display_Name'],
'name' => $user['First_Name'].' '.$user['Last_Name'],
'avatar' => !empty($user['images']) ? $user['images'][0]['url'] : null,
]);
}
/**
* {@inheritdoc}
*/
protected function getTokenFields($code)
{
return array_merge(parent::getTokenFields($code), [
'grant_type' => 'authorization_code',
]);
}
}