-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProvider.php
88 lines (72 loc) · 2.33 KB
/
Provider.php
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
82
83
84
85
86
87
88
<?php
namespace SocialiteProviders\Kinde;
use GuzzleHttp\RequestOptions;
use InvalidArgumentException;
use SocialiteProviders\Manager\OAuth2\AbstractProvider;
use SocialiteProviders\Manager\OAuth2\User;
class Provider extends AbstractProvider
{
public const IDENTIFIER = 'KINDE';
protected $scopes = ['address', 'email', 'offline', 'openid', 'phone', 'profile'];
protected $scopeSeparator = ' ';
/**
* Get the domain (aka base URL)
*
* @return string
*
* @throws \InvalidArgumentException
*/
protected function getDomain(): string
{
$baseUrl = $this->getConfig('domain');
if ($baseUrl === null) {
throw new InvalidArgumentException('Missing domain value.');
}
return $baseUrl;
}
public static function additionalConfigKeys(): array
{
return ['domain'];
}
protected function getAuthUrl($state): string
{
return $this->buildAuthUrlFromBase($this->getDomain().'/oauth2/auth', $state);
}
protected function getTokenUrl(): string
{
return $this->getDomain().'/oauth2/token';
}
/**
* {@inheritdoc}
*/
protected function getUserByToken($token): array
{
$response = $this->getHttpClient()->get($this->getDomain().'/oauth2/v2/user_profile', [
RequestOptions::HEADERS => [
'Authorization' => 'Bearer '.$token,
],
]);
$user = json_decode((string) $response->getBody(), true);
// Merge user details with org_code and permissions from the token
// No need to validate the token because it is already validated
// by successful profile request.
$payload = json_decode(base64_decode(explode('.', $token)[1]), true); // assuming valid JWT token
return array_merge($user, [
'org_code' => $payload['org_code'] ?? null,
'permissions' => $payload['permissions'] ?? [],
]);
}
/**
* {@inheritdoc}
*/
protected function mapUserToObject(array $user): User
{
return (new User)->setRaw($user)->map([
'id' => $user['id'],
'nickname' => $user['preferred_username'],
'avatar' => $user['picture'],
'name' => $user['name'],
'email' => $user['email'],
]);
}
}