From 2a11d5e71f051b1974b2633132b348ff1eb913bf Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 28 Mar 2022 12:59:07 +1100 Subject: [PATCH] trigger a new offer on connect fail if we are caller the caller is just supposed to accept the offer and send an answer back --- ts/session/utils/calling/CallManager.ts | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/ts/session/utils/calling/CallManager.ts b/ts/session/utils/calling/CallManager.ts index 5ce99e7d8..1661d9a7a 100644 --- a/ts/session/utils/calling/CallManager.ts +++ b/ts/session/utils/calling/CallManager.ts @@ -32,7 +32,7 @@ import { approveConvoAndSendResponse } from '../../../interactions/conversationI export type InputItem = { deviceId: string; label: string }; -export const callTimeoutMs = 30000; +export const callTimeoutMs = 60000; /** * This uuid is set only once we accepted a call or started one. @@ -41,6 +41,8 @@ let currentCallUUID: string | undefined; let currentCallStartTimestamp: number | undefined; +let weAreCallerOnCurrentCall: boolean | undefined; + const rejectedCallUUIDS: Set = new Set(); export type CallManagerOptionsType = { @@ -498,6 +500,7 @@ export async function USER_callRecipient(recipient: string) { window.log.info('Sending preOffer message to ', ed25519Str(recipient)); const calledConvo = getConversationController().get(recipient); calledConvo.set('active_at', Date.now()); // addSingleOutgoingMessage does the commit for us on the convo + weAreCallerOnCurrentCall = true; await calledConvo?.addSingleOutgoingMessage({ sent_at: now, @@ -619,6 +622,7 @@ function handleConnectionStateChanged(pubkey: string) { function closeVideoCall() { window.log.info('closingVideoCall '); currentCallStartTimestamp = undefined; + weAreCallerOnCurrentCall = undefined; if (peerConnection) { peerConnection.ontrack = null; peerConnection.onicecandidate = null; @@ -747,11 +751,18 @@ function createOrGetPeerConnection(withPubkey: string) { if (peerConnection && peerConnection?.iceConnectionState === 'disconnected') { //this will trigger a negotation event with iceRestart set to true in the createOffer options set - global.setTimeout(() => { + global.setTimeout(async () => { window.log.info('onconnectionstatechange disconnected: restartIce()'); - if (peerConnection?.iceConnectionState === 'disconnected') { + if ( + peerConnection?.iceConnectionState === 'disconnected' && + withPubkey?.length && + weAreCallerOnCurrentCall === true + ) { + // we are the caller and the connection got dropped out, we need to send a new offer with iceRestart set to true. + // the recipient will get that new offer and send us a response back if he still online (peerConnection as any).restartIce(); + await createOfferAndSendIt(withPubkey); } }, 2000); }