2014-08-27 13:57:54 -04:00
|
|
|
/*
|
2014-09-03 12:29:13 -04:00
|
|
|
Copyright 2014 OpenMarket Ltd
|
2014-08-27 13:57:54 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular.module('matrixPhoneService', [])
|
2014-08-28 14:03:34 -04:00
|
|
|
.factory('matrixPhoneService', ['$rootScope', '$injector', 'matrixService', 'eventHandlerService', function MatrixPhoneService($rootScope, $injector, matrixService, eventHandlerService) {
|
2014-08-27 13:57:54 -04:00
|
|
|
var matrixPhoneService = function() {
|
2014-08-28 14:03:34 -04:00
|
|
|
};
|
2014-08-27 13:57:54 -04:00
|
|
|
|
2014-08-29 08:23:01 -04:00
|
|
|
matrixPhoneService.INCOMING_CALL_EVENT = "INCOMING_CALL_EVENT";
|
2014-09-11 10:23:06 -04:00
|
|
|
matrixPhoneService.REPLACED_CALL_EVENT = "REPLACED_CALL_EVENT";
|
2014-08-27 13:57:54 -04:00
|
|
|
matrixPhoneService.allCalls = {};
|
|
|
|
|
2014-08-28 14:03:34 -04:00
|
|
|
matrixPhoneService.callPlaced = function(call) {
|
2014-08-27 13:57:54 -04:00
|
|
|
matrixPhoneService.allCalls[call.call_id] = call;
|
|
|
|
};
|
|
|
|
|
2014-08-29 08:23:01 -04:00
|
|
|
$rootScope.$on(eventHandlerService.CALL_EVENT, function(ngEvent, event, isLive) {
|
2014-08-27 13:57:54 -04:00
|
|
|
if (!isLive) return; // until matrix supports expiring messages
|
|
|
|
if (event.user_id == matrixService.config().user_id) return;
|
|
|
|
var msg = event.content;
|
2014-08-29 08:23:01 -04:00
|
|
|
if (event.type == 'm.call.invite') {
|
2014-08-28 14:03:34 -04:00
|
|
|
var MatrixCall = $injector.get('MatrixCall');
|
2014-08-27 13:57:54 -04:00
|
|
|
var call = new MatrixCall(event.room_id);
|
|
|
|
call.call_id = msg.call_id;
|
2014-08-28 14:03:34 -04:00
|
|
|
call.initWithInvite(msg);
|
2014-08-27 13:57:54 -04:00
|
|
|
matrixPhoneService.allCalls[call.call_id] = call;
|
2014-09-11 10:23:06 -04:00
|
|
|
|
|
|
|
// Were we trying to call that user (room)?
|
|
|
|
var existingCall;
|
|
|
|
var callIds = Object.keys(matrixPhoneService.allCalls);
|
|
|
|
for (var i = 0; i < callIds.length; ++i) {
|
|
|
|
var thisCallId = callIds[i];
|
|
|
|
var thisCall = matrixPhoneService.allCalls[thisCallId];
|
|
|
|
|
|
|
|
if (call.room_id == thisCall.room_id && thisCall.direction == 'outbound'
|
2014-09-12 09:06:35 -04:00
|
|
|
&& (thisCall.state == 'wait_local_media' || thisCall.state == 'create_offer' || thisCall.state == 'invite_sent')) {
|
2014-09-11 10:23:06 -04:00
|
|
|
existingCall = thisCall;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (existingCall) {
|
2014-09-12 09:06:35 -04:00
|
|
|
// If we've only got to wait_local_media or create_offer and we've got an invite,
|
|
|
|
// pick the incoming call because we know we haven't sent our invite yet
|
|
|
|
// otherwise, pick whichever call has the lowest call ID (by string comparison)
|
|
|
|
if (existingCall.state == 'wait_local_media' || existingCall.state == 'create_offer' || existingCall.call_id > call.call_id) {
|
2014-09-11 10:23:06 -04:00
|
|
|
console.log("Glare detected: answering incoming call "+call.call_id+" and canceling outgoing call "+existingCall.call_id);
|
|
|
|
existingCall.replacedBy(call);
|
|
|
|
call.answer();
|
|
|
|
$rootScope.$broadcast(matrixPhoneService.REPLACED_CALL_EVENT, existingCall, call);
|
2014-09-12 09:06:35 -04:00
|
|
|
} else {
|
|
|
|
console.log("Glare detected: rejecting incoming call "+call.call_id+" and keeping outgoing call "+existingCall.call_id);
|
|
|
|
call.hangup();
|
2014-09-11 10:23:06 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$rootScope.$broadcast(matrixPhoneService.INCOMING_CALL_EVENT, call);
|
|
|
|
}
|
2014-08-29 08:23:01 -04:00
|
|
|
} else if (event.type == 'm.call.answer') {
|
2014-08-28 14:03:34 -04:00
|
|
|
var call = matrixPhoneService.allCalls[msg.call_id];
|
|
|
|
if (!call) {
|
2014-09-11 10:23:06 -04:00
|
|
|
console.log("Got answer for unknown call ID "+msg.call_id);
|
2014-08-28 14:03:34 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
call.receivedAnswer(msg);
|
2014-09-12 13:16:24 -04:00
|
|
|
} else if (event.type == 'm.call.candidates') {
|
2014-08-28 14:03:34 -04:00
|
|
|
var call = matrixPhoneService.allCalls[msg.call_id];
|
2014-08-27 13:57:54 -04:00
|
|
|
if (!call) {
|
2014-09-12 13:16:24 -04:00
|
|
|
console.log("Got candidates for unknown call ID "+msg.call_id);
|
2014-08-27 13:57:54 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-09-12 13:16:24 -04:00
|
|
|
for (var i = 0; i < msg.candidates.length; ++i) {
|
|
|
|
call.gotRemoteIceCandidate(msg.candidates[i]);
|
|
|
|
}
|
2014-08-29 08:23:01 -04:00
|
|
|
} else if (event.type == 'm.call.hangup') {
|
2014-08-28 14:03:34 -04:00
|
|
|
var call = matrixPhoneService.allCalls[msg.call_id];
|
|
|
|
if (!call) {
|
2014-09-11 10:23:06 -04:00
|
|
|
console.log("Got hangup for unknown call ID "+msg.call_id);
|
2014-08-28 14:03:34 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-08-29 06:29:36 -04:00
|
|
|
call.onHangupReceived();
|
2014-09-11 10:23:06 -04:00
|
|
|
delete(matrixPhoneService.allCalls[msg.call_id]);
|
2014-08-27 13:57:54 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return matrixPhoneService;
|
|
|
|
}]);
|