-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathViewController.swift
540 lines (439 loc) · 21.9 KB
/
ViewController.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
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
//
// ViewController.swift
// VideoCallKitQuickStart
//
// Copyright © 2016-2019 Twilio, Inc. All rights reserved.
//
import UIKit
import TwilioVideo
import CallKit
class ViewController: UIViewController {
// MARK:- View Controller Members
// Configure access token manually for testing, if desired! Create one manually in the console
// at https://www.twilio.com/console/video/runtime/testing-tools
var accessToken = "TWILIO_ACCESS_TOKEN"
// Configure remote URL to fetch token from
let tokenUrl = "http://localhost:8000/token.php"
// Video SDK components
var room: Room?
/**
* We will create an audio device and manage it's lifecycle in response to CallKit events.
*/
var audioDevice: DefaultAudioDevice = DefaultAudioDevice()
var camera: CameraSource?
var localVideoTrack: LocalVideoTrack?
var localAudioTrack: LocalAudioTrack?
var remoteParticipant: RemoteParticipant?
var remoteView: VideoView?
// CallKit components
let callKitProvider: CXProvider
let callKitCallController: CXCallController
var callKitCompletionHandler: ((Bool)->Swift.Void?)? = nil
var userInitiatedDisconnect: Bool = false
// MARK:- UI Element Outlets and handles
@IBOutlet weak var connectButton: UIButton!
@IBOutlet weak var simulateIncomingButton: UIButton!
@IBOutlet weak var disconnectButton: UIButton!
@IBOutlet weak var messageLabel: UILabel!
@IBOutlet weak var roomTextField: UITextField!
@IBOutlet weak var roomLine: UIView!
@IBOutlet weak var roomLabel: UILabel!
@IBOutlet weak var micButton: UIButton!
// `VideoView` created from a storyboard
@IBOutlet weak var previewView: VideoView!
required init?(coder aDecoder: NSCoder) {
let configuration = CXProviderConfiguration(localizedName: "CallKit Quickstart")
configuration.maximumCallGroups = 1
configuration.maximumCallsPerCallGroup = 1
configuration.supportsVideo = true
configuration.supportedHandleTypes = [.generic]
if let callKitIcon = UIImage(named: "iconMask80") {
configuration.iconTemplateImageData = callKitIcon.pngData()
}
callKitProvider = CXProvider(configuration: configuration)
callKitCallController = CXCallController()
super.init(coder: aDecoder)
callKitProvider.setDelegate(self, queue: nil)
}
deinit {
// CallKit has an odd API contract where the developer must call invalidate or the CXProvider is leaked.
callKitProvider.invalidate()
// We are done with camera
if let camera = self.camera {
camera.stopCapture()
self.camera = nil
}
}
// MARK:- UIViewController
override func viewDidLoad() {
super.viewDidLoad()
self.title = "QuickStart"
/*
* The important thing to remember when providing a AudioDevice is that the device must be set
* before performing any other actions with the SDK (such as creating Tracks, or connecting to a Room).
* In this case we've already initialized our own `DefaultAudioDevice` instance which we will now set.
*/
TwilioVideoSDK.audioDevice = self.audioDevice;
if PlatformUtils.isSimulator {
self.previewView.removeFromSuperview()
} else {
// Preview our local camera track in the local video preview view.
self.startPreview()
}
self.connectButton.adjustsImageWhenDisabled = true
self.simulateIncomingButton.adjustsImageWhenDisabled = true
// Disconnect and mic button will be displayed when the Client is connected to a Room.
self.disconnectButton.isHidden = true
self.micButton.isHidden = true
self.roomTextField.autocapitalizationType = .none
self.roomTextField.delegate = self
let tap = UITapGestureRecognizer(target: self, action: #selector(ViewController.dismissKeyboard))
self.view.addGestureRecognizer(tap)
self.registerForLocalNotifications()
}
override var prefersHomeIndicatorAutoHidden: Bool {
return self.room != nil
}
func setupRemoteVideoView() {
// Creating `VideoView` programmatically
self.remoteView = VideoView(frame: CGRect.zero, delegate: self)
self.view.insertSubview(self.remoteView!, at: 0)
// `VideoView` supports scaleToFill, scaleAspectFill and scaleAspectFit
// scaleAspectFit is the default mode when you create `VideoView` programmatically.
self.remoteView!.contentMode = .scaleAspectFit;
let centerX = NSLayoutConstraint(item: self.remoteView!,
attribute: NSLayoutConstraint.Attribute.centerX,
relatedBy: NSLayoutConstraint.Relation.equal,
toItem: self.view,
attribute: NSLayoutConstraint.Attribute.centerX,
multiplier: 1,
constant: 0);
self.view.addConstraint(centerX)
let centerY = NSLayoutConstraint(item: self.remoteView!,
attribute: NSLayoutConstraint.Attribute.centerY,
relatedBy: NSLayoutConstraint.Relation.equal,
toItem: self.view,
attribute: NSLayoutConstraint.Attribute.centerY,
multiplier: 1,
constant: 0);
self.view.addConstraint(centerY)
let width = NSLayoutConstraint(item: self.remoteView!,
attribute: NSLayoutConstraint.Attribute.width,
relatedBy: NSLayoutConstraint.Relation.equal,
toItem: self.view,
attribute: NSLayoutConstraint.Attribute.width,
multiplier: 1,
constant: 0);
self.view.addConstraint(width)
let height = NSLayoutConstraint(item: self.remoteView!,
attribute: NSLayoutConstraint.Attribute.height,
relatedBy: NSLayoutConstraint.Relation.equal,
toItem: self.view,
attribute: NSLayoutConstraint.Attribute.height,
multiplier: 1,
constant: 0);
self.view.addConstraint(height)
}
// MARK:- IBActions
@IBAction func connect(sender: AnyObject) {
performStartCallAction(uuid: UUID(), roomName: self.roomTextField.text)
self.dismissKeyboard()
}
@IBAction func disconnect(sender: AnyObject) {
if let room = room, let uuid = room.uuid {
logMessage(messageText: "Attempting to disconnect from room \(room.name)")
userInitiatedDisconnect = true
performEndCallAction(uuid: uuid)
}
}
@IBAction func toggleMic(sender: AnyObject) {
if let room = room, let uuid = room.uuid, let localAudioTrack = self.localAudioTrack {
let isMuted = localAudioTrack.isEnabled
let muteAction = CXSetMutedCallAction(call: uuid, muted: isMuted)
let transaction = CXTransaction(action: muteAction)
callKitCallController.request(transaction) { error in
DispatchQueue.main.async {
if let error = error {
self.logMessage(messageText: "SetMutedCallAction transaction request failed: \(error.localizedDescription)")
return
}
self.logMessage(messageText: "SetMutedCallAction transaction request successful")
}
}
}
}
func muteAudio(isMuted: Bool) {
if let localAudioTrack = self.localAudioTrack {
localAudioTrack.isEnabled = !isMuted
// Update the button title
if (!isMuted) {
self.micButton.setTitle("Mute", for: .normal)
} else {
self.micButton.setTitle("Unmute", for: .normal)
}
}
}
// MARK:- Private
func startPreview() {
if PlatformUtils.isSimulator {
return
}
let frontCamera = CameraSource.captureDevice(position: .front)
let backCamera = CameraSource.captureDevice(position: .back)
if (frontCamera != nil || backCamera != nil) {
// Preview our local camera track in the local video preview view.
camera = CameraSource(delegate: self)
localVideoTrack = LocalVideoTrack(source: camera!, enabled: true, name: "camera")
// Add renderer to video track for local preview
localVideoTrack!.addRenderer(self.previewView)
logMessage(messageText: "Video track created")
if (frontCamera != nil && backCamera != nil) {
// We will flip camera on tap.
let tap = UITapGestureRecognizer(target: self, action: #selector(ViewController.flipCamera))
self.previewView.addGestureRecognizer(tap)
}
camera!.startCapture(device: frontCamera != nil ? frontCamera! : backCamera!) { (captureDevice, videoFormat, error) in
if let error = error {
self.logMessage(messageText: "Capture failed with error.\ncode = \((error as NSError).code) error = \(error.localizedDescription)")
} else {
self.previewView.shouldMirror = (captureDevice.position == .front)
}
}
}
else {
self.logMessage(messageText:"No front or back capture device found!")
}
}
@objc func flipCamera() {
var newDevice: AVCaptureDevice?
if let camera = self.camera, let captureDevice = camera.device {
if captureDevice.position == .front {
newDevice = CameraSource.captureDevice(position: .back)
} else {
newDevice = CameraSource.captureDevice(position: .front)
}
if let newDevice = newDevice {
camera.selectCaptureDevice(newDevice) { (captureDevice, videoFormat, error) in
if let error = error {
self.logMessage(messageText: "Error selecting capture device.\ncode = \((error as NSError).code) error = \(error.localizedDescription)")
} else {
self.previewView.shouldMirror = (captureDevice.position == .front)
}
}
}
}
}
func prepareLocalMedia() {
// We will share local audio and video when we connect to the Room.
// Create an audio track.
if (localAudioTrack == nil) {
localAudioTrack = LocalAudioTrack()
if (localAudioTrack == nil) {
logMessage(messageText: "Failed to create audio track")
}
}
// Create a video track which captures from the camera.
if (localVideoTrack == nil) {
self.startPreview()
}
}
// Update our UI based upon if we are in a Room or not
func showRoomUI(inRoom: Bool) {
self.connectButton.isHidden = inRoom
self.simulateIncomingButton.isHidden = inRoom
self.roomTextField.isHidden = inRoom
self.roomLine.isHidden = inRoom
self.roomLabel.isHidden = inRoom
self.micButton.isHidden = !inRoom
self.disconnectButton.isHidden = !inRoom
self.navigationController?.setNavigationBarHidden(inRoom, animated: true)
UIApplication.shared.isIdleTimerDisabled = inRoom
// Show / hide the automatic home indicator on modern iPhones.
self.setNeedsUpdateOfHomeIndicatorAutoHidden()
}
@objc func dismissKeyboard() {
if (self.roomTextField.isFirstResponder) {
self.roomTextField.resignFirstResponder()
}
}
func renderRemoteParticipant(participant : RemoteParticipant) -> Bool {
// This example renders the first subscribed RemoteVideoTrack from the RemoteParticipant.
let videoPublications = participant.remoteVideoTracks
for publication in videoPublications {
if let subscribedVideoTrack = publication.remoteTrack,
publication.isTrackSubscribed {
setupRemoteVideoView()
subscribedVideoTrack.addRenderer(self.remoteView!)
self.remoteParticipant = participant
return true
}
}
return false
}
func renderRemoteParticipants(participants : Array<RemoteParticipant>) {
for participant in participants {
// Find the first renderable track.
if participant.remoteVideoTracks.count > 0,
renderRemoteParticipant(participant: participant) {
break
}
}
}
func cleanupRemoteParticipant() {
if self.remoteParticipant != nil {
self.remoteView?.removeFromSuperview()
self.remoteView = nil
self.remoteParticipant = nil
}
}
func logMessage(messageText: String) {
NSLog(messageText)
messageLabel.text = messageText
}
func holdCall(onHold: Bool) {
localAudioTrack?.isEnabled = !onHold
localVideoTrack?.isEnabled = !onHold
}
}
// MARK:- UITextFieldDelegate
extension ViewController : UITextFieldDelegate {
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
self.connect(sender: textField)
return true
}
}
// MARK:- RoomDelegate
extension ViewController : RoomDelegate {
func roomDidConnect(room: Room) {
// At the moment, this example only supports rendering one Participant at a time.
logMessage(messageText: "Connected to room \(room.name) as \(room.localParticipant?.identity ?? "")")
// This example only renders 1 RemoteVideoTrack at a time. Listen for all events to decide which track to render.
for remoteParticipant in room.remoteParticipants {
remoteParticipant.delegate = self
}
let cxObserver = callKitCallController.callObserver
let calls = cxObserver.calls
// Let the call provider know that the outgoing call has connected
if let uuid = room.uuid, let call = calls.first(where:{$0.uuid == uuid}) {
if call.isOutgoing {
callKitProvider.reportOutgoingCall(with: uuid, connectedAt: nil)
}
}
self.callKitCompletionHandler!(true)
}
func roomDidDisconnect(room: Room, error: Error?) {
logMessage(messageText: "Disconnected from room \(room.name), error = \(String(describing: error))")
if !self.userInitiatedDisconnect, let uuid = room.uuid, let error = error as? TwilioVideoSDK.Error {
var reason = CXCallEndedReason.remoteEnded
if error.code != .roomRoomCompletedError {
reason = .failed
}
self.callKitProvider.reportCall(with: uuid, endedAt: nil, reason: reason)
}
self.cleanupRemoteParticipant()
self.room = nil
self.showRoomUI(inRoom: false)
self.callKitCompletionHandler = nil
self.userInitiatedDisconnect = false
}
func roomDidFailToConnect(room: Room, error: Error) {
logMessage(messageText: "Failed to connect to room with error: \(error.localizedDescription)")
self.callKitCompletionHandler!(false)
self.room = nil
self.showRoomUI(inRoom: false)
}
func roomIsReconnecting(room: Room, error: Error) {
logMessage(messageText: "Reconnecting to room \(room.name), error = \(String(describing: error))")
}
func roomDidReconnect(room: Room) {
logMessage(messageText: "Reconnected to room \(room.name)")
}
func participantDidConnect(room: Room, participant: RemoteParticipant) {
// Listen for events from all Participants to decide which RemoteVideoTrack to render.
participant.delegate = self
logMessage(messageText: "Participant \(participant.identity) connected with \(participant.remoteAudioTracks.count) audio and \(participant.remoteVideoTracks.count) video tracks")
}
func participantDidDisconnect(room: Room, participant: RemoteParticipant) {
logMessage(messageText: "Room \(room.name), Participant \(participant.identity) disconnected")
// Nothing to do in this example. Subscription events are used to add/remove renderers.
}
}
// MARK:- RemoteParticipantDelegate
extension ViewController : RemoteParticipantDelegate {
func remoteParticipantDidPublishVideoTrack(participant: RemoteParticipant, publication: RemoteVideoTrackPublication) {
// Remote Participant has offered to share the video Track.
logMessage(messageText: "Participant \(participant.identity) published video track")
}
func remoteParticipantDidUnpublishVideoTrack(participant: RemoteParticipant, publication: RemoteVideoTrackPublication) {
// Remote Participant has stopped sharing the video Track.
logMessage(messageText: "Participant \(participant.identity) unpublished video track")
}
func remoteParticipantDidPublishAudioTrack(participant: RemoteParticipant, publication: RemoteAudioTrackPublication) {
// Remote Participant has offered to share the audio Track.
logMessage(messageText: "Participant \(participant.identity) published audio track")
}
func remoteParticipantDidUnpublishAudioTrack(participant: RemoteParticipant, publication: RemoteAudioTrackPublication) {
logMessage(messageText: "Participant \(participant.identity) unpublished audio track")
}
func didSubscribeToVideoTrack(videoTrack: RemoteVideoTrack, publication: RemoteVideoTrackPublication, participant: RemoteParticipant) {
// The LocalParticipant is subscribed to the RemoteParticipant's video Track. Frames will begin to arrive now.
logMessage(messageText: "Subscribed to \(publication.trackName) video track for Participant \(participant.identity)")
if (self.remoteParticipant == nil) {
_ = renderRemoteParticipant(participant: participant)
}
}
func didUnsubscribeFromVideoTrack(videoTrack: RemoteVideoTrack, publication: RemoteVideoTrackPublication, participant: RemoteParticipant) {
// We are unsubscribed from the remote Participant's video Track. We will no longer receive the
// remote Participant's video.
logMessage(messageText: "Unsubscribed from \(publication.trackName) video track for Participant \(participant.identity)")
if self.remoteParticipant == participant {
cleanupRemoteParticipant()
// Find another Participant video to render, if possible.
if var remainingParticipants = room?.remoteParticipants,
let index = remainingParticipants.firstIndex(of: participant) {
remainingParticipants.remove(at: index)
renderRemoteParticipants(participants: remainingParticipants)
}
}
}
func didSubscribeToAudioTrack(audioTrack: RemoteAudioTrack, publication: RemoteAudioTrackPublication, participant: RemoteParticipant) {
// We are subscribed to the remote Participant's audio Track. We will start receiving the
// remote Participant's audio now.
logMessage(messageText: "Subscribed to audio track for Participant \(participant.identity)")
}
func didUnsubscribeFromAudioTrack(audioTrack: RemoteAudioTrack, publication: RemoteAudioTrackPublication, participant: RemoteParticipant) {
// We are unsubscribed from the remote Participant's audio Track. We will no longer receive the
// remote Participant's audio.
logMessage(messageText: "Unsubscribed from audio track for Participant \(participant.identity)")
}
func remoteParticipantDidEnableVideoTrack(participant: RemoteParticipant, publication: RemoteVideoTrackPublication) {
logMessage(messageText: "Participant \(participant.identity) enabled video track")
}
func remoteParticipantDidDisableVideoTrack(participant: RemoteParticipant, publication: RemoteVideoTrackPublication) {
logMessage(messageText: "Participant \(participant.identity) disabled video track")
}
func remoteParticipantDidEnableAudioTrack(participant: RemoteParticipant, publication: RemoteAudioTrackPublication) {
logMessage(messageText: "Participant \(participant.identity) enabled audio track")
}
func remoteParticipantDidDisableAudioTrack(participant: RemoteParticipant, publication: RemoteAudioTrackPublication) {
logMessage(messageText: "Participant \(participant.identity) disabled audio track")
}
func didFailToSubscribeToAudioTrack(publication: RemoteAudioTrackPublication, error: Error, participant: RemoteParticipant) {
logMessage(messageText: "FailedToSubscribe \(publication.trackName) audio track, error = \(String(describing: error))")
}
func didFailToSubscribeToVideoTrack(publication: RemoteVideoTrackPublication, error: Error, participant: RemoteParticipant) {
logMessage(messageText: "FailedToSubscribe \(publication.trackName) video track, error = \(String(describing: error))")
}
}
// MARK:- VideoViewDelegate
extension ViewController : VideoViewDelegate {
func videoViewDimensionsDidChange(view: VideoView, dimensions: CMVideoDimensions) {
self.view.setNeedsLayout()
}
}
// MARK:- CameraSourceDelegate
extension ViewController : CameraSourceDelegate {
func cameraSourceDidFail(source: CameraSource, error: Error) {
logMessage(messageText: "Camera source failed with error: \(error.localizedDescription)")
}
}