forked from michal-borek/freshdesk-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApi.php
344 lines (302 loc) · 7.24 KB
/
Api.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<?php
/**
* Created by PhpStorm.
* User: Matt
* Date: 20/04/2016
* Time: 2:32 PM
*/
namespace Freshdesk;
use Freshdesk\Exceptions\AccessDeniedException;
use Freshdesk\Exceptions\ApiException;
use Freshdesk\Exceptions\AuthenticationException;
use Freshdesk\Exceptions\ConflictingStateException;
use Freshdesk\Exceptions\RateLimitExceededException;
use Freshdesk\Exceptions\UnsupportedContentTypeException;
use Freshdesk\Resources\Agent;
use Freshdesk\Resources\BusinessHour;
use Freshdesk\Resources\Category;
use Freshdesk\Resources\Comment;
use Freshdesk\Resources\Company;
use Freshdesk\Resources\Contact;
use Freshdesk\Resources\Conversation;
use Freshdesk\Resources\EmailConfig;
use Freshdesk\Resources\Forum;
use Freshdesk\Resources\Group;
use Freshdesk\Resources\Product;
use Freshdesk\Resources\SLAPolicy;
use Freshdesk\Resources\Ticket;
use Freshdesk\Resources\TimeEntry;
use Freshdesk\Resources\Topic;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
/**
* Class for interacting with the Freshdesk Api
*
* This is the only class that should be instantiated directly. All API resources are available
* via the relevant public properties
*
* @package Api
* @author Matthew Clarkson <[email protected]>
*/
class Api
{
/**
* Agent resources
*
* @api
* @var Agent
*/
public $agents;
/**
* Company resources
*
* @api
* @var Company
*/
public $companies;
/**
* Contact resources
*
* @api
* @var Contact
*/
public $contacts;
/**
* Group resources
*
* @api
* @var Group
*/
public $groups;
/**
* Ticket resources
*
* @api
* @var Ticket
*/
public $tickets;
/**
* TimeEntry resources
*
* @api
* @var TimeEntry
*/
public $timeEntries;
/**
* Conversation resources
*
* @api
* @var Conversation
*/
public $conversations;
/**
* Category resources
*
* @api
* @var Category
*/
public $categories;
/**
* Forum resources
*
* @api
* @var Forum
*/
public $forums;
/**
* Topic resources
*
* @api
* @var Topic
*/
public $topics;
/**
* Comment resources
*
* @api
* @var Comment
*/
public $comments;
//Admin
/**
* Email Config resources
*
* @api
* @var EmailConfig
*/
public $emailConfigs;
/**
* Access Product resources
*
* @api
* @var Product
*/
public $products;
/**
* Business Hours resources
*
* @api
* @var BusinessHour
*/
public $businessHours;
/**
* SLA Policy resources
*
* @api
* @var SLAPolicy
*/
public $slaPolicies;
/**
* @internal
* @var Client
*/
protected $client;
/**
* @internal
* @var string
*/
private $baseUrl;
/**
* Constructs a new api instance
*
* @api
* @param string $apiKey
* @param string $domain
* @throws Exceptions\InvalidConfigurationException
*/
public function __construct($apiKey, $domain)
{
$this->validateConstructorArgs($apiKey, $domain);
$this->baseUrl = sprintf('https://%s.freshdesk.com/api/v2', $domain);
$this->client = new Client([
'auth' => [$apiKey, 'X']
]
);
$this->setupResources();
}
/**
* Internal method for handling requests
*
* @internal
* @param $method
* @param $endpoint
* @param array|null $data
* @param array|null $query
* @return mixed|null
* @throws ApiException
* @throws ConflictingStateException
* @throws RateLimitExceededException
* @throws UnsupportedContentTypeException
*/
public function request($method, $endpoint, array $data = null, array $query = null)
{
if (isset($data['attachments'])) {
// Has file attachments, so we can't use the json property.
// Instead, we have to use the "multipart" property
$attachments = $data['attachments'];
unset($data['attachments']);
if (!is_array($attachments)) {
$attachments = [$attachments];
}
$multiparts = [];
foreach($attachments as $attachment) {
$multiparts[] = [
'name' => 'attachments[]',
'contents' => $attachment, // $attachment is a resource from fopen('/path/to/file', 'r')
];
}
foreach($data as $key => $value) {
$multiparts[] = [
'name' => $key,
'contents' => $value,
];
}
$options = [
'multipart' => $multiparts,
];
} else {
// normal method
$options = [
'json' => $data,
];
}
if (isset($query)) {
$options['query'] = $query;
}
$url = $this->baseUrl . $endpoint;
return $this->performRequest($method, $url, $options);
}
/**
* Performs the request
*
* @internal
*
* @param $method
* @param $url
* @param $options
* @return mixed|null
* @throws AccessDeniedException
* @throws ApiException
* @throws AuthenticationException
* @throws ConflictingStateException
*/
private function performRequest($method, $url, $options) {
try {
switch ($method) {
case 'GET':
return json_decode($this->client->get($url, $options)->getBody(), true);
case 'POST':
return json_decode($this->client->post($url, $options)->getBody(), true);
case 'PUT':
return json_decode($this->client->put($url, $options)->getBody(), true);
case 'DELETE':
return json_decode($this->client->delete($url, $options)->getBody(), true);
default:
return null;
}
} catch (RequestException $e) {
throw ApiException::create($e);
}
}
/**
* @param $apiKey
* @param $domain
* @throws Exceptions\InvalidConfigurationException
* @internal
*
*/
private function validateConstructorArgs($apiKey, $domain)
{
if (!isset($apiKey)) {
throw new Exceptions\InvalidConfigurationException("API key is empty.");
}
if (!isset($domain)) {
throw new Exceptions\InvalidConfigurationException("Domain is empty.");
}
}
/**
* @internal
*/
private function setupResources()
{
//People
$this->agents = new Agent($this);
$this->companies = new Company($this);
$this->contacts = new Contact($this);
$this->groups = new Group($this);
//Tickets
$this->tickets = new Ticket($this);
$this->timeEntries = new TimeEntry($this);
$this->conversations = new Conversation($this);
//Discussions
$this->categories = new Category($this);
$this->forums = new Forum($this);
$this->topics = new Topic($this);
$this->comments = new Comment($this);
//Admin
$this->products = new Product($this);
$this->emailConfigs = new EmailConfig($this);
$this->slaPolicies = new SLAPolicy($this);
$this->businessHours = new BusinessHour($this);
}
}