-
Notifications
You must be signed in to change notification settings - Fork 0
/
AmoCRM.php
160 lines (145 loc) · 6.12 KB
/
AmoCRM.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
class AmoCRM
{
private $clientId;
private $subdomain;
private $fileToken;
private $accessToken;
private $error_code = [
400 => 'Bad request',
401 => 'Unauthorized',
403 => 'Forbidden',
404 => 'Not found',
500 => 'Internal server error',
502 => 'Bad gateway',
503 => 'Service unavailable',
];
public function __construct($clientId, $clientSecret, $clientAuthCode, $redirectUri, $subdomain)
{
try
{
// Получаем данные для авторизации
$this->clientId = $clientId;
$this->subdomain = $subdomain;
// Проверяем наличие существующего токена
$this->fileToken = "token-$clientId.txt";
if (file_exists($this->fileToken)) {
// Загружаем токен из файла
$this->loadAuthTokenFromFile();
}
// Токена нет. Идем авторизовываться
else {
$this->oauth2($clientSecret, $clientAuthCode, $redirectUri);
}
}
catch(Exception $e)
{
die('Ошибка: ' . $e->getMessage());
}
}
private function loadAuthTokenFromFile()
{
try
{
$config = parse_ini_file($this->fileToken);
if (isset($config["access_token"]) and (mb_strlen($config["access_token"]) > 0)) {
$this->accessToken = $config['access_token'];
}
else throw new Exception("В файле '$this->fileToken' отсуствует токен");
}
catch(Exception $e)
{
die('Ошибка загрузки токена OAuth2: ' . $e->getMessage());
}
}
private function oauth2($clientSecret, $clientAuthCode, $redirectUri)
{
$link = 'https://' . $this->subdomain . '.amocrm.ru/oauth2/access_token'; //Формируем URL для запроса
$data = [
'client_id' => $this->clientId,
'client_secret' => $clientSecret,
'grant_type' => 'authorization_code',
'code' => $clientAuthCode,
'redirect_uri' => $redirectUri,
];
$curl = curl_init();
curl_setopt($curl,CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl,CURLOPT_USERAGENT,'amoCRM-oAuth-client/1.0');
curl_setopt($curl,CURLOPT_URL, $link);
curl_setopt($curl,CURLOPT_HTTPHEADER,['Content-Type:application/json']);
curl_setopt($curl,CURLOPT_HEADER, false);
curl_setopt($curl,CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($curl,CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($curl,CURLOPT_SSL_VERIFYHOST, 2);
$out = curl_exec($curl); //Инициируем запрос к API и сохраняем ответ в переменную
$code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($curl);
try
{
$code = (int)$code;
if ($code < 200 || $code > 204) {
throw new Exception(isset($this->error_code[$code]) ? $this->error_code[$code] : 'Undefined error', $code);
}
}
catch(Exception $e)
{
die('Ошибка получения токена OAuth2: ' . $e->getMessage() . PHP_EOL . 'Код ошибки: ' . $e->getCode());
}
$response = json_decode($out, true);
// Сохраняем данные токена
try
{
$this->accessToken = $response['access_token'];
$fd = fopen($this->fileToken, 'w');
$str = "access_token = \"".$response['access_token']."\"".PHP_EOL; //Access токен
fwrite($fd, $str);
$str = "refresh_token = \"".$response['refresh_token']."\"".PHP_EOL; //Refresh токен
fwrite($fd, $str);
$str = "token_type = \"".$response['token_type']."\"".PHP_EOL; //Тип токена
fwrite($fd, $str);
$str = "expires_in = \"".$response['expires_in']."\"".PHP_EOL; //Через сколько действие токена истекает
fwrite($fd, $str);
fclose($fd);
}
catch(Exception $e)
{
die('Ошибка сохранения токена OAuth2: ' . $e->getMessage());
}
}
public function request($method, $options = [], $post = false, $head = false)
{
$query = '';
if (COUNT($options) > 0) $query = '?' . http_build_query($options);
$link = 'https://' . $this->subdomain . '.amocrm.ru/api/v4/' . $method . $query; //Формируем URL для запроса
/** Формируем заголовки */
$headers = [
'Authorization: Bearer ' . $this->accessToken
];
$curl = curl_init();
curl_setopt($curl,CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl,CURLOPT_USERAGENT,'amoCRM-oAuth-client/1.0');
curl_setopt($curl,CURLOPT_URL, $link);
curl_setopt($curl,CURLOPT_HTTPHEADER, $headers);
if ($post) curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($post));
curl_setopt($curl,CURLOPT_HEADER, false);
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($curl,CURLOPT_SSL_VERIFYHOST, 2);
$out = curl_exec($curl); //Инициируем запрос к API и сохраняем ответ в переменную
$code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($curl);
try
{
$code = (int)$code;
if ($code < 200 || $code > 204) {
throw new Exception(isset($this->error_code[$code]) ? $this->error_code[$code] : 'Undefined error', $code);
}
}
catch(Exception $e)
{
die('Ошибка получения полчения данных: ' . $e->getMessage() . PHP_EOL . 'Код ошибки: ' . $e->getCode());
}
$response = json_decode($out, true);
return $response;
}
}