mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-03 13:18:56 +01:00
68 lines
2.7 KiB
JavaScript
68 lines
2.7 KiB
JavaScript
/*
|
|
Copyright 2014 matrix.org
|
|
|
|
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', [])
|
|
.factory('matrixPhoneService', ['$rootScope', '$injector', 'matrixService', 'eventHandlerService', function MatrixPhoneService($rootScope, $injector, matrixService, eventHandlerService) {
|
|
var matrixPhoneService = function() {
|
|
};
|
|
|
|
matrixPhoneService.INCOMING_CALL_EVENT = "INCOMING_CALL_EVENT";
|
|
matrixPhoneService.allCalls = {};
|
|
|
|
matrixPhoneService.callPlaced = function(call) {
|
|
matrixPhoneService.allCalls[call.call_id] = call;
|
|
};
|
|
|
|
$rootScope.$on(eventHandlerService.CALL_EVENT, function(ngEvent, event, isLive) {
|
|
if (!isLive) return; // until matrix supports expiring messages
|
|
if (event.user_id == matrixService.config().user_id) return;
|
|
var msg = event.content;
|
|
if (event.type == 'm.call.invite') {
|
|
var MatrixCall = $injector.get('MatrixCall');
|
|
var call = new MatrixCall(event.room_id);
|
|
call.call_id = msg.call_id;
|
|
call.initWithInvite(msg);
|
|
matrixPhoneService.allCalls[call.call_id] = call;
|
|
$rootScope.$broadcast(matrixPhoneService.INCOMING_CALL_EVENT, call);
|
|
} else if (event.type == 'm.call.answer') {
|
|
var call = matrixPhoneService.allCalls[msg.call_id];
|
|
if (!call) {
|
|
console.trace("Got answer for unknown call ID "+msg.call_id);
|
|
return;
|
|
}
|
|
call.receivedAnswer(msg);
|
|
} else if (event.type == 'm.call.candidate') {
|
|
var call = matrixPhoneService.allCalls[msg.call_id];
|
|
if (!call) {
|
|
console.trace("Got candidate for unknown call ID "+msg.call_id);
|
|
return;
|
|
}
|
|
call.gotRemoteIceCandidate(msg.candidate);
|
|
} else if (event.type == 'm.call.hangup') {
|
|
var call = matrixPhoneService.allCalls[msg.call_id];
|
|
if (!call) {
|
|
console.trace("Got hangup for unknown call ID "+msg.call_id);
|
|
return;
|
|
}
|
|
call.onHangupReceived();
|
|
matrixPhoneService.allCalls[msg.call_id] = undefined;
|
|
}
|
|
});
|
|
|
|
return matrixPhoneService;
|
|
}]);
|