forked from cronofy/cronofy-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cronofy.php
450 lines (380 loc) · 18.3 KB
/
cronofy.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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<?php
class CronofyException extends Exception
{
}
class Cronofy
{
const USERAGENT = 'Cronofy PHP 0.3';
const API_ROOT_URL = 'https://api.cronofy.com';
const API_VERSION = 'v1';
var $client_id;
var $client_secret;
var $access_token;
var $refresh_token;
function __construct($client_id = false, $client_secret = false, $access_token = false, $refresh_token = false)
{
if (!function_exists('curl_init')) {
throw new CronofyException("missing cURL extension", 1);
}
if (!empty($client_id)) {
$this->client_id = $client_id;
}
if (!empty($client_secret)) {
$this->client_secret = $client_secret;
}
if (!empty($access_token)) {
$this->access_token = $access_token;
}
if (!empty($refresh_token)) {
$this->refresh_token = $refresh_token;
}
}
function http_get($url, array $headers = array())
{
if (filter_var($url, FILTER_VALIDATE_URL)===false) {
throw new CronofyException('invalid URL');
}
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_USERAGENT, self::USERAGENT);
$result = curl_exec($curl);
if (curl_errno($curl) > 0) {
throw new CronofyException(curl_error($curl), 2);
}
curl_close($curl);
return $result;
}
function http_post($url, array $params, array $headers = array())
{
if (filter_var($url, FILTER_VALIDATE_URL)===false) {
throw new CronofyException('invalid URL');
}
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_USERAGENT, self::USERAGENT);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($params));
$result = curl_exec($curl);
if (curl_errno($curl) > 0) {
throw new CronofyException(curl_error($curl), 3);
}
curl_close($curl);
return $result;
}
function http_delete($url, array $params, array $headers = array())
{
if (filter_var($url, FILTER_VALIDATE_URL)===false) {
throw new CronofyException('invalid URL');
}
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_USERAGENT, self::USERAGENT);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($params));
$result = curl_exec($curl);
if (curl_errno($curl) > 0) {
throw new CronofyException(curl_error($curl), 4);
}
curl_close($curl);
return $result;
}
function getAuthorizationURL($params)
{
/*
String $client_id : The client ID provided by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client. REQUIRED
Array $params : An array of additional paramaters
redirect_uri : String The HTTP or HTTPS URI you wish the user's authorization request decision to be redirected to. REQUIRED
scope : An array of scopes to be granted by the access token. Possible scopes detailed in the Cronofy API documentation. REQUIRED
state : String A value that will be returned to you unaltered along with the user's authorization request decision. OPTIONAL
avoid_linking : Boolean when true means we will avoid linking calendar accounts together under one set of credentials. OPTIONAL
Response :
String $url : The URL to authorize your access to the Cronofy API
*/
$scope_list = join(" ", $params['scope']);
$url = "https://app.cronofy.com/oauth/authorize?response_type=code&client_id=" . $this->client_id . "&redirect_uri=" . urlencode($params['redirect_uri']) . "&scope=" . $scope_list;
if (!empty($params['state'])) {
$url.="&state=" . $params['state'];
}
if (!empty($params['avoid_linking'])) {
$url.="&avoid_linking=" . $params['avoid_linking'];
}
return $url;
}
function request_token($params)
{
/*
String $client_id : The client ID provided by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client. REQUIRED
String $client_secret : The client_secret issued to you by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client along with your client_id. REQUIRED
Array $params : An array of additional paramaters
redirect_uri : String The HTTP or HTTPS URI you wish the user's authorization request decision to be redirected to. REQUIRED
code: The short-lived, single-use code issued to you when the user authorized your access to their account as part of an Authorization REQUIRED
Response :
true if successful, error string if not
*/
$url = self::API_ROOT_URL . "/oauth/token";
$headers = array();
$headers[] = 'Host: api.cronofy.com';
$headers[] = 'Content-Type: application/json; charset=utf-8';
$postfields = array(
'client_id' => $this->client_id,
'client_secret' => $this->client_secret,
'grant_type' => 'authorization_code',
'code' => $params['code'],
'redirect_uri' => $params['redirect_uri']
);
$result = $this->http_post($url, $postfields, $headers);
$tokens = json_decode($result);
if (!empty($tokens->access_token)) {
$this->access_token = $tokens->access_token;
$this->refresh_token = $tokens->refresh_token;
return true;
} else {
return $tokens->error;
}
}
function refresh_token()
{
/*
String $client_id : The client ID provided by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client. REQUIRED
String $client_secret : The client_secret issued to you by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client along with your client_id. REQUIRED
String $refresh_token : The refresh_token issued to you when the user authorized your access to their account. REQUIRED
Response :
true if successful, error string if not
*/
$url = self::API_ROOT_URL . "/oauth/token";
$headers = array();
$headers[] = 'Host: api.cronofy.com';
$headers[] = 'Content-Type: application/json; charset=utf-8';
$postfields = array(
'client_id' => $this->client_id,
'client_secret' => $this->client_secret,
'grant_type' => 'refresh_token',
'refresh_token' => $this->refresh_token
);
$result = $this->http_post($url, $postfields, $headers);
$tokens = json_decode($result);
if (!empty($tokens->access_token)) {
$this->access_token = $tokens->access_token;
$this->refresh_token = $tokens->refresh_token;
return true;
} else {
return $tokens->error;
}
}
function revoke_authorization($token)
{
/*
String $client_id : The client ID provided by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client. REQUIRED
String $client_secret : The client_secret issued to you by Cronofy to authenticate your OAuth Client. Authenticates you as a trusted client along with your client_id. REQUIRED
String token : Either the refresh_token or access_token for the authorization you wish to revoke. REQUIRED
Response :
true if successful, error string if not
*/
$url = self::API_ROOT_URL . "/oauth/token/revoke";
$headers = array();
$headers[] = 'Host: api.cronofy.com';
$headers[] = 'Content-Type: application/json; charset=utf-8';
$postfields = array(
'client_id' => $this->client_id,
'client_secret' => $this->client_secret,
'token' => $token
);
$result = $this->http_post($url, $postfields, $headers);
if (empty($result)) {
return true;
} else {
return json_decode($result)->error;
}
}
function get_account()
{
/*
returns $result - info for the user logged in. Details are available in the Cronofy API Documentation
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/account";
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$result = $this->http_get($url, $headers);
$result = json_decode($result, true);
return $result;
}
function get_profiles()
{
/*
returns $result - list of all the authenticated user's calendar profiles. Details are available in the Cronofy API Documentation
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/profiles";
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$result = $this->http_get($url, $headers);
$result = json_decode($result, true);
return $result;
}
function list_calendars()
{
/*
returns $result - Array of calendars. Details are available in the Cronofy API Documentation
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/calendars";
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$result = $this->http_get($url, $headers);
$result = json_decode($result, true);
return $result;
}
function read_events($params)
{
/*
Date from : The minimum date from which to return events. Defaults to 16 days in the past. OPTIONAL
Date to : The date to return events up until. Defaults to 201 days in the future. OPTIONAL
String tzid : A string representing a known time zone identifier from the IANA Time Zone Database. REQUIRED
Boolean include_deleted : Indicates whether to include or exclude events that have been deleted. Defaults to excluding deleted events. OPTIONAL
Boolean include_moved: Indicates whether events that have ever existed within the given window should be included or excluded from the results. Defaults to only include events currently within the search window. OPTIONAL
Time last_modified : The Time that events must be modified on or after in order to be returned. Defaults to including all events regardless of when they were last modified. OPTIONAL
Boolean include_managed : Indiciates whether events that you are managing for the account should be included or excluded from the results. Defaults to include only non-managed events. OPTIONAL
Boolean only_managed : Indicates whether only events that you are managing for the account should be included in the results. OPTIONAL
Array calendar_ids : Restricts the returned events to those within the set of specified calendar_ids. Defaults to returning events from all of a user's calendars. OPTIONAL
Boolean localized_times : Indicates whether the events should have their start and end times returned with any available localization information. Defaults to returning start and end times as simple Time values. OPTIONAL
returns $result - Array of events
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/events?tzid=" . urlencode($params['tzid']);
if (!empty($params['from'])) {
$url.="&from=" . $params['from'];
}
if (!empty($params['to'])) {
$url.="&to=" . $params['to'];
}
if (!empty($params['include_deleted'])) {
$url.="&include_deleted=" . $params['include_deleted'];
}
if (!empty($params['include_moved'])) {
$url.="&include_moved=" . $params['include_moved'];
}
if (!empty($params['last_modified'])) {
$url.="&last_modified=" . $params['last_modified'];
}
if (!empty($params['include_managed'])) {
$url.="&include_managed=" . $params['include_managed'];
}
if (!empty($params['only_managed'])) {
$url.="&only_managed=" . $params['only_managed'];
}
if (!empty($params['localized_times'])) {
$url.="&localized_times=" . $params['localized_times'];
}
if (!empty($params['calendar_ids'])) {
foreach ($params['calendar_ids'] as $calendar_id) {
$url.="&calendar_ids[]=" . $calendar_id;
}
}
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$result = $this->http_get($url, $headers);
$result = json_decode($result, true);
return $result;
}
function free_busy($params)
{
/*
Date from : The minimum date from which to return free-busy information. Defaults to 16 days in the past. OPTIONAL
Date to : The date to return free-busy information up until. Defaults to 201 days in the future. OPTIONAL
String tzid : A string representing a known time zone identifier from the IANA Time Zone Database. REQUIRED
Boolean include_managed : Indiciates whether events that you are managing for the account should be included or excluded from the results. Defaults to include only non-managed events. OPTIONAL
Array calendar_ids : Restricts the returned free-busy information to those within the set of specified calendar_ids. Defaults to returning free-busy information from all of a user's calendars. OPTIONAL
Boolean localized_times : Indicates whether the free-busy information should have their start and end times returned with any available localization information. Defaults to returning start and end times as simple Time values. OPTIONAL
returns $result - Array of events
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/free_busy?tzid=" . urlencode($params['tzid']);
if (!empty($params['from'])) {
$url.="&from=" . $params['from'];
}
if (!empty($params['to'])) {
$url.="&to=" . $params['to'];
}
if (!empty($params['include_managed'])) {
$url.="&include_managed=" . $params['include_managed'];
}
if (!empty($params['localized_times'])) {
$url.="&localized_times=" . $params['localized_times'];
}
if (!empty($params['calendar_ids'])) {
foreach ($params['calendar_ids'] as $calendar_id) {
$url.="&calendar_ids[]=" . $calendar_id;
}
}
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$result = $this->http_get($url, $headers);
$result = json_decode($result, true);
return $result;
}
function upsert_event($params)
{
/*
calendar_id : The calendar_id of the calendar you wish the event to be added to. REQUIRED
String event_id : The String that uniquely identifies the event. REQUIRED
String summary : The String to use as the summary, sometimes referred to as the name, of the event. REQUIRED
String description : The String to use as the description, sometimes referred to as the notes, of the event. REQUIRED
String tzid : A String representing a known time zone identifier from the IANA Time Zone Database. OPTIONAL
Time start: The start time can be provided as a simple Time string or an object with two attributes, time and tzid. REQUIRED
Time end: The end time can be provided as a simple Time string or an object with two attributes, time and tzid. REQUIRED
String location.description : The String describing the event's location. OPTIONAL
returns true on success, associative array of errors on failure
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/calendars/" . $params['calendar_id'] . "/events";
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$headers[] = 'Content-Type: application/json; charset=utf-8';
$postfields = array(
'event_id' => $params['event_id'],
'summary' => $params['summary'],
'description' => $params['description'],
'start' => $params['start'],
'end' => $params['end']
);
if (!empty($params['tzid'])) {
$postfields['tzid'] = $params['tzid'];
}
if (!empty($params['location']['description'])) {
$postfields['location']['description'] = $params['location']['description'];
}
$result = $this->http_post($url, $postfields, $headers);
if (empty($result)) {
return true;
} else {
return json_decode($result, true);
}
}
function delete_event($params)
{
/*
calendar_id : The calendar_id of the calendar you wish the event to be added to. REQUIRED
String event_id : The String that uniquely identifies the event. REQUIRED
returns true on success, associative array of errors on failure
*/
$url = self::API_ROOT_URL . "/" . self::API_VERSION . "/calendars/" . $params['calendar_id'] . "/events";
$headers = array();
$headers[] = 'Authorization: Bearer ' . $this->access_token;
$headers[] = 'Host: api.cronofy.com';
$headers[] = 'Content-Type: application/json; charset=utf-8';
$postfields = array('event_id' => $params['event_id']);
$result = $this->http_delete($url, $postfields, $headers);
if (empty($result)) {
return true;
} else {
return json_decode($result, true);
}
}
}