|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Spatie\GoogleCalendar; |
|
4
|
|
|
|
|
5
|
|
|
use Carbon\Carbon; |
|
6
|
|
|
use Carbon\CarbonInterface; |
|
7
|
|
|
use DateTime; |
|
8
|
|
|
use Google_Service_Calendar; |
|
9
|
|
|
use Google_Service_Calendar_Event; |
|
10
|
|
|
use Google_Service_Calendar_Events; |
|
11
|
|
|
|
|
12
|
|
|
class GoogleCalendar |
|
13
|
|
|
{ |
|
14
|
|
|
/** @var \Google_Service_Calendar */ |
|
15
|
|
|
protected $calendarService; |
|
16
|
|
|
|
|
17
|
|
|
/** @var string */ |
|
18
|
|
|
protected $calendarId; |
|
19
|
|
|
|
|
20
|
|
|
public function __construct(Google_Service_Calendar $calendarService, string $calendarId) |
|
21
|
|
|
{ |
|
22
|
|
|
$this->calendarService = $calendarService; |
|
23
|
|
|
|
|
24
|
|
|
$this->calendarId = $calendarId; |
|
25
|
|
|
} |
|
26
|
|
|
|
|
27
|
|
|
public function getCalendarId(): string |
|
28
|
|
|
{ |
|
29
|
|
|
return $this->calendarId; |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
/* |
|
33
|
|
|
* @link https://developers.google.com/google-apps/calendar/v3/reference/events/list |
|
34
|
|
|
*/ |
|
35
|
|
|
public function listEvents(CarbonInterface $startDateTime = null, CarbonInterface $endDateTime = null, array $queryParameters = []): Google_Service_Calendar_Events |
|
36
|
|
|
{ |
|
37
|
|
|
$parameters = [ |
|
38
|
|
|
'singleEvents' => true, |
|
39
|
|
|
'orderBy' => 'startTime', |
|
40
|
|
|
]; |
|
41
|
|
|
|
|
42
|
|
|
if (is_null($startDateTime)) { |
|
43
|
|
|
$startDateTime = Carbon::now()->startOfDay(); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
$parameters['timeMin'] = $startDateTime->format(DateTime::RFC3339); |
|
47
|
|
|
|
|
48
|
|
|
if (is_null($endDateTime)) { |
|
49
|
|
|
$endDateTime = Carbon::now()->addYear()->endOfDay(); |
|
50
|
|
|
} |
|
51
|
|
|
$parameters['timeMax'] = $endDateTime->format(DateTime::RFC3339); |
|
52
|
|
|
|
|
53
|
|
|
$parameters = array_merge($parameters, $queryParameters); |
|
54
|
|
|
|
|
55
|
|
|
return $this |
|
56
|
|
|
->calendarService |
|
57
|
|
|
->events |
|
58
|
|
|
->listEvents($this->calendarId, $parameters); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
public function getEvent(string $eventId): Google_Service_Calendar_Event |
|
62
|
|
|
{ |
|
63
|
|
|
return $this->calendarService->events->get($this->calendarId, $eventId); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
/* |
|
67
|
|
|
* @link https://developers.google.com/google-apps/calendar/v3/reference/events/insert |
|
68
|
|
|
*/ |
|
69
|
|
View Code Duplication |
public function insertEvent($event, $optParams = []): Google_Service_Calendar_Event |
|
70
|
|
|
{ |
|
71
|
|
|
if ($event instanceof Event) { |
|
72
|
|
|
$event = $event->googleEvent; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
return $this->calendarService->events->insert($this->calendarId, $event, $optParams); |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/* |
|
79
|
|
|
* @link https://developers.google.com/calendar/v3/reference/events/quickAdd |
|
80
|
|
|
*/ |
|
81
|
|
|
public function insertEventFromText(string $event): Google_Service_Calendar_Event |
|
82
|
|
|
{ |
|
83
|
|
|
return $this->calendarService->events->quickAdd($this->calendarId, $event); |
|
84
|
|
|
} |
|
85
|
|
|
|
|
86
|
|
View Code Duplication |
public function updateEvent($event): Google_Service_Calendar_Event |
|
87
|
|
|
{ |
|
88
|
|
|
if ($event instanceof Event) { |
|
89
|
|
|
$event = $event->googleEvent; |
|
90
|
|
|
} |
|
91
|
|
|
|
|
92
|
|
|
return $this->calendarService->events->update($this->calendarId, $event->id, $event); |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
|
public function deleteEvent($eventId) |
|
96
|
|
|
{ |
|
97
|
|
|
if ($eventId instanceof Event) { |
|
98
|
|
|
$eventId = $eventId->id; |
|
|
|
|
|
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
$this->calendarService->events->delete($this->calendarId, $eventId); |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
public function getService(): Google_Service_Calendar |
|
105
|
|
|
{ |
|
106
|
|
|
return $this->calendarService; |
|
107
|
|
|
} |
|
108
|
|
|
} |
|
109
|
|
|
|
Since your code implements the magic setter
_set, this function will be called for any write access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.