bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/deskshare/service.js

52 lines
1.6 KiB
JavaScript
Raw Normal View History

2016-05-27 04:01:49 +08:00
import Deskshare from '/imports/api/deskshare';
2016-08-19 22:07:47 +08:00
import {createVertoUserName, vertoWatchVideo} from '/imports/api/verto';
import Auth from '/imports/ui/services/auth';
2016-05-28 00:17:16 +08:00
import {getVoiceBridge} from '/imports/api/phone';
2016-05-07 04:15:47 +08:00
// when the meeting information has been updated check to see if it was
// desksharing. If it has changed either trigger a call to receive video
// and display it, or end the call and hide the video
function videoIsBroadcasting() {
2016-08-19 22:07:47 +08:00
console.log("inside ds:: videoIsBroadcasting");
2016-05-07 04:15:47 +08:00
const ds = Deskshare.findOne({});
if (ds == null || !ds.broadcasting) {
console.log('Deskshare broadcasting has ended');
presenterDeskshareHasEnded();
return false;
2016-08-19 22:07:47 +08:00
} else {
console.log("DS isnt empty");
2016-05-07 04:15:47 +08:00
}
if (ds.broadcasting) {
console.log('Deskshare is now broadcasting');
if (ds.startedBy != Auth.userID) {
2016-05-07 04:15:47 +08:00
console.log('deskshare wasn\'t initiated by me');
presenterDeskshareHasStarted();
return true;
} else {
2016-08-19 22:07:47 +08:00
console.log("ending DS");
2016-05-07 04:15:47 +08:00
presenterDeskshareHasEnded();
return false;
}
2016-08-19 22:07:47 +08:00
} else {
console.log("DS int broadcasting");
2016-05-07 04:15:47 +08:00
}
}
// if remote deskshare has been ended disconnect and hide the video stream
function presenterDeskshareHasEnded() {
// exitVoiceCall();
2016-08-19 22:07:47 +08:00
console.log("presenterDeskshareHasEnded");
2016-05-07 04:15:47 +08:00
};
// if remote deskshare has been started connect and display the video stream
function presenterDeskshareHasStarted() {
2016-06-22 01:38:28 +08:00
vertoWatchVideo();
2016-08-19 22:07:47 +08:00
console.log("presenterDeskshareHasStarted");
2016-05-07 04:15:47 +08:00
};
2016-05-31 01:21:30 +08:00
export {
videoIsBroadcasting, presenterDeskshareHasEnded, presenterDeskshareHasStarted
2016-05-07 04:15:47 +08:00
};
2016-08-19 22:07:47 +08:00