forked from wmcmahan/react-native-calendar-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRNCalendarEvents.m
813 lines (674 loc) · 30.7 KB
/
RNCalendarEvents.m
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
#import "RNCalendarEvents.h"
#import <React/RCTConvert.h>
#import <React/RCTUtils.h>
#import <EventKit/EventKit.h>
@interface RNCalendarEvents ()
@property (nonatomic, strong) EKEventStore *eventStore;
@property (nonatomic) BOOL isAccessToEventStoreGranted;
@end
static NSString *const _id = @"id";
static NSString *const _calendarId = @"calendarId";
static NSString *const _title = @"title";
static NSString *const _location = @"location";
static NSString *const _startDate = @"startDate";
static NSString *const _endDate = @"endDate";
static NSString *const _allDay = @"allDay";
static NSString *const _notes = @"notes";
static NSString *const _url = @"url";
static NSString *const _alarms = @"alarms";
static NSString *const _recurrence = @"recurrence";
static NSString *const _recurrenceRule = @"recurrenceRule";
static NSString *const _occurrenceDate = @"occurrenceDate";
static NSString *const _isDetached = @"isDetached";
static NSString *const _availability = @"availability";
static NSString *const _attendees = @"attendees";
@implementation RNCalendarEvents
@synthesize bridge = _bridge;
RCT_EXPORT_MODULE()
#pragma mark -
#pragma mark Event Store Initialize
- (EKEventStore *)eventStore
{
if (!_eventStore) {
_eventStore = [[EKEventStore alloc] init];
}
return _eventStore;
}
#pragma mark -
#pragma mark Event Store Authorization
- (NSString *)authorizationStatusForEventStore
{
EKAuthorizationStatus status = [EKEventStore authorizationStatusForEntityType:EKEntityTypeEvent];
switch (status) {
case EKAuthorizationStatusDenied:
self.isAccessToEventStoreGranted = NO;
return @"denied";
case EKAuthorizationStatusRestricted:
self.isAccessToEventStoreGranted = NO;
return @"restricted";
case EKAuthorizationStatusAuthorized:
self.isAccessToEventStoreGranted = YES;
return @"authorized";
case EKAuthorizationStatusNotDetermined: {
return @"undetermined";
}
}
}
#pragma mark -
#pragma mark Event Store Accessors
- (NSDictionary *)buildAndSaveEvent:(NSDictionary *)details options:(NSDictionary *)options
{
if ([[self authorizationStatusForEventStore] isEqualToString:@"granted"]) {
return @{@"success": [NSNull null], @"error": @"unauthorized to access calendar"};
}
EKEvent *calendarEvent = nil;
NSString *calendarId = [RCTConvert NSString:details[_calendarId]];
NSString *eventId = [RCTConvert NSString:details[_id]];
NSString *title = [RCTConvert NSString:details[_title]];
NSString *location = [RCTConvert NSString:details[_location]];
NSDate *startDate = [RCTConvert NSDate:details[_startDate]];
NSDate *endDate = [RCTConvert NSDate:details[_endDate]];
NSNumber *allDay = [RCTConvert NSNumber:details[_allDay]];
NSString *notes = [RCTConvert NSString:details[_notes]];
NSString *url = [RCTConvert NSString:details[_url]];
NSArray *alarms = [RCTConvert NSArray:details[_alarms]];
NSString *recurrence = [RCTConvert NSString:details[_recurrence]];
NSDictionary *recurrenceRule = [RCTConvert NSDictionary:details[_recurrenceRule]];
NSString *availability = [RCTConvert NSString:details[_availability]];
NSArray *attendees = [RCTConvert NSArray:details[_attendees]];
if (eventId) {
calendarEvent = (EKEvent *)[self.eventStore calendarItemWithIdentifier:eventId];
} else {
calendarEvent = [EKEvent eventWithEventStore:self.eventStore];
calendarEvent.calendar = [self.eventStore defaultCalendarForNewEvents];
calendarEvent.timeZone = [NSTimeZone defaultTimeZone];
if (calendarId) {
EKCalendar *calendar = [self.eventStore calendarWithIdentifier:calendarId];
if (calendar) {
calendarEvent.calendar = calendar;
}
}
}
if (title) {
calendarEvent.title = title;
}
if (location) {
calendarEvent.location = location;
}
if (startDate) {
calendarEvent.startDate = startDate;
}
if (endDate) {
calendarEvent.endDate = endDate;
}
if (allDay) {
calendarEvent.allDay = [allDay boolValue];
}
if (notes) {
calendarEvent.notes = notes;
}
if (alarms) {
calendarEvent.alarms = [self createCalendarEventAlarms:alarms];
}
if (attendees) {
[calendarEvent setValue:[self createCalendarEventAttendees:attendees] forKey:_attendees];
}
if (recurrence) {
EKRecurrenceRule *rule = [self createRecurrenceRule:recurrence interval:0 occurrence:0 endDate:nil];
if (rule) {
calendarEvent.recurrenceRules = [NSArray arrayWithObject:rule];
}
}
if (recurrenceRule) {
NSString *frequency = [RCTConvert NSString:recurrenceRule[@"frequency"]];
NSInteger interval = [RCTConvert NSInteger:recurrenceRule[@"interval"]];
NSInteger occurrence = [RCTConvert NSInteger:recurrenceRule[@"occurrence"]];
NSDate *endDate = [RCTConvert NSDate:recurrenceRule[@"endDate"]];
EKRecurrenceRule *rule = [self createRecurrenceRule:frequency interval:interval occurrence:occurrence endDate:endDate];
if (rule) {
calendarEvent.recurrenceRules = [NSArray arrayWithObject:rule];
} else {
calendarEvent.recurrenceRules = nil;
}
}
if (availability) {
calendarEvent.availability = [self availablilityConstantMatchingString:availability];
}
NSURL *URL = [NSURL URLWithString:[url stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]]];
if (URL) {
calendarEvent.URL = URL;
}
return [self saveEvent:calendarEvent options:options];
}
- (NSDictionary *)saveEvent:(EKEvent *)calendarEvent options:(NSDictionary *)options
{
NSMutableDictionary *response = [NSMutableDictionary dictionaryWithDictionary:@{@"success": [NSNull null], @"error": [NSNull null]}];
NSDate *exceptionDate = [RCTConvert NSDate:options[@"exceptionDate"]];
EKSpan eventSpan = EKSpanFutureEvents;
if (exceptionDate) {
calendarEvent.startDate = exceptionDate;
eventSpan = EKSpanThisEvent;
}
NSError *error = nil;
BOOL success = [self.eventStore saveEvent:calendarEvent span:eventSpan commit:YES error:&error];
if (!success) {
[response setValue:[error.userInfo valueForKey:@"NSLocalizedDescription"] forKey:@"error"];
} else {
[response setValue:calendarEvent.calendarItemIdentifier forKey:@"success"];
}
return [response copy];
}
- (NSDictionary *)findById:(NSString *)eventId
{
if ([[self authorizationStatusForEventStore] isEqualToString:@"granted"]) {
return @{@"success": [NSNull null], @"error": @"unauthorized to access calendar"};
}
NSMutableDictionary *response = [NSMutableDictionary dictionaryWithDictionary:@{@"success": [NSNull null]}];
EKEvent *calendarEvent = (EKEvent *)[self.eventStore calendarItemWithIdentifier:eventId];
if (calendarEvent) {
[response setValue:[self serializeCalendarEvent:calendarEvent] forKey:@"success"];
}
return [response copy];
}
#pragma mark -
#pragma mark Alarms
- (EKAlarm *)createCalendarEventAlarm:(NSDictionary *)alarm
{
EKAlarm *calendarEventAlarm = nil;
id alarmDate = [alarm valueForKey:@"date"];
if ([alarmDate isKindOfClass:[NSString class]]) {
calendarEventAlarm = [EKAlarm alarmWithAbsoluteDate:[RCTConvert NSDate:alarmDate]];
} else if ([alarmDate isKindOfClass:[NSNumber class]]) {
int minutes = [alarmDate intValue];
calendarEventAlarm = [EKAlarm alarmWithRelativeOffset:(60 * minutes)];
} else {
calendarEventAlarm = [[EKAlarm alloc] init];
}
if ([alarm objectForKey:@"structuredLocation"] && [[alarm objectForKey:@"structuredLocation"] count]) {
NSDictionary *locationOptions = [alarm valueForKey:@"structuredLocation"];
NSDictionary *geo = [locationOptions valueForKey:@"coords"];
CLLocation *geoLocation = [[CLLocation alloc] initWithLatitude:[[geo valueForKey:@"latitude"] doubleValue]
longitude:[[geo valueForKey:@"longitude"] doubleValue]];
calendarEventAlarm.structuredLocation = [EKStructuredLocation locationWithTitle:[locationOptions valueForKey:@"title"]];
calendarEventAlarm.structuredLocation.geoLocation = geoLocation;
calendarEventAlarm.structuredLocation.radius = [[locationOptions valueForKey:@"radius"] doubleValue];
if ([[locationOptions valueForKey:@"proximity"] isEqualToString:@"enter"]) {
calendarEventAlarm.proximity = EKAlarmProximityEnter;
} else if ([[locationOptions valueForKey:@"proximity"] isEqualToString:@"leave"]) {
calendarEventAlarm.proximity = EKAlarmProximityLeave;
} else {
calendarEventAlarm.proximity = EKAlarmProximityNone;
}
}
return calendarEventAlarm;
}
- (NSArray *)createCalendarEventAttendees:(NSArray *)attendees
{
NSMutableArray *calendarEventAttendees = [[NSMutableArray alloc] init];
for (NSDictionary *attendeeDict in attendees) {
Class className = NSClassFromString(@"EKAttendee");
NSString *url = [attendeeDict valueForKey:@"url"];
NSString *fName = [attendeeDict valueForKey:@"firstName"];
NSString *lName = [attendeeDict valueForKey:@"lastName"];
id attendee = [className new];
[attendee setValue:fName forKey:@"firstName"];
[attendee setValue:lName forKey:@"lastName"];
[attendee setValue:url forKey:@"emailAddress"];
[calendarEventAttendees addObject:attendee];
}
return [calendarEventAttendees copy];
}
- (NSArray *)createCalendarEventAlarms:(NSArray *)alarms
{
NSMutableArray *calendarEventAlarms = [[NSMutableArray alloc] init];
for (NSDictionary *alarm in alarms) {
if ([alarm count] && ([alarm valueForKey:@"date"] || [alarm objectForKey:@"structuredLocation"])) {
EKAlarm *reminderAlarm = [self createCalendarEventAlarm:alarm];
[calendarEventAlarms addObject:reminderAlarm];
}
}
return [calendarEventAlarms copy];
}
- (void)addCalendarEventAlarm:(NSString *)eventId alarm:(NSDictionary *)alarm options:(NSDictionary *)options
{
if (!self.isAccessToEventStoreGranted) {
return;
}
EKEvent *calendarEvent = (EKEvent *)[self.eventStore calendarItemWithIdentifier:eventId];
EKAlarm *calendarEventAlarm = [self createCalendarEventAlarm:alarm];
[calendarEvent addAlarm:calendarEventAlarm];
[self saveEvent:calendarEvent options:options];
}
- (void)addCalendarEventAlarms:(NSString *)eventId alarms:(NSArray *)alarms options:(NSDictionary *)options
{
if (!self.isAccessToEventStoreGranted) {
return;
}
EKEvent *calendarEvent = (EKEvent *)[self.eventStore calendarItemWithIdentifier:eventId];
calendarEvent.alarms = [self createCalendarEventAlarms:alarms];
[self saveEvent:calendarEvent options:options];
}
#pragma mark -
#pragma mark RecurrenceRules
-(EKRecurrenceFrequency)frequencyMatchingName:(NSString *)name
{
EKRecurrenceFrequency recurrence = nil;
if ([name isEqualToString:@"weekly"]) {
recurrence = EKRecurrenceFrequencyWeekly;
} else if ([name isEqualToString:@"monthly"]) {
recurrence = EKRecurrenceFrequencyMonthly;
} else if ([name isEqualToString:@"yearly"]) {
recurrence = EKRecurrenceFrequencyYearly;
} else if ([name isEqualToString:@"daily"]) {
recurrence = EKRecurrenceFrequencyDaily;
}
return recurrence;
}
-(EKRecurrenceRule *)createRecurrenceRule:(NSString *)frequency interval:(NSInteger)interval occurrence:(NSInteger)occurrence endDate:(NSDate *)endDate
{
EKRecurrenceRule *rule = nil;
EKRecurrenceEnd *recurrenceEnd = nil;
NSInteger recurrenceInterval = 1;
NSArray *validFrequencyTypes = @[@"daily", @"weekly", @"monthly", @"yearly"];
if (frequency && [validFrequencyTypes containsObject:frequency]) {
if (endDate) {
recurrenceEnd = [EKRecurrenceEnd recurrenceEndWithEndDate:endDate];
} else if (occurrence && occurrence > 0) {
recurrenceEnd = [EKRecurrenceEnd recurrenceEndWithOccurrenceCount:occurrence];
}
if (interval > 1) {
recurrenceInterval = interval;
}
rule = [[EKRecurrenceRule alloc] initRecurrenceWithFrequency:[self frequencyMatchingName:frequency]
interval:recurrenceInterval
end:recurrenceEnd];
}
return rule;
}
-(NSString *)nameMatchingFrequency:(EKRecurrenceFrequency)frequency
{
switch (frequency) {
case EKRecurrenceFrequencyWeekly:
return @"weekly";
case EKRecurrenceFrequencyMonthly:
return @"monthly";
case EKRecurrenceFrequencyYearly:
return @"yearly";
case EKRecurrenceFrequencyDaily:
return @"daily";
default:
return @"";
}
}
#pragma mark -
#pragma mark Availability
- (NSMutableArray *)calendarSupportedAvailabilitiesFromMask:(EKCalendarEventAvailabilityMask)types
{
NSMutableArray *availabilitiesStrings = [[NSMutableArray alloc] init];
if(types & EKCalendarEventAvailabilityBusy) [availabilitiesStrings addObject:@"busy"];
if(types & EKCalendarEventAvailabilityFree) [availabilitiesStrings addObject:@"free"];
if(types & EKCalendarEventAvailabilityTentative) [availabilitiesStrings addObject:@"tentative"];
if(types & EKCalendarEventAvailabilityUnavailable) [availabilitiesStrings addObject:@"unavailable"];
return availabilitiesStrings;
}
- (NSString *)availabilityStringMatchingConstant:(EKEventAvailability)constant
{
switch(constant) {
case EKEventAvailabilityNotSupported:
return @"notSupported";
case EKEventAvailabilityBusy:
return @"busy";
case EKEventAvailabilityFree:
return @"free";
case EKEventAvailabilityTentative:
return @"tentative";
case EKEventAvailabilityUnavailable:
return @"unavailable";
default:
return @"notSupported";
}
}
- (EKEventAvailability)availablilityConstantMatchingString:(NSString *)string
{
if([string isEqualToString:@"busy"]) {
return EKEventAvailabilityBusy;
}
if([string isEqualToString:@"free"]) {
return EKEventAvailabilityFree;
}
if([string isEqualToString:@"tentative"]) {
return EKEventAvailabilityTentative;
}
if([string isEqualToString:@"unavailable"]) {
return EKEventAvailabilityUnavailable;
}
return EKEventAvailabilityNotSupported;
}
#pragma mark -
#pragma mark Serializers
- (NSArray *)serializeCalendarEvents:(NSArray *)calendarEvents
{
NSMutableArray *serializedCalendarEvents = [[NSMutableArray alloc] init];
for (EKEvent *event in calendarEvents) {
[serializedCalendarEvents addObject:[self serializeCalendarEvent:event]];
}
return [serializedCalendarEvents copy];
}
- (NSDictionary *)serializeCalendarEvent:(EKEvent *)event
{
NSDictionary *emptyCalendarEvent = @{
_title: @"",
_location: @"",
_startDate: @"",
_endDate: @"",
_allDay: @NO,
_notes: @"",
_url: @"",
_alarms: [NSArray array],
_attendees: [NSArray array],
_recurrence: @"",
_recurrenceRule: @{
@"frequency": @"",
@"interval": @"",
@"occurrence": @"",
@"endDate": @""
},
_availability: @"",
};
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSTimeZone *timeZone = [NSTimeZone timeZoneWithName:@"UTC"];
[dateFormatter setTimeZone:timeZone];
[dateFormatter setLocale:[NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"]];
[dateFormatter setDateFormat: @"yyyy-MM-dd'T'HH:mm:ss.SSS'Z"];
NSMutableDictionary *formedCalendarEvent = [NSMutableDictionary dictionaryWithDictionary:emptyCalendarEvent];
if (event.calendarItemIdentifier) {
[formedCalendarEvent setValue:event.calendarItemIdentifier forKey:_id];
}
if (event.calendar) {
[formedCalendarEvent setValue:@{
@"id": event.calendar.calendarIdentifier,
@"title": event.calendar.title ? event.calendar.title : @"",
@"source": event.calendar.source.title,
@"allowsModifications": @(event.calendar.allowsContentModifications),
@"allowedAvailabilities": [self calendarSupportedAvailabilitiesFromMask:event.calendar.supportedEventAvailabilities],
}
forKey:@"calendar"];
}
if (event.title) {
[formedCalendarEvent setValue:event.title forKey:_title];
}
if (event.notes) {
[formedCalendarEvent setValue:event.notes forKey:_notes];
}
if (event.URL) {
[formedCalendarEvent setValue:[event.URL absoluteString] forKey:_url];
}
if (event.location) {
[formedCalendarEvent setValue:event.location forKey:_location];
}
if (event.attendees) {
NSMutableArray *attendees = [[NSMutableArray alloc] init];
for (EKParticipant *attendee in event.attendees) {
NSMutableDictionary *descriptionData = [NSMutableDictionary dictionary];
for (NSString *pairString in [attendee.description componentsSeparatedByString:@";"])
{
NSArray *pair = [pairString componentsSeparatedByString:@"="];
if ( [pair count] != 2)
continue;
[descriptionData setObject:[[pair objectAtIndex:1] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] forKey:[[pair objectAtIndex:0]stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];
}
NSMutableDictionary *formattedAttendee = [[NSMutableDictionary alloc] init];
NSString *name = [descriptionData valueForKey:@"name"];
NSString *email = [descriptionData valueForKey:@"email"];
NSString *phone = [descriptionData valueForKey:@"phone"];
if(email && ![email isEqualToString:@"(null)"]) {
[formattedAttendee setValue:email forKey:@"email"];
}
else {
[formattedAttendee setValue:@"" forKey:@"email"];
}
if(phone && ![phone isEqualToString:@"(null)"]) {
[formattedAttendee setValue:phone forKey:@"phone"];
}
else {
[formattedAttendee setValue:@"" forKey:@"phone"];
}
if(name && ![name isEqualToString:@"(null)"]) {
[formattedAttendee setValue:name forKey:@"name"];
}
else {
[formattedAttendee setValue:@"" forKey:@"name"];
}
[attendees addObject:formattedAttendee];
}
[formedCalendarEvent setValue:attendees forKey:_attendees];
}
if (event.hasAlarms) {
NSMutableArray *alarms = [[NSMutableArray alloc] init];
for (EKAlarm *alarm in event.alarms) {
NSMutableDictionary *formattedAlarm = [[NSMutableDictionary alloc] init];
NSString *alarmDate = nil;
if (alarm.absoluteDate) {
alarmDate = [dateFormatter stringFromDate:alarm.absoluteDate];
} else if (alarm.relativeOffset) {
NSDate *calendarEventStartDate = nil;
if (event.startDate) {
calendarEventStartDate = event.startDate;
} else {
calendarEventStartDate = [NSDate date];
}
alarmDate = [dateFormatter stringFromDate:[NSDate dateWithTimeInterval:alarm.relativeOffset
sinceDate:calendarEventStartDate]];
}
[formattedAlarm setValue:alarmDate forKey:@"date"];
if (alarm.structuredLocation) {
NSString *proximity = nil;
switch (alarm.proximity) {
case EKAlarmProximityEnter:
proximity = @"enter";
break;
case EKAlarmProximityLeave:
proximity = @"leave";
break;
default:
proximity = @"None";
break;
}
[formattedAlarm setValue:@{
@"title": alarm.structuredLocation.title,
@"proximity": proximity,
@"radius": @(alarm.structuredLocation.radius),
@"coords": @{
@"latitude": @(alarm.structuredLocation.geoLocation.coordinate.latitude),
@"longitude": @(alarm.structuredLocation.geoLocation.coordinate.longitude)
}}
forKey:@"structuredLocation"];
}
[alarms addObject:formattedAlarm];
}
[formedCalendarEvent setValue:alarms forKey:_alarms];
}
if (event.startDate) {
[formedCalendarEvent setValue:[dateFormatter stringFromDate:event.startDate] forKey:_startDate];
}
if (event.endDate) {
[formedCalendarEvent setValue:[dateFormatter stringFromDate:event.endDate] forKey:_endDate];
}
if (event.occurrenceDate) {
[formedCalendarEvent setValue:[dateFormatter stringFromDate:event.occurrenceDate] forKey:_occurrenceDate];
}
[formedCalendarEvent setValue:[NSNumber numberWithBool:event.isDetached] forKey:_isDetached];
[formedCalendarEvent setValue:[NSNumber numberWithBool:event.allDay] forKey:_allDay];
if (event.hasRecurrenceRules) {
EKRecurrenceRule *rule = [event.recurrenceRules objectAtIndex:0];
NSString *frequencyType = [self nameMatchingFrequency:[rule frequency]];
[formedCalendarEvent setValue:frequencyType forKey:_recurrence];
NSMutableDictionary *recurrenceRule = [NSMutableDictionary dictionaryWithDictionary:@{@"frequency": frequencyType}];
if ([rule interval]) {
[recurrenceRule setValue:@([rule interval]) forKey:@"interval"];
}
if ([[rule recurrenceEnd] endDate]) {
[recurrenceRule setValue:[dateFormatter stringFromDate:[[rule recurrenceEnd] endDate]] forKey:@"endDate"];
}
if ([[rule recurrenceEnd] occurrenceCount]) {
[recurrenceRule setValue:@([[rule recurrenceEnd] occurrenceCount]) forKey:@"occurrence"];
}
[formedCalendarEvent setValue:recurrenceRule forKey:_recurrenceRule];
}
[formedCalendarEvent setValue:[self availabilityStringMatchingConstant:event.availability] forKey:_availability];
return [formedCalendarEvent copy];
}
#pragma mark -
#pragma mark RCT Exports
RCT_EXPORT_METHOD(authorizationStatus:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject)
{
NSString *status = [self authorizationStatusForEventStore];
if (status) {
resolve(status);
} else {
reject(@"error", @"authorization status error", nil);
}
}
RCT_EXPORT_METHOD(authorizeEventStore:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject)
{
__weak RNCalendarEvents *weakSelf = self;
[self.eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
NSString *status = granted ? @"authorized" : @"denied";
weakSelf.isAccessToEventStoreGranted = granted;
if (!error) {
resolve(status);
} else {
reject(@"error", @"authorization request error", error);
}
});
}];
}
RCT_EXPORT_METHOD(findCalendars:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject)
{
NSArray* calendars = [self.eventStore calendarsForEntityType:EKEntityTypeEvent];
if (!calendars) {
reject(@"error", @"error finding calendars", nil);
} else {
NSMutableArray *eventCalendars = [[NSMutableArray alloc] init];
for (EKCalendar *calendar in calendars) {
[eventCalendars addObject:@{
@"id": calendar.calendarIdentifier,
@"title": calendar.title ? calendar.title : @"",
@"allowsModifications": @(calendar.allowsContentModifications),
@"source": calendar.source.title,
@"allowedAvailabilities": [self calendarSupportedAvailabilitiesFromMask:calendar.supportedEventAvailabilities]
}];
}
resolve(eventCalendars);
}
}
RCT_EXPORT_METHOD(fetchAllEvents:(NSDate *)startDate endDate:(NSDate *)endDate calendars:(NSArray *)calendars resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject)
{
NSMutableArray *eventCalendars;
if (calendars.count) {
eventCalendars = [[NSMutableArray alloc] init];
NSArray *deviceCalendars = [self.eventStore calendarsForEntityType:EKEntityTypeEvent];
for (EKCalendar *calendar in deviceCalendars) {
if ([calendars containsObject:calendar.calendarIdentifier]) {
[eventCalendars addObject:calendar];
}
}
}
NSPredicate *predicate = [self.eventStore predicateForEventsWithStartDate:startDate
endDate:endDate
calendars:eventCalendars];
__weak RNCalendarEvents *weakSelf = self;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSArray *calendarEvents = [[weakSelf.eventStore eventsMatchingPredicate:predicate] sortedArrayUsingSelector:@selector(compareStartDateWithEvent:)];
dispatch_async(dispatch_get_main_queue(), ^{
if (calendarEvents) {
resolve([weakSelf serializeCalendarEvents:calendarEvents]);
} else if (calendarEvents == nil) {
resolve(@[]);
} else {
reject(@"error", @"calendar event request error", nil);
}
});
});
}
RCT_EXPORT_METHOD(findEventById:(NSString *)eventId resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject)
{
NSDictionary *response = [self findById:eventId];
if (!response) {
reject(@"error", @"error finding event", nil);
} else {
resolve([response valueForKey:@"success"]);
}
}
RCT_EXPORT_METHOD(saveEvent:(NSString *)title
settings:(NSDictionary *)settings
options:(NSDictionary *)options
resolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject)
{
NSMutableDictionary *details = [NSMutableDictionary dictionaryWithDictionary:settings];
[details setValue:title forKey:_title];
NSDictionary *response = [self buildAndSaveEvent:details options:options];
if ([response valueForKey:@"success"] != [NSNull null]) {
resolve([response valueForKey:@"success"]);
} else {
reject(@"error", [response valueForKey:@"error"], nil);
}
}
RCT_EXPORT_METHOD(removeEvent:(NSString *)eventId options:(NSDictionary *)options resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject)
{
if ([[self authorizationStatusForEventStore] isEqualToString:@"granted"]) {
return reject(@"error", @"unauthorized to access calendar", nil);
}
Boolean futureEvents = [RCTConvert BOOL:options[@"futureEvents"]];
NSDate *exceptionDate = [RCTConvert NSDate:options[@"exceptionDate"]];
if (exceptionDate) {
NSPredicate *predicate = [self.eventStore predicateForEventsWithStartDate:exceptionDate
endDate:[NSDate distantFuture]
calendars:nil];
__weak RNCalendarEvents *weakSelf = self;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSArray *calendarEvents = [weakSelf.eventStore eventsMatchingPredicate:predicate];
EKEvent *eventInstance;
BOOL success;
for (EKEvent *event in calendarEvents) {
if ([event.calendarItemIdentifier isEqualToString:eventId] && [event.startDate isEqualToDate:exceptionDate]) {
eventInstance = event;
break;
}
}
if (eventInstance) {
NSError *error = nil;
EKSpan eventSpan = EKSpanThisEvent;
if (futureEvents) {
eventSpan = EKSpanFutureEvents;
}
success = [weakSelf.eventStore removeEvent:eventInstance span:eventSpan commit:YES error:&error];
if (error) {
return reject(@"error", [error.userInfo valueForKey:@"NSLocalizedDescription"], nil);
}
} else {
return reject(@"error", @"No event found.", nil);
}
dispatch_async(dispatch_get_main_queue(), ^{
if (success) {
return resolve(@(success));
}
});
});
} else {
EKEvent *calendarEvent = (EKEvent *)[self.eventStore calendarItemWithIdentifier:eventId];
NSError *error = nil;
EKSpan eventSpan = EKSpanThisEvent;
if (futureEvents) {
eventSpan = EKSpanFutureEvents;
}
BOOL success = [self.eventStore removeEvent:calendarEvent span:eventSpan commit:YES error:&error];
if (error) {
return reject(@"error", [error.userInfo valueForKey:@"NSLocalizedDescription"], nil);
}
return resolve(@(success));
}
}
@end