Receber uma ligação
No topo do ViewController classe, abaixo do client declaração, adicione uma propriedade de tipo string para armazenar uma referência a qualquer chamada em andamento.
class ViewController: UIViewController {
let connectionStatusLabel = UILabel()
let client = VGVoiceClient()
var callID: String?
...
}
Quando o aplicativo receber uma chamada, você vai querer oferecer a opção de aceitar ou rejeitar a chamada. Para fazer isso, adicione o displayIncomingCallAlert função para o ViewController classe.
class ViewController: UIViewController {
...
func displayIncomingCallAlert(callID: String, caller: String) {
let alert = UIAlertController(title: "Incoming call from", message: caller, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Answer", style: .default, handler: { _ in
self.client.answer(callID) { error in
if error == nil {
self.callID = callID
}
}
}))
alert.addAction(UIAlertAction(title: "Reject", style: .destructive, handler: { _ in
self.client.reject(callID) { error in
if let error {
self.connectionStatusLabel.text = error.localizedDescription
}
}
}))
self.present(alert, animated: true, completion: nil)
}
}
O displayIncomingCallAlert A função recebe um ID de chamada e um autor da chamada como parâmetros. Observe que no UIAlertAction por responder ao convite; caso seja aprovado, você designará o callID em relação ao imóvel mencionado anteriormente
Para usar displayIncomingCallAlert você precisa usar o VGVoiceClientDelegate que possui uma função que será chamada quando o cliente receber uma mensagem VGVoiceInvite.
extension ViewController: VGVoiceClientDelegate {
...
func voiceClient(_ client: VGVoiceClient, didReceiveInviteForCall callId: String, from caller: String, withChannelType type: VGVoiceChannelType) {
DispatchQueue.main.async { [weak self] in
self?.displayIncomingCallAlert(callID: callId, caller: caller)
}
}
func voiceClient(_ client: VGVoiceClient, didReceiveInviteCancelForCall callId: String, with reason: VGVoiceInviteCancelReason) {
DispatchQueue.main.async { [weak self] in
self?.dismiss(animated: true)
}
}
func voiceClient(_ client: VGVoiceClient, didReceiveHangupForCall callId: String, withQuality callQuality: VGRTCQuality, reason: VGHangupReason) {
DispatchQueue.main.async { [weak self] in
self?.callID = nil
self?.connectionStatusLabel.text = "Call Ended"
}
}
}
Você também pode implementar o didReceiveHangupForCall função delegada que é chamada caso a ligação seja encerrada.
NOTA: Além disso, certifique-se de que o servidor de webhook que você configurou nas etapas anteriores ainda esteja em funcionamento.
Imprensa Cmd + R Para configurar e executar novamente, quando você ligar para o número vinculado ao seu aplicativo, como feito anteriormente, aparecerá um aviso. Basta atender e a ligação será conectada!

Webhooks
À medida que você prossegue com a chamada, por favor, mude para o terminal e observe o /voice/answer endpoint chamado para recuperar o NCCO:
NCCO request:
- caller: 441234567890
Além disso, à medida que a chamada passa por várias etapas, /voice/event está recebendo eventos:
EVENT:
{
headers: {},
from: '441234567890',
to: '442038297050',
uuid: '0779a56d002f1c7f47f82ef5fe84ab79',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'ringing',
direction: 'inbound',
timestamp: '2021-03-29T21:20:05.582Z'
}
---
EVENT:
{
headers: {},
from: '441234567890',
to: '442038297050',
uuid: '0779a56d002f1c7f47f82ef5fe84ab79',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'started',
direction: 'inbound',
timestamp: '2021-03-29T21:20:05.582Z'
}
---
EVENT:
{
start_time: null,
headers: {},
rate: null,
from: '441234567890',
to: '442038297050',
uuid: '0779a56d002f1c7f47f82ef5fe84ab79',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'answered',
direction: 'inbound',
network: null,
timestamp: '2021-03-29T21:20:06.182Z'
}
---
EVENT:
{
from: '441234567890',
to: 'Alice',
uuid: '944bf4bf-8dc7-4e23-86b2-2f4234777416',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'started',
direction: 'outbound',
timestamp: '2021-03-29T21:20:13.025Z'
}
---
EVENT:
{
start_time: null,
headers: {},
rate: null,
from: '441234567890',
to: 'Alice',
uuid: '944bf4bf-8dc7-4e23-86b2-2f4234777416',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'answered',
direction: 'outbound',
network: null,
timestamp: '2021-03-29T21:20:13.025Z'
}
---
EVENT:
{
headers: {},
end_time: '2021-03-29T21:20:16.000Z',
uuid: '944bf4bf-8dc7-4e23-86b2-2f4234777416',
network: null,
duration: '5',
start_time: '2021-03-29T21:20:11.000Z',
rate: '0.00',
price: '0',
from: '441234567890',
to: 'Alice',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'completed',
direction: 'outbound',
timestamp: '2021-03-29T21:20:17.574Z'
}
---
EVENT:
{
headers: {},
end_time: '2021-03-29T21:20:18.000Z',
uuid: '0779a56d002f1c7f47f82ef5fe84ab79',
network: 'GB-FIXED',
duration: '12',
start_time: '2021-03-29T21:20:06.000Z',
rate: '0.00720000',
price: '0.00144000',
from: ' 441234567890',
to: '442038297050',
conversation_uuid: 'CON-8f5a100c-fbce-4218-8d4b-16341335bcd6',
status: 'completed',
direction: 'inbound',
timestamp: '2021-03-29T21:20:17.514Z'
}
---
Receber uma ligação dentro do aplicativo
Você recebe uma chamada de um telefone no seu aplicativo