-
Notifications
You must be signed in to change notification settings - Fork 6
/
CallManager.swift
415 lines (362 loc) · 16.1 KB
/
CallManager.swift
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
/*
* Copyright (c) 2011-2020, Zingaya, Inc. All rights reserved.
*/
import VoxImplantSDK
import CallKit
final class CallManager:
NSObject,
CXProviderDelegate,
VICallDelegate,
VIClientCallManagerDelegate,
PushCallNotifierDelegate
{
fileprivate var client: VIClient
fileprivate var authService: AuthService
fileprivate var pushCallNotifier: PushCallNotifier
fileprivate var audioIsActive: Bool = false
// Voximplant SDK supports multiple calls at the same time, however
// this demo app demonstrates only one managed call at the moment,
// so it rejects new incoming call, if there is already a call.
fileprivate(set) var managedCall: CallWrapper?
{
willSet {
managedCall?.delegate = nil // old managedCall
}
didSet {
managedCall?.delegate = self // new managedCall
}
}
weak var reconnectDelegate: CallReconnectDelegate?
var hasManagedCall: Bool { managedCall != nil }
private var hasNoManagedCalls: Bool { !hasManagedCall }
fileprivate let callProvider: CXProvider = {
let providerConfiguration = CXProviderConfiguration(localizedName: "AudioCallKit")
providerConfiguration.supportsVideo = false
providerConfiguration.maximumCallsPerCallGroup = 1
providerConfiguration.supportedHandleTypes = [.generic]
providerConfiguration.ringtoneSound = "noisecollector-beam.aiff"
if let logo = UIImage(named: "CallKitLogo") {
providerConfiguration.iconTemplateImageData = logo.pngData()
}
return CXProvider(configuration: providerConfiguration)
}()
fileprivate var progressTone: CXAudioFile? = {
let progressTone = (name: "current_us_can", extension: "wav")
if let progressTonePath = Bundle.main.path(forResource: progressTone.name, ofType: progressTone.extension) {
return CXAudioFile(url: URL(fileURLWithPath: progressTonePath), looped: true)
} else {
return nil
}
}()
fileprivate var reconnectTone: CXAudioFile? = {
let reconnectTone = (name: "fennelliott-beeping", extension: "wav")
if let reconnectTonePath = Bundle.main.path(forResource: reconnectTone.name, ofType: reconnectTone.extension) {
return CXAudioFile(url: URL(fileURLWithPath: reconnectTonePath), looped: true)
} else {
return nil
}
}()
init(_ client: VIClient, _ authService: AuthService) {
self.client = client
self.authService = authService
self.pushCallNotifier = PushCallNotifier(client, authService)
super.init()
self.client.callManagerDelegate = self
self.callProvider.setDelegate(self, queue: nil)
self.pushCallNotifier.delegate = self
}
deinit {
// According to the CXProvider documentation: "The provider must be invalidated before it is deallocated."
callProvider.invalidate()
}
func endCall(_ uuid: UUID) {
if let call = managedCall, call.uuid == uuid {
if call.direction == .outgoing || call.hasStarted {
call.call?.hangup(withHeaders: nil)
} else {
call.call?.reject(with: .decline, headers: nil)
}
}
// SDK will invoke VICallDelegate methods (didDisconnectWithHeaders or didFailWithError)
}
func reportCallEnded(_ uuid: UUID, _ endReason: CXCallEndedReason) {
if let managedCall = self.managedCall, managedCall.uuid == uuid {
let pendingActions: [CXAction] = callProvider.pendingCallActions(of: CXAction.self, withCall: uuid)
if !pendingActions.isEmpty {
// no matter what the endReason is
pendingActions.forEach({ $0.fail() })
} else {
callProvider.reportCall(with: managedCall.uuid, endedAt: Date(), reason: endReason)
}
// Ensure the push processing is completed in cases:
// 1. login issues
// 2. call is rejected before the user is logged in
// in all other cases completePushProcessing should be called in VICallDelegate methods
self.managedCall?.completePushProcessing()
self.managedCall = nil
// callKitReleaseAudio should be called after deactivating CallKit session by iOS subsystem after the call ended.
if !self.audioIsActive {
VIAudioManager.shared().callKitReleaseAudioSession()
}
}
}
func updateOutgoingCall(_ vicall: VICall) {
if let managedCall = self.managedCall,
managedCall.call == nil,
managedCall.uuid == vicall.callKitUUID
{
managedCall.call = vicall
vicall.start()
managedCall.hasStarted = true
callProvider.reportOutgoingCall(with: managedCall.uuid, startedConnectingAt: nil)
}
}
func updateIncomingCall(_ vicall: VICall) {
if let managedCall = self.managedCall,
managedCall.call == nil,
managedCall.uuid == vicall.callKitUUID
{
managedCall.call = vicall
}
}
func createOutgoingCall(_ callUUID: UUID) {
guard hasNoManagedCalls else { return }
self.managedCall = CallWrapper(uuid: callUUID, direction: .outgoing)
}
func createIncomingCall(_ newUUID: UUID, from fullUsername: String, withDisplayName userDisplayName: String, withPushCompletion pushProcessingCompletion: (()->Void)? = nil) {
guard hasNoManagedCalls else { return }
self.managedCall = CallWrapper(uuid: newUUID, withPushCompletion: pushProcessingCompletion)
let callinfo = CXCallUpdate()
callinfo.remoteHandle = CXHandle(type: .generic, value: fullUsername)
callinfo.supportsHolding = true
callinfo.supportsGrouping = false
callinfo.supportsUngrouping = false
callinfo.supportsDTMF = true
callinfo.hasVideo = false
callinfo.localizedCallerName = userDisplayName
callProvider.reportNewIncomingCall(with: newUUID, update: callinfo)
{ [reportedCallUUID = newUUID, weak self]
(error: Error?) in
if let error = error {
Log.e("reportNewIncomingCall error - \(error.localizedDescription)")
// CallKit can reject new incoming call in the following cases (CXErrorCodeIncomingCallError):
// - "Do Not Disturb" mode is on
// - the caller is in the system black list
// - ...
self?.endCall(reportedCallUUID)
}
}
}
// MARK: - CXProviderDelegate -
func provider(_ provider: CXProvider, execute transaction: CXTransaction) -> Bool {
if authService.isLoggedIn {
return false
} else {
if authService.state == .disconnected {
authService.loginWithAccessToken() { [weak self] error in
guard let self = self else { return }
if error == nil {
self.callProvider.commitTransactions(self)
} else if let managedCallUUID = self.managedCall?.uuid {
self.reportCallEnded(managedCallUUID, .failed)
}
}
}
return true
}
}
func provider(_ provider: CXProvider, perform action: CXStartCallAction) {
guard hasNoManagedCalls
else {
action.fail()
Log.i("CallManager startcall: tried to start the call \(action.callUUID) while already managed the call \(String(describing: self.managedCall?.uuid))")
return
}
createOutgoingCall(action.callUUID)
Log.i("CallManager startcall: created new outgoing call \(action.callUUID)")
let settings = VICallSettings()
settings.videoFlags = VIVideoFlags.videoFlags(receiveVideo: false, sendVideo: false)
if let call: VICall = client.call(action.handle.value, settings: settings) {
action.fulfill()
call.callKitUUID = action.callUUID
VIAudioManager.shared().callKitConfigureAudioSession(nil)
self.updateOutgoingCall(call)
Log.i("CallManager startcall: updated outgoing call \(call.callKitUUID!)")
} else {
action.fail()
}
}
func provider(_ provider: CXProvider, didActivate audioSession: AVAudioSession) {
VIAudioManager.shared().callKitStartAudio()
self.audioIsActive = true
progressTone?.didActivateAudioSession()
reconnectTone?.didActivateAudioSession()
}
func provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession) {
VIAudioManager.shared().callKitStopAudio()
self.audioIsActive = false
progressTone?.didDeactivateAudioSession()
reconnectTone?.didDeactivateAudioSession()
// callKitReleaseAudio should be called after deactivating CallKit session by iOS subsystem after the call ended.
if self.managedCall == nil {
VIAudioManager.shared().callKitReleaseAudioSession()
}
}
// method caused by the CXProvider.invalidate()
func providerDidReset(_ provider: CXProvider) {
if let uuid = self.managedCall?.uuid {
endCall(uuid)
}
}
func provider(_ provider: CXProvider, perform action: CXAnswerCallAction) {
VIAudioManager.shared().callKitConfigureAudioSession(nil)
let settings = VICallSettings()
settings.videoFlags = VIVideoFlags.videoFlags(receiveVideo: false, sendVideo: false)
managedCall?.call?.answer(with: settings)
managedCall?.hasStarted = true
action.fulfill()
}
func provider(_ provider: CXProvider, perform action: CXSetHeldCallAction) {
managedCall?.call?.setHold(action.isOnHold)
{ error in
if let error = error {
Log.e(error.localizedDescription)
action.fail()
} else {
action.fulfill()
}
}
}
// the method is called if the user rejects an incoming call or hangup an active call
func provider(_ provider: CXProvider, perform action: CXEndCallAction) {
endCall(action.callUUID)
action.fulfill(withDateEnded: Date())
}
func provider(_ provider: CXProvider, perform action: CXPlayDTMFCallAction) {
managedCall?.call?.sendDTMF(action.digits)
action.fulfill()
}
func provider(_ provider: CXProvider, perform action: CXSetMutedCallAction) {
managedCall?.call?.sendAudio = !action.isMuted
action.fulfill()
}
// MARK: - VICallDelegate -
func call(_ call: VICall, didFailWithError error: Error, headers: [AnyHashable : Any]?) {
reportCallEnded(call.callKitUUID!, .failed)
progressTone?.stop()
reconnectTone?.stop()
}
func call(_ call: VICall, didDisconnectWithHeaders headers: [AnyHashable : Any]?, answeredElsewhere: NSNumber) {
let endReason: CXCallEndedReason = answeredElsewhere.boolValue ? .answeredElsewhere : .remoteEnded
reportCallEnded(call.callKitUUID!, endReason)
progressTone?.stop()
reconnectTone?.stop()
}
func call(_ call: VICall, didConnectWithHeaders headers: [AnyHashable : Any]?) {
if let managedCall = managedCall {
if managedCall.direction == .outgoing {
// notify CallKit that the outgoing call is connected
callProvider.reportOutgoingCall(with: managedCall.uuid, connectedAt: nil)
// apply the configuration to the CallKit call screen
// for incoming calls this configuration is set, when the incoming call is reported to CallKit
let callinfo = CXCallUpdate()
callinfo.hasVideo = false
callinfo.supportsHolding = true
callinfo.supportsGrouping = false
callinfo.supportsUngrouping = false
callinfo.supportsDTMF = true
callinfo.localizedCallerName = call.endpoints.first?.userDisplayName
callProvider.reportCall(with: managedCall.uuid, updated: callinfo)
}
managedCall.hasConnected = true
}
managedCall?.completePushProcessing()
}
func callDidStartReconnecting(_ call: VICall) {
if let managedCall = managedCall {
reconnectDelegate?.callDidStartReconnecting(uuid: managedCall.uuid)
progressTone?.stop()
reconnectTone?.play()
}
}
func callDidReconnect(_ call: VICall) {
if let managedCall = managedCall {
reconnectDelegate?.callDidReconnect(uuid: managedCall.uuid)
reconnectTone?.stop()
if !managedCall.hasConnected {
progressTone?.play()
}
}
}
func call(_ call: VICall, startRingingWithHeaders headers: [AnyHashable : Any]?) {
progressTone?.play()
}
func callDidStartAudio(_ call: VICall) {
progressTone?.stop()
}
// MARK: - VIClientCallManagerDelegate -
func client(_ client: VIClient, pushDidExpire callKitUUID: UUID) {
reportCallEnded(callKitUUID, .failed)
}
func client(_ client: VIClient,
didReceiveIncomingCall call: VICall,
withIncomingVideo video: Bool,
headers: [AnyHashable: Any]?
) {
if let managedCall = managedCall {
if managedCall.uuid == call.callKitUUID {
updateIncomingCall(call)
callProvider.commitTransactions(self)
Log.i("CallManager sdk rcv: updated already managed incoming call \(call.callKitUUID!)")
} else {
// another call has been reported, reject a new one:
call.reject(with: .decline, headers: nil)
Log.i("CallManager sdk rcv: rejected new incoming call \(call.callKitUUID!) while has already managed call \(managedCall.uuid)")
}
} else if let uuid = call.callKitUUID,
let username = call.endpoints.first?.user,
let displayName = call.endpoints.first?.userDisplayName {
createIncomingCall(uuid, from: username, withDisplayName: displayName)
updateIncomingCall(call)
Log.i("CallManager sdk rcv: created and updated new incoming call \(call.callKitUUID!)")
} else {
Log.w("CallManager sdk rcv: failed to create new incoming call, because uuid, displayname or user was nil \(call.callKitUUID!)")
}
}
// MARK: - PushCallNotifierDelegate -
func didReceiveIncomingCall(_ newUUID: UUID,
from fullUsername: String,
withDisplayName userDisplayName: String,
withPushCompletion pushProcessingCompletion: (() -> Void)?
) {
if hasManagedCall {
// another call has been reported, skipped a new one:
Log.i("CallManager push rcv: skipped new incoming call \(newUUID) while has already managed call \(String(describing: managedCall?.uuid))")
return
} else {
createIncomingCall(
newUUID,
from: fullUsername,
withDisplayName: userDisplayName,
withPushCompletion: pushProcessingCompletion
)
Log.i("CallManager push rcv: created new incoming call \(newUUID)")
}
authService.loginWithAccessToken() { [reportedCallUUID = newUUID, weak self] error in
if error != nil {
self?.reportCallEnded(reportedCallUUID, .failed)
}
// in case of success we will receive VICall instance via VICallManagerDelegate
}
}
}
extension CXCall {
var info: VICall? {
if let managedCall = sharedCallManager.managedCall,
self.uuid == managedCall.uuid
{
return managedCall.call
}
return nil
}
}