forked from IsraelOrtuno/pipedrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipedriveToken.php
More file actions
127 lines (109 loc) · 2.37 KB
/
PipedriveToken.php
File metadata and controls
127 lines (109 loc) · 2.37 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
namespace Devio\Pipedrive;
use GuzzleHttp\Client as GuzzleClient;
class PipedriveToken
{
/**
* The access token.
*
* @var string
*/
protected $accessToken;
/**
* The expiry date.
*
* @var string
*/
protected $expiresAt;
/**
* The refresh token.
*
* @var string
*/
protected $refreshToken;
/**
* PipedriveToken constructor.
*
* @param $config
*/
public function __construct($config)
{
foreach ($config as $key => $value) {
$this->{$key} = $value;
}
}
/**
* Get the access token.
*
* @return string
*/
public function getAccessToken()
{
return $this->accessToken;
}
/**
* Get the expiry date.
*
* @return string
*/
public function expiresAt()
{
return $this->expiresAt;
}
/**
* Get the refresh token.
*
* @return string
*/
public function getRefreshToken()
{
return $this->refreshToken;
}
/**
* Check if the access token exists.
*
* @return bool
*/
public function valid()
{
return ! empty($this->accessToken);
}
/**
* Refresh the token only if needed.
*
* @param $pipedrive
*/
public function refreshIfNeeded($pipedrive)
{
if (! $this->needsRefresh()) {
return;
}
$client = new GuzzleClient([
'auth' => [
$pipedrive->getClientId(),
$pipedrive->getClientSecret()
]
]);
$response = $client->request('POST', 'https://oauth.pipedrive.com/oauth/token', [
'form_params' => [
'grant_type' => 'refresh_token',
'refresh_token' => $this->refreshToken
]
]);
$tokenInstance = json_decode($response->getBody());
$this->accessToken = $tokenInstance->access_token;
$this->expiresAt = time() + $tokenInstance->expires_in;
$this->refreshToken = $tokenInstance->refresh_token;
$storage = $pipedrive->getStorage();
$storage->setToken($this);
}
/**
* Check if the token needs to be refreshed.
*
* @return bool
*/
public function needsRefresh()
{
return (int) $this->expiresAt - time() < 1;
}
}