Refactor consumer-resume

This commit is contained in:
Sergiu Toma 2023-01-12 12:44:11 +02:00
parent 5bf31d452f
commit d8405eccc7

17
app.js
View File

@ -442,22 +442,17 @@ peers.on('connection', async socket => {
/* /*
- Event sent by the consumer after consuming to resume the pause - Event sent by the consumer after consuming to resume the pause
- When consuming on consumerTransport, it is initially done with paused: true, here we will resume - When consuming on consumerTransport, it is initially done with paused: true, here we will resume
- For the initiator we resume the initiatorConsumerAUDIO/VIDEO and for receiver the receiverConsumerAUDIO/VIDEO
*/ */
socket.on('consumer-resume', async () => { socket.on('consumer-resume',() => {
try { try {
const callId = socketDetails[socket.id]; const callId = socketDetails[socket.id];
console.log(`[consumer-resume] callId ${callId}`)
if (isInitiator(callId, socket.id)) { if (isInitiator(callId, socket.id)) {
console.log('🟩'); initiatorConsumerVideo && videoCalls[callId].initiatorConsumerVideo?.resume();
console.log(`[consumer-resume] isInitiator true`); initiatorConsumerAudio && videoCalls[callId].initiatorConsumerAudio?.resume();
await videoCalls[callId]?.initiatorConsumerVideo?.resume();
await videoCalls[callId]?.initiatorConsumerAudio?.resume();
} else { } else {
console.log('🟥'); receiverConsumerVideo && videoCalls[callId].receiverConsumerVideo?.resume();
console.log(`[consumer-resume] isInitiator false`); receiverConsumerAudio && videoCalls[callId].receiverConsumerAudio?.resume();
await videoCalls[callId]?.receiverConsumerVideo?.resume();
await videoCalls[callId]?.receiverConsumerAudio?.resume();
} }
} catch (error) { } catch (error) {
console.log(`ERROR | consumer-resume | callId ${socketDetails[socket.id]} | ${error.message}`); console.log(`ERROR | consumer-resume | callId ${socketDetails[socket.id]} | ${error.message}`);