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

354 lines
8.9 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';
window.addEventListener('resize', () => {
window.adjustVideos('webcamArea', true);
});
2017-10-11 06:08:51 +08:00
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);
this.state = {
videos: {}
};
2017-09-01 23:26:57 +08:00
this.state = {
// Set a valid kurento application server socket in the settings
ws: new ReconnectingWebSocket(Meteor.settings.public.kurento.wsUrl),
webRtcPeers: {},
wsQueue: [],
2017-09-01 23:26:57 +08:00
};
this.state.ws.onopen = () => {
while (this.state.wsQueue.length > 0) {
this.sendMessage(this.state.wsQueue.pop());
}
};
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);
}
componentDidMount() {
2017-09-20 11:12:10 +08:00
const that = this;
2017-09-01 23:26:57 +08:00
const ws = this.state.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', () => { that.shareWebcam(); });// TODO find a better way to do this
document.addEventListener('exitVideo', () => { that.unshareWebcam(); });
2017-09-20 11:12:10 +08:00
2017-09-01 23:26:57 +08:00
ws.addEventListener('message', (msg) => {
const parsedMessage = JSON.parse(msg.data);
console.log('Received message new ws message: ');
console.log(parsedMessage);
2017-09-01 23:26:57 +08:00
switch (parsedMessage.id) {
case 'startResponse':
this.startResponse(parsedMessage);
break;
case 'error':
this.handleError(parsedMessage);
break;
case 'playStart':
this.handlePlayStart(parsedMessage);
break;
case 'playStop':
this.handlePlayStop(parsedMessage);
break;
case 'iceCandidate':
const webRtcPeer = this.state.webRtcPeers[parsedMessage.cameraId];
if (webRtcPeer !== null) {
2017-11-29 03:31:36 +08:00
if (webRtcPeer.didSDPAnswered) {
webRtcPeer.addIceCandidate(parsedMessage.candidate, (err) => {
if (err) {
return log('error', `Error adding candidate: ${err}`);
}
});
} else {
webRtcPeer.iceQueue.push(parsedMessage.candidate);
}
2017-09-01 23:26:57 +08:00
} else {
log('error', ' [ICE] Message arrived before webRtcPeer?');
2017-09-01 23:26:57 +08:00
}
break;
}
});
}
start(id, shareWebcam, videoInput) {
const that = this;
const ws = this.state.ws;
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',
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 = {
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;
options.remoteVideo = document.createElement('video');
options.remoteVideo.id = `video-elem-${id}`;
options.remoteVideo.width = 120;
options.remoteVideo.height = 90;
options.remoteVideo.autoplay = true;
options.remoteVideo.playsinline = true;
2017-11-29 03:31:36 +08:00
options.remoteVideo.muted = true;
2017-09-01 23:26:57 +08:00
document.getElementById('webcamArea').appendChild(options.remoteVideo);
}
this.state.webRtcPeers[id] = new peerObj(options, function (error) {
2017-09-01 23:26:57 +08:00
if (error) {
log('error', ' [ERROR] Webrtc error');
log('error', error);
2017-09-01 23:26:57 +08:00
return;
}
2017-11-29 03:31:36 +08:00
this.didSDPAnswered = false;
this.iceQueue = [];
if (shareWebcam) {
that.state.sharedWebcam = that.state.webRtcPeers[id];
that.state.myId = id;
}
2017-09-01 23:26:57 +08:00
this.generateOffer((error, offerSdp) => {
if (error) {
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',
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}`);
}
});
}
this.didSDPAnswered = true;
2017-09-01 23:26:57 +08:00
});
}
stop(id) {
const { users } = this.props;
if (id == users[0].userId) {
this.unshareWebcam();
}
2017-09-01 23:26:57 +08:00
const webRtcPeer = this.state.webRtcPeers[id];
if (webRtcPeer) {
log('info', 'Stopping WebRTC peer');
2017-09-01 23:26:57 +08:00
if (id == this.state.myId) {
this.state.sharedWebcam.dispose();
this.state.sharedWebcam = null;
}
2017-09-01 23:26:57 +08:00
webRtcPeer.dispose();
delete this.state.webRtcPeers[id];
} else {
log('info', 'NO WEBRTC PEER TO STOP?');
2017-09-01 23:26:57 +08:00
}
const videoTag = document.getElementById(`video-elem-${id}`);
if (videoTag) {
document.getElementById('webcamArea').removeChild(videoTag);
}
this.sendMessage({
type: 'video',
role: 'any',
id: 'stop',
cameraId: id });
window.adjustVideos('webcamArea', true);
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
this.start(id, true, this.refs.videoInput);
}
unshareWebcam() {
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.state.webRtcPeers[id];
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) {
return log(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.state.ws;
if (ws.readyState == WebSocket.OPEN) {
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 {
this.state.wsQueue.push(message);
}
2017-09-01 23:26:57 +08:00
}
handlePlayStop(message) {
log('info', 'Handle play stop <--------------------');
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) {
console.error(` Handle error ---------------------> ${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
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
}
suc = suc || true;
}
}
}
return true;
}
return false;
}
}