mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.4 KiB
Swift
68 lines
2.4 KiB
Swift
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
* Creates an outbound call via WebRTC.
|
|
*/
|
|
@objc class OutboundCallInitiator: NSObject {
|
|
let TAG = "[OutboundCallInitiator]"
|
|
|
|
let contactsManager: OWSContactsManager
|
|
let contactsUpdater: ContactsUpdater
|
|
|
|
init(contactsManager: OWSContactsManager, contactsUpdater: ContactsUpdater) {
|
|
self.contactsManager = contactsManager
|
|
self.contactsUpdater = contactsUpdater
|
|
|
|
super.init()
|
|
}
|
|
|
|
/**
|
|
* |handle| is a user formatted phone number, e.g. from a system contacts entry
|
|
*/
|
|
public func initiateCall(handle: String) -> Bool {
|
|
Logger.info("\(TAG) in \(#function) with handle: \(handle)")
|
|
|
|
guard let recipientId = PhoneNumber(fromUserSpecifiedText: handle)?.toE164() else {
|
|
Logger.warn("\(TAG) unable to parse signalId from phone number: \(handle)")
|
|
return false
|
|
}
|
|
|
|
return initiateCall(recipientId: recipientId)
|
|
}
|
|
|
|
/**
|
|
* |recipientId| is a e164 formatted phone number.
|
|
*/
|
|
public func initiateCall(recipientId: String) -> Bool {
|
|
// Rather than an init-assigned dependency property, we access `callUIAdapter` via Environment
|
|
// because it can change after app launch due to user settings
|
|
guard let callUIAdapter = Environment.getCurrent().callUIAdapter else {
|
|
assertionFailure()
|
|
Logger.error("\(TAG) can't initiate call because callUIAdapter is nil")
|
|
return false
|
|
}
|
|
|
|
// TODO possible to get here when. e.g. dialing from contacts/recent calls. Should verify seen latest SN.
|
|
|
|
// Check for microphone permissions
|
|
// Alternative way without prompting for permissions:
|
|
// if AVAudioSession.sharedInstance().recordPermission() == .denied {
|
|
AVAudioSession.sharedInstance().requestRecordPermission { isGranted in
|
|
DispatchQueue.main.async {
|
|
// Here the permissions are either granted or denied
|
|
guard isGranted == true else {
|
|
Logger.warn("\(self.TAG) aborting due to missing microphone permissions.")
|
|
OWSAlerts.showNoMicrophonePermissionAlert()
|
|
return
|
|
}
|
|
callUIAdapter.startAndShowOutgoingCall(recipientId: recipientId)
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
}
|