2017-10-12 10:00:28 +08:00
|
|
|
import Screenshare from '/imports/api/screenshare';
|
2017-11-11 11:41:37 +08:00
|
|
|
import KurentoBridge from '/imports/api/screenshare/client/bridge';
|
2019-05-29 04:46:29 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2017-07-25 03:29:34 +08:00
|
|
|
|
|
|
|
// when the meeting information has been updated check to see if it was
|
|
|
|
// screensharing. If it has changed either trigger a call to receive video
|
|
|
|
// and display it, or end the call and hide the video
|
2017-11-06 23:39:55 +08:00
|
|
|
const isVideoBroadcasting = () => {
|
2017-07-25 03:29:34 +08:00
|
|
|
const ds = Screenshare.findOne({});
|
|
|
|
|
2017-07-26 04:56:40 +08:00
|
|
|
if (!ds) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-09-09 01:00:00 +08:00
|
|
|
|
2019-03-09 03:41:19 +08:00
|
|
|
return !!ds.screenshare.stream;
|
|
|
|
};
|
2017-07-25 03:29:34 +08:00
|
|
|
|
|
|
|
// if remote screenshare has been ended disconnect and hide the video stream
|
2017-11-06 23:39:55 +08:00
|
|
|
const presenterScreenshareHasEnded = () => {
|
2017-09-09 01:00:00 +08:00
|
|
|
// references a function in the global namespace inside kurento-extension.js
|
2017-07-25 03:29:34 +08:00
|
|
|
// that we load dynamically
|
2017-09-09 01:00:00 +08:00
|
|
|
KurentoBridge.kurentoExitVideo();
|
2019-03-09 03:41:19 +08:00
|
|
|
};
|
2017-07-25 03:29:34 +08:00
|
|
|
|
|
|
|
// if remote screenshare has been started connect and display the video stream
|
2017-11-06 23:39:55 +08:00
|
|
|
const presenterScreenshareHasStarted = () => {
|
2017-09-09 01:00:00 +08:00
|
|
|
// references a function in the global namespace inside kurento-extension.js
|
2017-07-25 03:29:34 +08:00
|
|
|
// that we load dynamically
|
2017-09-09 01:00:00 +08:00
|
|
|
KurentoBridge.kurentoWatchVideo();
|
2019-03-09 03:41:19 +08:00
|
|
|
};
|
2017-07-25 03:29:34 +08:00
|
|
|
|
2018-08-23 02:10:08 +08:00
|
|
|
const shareScreen = (onFail) => {
|
|
|
|
KurentoBridge.kurentoShareScreen(onFail);
|
2019-03-09 03:41:19 +08:00
|
|
|
};
|
2017-09-13 04:47:06 +08:00
|
|
|
|
2019-06-13 02:40:58 +08:00
|
|
|
const screenShareEndAlert = () => new Audio(`${Meteor.settings.public.app.cdn + Meteor.settings.public.app.basename}/resources/sounds/ScreenshareOff.mp3`).play();
|
|
|
|
|
2017-11-06 23:39:55 +08:00
|
|
|
const unshareScreen = () => {
|
|
|
|
KurentoBridge.kurentoExitScreenShare();
|
2019-04-16 05:39:07 +08:00
|
|
|
screenShareEndAlert();
|
2019-03-09 03:41:19 +08:00
|
|
|
};
|
2017-07-25 03:29:34 +08:00
|
|
|
|
2019-05-29 04:46:29 +08:00
|
|
|
const dataSavingSetting = () => Settings.dataSaving.viewScreenshare;
|
2019-04-16 05:39:07 +08:00
|
|
|
|
2017-07-25 03:29:34 +08:00
|
|
|
export {
|
2019-03-09 03:41:19 +08:00
|
|
|
isVideoBroadcasting,
|
|
|
|
presenterScreenshareHasEnded,
|
|
|
|
presenterScreenshareHasStarted,
|
|
|
|
shareScreen,
|
2019-04-16 05:39:07 +08:00
|
|
|
screenShareEndAlert,
|
2019-06-13 02:40:58 +08:00
|
|
|
unshareScreen,
|
2019-05-29 04:46:29 +08:00
|
|
|
dataSavingSetting,
|
2017-07-25 03:29:34 +08:00
|
|
|
};
|