bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-provider/component.jsx

447 lines
12 KiB
React
Raw Normal View History

2018-02-17 03:18:53 +08:00
import React, { Component } from 'react';
import { styles } from './styles';
import { defineMessages, injectIntl } from 'react-intl';
import { log } from '/imports/ui/services/api';
import { notify } from '/imports/ui/services/notification';
import { toast } from 'react-toastify';
import Toast from '/imports/ui/components/toast/component';
import _ from 'lodash';
import VideoService from './service';
import VideoDockContainer from './video-dock/container';
2018-02-17 03:18:53 +08:00
const intlMessages = defineMessages({
iceCandidateError: {
id: 'app.video.iceCandidateError',
description: 'Error message for ice candidate fail',
},
permissionError: {
id: 'app.video.permissionError',
description: 'Error message for webcam permission',
},
sharingError: {
id: 'app.video.sharingError',
description: 'Error on sharing webcam',
},
chromeExtensionError: {
id: 'app.video.chromeExtensionError',
description: 'Error message for Chrome Extension not installed',
},
chromeExtensionErrorLink: {
id: 'app.video.chromeExtensionErrorLink',
description: 'Error message for Chrome Extension not installed',
},
2018-02-17 03:18:53 +08:00
});
const RECONNECT_WAIT_TIME = 5000;
const CAMERA_SHARE_FAILED_WAIT_TIME = 10000;
class VideoProvider extends Component {
constructor(props) {
super(props);
this.state = {
2018-03-12 23:29:51 +08:00
sharedWebcam: false,
socketOpen: false,
2018-02-17 03:18:53 +08:00
};
// Set a valid bbb-webrtc-sfu application server socket in the settings
this.ws = new ReconnectingWebSocket(Meteor.settings.public.kurento.wsUrl);
this.wsQueue = [];
this.reconnectWebcam = false;
this.cameraTimeouts = {};
this.webRtcPeers = {};
this.onWsOpen = this.onWsOpen.bind(this);
this.onWsClose = this.onWsClose.bind(this);
this.onWsMessage = this.onWsMessage.bind(this);
this.unshareWebcam = this.unshareWebcam.bind(this);
this.shareWebcam = this.shareWebcam.bind(this);
}
componentWillMount() {
this.ws.addEventListener('open', this.onWsOpen);
this.ws.addEventListener('close', this.onWsClose);
window.addEventListener('online', this.ws.open.bind(this.ws));
window.addEventListener('offline', this.onWsClose);
}
componentDidMount() {
document.addEventListener('joinVideo', this.shareWebcam.bind(this)); // TODO find a better way to do this
document.addEventListener('exitVideo', this.unshareWebcam.bind(this));
this.ws.addEventListener('message', this.onWsMessage);
}
componentWillUnmount() {
document.removeEventListener('joinVideo', this.shareWebcam);
document.removeEventListener('exitVideo', this.unshareWebcam);
this.ws.removeEventListener('message', this.onWsMessage);
this.ws.removeEventListener('open', this.onWsOpen);
this.ws.removeEventListener('close', this.onWsClose);
window.removeEventListener('online', this.ws.open.bind(this.ws));
window.removeEventListener('offline', this.onWsClose);
// Unshare user webcam
if (this.state.sharedWebcam) {
this.unshareWebcam();
this.stop(this.props.userId);
}
Object.keys(this.webRtcPeers).forEach((id) => {
this.destroyWebRTCPeer(id);
2018-02-17 03:18:53 +08:00
});
// Close websocket connection to prevent multiple reconnects from happening
this.ws.close();
}
onWsOpen() {
log('debug', '------ Websocket connection opened.');
// -- Resend queued messages that happened when socket was not connected
while (this.wsQueue.length > 0) {
this.sendMessage(this.wsQueue.pop());
}
this.setState({ socketOpen: true });
2018-02-17 03:18:53 +08:00
}
onWsClose(error) {
log('debug', '------ Websocket connection closed.');
this.unshareWebcam();
VideoService.exitedVideo();
this.setState({ socketOpen: false });
2018-02-17 03:18:53 +08:00
}
disconnected(id) {
this.reconnectList.push(id);
2018-02-17 03:18:53 +08:00
log('debug', ` [camera] ${id} disconnected, will try re-subscribe later.`);
}
onWsMessage(msg) {
const { intl } = this.props;
const parsedMessage = JSON.parse(msg.data);
console.log('Received message new ws message: ');
console.log(parsedMessage);
switch (parsedMessage.id) {
case 'startResponse':
this.startResponse(parsedMessage);
break;
case 'playStart':
this.handlePlayStart(parsedMessage);
break;
case 'playStop':
this.handlePlayStop(parsedMessage);
break;
case 'iceCandidate':
this.handleIceCandidate(parsedMessage);
break;
case 'error':
default:
this.handleError(parsedMessage);
break;
}
}
sendMessage(message) {
const ws = this.ws;
if (this.connectedToMediaServer()) {
const jsonMessage = JSON.stringify(message);
console.log(`Sending message: ${jsonMessage}`);
ws.send(jsonMessage, (error) => {
if (error) {
console.error(`client: Websocket error "${error}" on message "${jsonMessage.id}"`);
}
});
} else {
// No need to queue video stop messages
if (message.id != 'stop') {
this.wsQueue.push(message);
}
}
}
connectedToMediaServer() {
return this.ws.readyState === WebSocket.OPEN;
}
startResponse(message) {
const id = message.cameraId;
const webRtcPeer = this.webRtcPeers[id];
if (message.sdpAnswer == null || webRtcPeer == null) {
return log('debug', 'Null sdp answer or null webrtcpeer');
}
log('info', 'SDP answer received from server. Processing ...');
webRtcPeer.processAnswer(message.sdpAnswer, (error) => {
if (error) {
return log('error', error);
}
2018-02-17 05:11:59 +08:00
if (message.cameraId == this.props.userId) {
2018-02-17 03:18:53 +08:00
log('info', 'camera id sendusershare ', id);
VideoService.sendUserShareWebcam(id);
}
});
}
handleIceCandidate(message) {
2018-03-12 23:29:51 +08:00
const { intl } = this.props;
2018-02-17 03:18:53 +08:00
const webRtcPeer = this.webRtcPeers[message.cameraId];
if (webRtcPeer) {
if (webRtcPeer.didSDPAnswered) {
webRtcPeer.addIceCandidate(message.candidate, (err) => {
if (err) {
this.notifyError(intl.formatMessage(intlMessages.iceCandidateError));
return log('error', `Error adding candidate: ${err}`);
}
});
} else {
webRtcPeer.iceQueue.push(message.candidate);
}
} else {
log('error', ' [ICE] Message arrived after the peer was already thrown out, discarding it...');
}
}
destroyWebRTCPeer(id) {
const webRtcPeer = this.webRtcPeers[id];
// Clear the shared camera fail timeout when destroying
clearTimeout(this.cameraTimeouts[id]);
this.cameraTimeouts[id] = null;
if (webRtcPeer) {
log('info', 'Stopping WebRTC peer');
2018-03-12 23:29:51 +08:00
if (id == this.props.userId && this.state.sharedWebcam) {
this.setState({ sharedWebcam: false });
2018-02-17 03:18:53 +08:00
}
webRtcPeer.dispose();
delete this.webRtcPeers[id];
} else {
log('info', 'No WebRTC peer to stop (not an error)');
}
}
2018-02-17 05:11:59 +08:00
initWebRTC(id, shareWebcam, videoOptions, tag) {
2018-02-17 03:18:53 +08:00
const that = this;
const { intl, meetingId } = this.props;
2018-02-17 03:18:53 +08:00
const options = {
2018-02-17 05:11:59 +08:00
mediaConstraints: {
audio: false,
video: videoOptions,
},
onicecandidate: this.getOnIceCandidateCallback(id, shareWebcam),
};
let peerObj;
if (shareWebcam) {
peerObj = kurentoUtils.WebRtcPeer.WebRtcPeerSendonly;
options.localVideo = tag;
} else {
peerObj = kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly;
options.remoteVideo = tag;
}
2018-02-17 03:18:53 +08:00
const webRtcPeer = new peerObj(options, function (error) {
if (error) {
log('error', ' WebRTC peerObj create error');
log('error', error);
that.notifyError(intl.formatMessage(intlMessages.permissionError));
/* This notification error is displayed considering kurento-utils
* returned the error 'The request is not allowed by the user agent
* or the platform in the current context.', but there are other
* errors that could be returned. */
that.destroyWebRTCPeer(id);
if (shareWebcam) {
that.unshareWebcam();
VideoService.exitVideo();
VideoService.exitedVideo();
}
2018-02-17 03:18:53 +08:00
return log('error', error);
}
this.didSDPAnswered = false;
this.iceQueue = [];
that.webRtcPeers[id] = webRtcPeer;
if (shareWebcam) {
that.sharedWebcam = webRtcPeer;
}
this.generateOffer((error, offerSdp) => {
if (error) {
log('error', ' WebRtc generate offer error');
that.destroyWebRTCPeer(id);
return log('error', error);
}
that.cameraTimeouts[id] = setTimeout(() => {
log('error', 'Camera share has not suceeded in ' + CAMERA_SHARE_FAILED_WAIT_TIME + ' for ' + id);
if (that.props.userId == id) {
that.notifyError(intl.formatMessage(intlMessages.sharingError));
that.unshareWebcam();
VideoService.exitedVideo();
} else {
that.stop(id);
that.initWebRTC(id, shareWebcam, videoOptions, tag);
}
}, CAMERA_SHARE_FAILED_WAIT_TIME);
2018-02-17 03:18:53 +08:00
console.log(`Invoking SDP offer callback function ${location.host}`);
const message = {
type: 'video',
role: shareWebcam ? 'share' : 'viewer',
id: 'start',
sdpOffer: offerSdp,
cameraId: id,
meetingId,
2018-02-17 03:18:53 +08:00
};
that.sendMessage(message);
});
while (this.iceQueue.length) {
const candidate = this.iceQueue.shift();
this.addIceCandidate(candidate, (err) => {
if (err) {
this.notifyError(intl.formatMessage(intlMessages.iceCandidateError));
return console.error(`Error adding candidate: ${err}`);
}
});
}
this.didSDPAnswered = true;
});
}
getOnIceCandidateCallback(id, shareWebcam) {
const that = this;
2018-02-17 03:18:53 +08:00
return function (candidate) {
const message = {
type: 'video',
role: shareWebcam ? 'share' : 'viewer',
id: 'onIceCandidate',
candidate,
cameraId: id,
};
that.sendMessage(message);
};
}
2018-02-17 03:18:53 +08:00
stop(id) {
2018-02-17 05:11:59 +08:00
const userId = this.props.userId;
2018-02-17 03:18:53 +08:00
2018-04-10 22:55:42 +08:00
// The stop message should be sent to server for both viewers and sharers
this.sendMessage({
type: 'video',
role: id === userId ? 'share' : 'viewer',
id: 'stop',
cameraId: id,
});
2018-04-10 22:55:42 +08:00
if (id === userId) {
2018-03-22 22:14:54 +08:00
this.unshareWebcam();
2018-02-17 03:18:53 +08:00
VideoService.exitedVideo();
}
this.destroyWebRTCPeer(id);
}
handlePlayStop(message) {
const id = message.cameraId;
2018-02-17 03:18:53 +08:00
log('info', 'Handle play stop <--------------------');
2018-03-22 22:14:54 +08:00
this.stop(id);
2018-02-17 03:18:53 +08:00
}
handlePlayStart(message) {
log('info', 'Handle play start <===================');
// Clear camera shared timeout when camera succesfully starts
clearTimeout(this.cameraTimeouts[message.cameraId]);
this.cameraTimeouts[message.cameraId] = null;
2018-02-17 05:11:59 +08:00
if (message.cameraId == this.props.userId) {
2018-02-17 03:18:53 +08:00
VideoService.joinedVideo();
}
}
handleError(message) {
const { intl } = this.props;
2018-02-17 05:11:59 +08:00
const userId = this.props.userId;
2018-02-17 03:18:53 +08:00
if (message.cameraId == userId) {
this.unshareWebcam();
VideoService.exitedVideo();
2018-02-17 03:18:53 +08:00
this.notifyError(intl.formatMessage(intlMessages.sharingError));
} else {
this.stop(message.cameraId);
}
console.error(' Handle error --------------------->');
log('debug', message.message);
}
notifyError(message) {
notify(message, 'error', 'video');
}
shareWebcam() {
let { intl } = this.props;
2018-02-17 05:11:59 +08:00
log('info', 'Sharing webcam');
2018-02-17 03:18:53 +08:00
if (this.connectedToMediaServer()) {
this.setState({ sharedWebcam: true });
VideoService.joiningVideo();
} else {
this.notifyError(intl.formatMessage(intlMessages.sharingError));
}
2018-02-17 03:18:53 +08:00
}
unshareWebcam() {
log('info', 'Unsharing webcam');
2018-02-17 05:11:59 +08:00
this.setState({ ...this.state, sharedWebcam: false });
2018-02-17 05:11:59 +08:00
VideoService.sendUserUnshareWebcam(this.props.userId);
2018-02-17 03:18:53 +08:00
}
render() {
return (
<VideoDockContainer
onStart={this.initWebRTC.bind(this)}
onStop={this.stop.bind(this)}
2018-03-12 23:29:51 +08:00
sharedWebcam={this.state.sharedWebcam}
onShareWebcam={this.shareWebcam.bind(this)}
socketOpen={this.state.socketOpen}
2018-03-22 22:14:54 +08:00
isLocked={this.props.isLocked}
/>
2018-02-17 03:18:53 +08:00
);
}
}
2018-03-12 23:29:51 +08:00
export default injectIntl(VideoProvider);