-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalendarController.cs
409 lines (369 loc) · 13.7 KB
/
CalendarController.cs
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
using Microsoft.Graph;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Configuration;
using System.Threading.Tasks;
using System.Web.Configuration;
namespace Calendar
{
class CalendarController
{
GraphServiceClient graphClient;
public CalendarController(GraphServiceClient client)
{
graphClient = client;
}
/// <summary>
/// Schedules an event.
///
/// For purposes of simplicity we only allow the user to enter the startTime
/// and endTime as hours.
/// </summary>
/// <param name="subject">Subject of the meeting</param>
/// <param name="startTime">The time when the meeting starts</param>
/// <param name="endTime">Duration of the meeting</param>
/// <param name="attendeeEmail">Email of person to invite</param>
/// <returns></returns>
public async Task<Event> ScheduleEventAsync(string subject, string appointmentDate, string startTime, string endTime, string organizerEmail, string attendeesEmail, string bodyContent, string locationName, string categoryName)
{
//DateTime dateTime = DateTime.Today;
DateTime dateTime = Convert.ToDateTime(appointmentDate);
// set the start and end time for the event
DateTimeTimeZone start = new DateTimeTimeZone
{
TimeZone = "America/Bogota",
DateTime = $"{dateTime.Year}-{dateTime.Month.ToString("00")}-{dateTime.Day.ToString("00")}T{startTime}:00:00"
};
DateTimeTimeZone end = new DateTimeTimeZone
{
TimeZone = "America/Bogota",
DateTime = $"{dateTime.Year}-{dateTime.Month.ToString("00")}-{dateTime.Day.ToString("00")}T{endTime}:00:00"
};
// Adds attendee to the event
string[] attendeesEmailList = attendeesEmail.Split(';');
List<Attendee> attendees = new List<Attendee>();
foreach (string attendeeEmail in attendeesEmailList)
{
EmailAddress email = new EmailAddress
{
Address = attendeeEmail
};
Attendee attendee = new Attendee
{
EmailAddress = email,
Type = AttendeeType.Required,
};
attendees.Add(attendee);
}
ItemBody body = new ItemBody
{
Content = bodyContent
};
Location location = new Location {
DisplayName = locationName
};
Collection<String> categoriesCol = new Collection<String>();
categoriesCol.Add(categoryName);
IEnumerable<string> categories = categoriesCol as IEnumerable<String>;
Event newEvent = new Event
{
Subject = subject,
Attendees = attendees,
Start = start,
End = end,
Body = body,
Location = location,
Categories = categories
};
try
{
/**
* This is the same as a post request
*
* POST: https://graph.microsoft.com/v1.0/me/events
* Request Body
* {
* "subject": <event-subject>
* "start": {
"dateTime": "<date-string>",
"timeZone": "Pacific Standard Time"
},
"end": {
"dateTime": "<date-string>",
"timeZone": "Pacific Standard Time"
},
"attendees": [{
emailAddress: {
address: attendeeEmail
}
"type": "required"
}]
* }
*
* Learn more about the properties of an Event object in the link below
* https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/event
* */
Event calendarEvent = await graphClient
//.Me
.Users[organizerEmail]
.Events
.Request()
.AddAsync(newEvent);
//Console.WriteLine($"Added {calendarEvent.Subject}");
return calendarEvent;
}
catch (ServiceException error)
{
//Console.WriteLine(error.Message);
return null;
}
}
/// <summary>
/// Books a room for the event
/// </summary>
/// <param name="eventId"></param>
/// <param name="resourceMail"></param>
/// <returns></returns>
public async Task BookRoomAsync(string eventId, string resourceMail)
{
/**
* A room is an an attendee of type resource
*
* Refer to the link below to learn more about the properties of the Attendee class
* https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/attendee
**/
Attendee room = new Attendee();
EmailAddress email = new EmailAddress();
email.Address = resourceMail;
room.Type = AttendeeType.Resource;
room.EmailAddress = email;
List<Attendee> attendees = new List<Attendee>();
Event patchEvent = new Event();
attendees.Add(room);
patchEvent.Attendees = attendees;
try
{
/**
* This is the same as making a patch request
*
* PATCH https://graph.microsoft.com/v1.0/me/events/{id}
*
* request body
* {
* attendees: [{
* emailAddress: {
* "address": "[email protected]"
* },
* type: "resource"
* }
* ]
* }
* */
await graphClient
.Me
.Events[eventId]
.Request()
.UpdateAsync(patchEvent);
}
catch (Exception error)
{
Console.WriteLine(error.Message);
}
}
/// <summary>
/// Sets recurrent events
/// </summary>
/// <param name="subject"></param>
/// <param name="startDate"></param>
/// <param name="endDate"></param>
/// <param name="startTime"></param>
/// <param name="endTime"></param>
/// <returns></returns>
public async Task SetRecurrentAsync(string subject, string startDate, string endDate, string startTime, string endTime)
{
// Sets the event to happen every week
RecurrencePattern pattern = new RecurrencePattern
{
Type = RecurrencePatternType.Weekly,
Interval = 1
};
/**
* Sets the days of the week the event occurs.
*
* For this sample it occurs every Monday
***/
List<Microsoft.Graph.DayOfWeek> daysOfWeek = new List<Microsoft.Graph.DayOfWeek>();
daysOfWeek.Add(Microsoft.Graph.DayOfWeek.Monday);
pattern.DaysOfWeek = daysOfWeek;
/**
* Sets the duration of time the event will keep recurring.
*
* In this case the event runs from Nov 6th to Nov 26th 2018.
**/
int startDay = int.Parse(startDate.Substring(0, 2));
int startMonth = int.Parse(startDate.Substring(3, 2));
int startYear = int.Parse(startDate.Substring(6, 4));
int endDay = int.Parse(endDate.Substring(0, 2));
int endMonth = int.Parse(endDate.Substring(3, 2));
int endYear = int.Parse(endDate.Substring(6, 4));
RecurrenceRange range = new RecurrenceRange
{
Type = RecurrenceRangeType.EndDate,
StartDate = new Date(startYear, startMonth, startDay),
EndDate = new Date(endYear, endMonth, endDay)
};
/**
* This brings together the recurrence pattern and the range to define the
* PatternedRecurrence property.
**/
PatternedRecurrence recurrence = new PatternedRecurrence
{
Pattern = pattern,
Range = range
};
DateTime dateTime = DateTime.Today;
// set the start and end time for the event
DateTimeTimeZone start = new DateTimeTimeZone
{
TimeZone = "Pacific Standard Time",
DateTime = $"{startYear}-{startMonth}-{startDay}T{startTime}:00:00"
};
DateTimeTimeZone end = new DateTimeTimeZone
{
TimeZone = "Pacific Standard Time",
DateTime = $"{startYear}-{startMonth}-{startDay}T{startTime}:00:00"
};
Event eventObj = new Event
{
Recurrence = recurrence,
Subject = subject,
};
try
{
var recurrentEvent = await graphClient
.Me
.Events
.Request()
.AddAsync(eventObj);
Console.WriteLine($"Created {recurrentEvent.Subject}," +
$" happens every week on Monday from {startTime}:00 to {endTime}:00");
}
catch (Exception error)
{
Console.WriteLine(error.Message);
}
}
/// <summary>
/// Sets all day events
/// </summary>
/// <param name="eventSubject"></param>
/// <param name="attendeeEmail"></param>
/// <param name="date"></param>
/// <returns></returns>
public async Task SetAllDayAsync(string eventSubject, string attendeeEmail, string date)
{
// Adds attendee to the event
EmailAddress email = new EmailAddress
{
Address = attendeeEmail
};
Attendee attendee = new Attendee
{
EmailAddress = email,
Type = AttendeeType.Required,
};
List<Attendee> attendees = new List<Attendee>();
attendees.Add(attendee);
int day = int.Parse(date.Substring(0, 2));
int month = int.Parse(date.Substring(3, 2));
int year = int.Parse(date.Substring(6, 4));
Date allDayDate = new Date(year, month, day);
DateTimeTimeZone start = new DateTimeTimeZone
{
TimeZone = "Pacific Standard Time",
DateTime = allDayDate.ToString()
};
Date nextDay = new Date(year, month, day + 1);
DateTimeTimeZone end = new DateTimeTimeZone
{
TimeZone = "Pacific Standard Time",
DateTime = nextDay.ToString()
};
Event newEvent = new Event
{
Subject = eventSubject,
Attendees = attendees,
IsAllDay = true,
Start = start,
End = end
};
try
{
var allDayEvent = await graphClient
.Me
.Events
.Request()
.AddAsync(newEvent);
Console.WriteLine($"Created an all day event: {newEvent.Subject}." +
$" Happening on {date}");
}
catch (Exception error)
{
Console.WriteLine(error.Message);
}
}
/// <summary>
/// Accepts an event invite
/// </summary>
/// <param name="eventId"></param>
/// <returns></returns>
public async Task AcceptAsync(string eventId)
{
try
{
await graphClient
.Me
.Events[eventId]
.Accept()
.Request()
.PostAsync();
Console.WriteLine("Accepted the event invite");
}
catch (Exception error)
{
Console.WriteLine(error.Message);
}
}
/// <summary>
/// Declines an invite to an event
/// </summary>
/// <param name="eventId"></param>
/// <returns></returns>
public async Task DeclineAsync(string eventId)
{
try
{
await graphClient
.Me
.Events[eventId]
.Decline()
.Request()
.PostAsync();
Console.WriteLine("Event declined");
}
catch (Exception error)
{
Console.WriteLine(error.Message);
}
}
public async Task<IUserEventsCollectionPage> GetEvents()
{
return await graphClient
.Me
.Events
.Request()
.GetAsync();
}
}
}