This repository was archived by the owner on May 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathRNCallKit.m
More file actions
490 lines (433 loc) · 17.7 KB
/
RNCallKit.m
File metadata and controls
490 lines (433 loc) · 17.7 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
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
//
// RNCallKit.m
// RNCallKit
//
// Created by Ian Yu-Hsun Lin on 12/22/16.
// Copyright © 2016 Ian Yu-Hsun Lin. All rights reserved.
//
#import "RNCallKit.h"
#import <React/RCTBridge.h>
#import <React/RCTConvert.h>
#import <React/RCTEventDispatcher.h>
#import <React/RCTUtils.h>
#import <AVFoundation/AVAudioSession.h>
static int const DelayInSeconds = 3;
static NSString *const RNCallKitHandleStartCallNotification = @"RNCallKitHandleStartCallNotification";
static NSString *const RNCallKitDidReceiveStartCallAction = @"RNCallKitDidReceiveStartCallAction";
static NSString *const RNCallKitPerformAnswerCallAction = @"RNCallKitPerformAnswerCallAction";
static NSString *const RNCallKitPerformEndCallAction = @"RNCallKitPerformEndCallAction";
static NSString *const RNCallKitDidActivateAudioSession = @"RNCallKitDidActivateAudioSession";
static NSString *const RNCallKitDidDeactivateAudioSession = @"RNCallKitDidDeactivateAudioSession";
static NSString *const RNCallKitDidDisplayIncomingCall = @"RNCallKitDidDisplayIncomingCall";
static NSString *const RNCallKitDidPerformSetMutedCallAction = @"RNCallKitDidPerformSetMutedCallAction";
@implementation RNCallKit
{
NSMutableDictionary *_settings;
NSOperatingSystemVersion _version;
BOOL _isStartCallActionEventListenerAdded;
}
// should initialise in AppDelegate.m
RCT_EXPORT_MODULE()
- (instancetype)init
{
#ifdef DEBUG
NSLog(@"[RNCallKit][init]");
#endif
if (self = [super init]) {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleStartCallNotification:)
name:RNCallKitHandleStartCallNotification
object:nil];
_isStartCallActionEventListenerAdded = NO;
}
return self;
}
- (void)dealloc
{
#ifdef DEBUG
NSLog(@"[RNCallKit][dealloc]");
#endif
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
// Override method of RCTEventEmitter
- (NSArray<NSString *> *)supportedEvents
{
return @[
RNCallKitDidReceiveStartCallAction,
RNCallKitPerformAnswerCallAction,
RNCallKitPerformEndCallAction,
RNCallKitDidActivateAudioSession,
RNCallKitDidDeactivateAudioSession,
RNCallKitDidDisplayIncomingCall,
RNCallKitDidPerformSetMutedCallAction
];
}
RCT_EXPORT_METHOD(setup:(NSDictionary *)options)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][setup] options = %@", options);
#endif
_version = [[[NSProcessInfo alloc] init] operatingSystemVersion];
self.callKitCallController = [[CXCallController alloc] init];
_settings = [[NSMutableDictionary alloc] initWithDictionary:options];
self.callKitProvider = [[CXProvider alloc] initWithConfiguration:[self getProviderConfiguration]];
[self.callKitProvider setDelegate:self queue:nil];
}
RCT_REMAP_METHOD(checkIfBusy,
checkIfBusyWithResolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][checkIfBusy]");
#endif
resolve(@(self.callKitCallController.callObserver.calls.count > 0));
}
RCT_REMAP_METHOD(checkSpeaker,
checkSpeakerResolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][checkSpeaker]");
#endif
NSString *output = [AVAudioSession sharedInstance].currentRoute.outputs.count > 0 ? [AVAudioSession sharedInstance].currentRoute.outputs[0].portType : nil;
resolve(@([output isEqualToString:@"Speaker"]));
}
#pragma mark - CXCallController call actions
// Display the incoming call to the user
RCT_EXPORT_METHOD(displayIncomingCall:(NSString *)uuidString
handle:(NSString *)handle
handleType:(NSString *)handleType
hasVideo:(BOOL)hasVideo
localizedCallerName:(NSString * _Nullable)localizedCallerName)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][displayIncomingCall] uuidString = %@", uuidString);
#endif
int _handleType = [self getHandleType:handleType];
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:uuidString];
CXCallUpdate *callUpdate = [[CXCallUpdate alloc] init];
callUpdate.remoteHandle = [[CXHandle alloc] initWithType:_handleType value:handle];
callUpdate.supportsDTMF = YES;
// TODO: Holding
callUpdate.supportsHolding = NO;
callUpdate.supportsGrouping = NO;
callUpdate.supportsUngrouping = NO;
callUpdate.hasVideo = hasVideo;
callUpdate.localizedCallerName = localizedCallerName;
[self.callKitProvider reportNewIncomingCallWithUUID:uuid update:callUpdate completion:^(NSError * _Nullable error) {
[self sendEventWithName:RNCallKitDidDisplayIncomingCall body:@{ @"error": error ? error.localizedDescription : @"" }];
if (error == nil) {
// Workaround per https://forums.developer.apple.com/message/169511
if ([self lessThanIos10_2]) {
[self configureAudioSession];
}
}
}];
}
RCT_EXPORT_METHOD(startCall:(NSString *)uuidString
handle:(NSString *)handle
handleType:(NSString *)handleType
video:(BOOL)video
contactIdentifier:(NSString * _Nullable)contactIdentifier)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][startCall] uuidString = %@", uuidString);
#endif
int _handleType = [self getHandleType:handleType];
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:uuidString];
CXHandle *callHandle = [[CXHandle alloc] initWithType:_handleType value:handle];
CXStartCallAction *startCallAction = [[CXStartCallAction alloc] initWithCallUUID:uuid handle:callHandle];
[startCallAction setVideo:video];
[startCallAction setContactIdentifier:contactIdentifier];
CXTransaction *transaction = [[CXTransaction alloc] initWithAction:startCallAction];
[self requestTransaction:transaction];
}
RCT_EXPORT_METHOD(endCall:(NSString *)uuidString)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][endCall] uuidString = %@", uuidString);
#endif
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:uuidString];
CXEndCallAction *endCallAction = [[CXEndCallAction alloc] initWithCallUUID:uuid];
CXTransaction *transaction = [[CXTransaction alloc] initWithAction:endCallAction];
[self requestTransaction:transaction];
}
RCT_EXPORT_METHOD(endAllCalls)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][endAllCalls] calls = %@", self.callKitCallController.callObserver.calls);
#endif
for (CXCall *call in self.callKitCallController.callObserver.calls) {
CXEndCallAction *endCallAction = [[CXEndCallAction alloc] initWithCallUUID:call.UUID];
CXTransaction *transaction = [[CXTransaction alloc] initWithAction:endCallAction];
[self requestTransaction:transaction];
}
}
RCT_EXPORT_METHOD(setHeldCall:(NSString *)uuidString onHold:(BOOL)onHold)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][setHeldCall] uuidString = %@", uuidString);
#endif
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:uuidString];
CXSetHeldCallAction *setHeldCallAction = [[CXSetHeldCallAction alloc] initWithCallUUID:uuid onHold:onHold];
CXTransaction *transaction = [[CXTransaction alloc] init];
[transaction addAction:setHeldCallAction];
[self requestTransaction:transaction];
}
RCT_EXPORT_METHOD(_startCallActionEventListenerAdded)
{
_isStartCallActionEventListenerAdded = YES;
}
RCT_EXPORT_METHOD(reportConnectedOutgoingCallWithUUID:(NSString *)uuidString)
{
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:uuidString];
[self.callKitProvider reportOutgoingCallWithUUID:uuid connectedAtDate:[NSDate date]];
}
RCT_EXPORT_METHOD(setMutedCall:(NSString *)uuidString muted:(BOOL)muted)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][setMutedCall] muted = %i", muted);
#endif
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:uuidString];
CXSetMutedCallAction *setMutedAction = [[CXSetMutedCallAction alloc] initWithCallUUID:uuid muted:muted];
CXTransaction *transaction = [[CXTransaction alloc] init];
[transaction addAction:setMutedAction];
[self requestTransaction:transaction];
}
- (void)requestTransaction:(CXTransaction *)transaction
{
#ifdef DEBUG
NSLog(@"[RNCallKit][requestTransaction] transaction = %@", transaction);
#endif
if (self.callKitCallController == nil) {
self.callKitCallController = [[CXCallController alloc] init];
}
[self.callKitCallController requestTransaction:transaction completion:^(NSError * _Nullable error) {
if (error != nil) {
NSLog(@"[RNCallKit][requestTransaction] Error requesting transaction (%@): (%@)", transaction.actions, error);
} else {
NSLog(@"[RNCallKit][requestTransaction] Requested transaction successfully");
// CXStartCallAction
if ([[transaction.actions firstObject] isKindOfClass:[CXStartCallAction class]]) {
CXStartCallAction *startCallAction = [transaction.actions firstObject];
CXCallUpdate *callUpdate = [[CXCallUpdate alloc] init];
callUpdate.remoteHandle = startCallAction.handle;
callUpdate.supportsDTMF = YES;
callUpdate.supportsHolding = NO;
callUpdate.supportsGrouping = NO;
callUpdate.supportsUngrouping = NO;
callUpdate.hasVideo = NO;
[self.callKitProvider reportCallWithUUID:startCallAction.callUUID updated:callUpdate];
}
}
}];
}
- (BOOL)lessThanIos10_2
{
if (_version.majorVersion < 10) {
return YES;
} else if (_version.majorVersion > 10) {
return NO;
} else {
return _version.minorVersion < 2;
}
}
- (BOOL)containsLowerCaseLetter:(NSString *)callUUID
{
NSRegularExpression* regex = [[NSRegularExpression alloc] initWithPattern:@"[a-z]" options:0 error:nil];
return [regex numberOfMatchesInString:callUUID options:0 range:NSMakeRange(0, [callUUID length])] > 0;
}
- (int)getHandleType:(NSString *)handleType
{
int _handleType;
if ([handleType isEqualToString:@"generic"]) {
_handleType = CXHandleTypeGeneric;
} else if ([handleType isEqualToString:@"number"]) {
_handleType = CXHandleTypePhoneNumber;
} else if ([handleType isEqualToString:@"email"]) {
_handleType = CXHandleTypeEmailAddress;
} else {
_handleType = CXHandleTypeGeneric;
}
return _handleType;
}
- (CXProviderConfiguration *)getProviderConfiguration
{
#ifdef DEBUG
NSLog(@"[RNCallKit][getProviderConfiguration]");
#endif
CXProviderConfiguration *providerConfiguration = [[CXProviderConfiguration alloc] initWithLocalizedName:_settings[@"appName"]];
providerConfiguration.supportsVideo = YES;
providerConfiguration.maximumCallGroups = 1;
providerConfiguration.maximumCallsPerCallGroup = 1;
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:CXHandleTypePhoneNumber], [NSNumber numberWithInteger:CXHandleTypeEmailAddress], [NSNumber numberWithInteger:CXHandleTypeGeneric], nil];
if (_settings[@"imageName"]) {
providerConfiguration.iconTemplateImageData = UIImagePNGRepresentation([UIImage imageNamed:_settings[@"imageName"]]);
}
if (_settings[@"ringtoneSound"]) {
providerConfiguration.ringtoneSound = _settings[@"ringtoneSound"];
}
return providerConfiguration;
}
- (void)configureAudioSession
{
#ifdef DEBUG
NSLog(@"[RNCallKit][configureAudioSession] Activating audio session");
#endif
AVAudioSession* audioSession = [AVAudioSession sharedInstance];
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
[audioSession setMode:AVAudioSessionModeVoiceChat error:nil];
double sampleRate = 44100.0;
[audioSession setPreferredSampleRate:sampleRate error:nil];
NSTimeInterval bufferDuration = .005;
[audioSession setPreferredIOBufferDuration:bufferDuration error:nil];
[audioSession setActive:TRUE error:nil];
}
+ (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options NS_AVAILABLE_IOS(9_0)
{
#ifdef DEBUG
NSLog(@"[RNCallKit][application:openURL]");
#endif
/*
NSString *handle = [url startCallHandle];
if (handle != nil && handle.length > 0 ){
NSDictionary *userInfo = @{
@"handle": handle,
@"video": @NO
};
[[NSNotificationCenter defaultCenter] postNotificationName:RNCallKitHandleStartCallNotification
object:self
userInfo:userInfo];
return YES;
}
return NO;
*/
return YES;
}
+ (BOOL)application:(UIApplication *)application
continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(void(^)(NSArray * __nullable restorableObjects))restorationHandler
{
#ifdef DEBUG
NSLog(@"[RNCallKit][application:continueUserActivity]");
#endif
INInteraction *interaction = userActivity.interaction;
INPerson *contact;
NSString *handle;
BOOL isAudioCall = [userActivity.activityType isEqualToString:INStartAudioCallIntentIdentifier];
BOOL isVideoCall = [userActivity.activityType isEqualToString:INStartVideoCallIntentIdentifier];
if (isAudioCall) {
INStartAudioCallIntent *startAudioCallIntent = (INStartAudioCallIntent *)interaction.intent;
contact = [startAudioCallIntent.contacts firstObject];
} else if (isVideoCall) {
INStartVideoCallIntent *startVideoCallIntent = (INStartVideoCallIntent *)interaction.intent;
contact = [startVideoCallIntent.contacts firstObject];
}
if (contact != nil) {
handle = contact.personHandle.value;
}
if (handle != nil && handle.length > 0 ){
NSDictionary *userInfo = @{
@"handle": handle,
@"video": @(isVideoCall)
};
[[NSNotificationCenter defaultCenter] postNotificationName:RNCallKitHandleStartCallNotification
object:self
userInfo:userInfo];
return YES;
}
return NO;
}
- (void)handleStartCallNotification:(NSNotification *)notification
{
#ifdef DEBUG
NSLog(@"[RNCallKit][handleStartCallNotification] userInfo = %@", notification.userInfo);
#endif
int delayInSeconds;
if (!_isStartCallActionEventListenerAdded) {
// Workaround for when app is just launched and JS side hasn't registered to the event properly
delayInSeconds = DelayInSeconds;
} else {
delayInSeconds = 0;
}
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^{
[self sendEventWithName:RNCallKitDidReceiveStartCallAction body:notification.userInfo];
});
}
#pragma mark - CXProviderDelegate
- (void)providerDidReset:(CXProvider *)provider{
#ifdef DEBUG
NSLog(@"[RNCallKit][providerDidReset]");
#endif
}
// Starting outgoing call
- (void)provider:(CXProvider *)provider performStartCallAction:(CXStartCallAction *)action
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:performStartCallAction]");
#endif
[self.callKitProvider reportOutgoingCallWithUUID:action.callUUID startedConnectingAtDate:[NSDate date]];
[self configureAudioSession];
[action fulfill];
}
// Answering incoming call
- (void)provider:(CXProvider *)provider performAnswerCallAction:(CXAnswerCallAction *)action
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:performAnswerCallAction]");
#endif
if (![self lessThanIos10_2]) {
[self configureAudioSession];
}
NSString *callUUID = [self containsLowerCaseLetter:action.callUUID.UUIDString] ? action.callUUID.UUIDString : [action.callUUID.UUIDString lowercaseString];
[self sendEventWithName:RNCallKitPerformAnswerCallAction body:@{ @"callUUID": callUUID }];
[action fulfill];
}
// Ending incoming call
- (void)provider:(CXProvider *)provider performEndCallAction:(CXEndCallAction *)action
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:performEndCallAction]");
#endif
NSString *callUUID = [self containsLowerCaseLetter:action.callUUID.UUIDString] ? action.callUUID.UUIDString : [action.callUUID.UUIDString lowercaseString];
[self sendEventWithName:RNCallKitPerformEndCallAction body:@{ @"callUUID": callUUID }];
[action fulfill];
}
- (void)provider:(CXProvider *)provider performSetHeldCallAction:(CXSetHeldCallAction *)action
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:performSetHeldCallAction]");
#endif
}
- (void)provider:(CXProvider *)provider timedOutPerformingAction:(CXAction *)action
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:timedOutPerformingAction]");
#endif
}
- (void)provider:(CXProvider *)provider didActivateAudioSession:(AVAudioSession *)audioSession
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:didActivateAudioSession]");
#endif
[self sendEventWithName:RNCallKitDidActivateAudioSession body:nil];
}
- (void)provider:(CXProvider *)provider didDeactivateAudioSession:(AVAudioSession *)audioSession
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:didDeactivateAudioSession]");
#endif
[self sendEventWithName:RNCallKitDidDeactivateAudioSession body:nil];
}
-(void)provider:(CXProvider *)provider performSetMutedCallAction:(CXSetMutedCallAction *)action
{
#ifdef DEBUG
NSLog(@"[RNCallKit][CXProviderDelegate][provider:performSetMutedCallAction]");
#endif
[self sendEventWithName:RNCallKitDidPerformSetMutedCallAction body:@{ @"muted": @(action.muted) }];
[action fulfill];
}
@end