-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfarm_calendar_events.module
More file actions
418 lines (347 loc) · 11.9 KB
/
Copy pathfarm_calendar_events.module
File metadata and controls
418 lines (347 loc) · 11.9 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
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
<?php
/**
* @file
* Contains farm_calendar.module.
*/
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
/**
* Implements hook_theme().
*/
function farm_calendar_events_theme() {
return array(
'farm_calendar_events_full_view' => array(
'variables' => array('url' => NULL),
),
);
}
/**
* Implements hook_ENTITY_TYPE_insert().
*/
function farm_calendar_events_log_insert(EntityInterface $entity) {
//log variables
$name = $entity->label();
$status = $entity->status->value;
$notes = $entity->notes->value;
$timestamp = $entity->timestamp->value;
$cal = $entity->calendar_update->value;
$uuid = $entity->uuid();
$location = $entity->geometry->latlon;
//remove dashes from farmOS UUID to make a valid Google event ID
$eventid = str_replace("-", "", $uuid);
//settings variables
$calendar_id = \Drupal::config('farm_calendar_events.settings')->get('calendar_id');
// Google api client
$google_api_client = \Drupal::entityTypeManager()->getStorage('google_api_client')->load(1);
$googleService = \Drupal::service('google_api_client.client');
$googleService->setGoogleApiClient($google_api_client);
if ($cal == "0" || $cal == "1" || $cal == "2" || $cal == "3") {
//check for expired token
if ($googleService->googleClient->isAccessTokenExpired()) {
// Refresh the access token using refresh token.
try {
$credentials = $googleService->getAccessTokenWithRefreshToken();
}
catch (Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getMessage());
}
} else{
// Fetch Access Token
try {
$credentials = $googleService->googleClient->getAccessToken();
}
catch (Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getMessage());
}
}
$access_token = $credentials['access_token'];
$bearer = "Bearer $access_token";
//Create httpClient.
$client = \Drupal::httpClient();
if (($cal == "0") || ($cal == "1" && $status =="pending") ||$cal == "2" && $status =="done" ){
$dt = new DateTime("@$timestamp");
$startdate = $dt->format('Y-m-d');
$dt->modify('+1 day');
$enddate = $dt->format('Y-m-d');
if ($status == "done") {
$colorId = 10;
}
if ($status == "pending") {
$colorId = 6;
}
//JSON
$json_data = json_encode(array(
"end" => array("date" => $enddate),
"start" => array("date" => $startdate),
"description" => $notes,
"summary" => $name,
"id" => $eventid,
"colorId" => $colorId,
"location" => $location
));
try {
//Sending POST Request with $json_data to external server
$request = $client->post("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events",
['body' => $json_data,
'headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name sent to calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
if (str_contains($e, '409')) {
try {
//Sending POST Request with $json_data to external server
$request = $client->put("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events/$eventid",
['body' => $json_data,
'headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name sent to calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addError(t("Log: $name failed to add calendar event"));
}
}
else{
\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addError(t("Log: $name failed to add calendar event"));
}
}
}
if ($cal == "3"){
try {
//Sending delete Request to external server
$request = $client->delete("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events/$eventid",
['headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name removed from calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addError(t("No Log: $name found to remove from calendar"));
}
}
}
}
/**
* Implements hook_ENTITY_TYPE_update().
*/
function farm_calendar_events_log_update(EntityInterface $entity) {
//log variables
$name = $entity->label();
$status = $entity->status->value;
$notes = $entity->notes->value;
$timestamp = $entity->timestamp->value;
$cal = $entity->calendar_update->value;
$uuid = $entity->uuid();
$location = $entity->geometry->latlon;
//remove dashes from farmOS UUID to make a valid Google event ID
$eventid = str_replace("-", "", $uuid);
//settings variables
$calendar_id = \Drupal::config('farm_calendar_events.settings')->get('calendar_id');
// Google api client
$google_api_client = \Drupal::entityTypeManager()->getStorage('google_api_client')->load(1);
$googleService = \Drupal::service('google_api_client.client');
$googleService->setGoogleApiClient($google_api_client);
if ($cal == "0" || $cal == "1" || $cal == "2" || $cal == "3") {
//check for expired token
if ($googleService->googleClient->isAccessTokenExpired()) {
// Refresh the access token using refresh token.
try {
$credentials = $googleService->getAccessTokenWithRefreshToken();
}
catch (Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getMessage());
}
} else{
// Fetch Access Token
try {
$credentials = $googleService->googleClient->getAccessToken();
}
catch (Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getMessage());
}
}
$access_token = $credentials['access_token'];
$bearer = "Bearer $access_token";
//Create httpClient.
$client = \Drupal::httpClient();
if (($cal == "0") || ($cal == "1" && $status =="pending") ||$cal == "2" && $status =="done" ){
$dt = new DateTime("@$timestamp");
$startdate = $dt->format('Y-m-d');
$dt->modify('+1 day');
$enddate = $dt->format('Y-m-d');
if ($status == "done") {
$colorId = 10;
}
if ($status == "pending") {
$colorId = 6;
}
//JSON
$json_data = json_encode(array(
"end" => array("date" => $enddate),
"start" => array("date" => $startdate),
"description" => $notes,
"summary" => $name,
"id" => $eventid,
"colorId" => $colorId,
"location" => $location
));
try {
//Sending POST Request with $json_data to external server
$request = $client->post("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events",
['body' => $json_data,
'headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name sent to calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
if (str_contains($e, '409')) {
try {
//Sending POST Request with $json_data to external server
$request = $client->put("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events/$eventid",
['body' => $json_data,
'headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name sent to calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addError(t("Log: $name failed to add calendar event"));
}
}
else{
\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addError(t("Log: $name failed to add calendar event"));
}
}
}
if ($cal == "3"){
try {
//Sending delete Request to external server
$request = $client->delete("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events/$eventid",
['headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name removed from calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addError(t("No Log: $name found to remove from calendar"));
}
}
}
}
/**
* Implements hook_ENTITY_TYPE_delete().
*/
function farm_calendar_events_log_delete(EntityInterface $entity) {
//log variables
$name = $entity->label();
$cal = $entity->calendar_update->value;
$uuid = $entity->uuid();
//remove dashes from farmOS UUID to make a valid Google event ID
$eventid = str_replace("-", "", $uuid);
//settings variables
$calendar_id = \Drupal::config('farm_calendar_events.settings')->get('calendar_id');
// Google api client
$google_api_client = \Drupal::entityTypeManager()->getStorage('google_api_client')->load(1);
$googleService = \Drupal::service('google_api_client.client');
$googleService->setGoogleApiClient($google_api_client);
//check for expired token
if ($googleService->googleClient->isAccessTokenExpired()) {
// Refresh the access token using refresh token.
try {
$credentials = $googleService->getAccessTokenWithRefreshToken();
}
catch (Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getMessage());
}
} else{
// Fetch Access Token
try {
$credentials = $googleService->googleClient->getAccessToken();
}
catch (Exception $e) {
\Drupal::logger('farm_calendar')->error($e->getMessage());
}
}
$access_token = $credentials['access_token'];
$bearer = "Bearer $access_token";
//Create httpClient.
$client = \Drupal::httpClient();
try {
//Sending delete Request to external server
$request = $client->delete("https://www.googleapis.com/calendar/v3/calendars/$calendar_id/events/$eventid",
['headers' =>
['Authorization' => $bearer,],
['Accept' => "application/json"],
]);
//Getting Response after JSON Decode.
$response = json_decode($request->getBody());
\Drupal::messenger()->addStatus(t("Log: $name removed from calendar"));
}
//Catch http exceptions and log errors
catch (\Exception $e) {
//\Drupal::logger('farm_calendar')->error($e->getResponse()->getBody()->getContents());
\Drupal::messenger()->addStatus(t("No Log: $name found to remove from calendar"));
}
}
/**
* Implements hook_farm_entity_bundle_field_info().
*/
function farm_calendar_events_farm_entity_bundle_field_info(EntityTypeInterface $entity_type) {
$fields = [];
// 'log' specifies the entity type to apply to.
if ($entity_type->id() == 'log') {
// Options for the new field. See Field options below.
$options = [
'type' => 'list_string',
'label' => t('Update Calendar'),
'description' => t('Send updates to calendar for this log.'),
'allowed_values' => [
0 => t('On Update'),
1 => t('If Pending'),
2 => t('If Done'),
3 => t('Remove')
],
// 'default_value' => 0,
'weight' => [
'form' => 10,
'view' => 10,
],
];
//Define field
$fields['calendar_update'] = \Drupal::service('farm_field.factory')->bundleFieldDefinition($options);
}
return $fields;
}