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

484 lines
12 KiB
React
Raw Normal View History

import React, { Component } from 'react';
import ScreenshareContainer from '/imports/ui/components/screenshare/container';
import styles from './styles';
import { log } from '/imports/ui/services/api';
class VideoElement extends Component {
constructor(props) {
super(props);
2017-09-01 23:26:57 +08:00
}
}
export default class VideoDock extends Component {
2017-09-01 23:26:57 +08:00
constructor(props) {
super(props);
// Set a valid bbb-webrtc-sfu application server socket in the settings
this.ws = new ReconnectingWebSocket(Meteor.settings.public.kurento.wsUrl);
this.wsQueue = [];
this.webRtcPeers = {};
this.reconnectWebcam = false;
this.reconnectList = false;
this.sharedCameraTimeout = null;
this.subscribedCamerasTimeouts = [];
2017-09-01 23:26:57 +08:00
this.state = {
videos: {},
2017-09-01 23:26:57 +08:00
};
this.ws.addEventListener('open', () => {
2017-12-06 03:13:42 +08:00
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.reconnectVideos();
});
this.ws.addEventListener('close', (error) => {
2017-12-06 03:13:42 +08:00
log('debug', '------ Websocket connection closed.');
this.setupReconnectVideos();
});
2017-09-01 23:26:57 +08:00
this.sendUserShareWebcam = props.sendUserShareWebcam.bind(this);
this.sendUserUnshareWebcam = props.sendUserUnshareWebcam.bind(this);
this.unshareWebcam = this.unshareWebcam.bind(this);
this.shareWebcam = this.shareWebcam.bind(this);
}
setupReconnectVideos() {
for (id in this.webRtcPeers) {
this.disconnected(id);
this.stop(id);
}
}
reconnectVideos() {
for (i in this.reconnectList) {
const id = this.reconnectList[i];
// TODO: base this on BBB API users instead of using memory
if (id != this.myId) {
setTimeout(() => {
log('debug', ` [camera] Trying to reconnect camera ${id}`);
this.start(id, false, this.refs.videoInput);
}, 5000);
}
}
if (this.reconnectWebcam) {
log('debug', ` [camera] Trying to re-share ${this.myId} after reconnect.`);
this.start(this.myId, true, this.refs.videoInput);
}
this.reconnectWebcam = false;
this.reconnectList = [];
}
2017-09-01 23:26:57 +08:00
componentDidMount() {
const ws = this.ws;
const { users } = this.props;
for (let i = 0; i < users.length; i++) {
if (users[i].has_stream) {
this.start(users[i].userId, false, this.refs.videoInput);
}
}
2017-09-01 23:26:57 +08:00
document.addEventListener('joinVideo', this.shareWebcam.bind(this));// TODO find a better way to do this
document.addEventListener('exitVideo', this.unshareWebcam.bind(this));
2017-09-20 11:12:10 +08:00
window.addEventListener('resize', this.adjustVideos);
2017-09-01 23:26:57 +08:00
ws.addEventListener('message', this.onWsMessage.bind(this));
}
2017-09-01 23:26:57 +08:00
componentWillMount () {
this.ws.onopen = () => {
while (this.wsQueue.length > 0) {
this.sendMessage(this.wsQueue.pop());
}
};
}
2017-09-01 23:26:57 +08:00
componentWillUnmount () {
document.removeEventListener('joinVideo', this.shareWebcam);
document.removeEventListener('exitVideo', this.shareWebcam);
window.removeEventListener('resize', this.adjustVideos);
this.ws.removeEventListener('message', this.onWsMessage);
}
2017-09-01 23:26:57 +08:00
adjustVideos () {
window.adjustVideos('webcamArea', true);
}
2017-09-01 23:26:57 +08:00
onWsMessage (msg) {
const parsedMessage = JSON.parse(msg.data);
2017-09-01 23:26:57 +08:00
console.log('Received message new ws message: ');
console.log(parsedMessage);
2017-09-01 23:26:57 +08:00
switch (parsedMessage.id) {
2017-09-01 23:26:57 +08:00
case 'startResponse':
this.startResponse(parsedMessage);
break;
2017-09-01 23:26:57 +08:00
case 'error':
this.handleError(parsedMessage);
break;
case 'playStart':
this.handlePlayStart(parsedMessage);
break;
case 'playStop':
this.handlePlayStop(parsedMessage);
2017-09-01 23:26:57 +08:00
break;
case 'iceCandidate':
const webRtcPeer = this.webRtcPeers[parsedMessage.cameraId];
if (webRtcPeer !== null) {
if (webRtcPeer.didSDPAnswered) {
webRtcPeer.addIceCandidate(parsedMessage.candidate, (err) => {
if (err) {
return log('error', `Error adding candidate: ${err}`);
}
});
2017-09-01 23:26:57 +08:00
} else {
webRtcPeer.iceQueue.push(parsedMessage.candidate);
2017-09-01 23:26:57 +08:00
}
} else {
log('error', ' [ICE] Message arrived before webRtcPeer?');
}
break;
}
};
2017-09-01 23:26:57 +08:00
start(id, shareWebcam, videoInput) {
const that = this;
const ws = this.ws;
2017-09-01 23:26:57 +08:00
console.log(`Starting video call for video: ${id}`);
log('info', 'Creating WebRtcPeer and generating local sdp offer ...');
2017-09-01 23:26:57 +08:00
const onIceCandidate = function (candidate) {
const message = {
type: 'video',
2017-12-06 03:13:42 +08:00
role: shareWebcam ? 'share' : 'viewer',
2017-09-01 23:26:57 +08:00
id: 'onIceCandidate',
candidate,
cameraId: id,
};
that.sendMessage(message);
};
2017-11-29 03:31:36 +08:00
var videoConstraints = {};
if (!!navigator.userAgent.match(/Version\/[\d\.]+.*Safari/)) { // Custom constraints for Safari
videoConstraints = {
width: {min:320, max:640},
height: {min:240, max:480}
}
} else {
videoConstraints = {
width: {min: 320, ideal: 320},
height: {min: 240, ideal:240},
frameRate: {min: 5, ideal: 10}
};
}
2017-09-01 23:26:57 +08:00
const options = {
2017-12-06 03:13:42 +08:00
mediaConstraints: {
audio: false,
2017-11-29 03:31:36 +08:00
video: videoConstraints
},
2017-09-01 23:26:57 +08:00
onicecandidate: onIceCandidate,
};
let peerObj;
if (shareWebcam) {
options.localVideo = videoInput;
peerObj = kurentoUtils.WebRtcPeer.WebRtcPeerSendonly;
} else {
peerObj = kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly;
2017-12-06 03:13:42 +08:00
options.remoteVideo = this.createVideoTag(id);
2017-09-01 23:26:57 +08:00
document.getElementById('webcamArea').appendChild(options.remoteVideo);
}
var webRtcPeer = new peerObj(options, function (error) {
2017-09-01 23:26:57 +08:00
if (error) {
2017-12-06 03:13:42 +08:00
log('error', ' WebRTC peerObj create error');
that.destroyWebRTCPeer(id);
that.destroyVideoTag(id);
return log('error', error);
2017-09-01 23:26:57 +08:00
}
2017-11-29 03:31:36 +08:00
this.didSDPAnswered = false;
this.iceQueue = [];
that.webRtcPeers[id] = webRtcPeer;
if (shareWebcam) {
that.sharedWebcam = webRtcPeer;
that.myId = id;
}
2017-09-01 23:26:57 +08:00
this.generateOffer((error, offerSdp) => {
if (error) {
2017-12-06 03:13:42 +08:00
log('error', ' WebRtc generate offer error');
that.destroyWebRTCPeer(id);
that.destroyVideoTag(id);
return log('error', error);
2017-09-01 23:26:57 +08:00
}
console.log(`Invoking SDP offer callback function ${location.host}`);
2017-09-01 23:26:57 +08:00
const message = {
type: 'video',
2017-12-06 03:13:42 +08:00
role: shareWebcam ? 'share' : 'viewer',
2017-09-01 23:26:57 +08:00
id: 'start',
sdpOffer: offerSdp,
cameraId: id,
cameraShared: shareWebcam,
};
that.sendMessage(message);
});
2017-11-29 03:31:36 +08:00
while (this.iceQueue.length) {
var candidate = this.iceQueue.shift();
this.addIceCandidate(candidate, (err) => {
if (err) {
return console.error(`Error adding candidate: ${err}`);
}
2017-11-29 03:31:36 +08:00
});
}
this.didSDPAnswered = true;
2017-09-01 23:26:57 +08:00
});
}
disconnected(id) {
if (this.sharedWebcam) {
log('debug', ' [camera] Webcam disconnected, will try re-share webcam later.');
this.reconnectWebcam = true;
} else {
this.reconnectList.push(id);
2017-12-06 03:13:42 +08:00
log('debug', ` [camera] ${id} disconnected, will try re-subscribe later.`);
}
}
2017-09-01 23:26:57 +08:00
stop(id) {
const { users } = this.props;
if (id == users[0].userId) {
this.unshareWebcam();
}
2017-12-06 03:13:42 +08:00
this.destroyWebRTCPeer(id);
this.destroyVideoTag(id);
this.sendMessage({
type: 'video',
role: 'any',
id: 'stop',
cameraId: id,
});
window.adjustVideos('webcamArea', true);
}
createVideoTag(id) {
let remoteVideo = {};
remoteVideo = document.createElement('video');
remoteVideo.id = `video-elem-${id}`;
remoteVideo.width = 320;
remoteVideo.height = 240;
remoteVideo.autoplay = true;
remoteVideo.playsinline = true;
document.getElementById('webcamArea').appendChild(remoteVideo);
return remoteVideo;
}
destroyVideoTag(id) {
const videoTag = document.getElementById(`video-elem-${id}`);
if (videoTag) {
document.getElementById('webcamArea').removeChild(videoTag);
}
}
destroyWebRTCPeer(id) {
const webRtcPeer = this.webRtcPeers[id];
2017-09-01 23:26:57 +08:00
if (webRtcPeer) {
log('info', 'Stopping WebRTC peer');
2017-09-01 23:26:57 +08:00
if (id == this.myId && this.sharedWebcam) {
this.sharedWebcam.dispose();
this.sharedWebcam = null;
}
2017-09-01 23:26:57 +08:00
webRtcPeer.dispose();
delete this.webRtcPeers[id];
2017-09-01 23:26:57 +08:00
} else {
2017-12-06 03:13:42 +08:00
log('info', 'No WebRTC peer to stop (not an error)');
2017-09-01 23:26:57 +08:00
}
if (this.sharedWebcam) {
this.sharedWebcam.dispose();
this.sharedWebcam = null;
2017-12-06 03:13:42 +08:00
} else {
log('info', 'No shared camera WebRTC peer to stop (not an error)');
2017-09-01 23:26:57 +08:00
}
}
shareWebcam() {
const { users } = this.props;
2017-09-19 21:53:27 +08:00
const id = users[0].userId;
2017-09-01 23:26:57 +08:00
if (this.connectedToMediaServer()) {
this.start(id, true, this.refs.videoInput);
} else {
log("error", "Not connected to media server BRA");
}
2017-09-01 23:26:57 +08:00
}
unshareWebcam() {
2017-12-06 03:13:42 +08:00
log('info', 'Unsharing webcam');
2017-09-19 21:53:27 +08:00
const { users } = this.props;
const id = users[0].userId;
this.sendUserUnshareWebcam(id);
2017-09-01 23:26:57 +08:00
}
startResponse(message) {
const id = message.cameraId;
const webRtcPeer = this.webRtcPeers[id];
2017-09-01 23:26:57 +08:00
if (message.sdpAnswer == null) {
return log('debug', 'Null sdp answer. Camera unplugged?');
2017-09-01 23:26:57 +08:00
}
if (webRtcPeer == null) {
return log('debug', 'Null webrtc peer ????');
2017-09-01 23:26:57 +08:00
}
log('info', 'SDP answer received from server. Processing ...');
2017-09-01 23:26:57 +08:00
webRtcPeer.processAnswer(message.sdpAnswer, (error) => {
if (error) {
2017-12-06 03:13:42 +08:00
return log('error', error);
2017-09-01 23:26:57 +08:00
}
});
2017-09-19 21:53:27 +08:00
this.sendUserShareWebcam(id);
2017-09-01 23:26:57 +08:00
}
sendMessage(message) {
const ws = this.ws;
2017-09-01 23:26:57 +08:00
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
2017-12-06 03:13:42 +08:00
if (message.id != 'stop') {
this.wsQueue.push(message);
}
}
2017-09-01 23:26:57 +08:00
}
connectedToMediaServer() {
return this.ws.readyState === WebSocket.OPEN;
}
connectionStatus() {
return this.ws.readyState;
}
2017-09-01 23:26:57 +08:00
handlePlayStop(message) {
log('info', 'Handle play stop <--------------------');
log('error', message);
2017-09-01 23:26:57 +08:00
this.stop(message.cameraId);
}
handlePlayStart(message) {
log('info', 'Handle play start <===================');
2017-09-01 23:26:57 +08:00
window.adjustVideos('webcamArea', true);
2017-09-01 23:26:57 +08:00
}
handleError(message) {
2017-12-06 03:13:42 +08:00
console.error(' Handle error --------------------->');
log('debug', message.message);
2017-09-01 23:26:57 +08:00
}
render() {
return (
2017-09-01 23:26:57 +08:00
<div className={styles.videoDock}>
2017-09-01 23:26:57 +08:00
<div id="webcamArea" />
<video id="shareWebcamVideo" className={styles.sharedWebcamVideo} ref="videoInput" />
</div>
);
}
2017-09-01 23:26:57 +08:00
componentWillUnmount() {
// Close websocket connection to prevent multiple reconnects from happening
this.ws.close();
this.ws.removeEventListener('message', () => {});
}
2017-09-01 23:26:57 +08:00
shouldComponentUpdate(nextProps, nextState) {
const { users } = this.props;
const nextUsers = nextProps.users;
if (users) {
let suc = false;
for (let i = 0; i < users.length; i++) {
2017-09-19 21:53:27 +08:00
if (users && users[i] &&
nextUsers && nextUsers[i]) {
if (users[i].has_stream !== nextUsers[i].has_stream) {
console.log(`User ${nextUsers[i].has_stream ? '' : 'un'}shared webcam ${users[i].userId}`);
2017-09-01 23:26:57 +08:00
2017-09-19 21:53:27 +08:00
if (nextUsers[i].has_stream) {
this.start(users[i].userId, false, this.refs.videoInput);
2017-09-01 23:26:57 +08:00
} else {
2017-09-19 21:53:27 +08:00
this.stop(users[i].userId);
2017-09-01 23:26:57 +08:00
}
if (!nextUsers[i].has_stream) {
console.log(" DESTROYING ----------------------- " + users[i].userId);
this.destroyVideoTag(users[i].userId);
}
2017-09-01 23:26:57 +08:00
suc = suc || true;
}
}
}
return true;
}
return false;
}
}