diff --git a/app/CallManager.js b/app/CallManager.js index b27ef30..f005e2f 100644 --- a/app/CallManager.js +++ b/app/CallManager.js @@ -1,455 +1,454 @@ import events from 'events'; import Logger from '../Logger'; import uuid from 'react-native-uuid'; import { Platform, PermissionsAndroid } from 'react-native'; import utils from './utils'; const logger = new Logger('CallManager'); import { CONSTANTS as CK_CONSTANTS } from 'react-native-callkeep'; // https://github.com/react-native-webrtc/react-native-callkeep /* const CONSTANTS = { END_CALL_REASONS: { FAILED: 1, REMOTE_ENDED: 2, UNANSWERED: 3, ANSWERED_ELSEWHERE: 4, DECLINED_ELSEWHERE: 5, MISSED: 6 } }; */ const options = { ios: { appName: 'Sylk', maximumCallGroups: 1, maximumCallsPerCallGroup: 2, supportsVideo: true, includesCallsInRecents: true, imageName: "Image-1" }, android: { alertTitle: 'Calling account permission', alertDescription: 'Please allow Sylk inside All calling accounts', cancelButton: 'Deny', okButton: 'Allow', imageName: 'phone_account_icon', additionalPermissions: [PermissionsAndroid.PERMISSIONS.CAMERA, PermissionsAndroid.PERMISSIONS.RECORD_AUDIO, PermissionsAndroid.PERMISSIONS.READ_CONTACTS] } }; export default class CallManager extends events.EventEmitter { constructor(RNCallKeep, acceptFunc, rejectFunc, hangupFunc, timeoutFunc, conferenceCallFunc, startCallFromCallKeeper) { //logger.debug('constructor()'); super(); this.setMaxListeners(Infinity); this._RNCallKeep = RNCallKeep; this._calls = new Map(); this._conferences = new Map(); this._rejectedCalls = new Map(); this._acceptedCalls = new Map(); this._alertedCalls = new Map(); this.webSocketActions = new Map(); this._timeouts = new Map(); this.sylkAcceptCall = acceptFunc; this.sylkRejectCall = rejectFunc; this.sylkHangupCall = hangupFunc; this.timeoutCall = timeoutFunc; this.conferenceCall = conferenceCallFunc; this.startCallFromOutside = startCallFromCallKeeper; this._boundRnAccept = this._rnAccept.bind(this); this._boundRnEnd = this._rnEnd.bind(this); this._boundRnMute = this._rnMute.bind(this); this._boundRnActiveAudioCall = this._rnActiveAudioSession.bind(this); this._boundRnDeactiveAudioCall = this._rnDeactiveAudioSession.bind(this); this._boundRnDTMF = this._rnDTMF.bind(this); this._boundRnProviderReset = this._rnProviderReset.bind(this); this.boundRnStartAction = this._startedCall.bind(this); this.boundRnDisplayIncomingCall = this._displayIncomingCall.bind(this); this._RNCallKeep.addEventListener('answerCall', this._boundRnAccept); this._RNCallKeep.addEventListener('endCall', this._boundRnEnd); this._RNCallKeep.addEventListener('didPerformSetMutedCallAction', this._boundRnMute); this._RNCallKeep.addEventListener('didActivateAudioSession', this._boundRnActiveAudioCall); this._RNCallKeep.addEventListener('didDeactivateAudioSession', this._boundRnDeactiveAudioCall.bind(this)); this._RNCallKeep.addEventListener('didPerformDTMFAction', this._boundRnDTMF); this._RNCallKeep.addEventListener('didResetProvider', this._boundRnProviderReset); this._RNCallKeep.addEventListener('didReceiveStartCallAction', this.boundRnStartAction); this._RNCallKeep.addEventListener('didDisplayIncomingCall', this.boundRnDisplayIncomingCall); this._RNCallKeep.setup(options); this._RNCallKeep.addEventListener('checkReachability', () => { this._RNCallKeep.setReachable(); }); } get callKeep() { return this._RNCallKeep; } get count() { return this._calls.size; } get waitingCount() { return this._timeouts.size; } get callUUIDS() { return Array.from( this._calls.keys() ); } get calls() { return [...this._calls.values()]; } get activeCall() { for (let call of this.calls) { if (call.active) { return call; } } } setAvailable(available) { this.callKeep.setAvailable(available); } backToForeground() { //utils.timestampedLog('Callkeep: bring app to the foreground'); this.callKeep.backToForeground(); } setMutedCall(callUUID, mute) { utils.timestampedLog('Callkeep: set call', callUUID, 'muted =', mute); this.callKeep.setMutedCall(callUUID, mute); } startCall(callUUID, targetUri, hasVideo) { utils.timestampedLog('Callkeep: start outgoing call', callUUID); if (Platform.OS === 'ios') { this.callKeep.startCall(callUUID, targetUri, targetUri, 'email', hasVideo); } else if (Platform.OS === 'android') { this.callKeep.startCall(callUUID, targetUri, targetUri); } this.backToForeground(); } updateDisplay(callUUID, displayName, uri) { utils.timestampedLog('Callkeep: update display', displayName, uri); this.callKeep.updateDisplay(callUUID, displayName, uri); } sendDTMF(callUUID, digits) { utils.timestampedLog('Callkeep: send DTMF: ', digits); this.callKeep.sendDTMF(callUUID, digits); } setCurrentCallActive(callUUID) { //utils.timestampedLog('Callkeep: set call active', callUUID); this.callKeep.setCurrentCallActive(callUUID); } endCalls() { utils.timestampedLog('Callkeep: end all calls'); this.callKeep.endAllCalls(); } endCall(callUUID, reason) { utils.timestampedLog('Callkeep: end call', callUUID, 'with reason', reason); if (reason) { this.callKeep.reportEndCallWithUUID(callUUID, reason); } else { this.callKeep.endCall(callUUID); } this._calls.delete(callUUID); } _rnActiveAudioSession() { //utils.timestampedLog('Callkeep: activated call'); } _rnDeactiveAudioSession() { //utils.timestampedLog('Callkeep: deactivated call'); } _rnAccept(data) { utils.timestampedLog('Callkeep: accept callback', callUUID); let callUUID = data.callUUID.toLowerCase(); if (!this._acceptedCalls.has(callUUID)) { this.acceptCall(callUUID); } else { utils.timestampedLog('Callkeep: already accepted callback', callUUID); } if (this._timeouts.has(callUUID)) { clearTimeout(this._timeouts.get(callUUID)); this._timeouts.delete(callUUID); } } acceptCall(callUUID) { utils.timestampedLog('Callkeep: accept call', callUUID); this.backToForeground(); this._acceptedCalls.set(callUUID, true); if (this._timeouts.has(callUUID)) { clearTimeout(this._timeouts.get(callUUID)); this._timeouts.delete(callUUID); } if (this._conferences.has(callUUID)) { let room = this._conferences.get(callUUID); utils.timestampedLog('Callkeep: accept incoming conference', callUUID); this.callKeep.endCall(callUUID); this._conferences.delete(callUUID); utils.timestampedLog('Will start conference to', room); this.conferenceCall(room); // this is app callKeepStartConference() } else if (this._calls.has(callUUID)) { this.sylkAcceptCall(); } else { // We accepted the call before it arrived on web socket this.webSocketActions.set(callUUID, 'accept'); } } _rnEnd(data) { utils.timestampedLog('Callkeep: end callback', callUUID); let callUUID = data.callUUID.toLowerCase(); this.rejectCall(callUUID); if (this._timeouts.has(callUUID)) { clearTimeout(this._timeouts.get(callUUID)); this._timeouts.delete(callUUID); } } rejectCall(callUUID) { utils.timestampedLog('Callkeep: reject call', callUUID); this.backToForeground(); this.callKeep.rejectCall(callUUID); this._rejectedCalls.set(callUUID, true); if (this._timeouts.has(callUUID)) { - utils.timestampedLog('Callkeep: cancel auto timeout for call', callUUID); clearTimeout(this._timeouts.get(callUUID)); this._timeouts.delete(callUUID); } if (this._conferences.has(callUUID)) { utils.timestampedLog('Callkeep: reject conference invite', callUUID); let room = this._conferences.get(callUUID); this._conferences.delete(callUUID); } else if (this._calls.has(callUUID)) { let call = this._calls.get(callUUID); if (call.state === 'incoming') { utils.timestampedLog('Callkeep: reject call', callUUID); this.sylkRejectCall(callUUID); } else { utils.timestampedLog('Callkeep: hangup call', callUUID); this.sylkHangupCall(callUUID); } } else { // We rejected the call before it arrived on web socket // from iOS push notifications utils.timestampedLog('Callkeep: add call', callUUID, 'to the waitings list'); this.webSocketActions.set(callUUID, 'reject'); } } _rnMute(data) { utils.timestampedLog('Callkeep: mute ' + data.muted + ' for call', data.callUUID); //get the uuid, find the call with that uuid and mute/unmute it if (this._calls.has(data.callUUID.toLowerCase())) { let call = this._calls.get(data.callUUID.toLowerCase()); const localStream = call.getLocalStreams()[0]; localStream.getAudioTracks()[0].enabled = !data.muted; } } _rnDTMF(data) { utils.timestampedLog('Callkeep: got dtmf for call', data.callUUID); if (this._calls.has(data.callUUID.toLowerCase())) { let call = this._calls.get(data.callUUID.toLowerCase()); utils.timestampedLog('sending webrtc dtmf', data.digits) call.sendDtmf(data.digits); } } _rnProviderReset() { utils.timestampedLog('Callkeep: got a provider reset, clearing down all calls'); this._calls.forEach((call) => { call.terminate(); }) } incomingCallFromPush(callUUID, from) { utils.timestampedLog('Callkeep: handle incoming push call', callUUID); // call is received by push notification if (this._rejectedCalls.has(callUUID)) { this.callKeep.reportEndCallWithUUID(callUUID, CK_CONSTANTS.END_CALL_REASONS.UNANSWERED); return; } if (Platform.OS === 'ios') { if (this._calls.has(callUUID)) { utils.timestampedLog('Callkeep: call', callUUID, 'already received on web socket'); } } else { this.showAlertPanelforPush(callUUID, from); } let reason = this.webSocketActions.has(callUUID) ? CK_CONSTANTS.END_CALL_REASONS.FAILED : CK_CONSTANTS.END_CALL_REASONS.UNANSWERED; // if user does not decide anything this will be handled later this._timeouts.set(callUUID, setTimeout(() => { - utils.timestampedLog('Callkeep: end call because user did not react', callUUID); + utils.timestampedLog('Callkeep: end call because user did not accept or reject', callUUID); this.callKeep.reportEndCallWithUUID(callUUID, reason); this._timeouts.delete(callUUID); }, 45000)); } incomingCallFromWebSocket(call) { call._callkeepUUID = call.id; this._calls.set(call._callkeepUUID, call); utils.timestampedLog('Callkeep: handle incoming websocket call', call._callkeepUUID); // if the call came via push and was already accepted or rejected if (this.webSocketActions.get(call._callkeepUUID)) { let action = this.webSocketActions.get(call._callkeepUUID); utils.timestampedLog('Callkeep: execute action decided earlier', action); if (action === 'accept') { this.sylkAcceptCall(call.id); } else { this.sylkRejectCall(call.id); } this.webSocketActions.delete(call._callkeepUUID); if (this._timeouts.has(call.id)) { clearTimeout(this._timeouts.get(call.id)); this._timeouts.delete(call.id); } } else { // iOS invite push does not arrive if app is in the foreground // If the push arrived, we would be above this else if (Platform.OS === 'ios') { this.showAlertPanelforCall(call); } else { // Andoid always receives the invite push and we must show the alert // at that time, if we do it here, the previously shown alert panel // will vanish and the app will go to the foregound leaving the user confused // the alert panel is hidden somewhere in the notifications bar } } // Emit event. this._emitSessionsChange(true); } handleOutgoingCall(call) { // this is an outgoing call call._callkeepUUID = call.id; this._calls.set(call._callkeepUUID, call); utils.timestampedLog('Callkeep: start outgoing call', call._callkeepUUID); // Emit event. this._emitSessionsChange(true); } handleConference(callUUID, room, from_uri) { if (this._conferences.has(callUUID)) { return; } this._conferences.set(callUUID, room); utils.timestampedLog('CallKeep: handle conference', callUUID, 'from', from_uri, 'to room', room); this.showAlertPanelforPush(callUUID, from_uri); // there is no cancel, so we add a timer this._timeouts.set(callUUID, setTimeout(() => { utils.timestampedLog('Callkeep: conference timeout', callUUID); this.timeoutCall(callUUID, from_uri); this.callKeep.reportEndCallWithUUID(callUUID, CK_CONSTANTS.END_CALL_REASONS.MISSED); this._timeouts.delete(callUUID); }, 45000)); this._emitSessionsChange(true); } showAlertPanelforPush(callUUID, uri) { utils.timestampedLog('Callkeep: show alert panel for push', callUUID, 'from', uri); if (Platform.OS === 'ios') { this.callKeep.displayIncomingCall(callUUID, uri, uri, 'email', true); } else if (Platform.OS === 'android') { this.callKeep.displayIncomingCall(callUUID, uri, uri); } } _startedCall(data) { utils.timestampedLog("Callkeep: started call", data.callUUID); this.startCallFromOutside(data); } _displayIncomingCall(data) { utils.timestampedLog('Incoming alert panel displayed'); this._alertedCalls.set(data.callUUID.toLowerCase(), true); } showAlertPanelforCall(call, force=false) { if (this._alertedCalls.has(call._callkeepUUID) && !force) { utils.timestampedLog('Callkeep: alert panel was already shown for call', call._callkeepUUID); return; } utils.timestampedLog('Callkeep: show alert panel for call', call._callkeepUUID); let hasVideo = call.mediaTypes && call.mediaTypes.video; if (Platform.OS === 'ios') { this.callKeep.displayIncomingCall(call._callkeepUUID, call.remoteIdentity.uri, call.remoteIdentity.displayName, 'email', hasVideo); } else if (Platform.OS === 'android') { this.callKeep.displayIncomingCall(call._callkeepUUID, call.remoteIdentity.uri, call.remoteIdentity.displayName); } } _emitSessionsChange(countChanged) { this.emit('sessionschange', countChanged); } destroy() { this._RNCallKeep.removeEventListener('acceptCall', this._boundRnAccept); this._RNCallKeep.removeEventListener('endCall', this._boundRnEnd); this._RNCallKeep.removeEventListener('didPerformSetMutedCallAction', this._boundRnMute); this._RNCallKeep.removeEventListener('didActivateAudioSession', this._boundRnActiveAudioCall); this._RNCallKeep.removeEventListener('didDeactivateAudioSession', this._boundRnDeactiveAudioCall); this._RNCallKeep.removeEventListener('didPerformDTMFAction', this._boundRnDTMF); this._RNCallKeep.removeEventListener('didResetProvider', this._boundRnProviderReset); this._RNCallKeep.removeEventListener('didReceiveStartCallAction', this.boundRnStartAction); this._RNCallKeep.removeEventListener('didDisplayIncomingCall', this.boundRnDisplayIncomingCall); } }