forked from nylas/nylas-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendars.py
More file actions
223 lines (193 loc) · 6.74 KB
/
calendars.py
File metadata and controls
223 lines (193 loc) · 6.74 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
from typing import List
from nylas.config import RequestOverrides
from nylas.handler.api_resources import (
ListableApiResource,
FindableApiResource,
CreatableApiResource,
UpdatableApiResource,
DestroyableApiResource,
)
from nylas.models.availability import GetAvailabilityResponse, GetAvailabilityRequest
from nylas.models.free_busy import (
GetFreeBusyResponse,
GetFreeBusyRequest,
FreeBusyError,
FreeBusy,
)
from nylas.models.calendars import (
Calendar,
CreateCalendarRequest,
UpdateCalendarRequest,
ListCalendarsQueryParams,
FindCalendarQueryParams,
)
from nylas.models.response import Response, ListResponse, DeleteResponse
class Calendars(
ListableApiResource,
FindableApiResource,
CreatableApiResource,
UpdatableApiResource,
DestroyableApiResource,
):
"""
Nylas Calendar API
The Nylas calendar API allows you to create new calendars or manage existing ones, as well as getting
free/busy information for a calendar and getting availability for a calendar.
A calendar can be accessed by one, or several people, and can contain events.
"""
def list(
self,
identifier: str,
query_params: ListCalendarsQueryParams = None,
overrides: RequestOverrides = None,
) -> ListResponse[Calendar]:
"""
Return all Calendars.
Args:
identifier: The identifier of the Grant to act upon.
query_params: The query parameters to include in the request.
overrides: The request overrides to use for the request.
Returns:
The list of Calendars.
"""
return super().list(
path=f"/v3/grants/{identifier}/calendars",
query_params=query_params,
response_type=Calendar,
overrides=overrides,
)
def find(
self,
identifier: str,
calendar_id: str,
overrides: RequestOverrides = None,
query_params: FindCalendarQueryParams = None,
) -> Response[Calendar]:
"""
Return a Calendar.
Args:
identifier: The identifier of the Grant to act upon.
calendar_id: The ID of the Calendar to retrieve.
Use "primary" to refer to the primary Calendar associated with the Grant.
overrides: The request overrides to use for the request.
query_params: The query parameters to include in the request.
Returns:
The Calendar.
"""
return super().find(
path=f"/v3/grants/{identifier}/calendars/{calendar_id}",
response_type=Calendar,
query_params=query_params,
overrides=overrides,
)
def create(
self,
identifier: str,
request_body: CreateCalendarRequest,
overrides: RequestOverrides = None,
) -> Response[Calendar]:
"""
Create a Calendar.
Args:
identifier: The identifier of the Grant to act upon.
request_body: The values to create the Calendar with.
overrides: The request overrides to use for the request.
Returns:
The created Calendar.
"""
return super().create(
path=f"/v3/grants/{identifier}/calendars",
response_type=Calendar,
request_body=request_body,
overrides=overrides,
)
def update(
self,
identifier: str,
calendar_id: str,
request_body: UpdateCalendarRequest,
overrides: RequestOverrides = None,
) -> Response[Calendar]:
"""
Update a Calendar.
Args:
identifier: The identifier of the Grant to act upon.
calendar_id: The ID of the Calendar to update.
Use "primary" to refer to the primary Calendar associated with the Grant.
request_body: The values to update the Calendar with.
overrides: The request overrides to use for the request.
Returns:
The updated Calendar.
"""
return super().update(
path=f"/v3/grants/{identifier}/calendars/{calendar_id}",
response_type=Calendar,
request_body=request_body,
overrides=overrides,
)
def destroy(
self, identifier: str, calendar_id: str, overrides: RequestOverrides = None
) -> DeleteResponse:
"""
Delete a Calendar.
Args:
identifier: The identifier of the Grant to act upon.
calendar_id: The ID of the Calendar to delete.
Use "primary" to refer to the primary Calendar associated with the Grant.
overrides: The request overrides to use for the request.
Returns:
The deletion response.
"""
return super().destroy(
path=f"/v3/grants/{identifier}/calendars/{calendar_id}", overrides=overrides
)
def get_availability(self, request_body: GetAvailabilityRequest, overrides: RequestOverrides = None
) -> Response[GetAvailabilityResponse]:
"""
Get availability for a Calendar.
Args:
request_body: The request body to send to the API.
overrides: The request overrides to use for the request.
Returns:
Response: The availability response from the API.
"""
json_response, headers = self._http_client._execute(
"POST",
"/v3/calendars/availability",
None,
None,
request_body,
overrides=overrides,
)
return Response.from_dict(json_response, GetAvailabilityResponse, headers)
def get_free_busy(
self,
identifier: str,
request_body: GetFreeBusyRequest,
overrides: RequestOverrides = None,
) -> Response[List[GetFreeBusyResponse]]:
"""
Get free/busy info for a Calendar.
Args:
identifier: The grant ID or email account to get free/busy for.
request_body: The request body to send to the API.
overrides: The request overrides to use for the request.
Returns:
Response: The free/busy response from the API.
"""
json_response, headers = self._http_client._execute(
"POST",
f"/v3/grants/{identifier}/calendars/free-busy",
None,
None,
request_body,
overrides=overrides,
)
data = []
request_id = json_response["request_id"]
for item in json_response["data"]:
if item.get("object") == "error":
data.append(FreeBusyError.from_dict(item))
else:
data.append(FreeBusy.from_dict(item))
return Response(data, request_id, headers)