2018-02-17 03:18:53 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import { log } from '/imports/ui/services/api';
|
|
|
|
import { notify } from '/imports/ui/services/notification';
|
2018-05-03 01:53:53 +08:00
|
|
|
import VisibilityEvent from '/imports/utils/visibilityEvent';
|
2018-02-19 12:23:05 +08:00
|
|
|
import VideoService from './service';
|
2018-04-12 02:50:14 +08:00
|
|
|
import VideoList from './video-list/component';
|
2018-07-10 05:29:27 +08:00
|
|
|
import { fetchWebRTCMappedStunTurnServers } from '/imports/utils/fetchStunTurnServers';
|
2018-02-17 03:18:53 +08:00
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
iceCandidateError: {
|
|
|
|
id: 'app.video.iceCandidateError',
|
|
|
|
description: 'Error message for ice candidate fail',
|
|
|
|
},
|
|
|
|
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-03-20 01:52:39 +08:00
|
|
|
},
|
2018-05-17 02:15:46 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const intlMediaErrorsMessages = defineMessages({
|
|
|
|
permissionError: {
|
|
|
|
id: 'app.video.permissionError',
|
|
|
|
description: 'Error message for webcam permission',
|
|
|
|
},
|
2018-05-17 00:53:06 +08:00
|
|
|
NotFoundError: {
|
|
|
|
id: 'app.video.notFoundError',
|
|
|
|
description: 'error message when can not get webcam video',
|
|
|
|
},
|
|
|
|
NotAllowedError: {
|
|
|
|
id: 'app.video.notAllowed',
|
|
|
|
description: 'error message when webcam had permission denied',
|
|
|
|
},
|
|
|
|
NotSupportedError: {
|
|
|
|
id: 'app.video.notSupportedError',
|
|
|
|
description: 'error message when origin do not have ssl valid',
|
|
|
|
},
|
2018-05-17 02:15:46 +08:00
|
|
|
NotReadableError: {
|
|
|
|
id: 'app.video.notReadableError',
|
2018-05-17 21:23:18 +08:00
|
|
|
description: 'error message When the webcam is being used by other software',
|
|
|
|
},
|
|
|
|
1000: {
|
|
|
|
id: 'app.video.mediaServerOffline',
|
|
|
|
description: 'error message when kurento is offline',
|
2018-05-17 02:15:46 +08:00
|
|
|
},
|
2018-02-17 03:18:53 +08:00
|
|
|
});
|
|
|
|
|
2018-05-23 04:44:30 +08:00
|
|
|
const CAMERA_SHARE_FAILED_WAIT_TIME = 15000;
|
|
|
|
const MAX_CAMERA_SHARE_FAILED_WAIT_TIME = 60000;
|
2018-05-03 21:57:03 +08:00
|
|
|
const PING_INTERVAL = 15000;
|
2018-02-17 03:18:53 +08:00
|
|
|
|
|
|
|
class VideoProvider extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2018-03-20 01:52:39 +08:00
|
|
|
socketOpen: false,
|
2018-05-03 03:03:36 +08:00
|
|
|
stats: [],
|
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 = [];
|
|
|
|
|
2018-05-03 01:53:53 +08:00
|
|
|
this.visibility = new VisibilityEvent();
|
|
|
|
|
2018-05-23 04:44:30 +08:00
|
|
|
this.restartTimeout = {};
|
|
|
|
this.restartTimer = {};
|
2018-02-17 03:18:53 +08:00
|
|
|
this.webRtcPeers = {};
|
2018-04-28 04:53:02 +08:00
|
|
|
this.monitoredTracks = {};
|
2018-07-10 05:29:27 +08:00
|
|
|
this.videoTags = {};
|
|
|
|
this.sharedWebcam = false;
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-04-14 03:16:06 +08:00
|
|
|
this.openWs = this.ws.open.bind(this.ws);
|
2018-02-17 03:18:53 +08:00
|
|
|
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);
|
2018-05-03 01:53:53 +08:00
|
|
|
|
|
|
|
this.pauseViewers = this.pauseViewers.bind(this);
|
|
|
|
this.unpauseViewers = this.unpauseViewers.bind(this);
|
2018-05-26 03:24:41 +08:00
|
|
|
|
|
|
|
this.customGetStats = this.customGetStats.bind(this);
|
2018-05-03 01:53:53 +08:00
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
_sendPauseStream(id, role, state) {
|
2018-05-05 04:58:35 +08:00
|
|
|
this.sendMessage({
|
|
|
|
cameraId: id,
|
|
|
|
id: 'pause',
|
|
|
|
type: 'video',
|
|
|
|
role,
|
|
|
|
state,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
pauseViewers() {
|
|
|
|
log('debug', 'Calling pause in viewer streams');
|
2018-05-03 01:53:53 +08:00
|
|
|
|
|
|
|
Object.keys(this.webRtcPeers).forEach((id) => {
|
2018-05-23 01:03:08 +08:00
|
|
|
if (this.props.userId !== id && this.webRtcPeers[id].started) {
|
2018-05-05 04:58:35 +08:00
|
|
|
this._sendPauseStream(id, 'viewer', true);
|
2018-05-03 01:53:53 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
unpauseViewers() {
|
|
|
|
log('debug', 'Calling un-pause in viewer streams');
|
2018-05-03 01:53:53 +08:00
|
|
|
|
|
|
|
Object.keys(this.webRtcPeers).forEach((id) => {
|
2018-05-23 01:03:08 +08:00
|
|
|
if (id !== this.props.userId && this.webRtcPeers[id].started) {
|
2018-05-05 04:58:35 +08:00
|
|
|
this._sendPauseStream(id, 'viewer', false);
|
2018-05-03 01:53:53 +08:00
|
|
|
}
|
|
|
|
});
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillMount() {
|
|
|
|
this.ws.addEventListener('open', this.onWsOpen);
|
|
|
|
this.ws.addEventListener('close', this.onWsClose);
|
|
|
|
|
2018-04-14 03:16:06 +08:00
|
|
|
window.addEventListener('online', this.openWs);
|
2018-02-17 03:18:53 +08:00
|
|
|
window.addEventListener('offline', this.onWsClose);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2018-04-14 03:16:06 +08:00
|
|
|
document.addEventListener('joinVideo', this.shareWebcam); // TODO find a better way to do this
|
|
|
|
document.addEventListener('exitVideo', this.unshareWebcam);
|
2018-02-17 03:18:53 +08:00
|
|
|
this.ws.addEventListener('message', this.onWsMessage);
|
2018-05-03 01:53:53 +08:00
|
|
|
|
|
|
|
this.visibility.onVisible(this.unpauseViewers);
|
|
|
|
this.visibility.onHidden(this.pauseViewers);
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-04-12 02:50:14 +08:00
|
|
|
componentWillUpdate({ users, userId }) {
|
|
|
|
const usersSharingIds = users.map(u => u.id);
|
|
|
|
const usersConnected = Object.keys(this.webRtcPeers);
|
|
|
|
|
|
|
|
const usersToConnect = usersSharingIds.filter(id => !usersConnected.includes(id));
|
|
|
|
const usersToDisconnect = usersConnected.filter(id => !usersSharingIds.includes(id));
|
|
|
|
|
|
|
|
usersToConnect.forEach(id => this.createWebRTCPeer(id, userId === id));
|
2018-04-19 02:16:26 +08:00
|
|
|
usersToDisconnect.forEach(id => this.stopWebRTCPeer(id));
|
2018-04-12 02:50:14 +08:00
|
|
|
}
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
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);
|
|
|
|
|
2018-04-14 03:16:06 +08:00
|
|
|
window.removeEventListener('online', this.openWs);
|
2018-02-17 03:18:53 +08:00
|
|
|
window.removeEventListener('offline', this.onWsClose);
|
|
|
|
|
2018-05-03 01:53:53 +08:00
|
|
|
this.visibility.removeEventListeners();
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
// Unshare user webcam
|
2018-07-10 05:29:27 +08:00
|
|
|
if (this.sharedWebcam) {
|
2018-02-17 03:18:53 +08:00
|
|
|
this.unshareWebcam();
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.keys(this.webRtcPeers).forEach((id) => {
|
2018-04-27 07:35:05 +08:00
|
|
|
this.stopGettingStats(id);
|
2018-04-19 02:16:26 +08:00
|
|
|
this.stopWebRTCPeer(id);
|
2018-02-17 03:18:53 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// Close websocket connection to prevent multiple reconnects from happening
|
2018-06-15 03:20:14 +08:00
|
|
|
// Don't disconnect socket on unmount to prevent multiple reconnects
|
2018-04-26 23:39:24 +08:00
|
|
|
this.ws.close();
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2018-05-03 21:57:03 +08:00
|
|
|
this.pingInterval = setInterval(this.ping.bind(this), PING_INTERVAL);
|
|
|
|
|
2018-03-20 01:52:39 +08:00
|
|
|
this.setState({ socketOpen: true });
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
onWsClose(error) {
|
|
|
|
log('debug', '------ Websocket connection closed.');
|
|
|
|
|
2018-04-19 02:16:26 +08:00
|
|
|
this.stopWebRTCPeer(this.props.userId);
|
2018-05-03 21:57:03 +08:00
|
|
|
clearInterval(this.pingInterval);
|
2018-03-20 01:52:39 +08:00
|
|
|
|
|
|
|
this.setState({ socketOpen: false });
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-05-03 21:57:03 +08:00
|
|
|
ping() {
|
|
|
|
const message = {
|
2018-06-15 03:20:14 +08:00
|
|
|
id: 'ping',
|
2018-05-03 21:57:03 +08:00
|
|
|
};
|
|
|
|
this.sendMessage(message);
|
|
|
|
}
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
onWsMessage(msg) {
|
|
|
|
const parsedMessage = JSON.parse(msg.data);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2018-05-03 21:57:03 +08:00
|
|
|
case 'pong':
|
2018-06-15 03:20:14 +08:00
|
|
|
console.debug('Received pong from server');
|
2018-05-03 21:57:03 +08:00
|
|
|
break;
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
case 'error':
|
|
|
|
default:
|
|
|
|
this.handleError(parsedMessage);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendMessage(message) {
|
2018-06-15 03:20:14 +08:00
|
|
|
const { ws } = this;
|
2018-02-17 03:18:53 +08:00
|
|
|
|
|
|
|
if (this.connectedToMediaServer()) {
|
|
|
|
const jsonMessage = JSON.stringify(message);
|
2018-05-23 01:07:15 +08:00
|
|
|
log('info', `Sending message: ${jsonMessage}`);
|
2018-02-17 03:18:53 +08:00
|
|
|
ws.send(jsonMessage, (error) => {
|
|
|
|
if (error) {
|
|
|
|
console.error(`client: Websocket error "${error}" on message "${jsonMessage.id}"`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// No need to queue video stop messages
|
2018-06-15 03:20:14 +08:00
|
|
|
if (message.id !== 'stop') {
|
2018-02-17 03:18:53 +08:00
|
|
|
this.wsQueue.push(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
connectedToMediaServer() {
|
|
|
|
return this.ws.readyState === WebSocket.OPEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
startResponse(message) {
|
|
|
|
const id = message.cameraId;
|
2018-05-23 01:07:15 +08:00
|
|
|
const peer = this.webRtcPeers[id];
|
2018-02-17 03:18:53 +08:00
|
|
|
|
|
|
|
log('info', 'SDP answer received from server. Processing ...');
|
|
|
|
|
2018-05-23 01:07:15 +08:00
|
|
|
peer.processAnswer(message.sdpAnswer, (error) => {
|
2018-02-17 03:18:53 +08:00
|
|
|
if (error) {
|
2018-06-15 03:01:49 +08:00
|
|
|
return log('error', JSON.stringify(error));
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleIceCandidate(message) {
|
|
|
|
const webRtcPeer = this.webRtcPeers[message.cameraId];
|
|
|
|
|
|
|
|
if (webRtcPeer) {
|
|
|
|
if (webRtcPeer.didSDPAnswered) {
|
|
|
|
webRtcPeer.addIceCandidate(message.candidate, (err) => {
|
|
|
|
if (err) {
|
|
|
|
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...');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:16:26 +08:00
|
|
|
stopWebRTCPeer(id) {
|
|
|
|
log('info', 'Stopping webcam', id);
|
2018-06-15 03:20:14 +08:00
|
|
|
const { userId } = this.props;
|
2018-04-19 02:16:26 +08:00
|
|
|
const shareWebcam = id === userId;
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-04-12 02:50:14 +08:00
|
|
|
if (shareWebcam) {
|
|
|
|
this.unshareWebcam();
|
|
|
|
}
|
|
|
|
|
2018-04-14 03:16:06 +08:00
|
|
|
this.sendMessage({
|
|
|
|
type: 'video',
|
2018-04-19 02:16:26 +08:00
|
|
|
role: shareWebcam ? 'share' : 'viewer',
|
2018-04-14 03:16:06 +08:00
|
|
|
id: 'stop',
|
|
|
|
cameraId: id,
|
|
|
|
});
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
// Clear the shared camera fail timeout when destroying
|
2018-05-23 04:44:30 +08:00
|
|
|
clearTimeout(this.restartTimeout[id]);
|
|
|
|
delete this.restartTimeout[id];
|
|
|
|
|
2018-04-19 02:16:26 +08:00
|
|
|
this.destroyWebRTCPeer(id);
|
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-04-19 02:16:26 +08:00
|
|
|
destroyWebRTCPeer(id) {
|
|
|
|
const webRtcPeer = this.webRtcPeers[id];
|
2018-02-17 03:18:53 +08:00
|
|
|
if (webRtcPeer) {
|
|
|
|
log('info', 'Stopping WebRTC peer');
|
|
|
|
webRtcPeer.dispose();
|
|
|
|
delete this.webRtcPeers[id];
|
|
|
|
} else {
|
|
|
|
log('info', 'No WebRTC peer to stop (not an error)');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
async createWebRTCPeer(id, shareWebcam) {
|
|
|
|
const { meetingId, sessionToken } = this.props;
|
|
|
|
let iceServers = [];
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
try {
|
|
|
|
iceServers = await fetchWebRTCMappedStunTurnServers(sessionToken);
|
|
|
|
} catch (error) {
|
|
|
|
log('error', 'Video provider failed to fetch ice servers, using default');
|
|
|
|
} finally {
|
|
|
|
const videoConstraints = {
|
|
|
|
width: {
|
|
|
|
min: 320,
|
|
|
|
max: 640,
|
|
|
|
},
|
|
|
|
height: {
|
|
|
|
min: 180,
|
|
|
|
max: 480,
|
|
|
|
},
|
|
|
|
};
|
2018-04-09 22:39:27 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
if (!navigator.userAgent.match(/Version\/[\d\.]+.*Safari/)) {
|
|
|
|
videoConstraints.frameRate = { min: 5, ideal: 10 };
|
|
|
|
}
|
2018-04-09 22:39:27 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
const options = {
|
|
|
|
mediaConstraints: {
|
|
|
|
audio: false,
|
|
|
|
video: videoConstraints,
|
|
|
|
},
|
|
|
|
onicecandidate: this._getOnIceCandidateCallback(id, shareWebcam),
|
|
|
|
};
|
2018-02-17 05:11:59 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
if (iceServers.length > 0) {
|
|
|
|
options.configuration = {};
|
|
|
|
options.configuration.iceServers = iceServers;
|
|
|
|
}
|
2018-04-12 02:50:14 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
let WebRtcPeerObj = window.kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly;
|
2018-02-17 05:11:59 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
if (shareWebcam) {
|
|
|
|
WebRtcPeerObj = window.kurentoUtils.WebRtcPeer.WebRtcPeerSendonly;
|
|
|
|
this.shareWebcam();
|
|
|
|
}
|
2018-05-23 04:44:30 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
this.webRtcPeers[id] = new WebRtcPeerObj(options, (error) => {
|
|
|
|
const peer = this.webRtcPeers[id];
|
2018-04-14 03:16:06 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
peer.started = false;
|
|
|
|
peer.attached = false;
|
|
|
|
peer.didSDPAnswered = false;
|
|
|
|
peer.iceQueue = [];
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
if (error) {
|
|
|
|
return this._webRTCOnError(error, id, shareWebcam);
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
peer.generateOffer((errorGenOffer, offerSdp) => {
|
|
|
|
if (errorGenOffer) {
|
|
|
|
return this._webRTCOnError(errorGenOffer, id, shareWebcam);
|
|
|
|
}
|
|
|
|
|
|
|
|
log('error', `Invoking SDP offer callback function ${location.host}`);
|
2018-04-05 00:15:20 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
const message = {
|
|
|
|
type: 'video',
|
|
|
|
role: shareWebcam ? 'share' : 'viewer',
|
|
|
|
id: 'start',
|
|
|
|
sdpOffer: offerSdp,
|
|
|
|
cameraId: id,
|
|
|
|
meetingId,
|
|
|
|
};
|
|
|
|
this.sendMessage(message);
|
2018-05-23 04:44:30 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
this._processIceQueue(peer);
|
2018-05-23 04:44:30 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
peer.didSDPAnswered = true;
|
|
|
|
});
|
2018-02-17 03:18:53 +08:00
|
|
|
});
|
2018-07-10 05:29:27 +08:00
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
_getWebRTCStartTimeout(id, shareWebcam, peer) {
|
2018-05-23 04:44:30 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
log('error', `Camera share has not suceeded in ${CAMERA_SHARE_FAILED_WAIT_TIME} for ${id}`);
|
|
|
|
|
|
|
|
if (this.props.userId === id) {
|
|
|
|
this.notifyError(intl.formatMessage(intlMessages.sharingError));
|
|
|
|
this.unshareWebcam();
|
|
|
|
this.destroyWebRTCPeer(id);
|
|
|
|
} else {
|
|
|
|
const tag = this.webRtcPeers[id].videoTag;
|
|
|
|
|
|
|
|
this.stopWebRTCPeer(id);
|
|
|
|
this.createWebRTCPeer(id, shareWebcam);
|
|
|
|
|
|
|
|
// We reattach the peer for a real video restart
|
2018-07-10 05:29:27 +08:00
|
|
|
this.attachVideoStream(id);
|
2018-05-23 04:44:30 +08:00
|
|
|
|
|
|
|
// Increment reconnect interval
|
2018-06-15 03:20:14 +08:00
|
|
|
this.restartTimer[id] = Math.min(2 * this.restartTimer[id], MAX_CAMERA_SHARE_FAILED_WAIT_TIME);
|
2018-05-23 04:44:30 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
_processIceQueue(peer) {
|
2018-05-23 04:44:30 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
while (peer.iceQueue.length) {
|
|
|
|
const candidate = peer.iceQueue.shift();
|
|
|
|
peer.addIceCandidate(candidate, (err) => {
|
|
|
|
if (err) {
|
|
|
|
this.notifyError(intl.formatMessage(intlMessages.iceCandidateError));
|
|
|
|
return console.log(`Error adding candidate: ${err}`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
_webRTCOnError(error, id, shareWebcam) {
|
2018-05-23 04:44:30 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
log('error', ' WebRTC peerObj create error');
|
2018-06-15 03:01:49 +08:00
|
|
|
log('error', JSON.stringify(error));
|
2018-05-23 04:44:30 +08:00
|
|
|
const errorMessage = intlMediaErrorsMessages[error.name]
|
|
|
|
|| intlMediaErrorsMessages.permissionError;
|
|
|
|
this.notifyError(intl.formatMessage(errorMessage));
|
|
|
|
/* 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. */
|
|
|
|
|
|
|
|
this.stopWebRTCPeer(id);
|
|
|
|
|
2018-06-15 03:01:49 +08:00
|
|
|
return log('error', JSON.stringify(errorMessage));
|
2018-05-23 04:44:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_getOnIceCandidateCallback(id, shareWebcam) {
|
|
|
|
const peer = this.webRtcPeers[id];
|
|
|
|
|
|
|
|
return (candidate) => {
|
|
|
|
// Setup a timeout only when ice first is generated
|
|
|
|
if (!this.restartTimeout[id]) {
|
|
|
|
this.restartTimer[id] = this.restartTimer[id] || CAMERA_SHARE_FAILED_WAIT_TIME;
|
|
|
|
|
|
|
|
log('info', `Setting a camera connection restart in ${this.restartTimer[id]}`);
|
|
|
|
this.restartTimeout[id] = setTimeout(this._getWebRTCStartTimeout(id, shareWebcam, peer), this.restartTimer[id]);
|
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
|
|
|
|
const message = {
|
|
|
|
type: 'video',
|
|
|
|
role: shareWebcam ? 'share' : 'viewer',
|
|
|
|
id: 'onIceCandidate',
|
|
|
|
candidate,
|
|
|
|
cameraId: id,
|
|
|
|
};
|
2018-05-23 04:44:30 +08:00
|
|
|
this.sendMessage(message);
|
2018-03-20 01:52:39 +08:00
|
|
|
};
|
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
attachVideoStream(id) {
|
|
|
|
const video = this.videoTags[id];
|
|
|
|
if (video == null) {
|
|
|
|
log('warn', 'Peer', id, 'has not been started yet');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video.srcObject) {
|
|
|
|
delete this.videoTags[id];
|
|
|
|
return; // Skip if the stream is already attached
|
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-04-12 02:50:14 +08:00
|
|
|
const isCurrent = id === this.props.userId;
|
|
|
|
const peer = this.webRtcPeers[id];
|
2018-03-20 01:52:39 +08:00
|
|
|
|
2018-05-30 02:54:01 +08:00
|
|
|
const attachVideoStreamHelper = () => {
|
2018-04-12 02:50:14 +08:00
|
|
|
const stream = isCurrent ? peer.getLocalStream() : peer.getRemoteStream();
|
|
|
|
video.pause();
|
|
|
|
video.srcObject = stream;
|
|
|
|
video.load();
|
2018-05-23 04:55:24 +08:00
|
|
|
|
|
|
|
peer.attached = true;
|
2018-07-10 05:29:27 +08:00
|
|
|
delete this.videoTags[id];
|
2018-04-12 02:50:14 +08:00
|
|
|
};
|
|
|
|
|
2018-05-23 04:55:24 +08:00
|
|
|
|
|
|
|
// If peer has started playing attach to tag, otherwise wait a while
|
2018-04-19 02:16:26 +08:00
|
|
|
if (peer) {
|
2018-05-23 04:55:24 +08:00
|
|
|
if (peer.started) {
|
2018-05-30 02:54:01 +08:00
|
|
|
attachVideoStreamHelper();
|
2018-04-19 02:16:26 +08:00
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-05-23 04:55:24 +08:00
|
|
|
// So we can start it later when we get a playStart
|
|
|
|
// or if we need to do a restart timeout
|
|
|
|
peer.videoTag = video;
|
2018-04-19 02:16:26 +08:00
|
|
|
}
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-07-10 05:29:27 +08:00
|
|
|
createVideoTag(id, video) {
|
|
|
|
const peer = this.webRtcPeers[id];
|
|
|
|
this.videoTags[id] = video;
|
|
|
|
|
|
|
|
if (peer) {
|
|
|
|
this.attachVideoStream(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-28 04:53:02 +08:00
|
|
|
customGetStats(peer, mediaStreamTrack, callback, interval) {
|
2018-05-03 03:03:36 +08:00
|
|
|
const statsState = this.state.stats;
|
|
|
|
let promise;
|
2018-04-28 04:53:02 +08:00
|
|
|
try {
|
|
|
|
promise = peer.getStats(mediaStreamTrack);
|
|
|
|
} catch (e) {
|
|
|
|
promise = Promise.reject(e);
|
|
|
|
}
|
2018-05-26 03:24:41 +08:00
|
|
|
promise.then((results) => {
|
2018-05-03 03:03:36 +08:00
|
|
|
let videoInOrOutbound = {};
|
2018-06-15 03:20:14 +08:00
|
|
|
results.forEach((res) => {
|
|
|
|
if (res.type === 'ssrc' || res.type === 'inbound-rtp' || res.type === 'outbound-rtp') {
|
2018-05-03 02:42:36 +08:00
|
|
|
res.packetsSent = parseInt(res.packetsSent);
|
|
|
|
res.packetsLost = parseInt(res.packetsLost) || 0;
|
|
|
|
res.packetsReceived = parseInt(res.packetsReceived);
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
if ((isNaN(res.packetsSent) && res.packetsReceived === 0)
|
|
|
|
|| (res.type === 'outbound-rtp' && res.isRemote)) {
|
2018-05-03 02:42:36 +08:00
|
|
|
return; // Discard local video receiving
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res.googFrameWidthReceived) {
|
|
|
|
res.width = parseInt(res.googFrameWidthReceived);
|
|
|
|
res.height = parseInt(res.googFrameHeightReceived);
|
|
|
|
} else if (res.googFrameWidthSent) {
|
|
|
|
res.width = parseInt(res.googFrameWidthSent);
|
|
|
|
res.height = parseInt(res.googFrameHeightSent);
|
2018-04-28 04:53:02 +08:00
|
|
|
}
|
2018-05-03 02:42:36 +08:00
|
|
|
|
|
|
|
// Extra fields available on Chrome
|
|
|
|
if (res.googCodecName) res.codec = res.googCodecName;
|
|
|
|
if (res.googDecodeMs) res.decodeDelay = res.googDecodeMs;
|
|
|
|
if (res.googEncodeUsagePercent) res.encodeUsagePercent = res.googEncodeUsagePercent;
|
|
|
|
if (res.googRtt) res.rtt = res.googRtt;
|
|
|
|
if (res.googCurrentDelayMs) res.currentDelay = res.googCurrentDelayMs;
|
|
|
|
|
|
|
|
videoInOrOutbound = res;
|
2018-04-28 04:53:02 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-05-03 03:03:36 +08:00
|
|
|
const videoStats = {
|
2018-04-28 04:53:02 +08:00
|
|
|
timestamp: videoInOrOutbound.timestamp,
|
|
|
|
bytesReceived: videoInOrOutbound.bytesReceived,
|
|
|
|
bytesSent: videoInOrOutbound.bytesSent,
|
|
|
|
packetsReceived: videoInOrOutbound.packetsReceived,
|
|
|
|
packetsLost: videoInOrOutbound.packetsLost,
|
|
|
|
packetsSent: videoInOrOutbound.packetsSent,
|
|
|
|
decodeDelay: videoInOrOutbound.decodeDelay,
|
|
|
|
codec: videoInOrOutbound.codec,
|
|
|
|
height: videoInOrOutbound.height,
|
|
|
|
width: videoInOrOutbound.width,
|
|
|
|
encodeUsagePercent: videoInOrOutbound.encodeUsagePercent,
|
|
|
|
rtt: videoInOrOutbound.rtt,
|
|
|
|
currentDelay: videoInOrOutbound.currentDelay,
|
|
|
|
};
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
const videoStatsArray = statsState;
|
2018-04-28 04:53:02 +08:00
|
|
|
videoStatsArray.push(videoStats);
|
2018-06-15 03:20:14 +08:00
|
|
|
while (videoStatsArray.length > 5) { // maximum interval to consider
|
2018-04-28 04:53:02 +08:00
|
|
|
videoStatsArray.shift();
|
|
|
|
}
|
2018-05-26 03:24:41 +08:00
|
|
|
this.setState({ stats: videoStatsArray });
|
2018-04-28 04:53:02 +08:00
|
|
|
|
2018-05-03 03:03:36 +08:00
|
|
|
const firstVideoStats = videoStatsArray[0];
|
|
|
|
const lastVideoStats = videoStatsArray[videoStatsArray.length - 1];
|
2018-04-28 04:53:02 +08:00
|
|
|
|
2018-05-03 03:03:36 +08:00
|
|
|
const videoIntervalPacketsLost = lastVideoStats.packetsLost - firstVideoStats.packetsLost;
|
|
|
|
const videoIntervalPacketsReceived = lastVideoStats.packetsReceived - firstVideoStats.packetsReceived;
|
|
|
|
const videoIntervalPacketsSent = lastVideoStats.packetsSent - firstVideoStats.packetsSent;
|
|
|
|
const videoIntervalBytesReceived = lastVideoStats.bytesReceived - firstVideoStats.bytesReceived;
|
|
|
|
const videoIntervalBytesSent = lastVideoStats.bytesSent - firstVideoStats.bytesSent;
|
2018-04-28 04:53:02 +08:00
|
|
|
|
2018-05-03 03:03:36 +08:00
|
|
|
const videoReceivedInterval = lastVideoStats.timestamp - firstVideoStats.timestamp;
|
|
|
|
const videoSentInterval = lastVideoStats.timestamp - firstVideoStats.timestamp;
|
2018-04-28 04:53:02 +08:00
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
const videoKbitsReceivedPerSecond = (videoIntervalBytesReceived * 8) / videoReceivedInterval;
|
|
|
|
const videoKbitsSentPerSecond = (videoIntervalBytesSent * 8) / videoSentInterval;
|
|
|
|
const videoPacketDuration = (videoIntervalPacketsSent / videoSentInterval) * 1000;
|
2018-04-28 04:53:02 +08:00
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
let videoLostPercentage,
|
|
|
|
videoLostRecentPercentage,
|
|
|
|
videoBitrate;
|
2018-04-28 04:53:02 +08:00
|
|
|
if (videoStats.packetsReceived > 0) { // Remote video
|
2018-06-15 03:20:14 +08:00
|
|
|
videoLostPercentage = ((videoStats.packetsLost / ((videoStats.packetsLost + videoStats.packetsReceived) * 100)) || 0).toFixed(1);
|
2018-05-03 03:03:36 +08:00
|
|
|
videoBitrate = Math.floor(videoKbitsReceivedPerSecond || 0);
|
2018-06-15 03:20:14 +08:00
|
|
|
videoLostRecentPercentage = ((videoIntervalPacketsLost / ((videoIntervalPacketsLost + videoIntervalPacketsReceived) * 100)) || 0).toFixed(1);
|
2018-04-28 04:53:02 +08:00
|
|
|
} else {
|
2018-06-15 03:20:14 +08:00
|
|
|
videoLostPercentage = (((videoStats.packetsLost / (videoStats.packetsLost + videoStats.packetsSent)) * 100) || 0).toFixed(1);
|
2018-05-03 03:03:36 +08:00
|
|
|
videoBitrate = Math.floor(videoKbitsSentPerSecond || 0);
|
2018-06-15 03:20:14 +08:00
|
|
|
videoLostRecentPercentage = ((videoIntervalPacketsLost / ((videoIntervalPacketsLost + videoIntervalPacketsSent) * 100)) || 0).toFixed(1);
|
2018-04-28 04:53:02 +08:00
|
|
|
}
|
|
|
|
|
2018-05-03 03:03:36 +08:00
|
|
|
const result = {
|
2018-04-28 04:53:02 +08:00
|
|
|
video: {
|
|
|
|
bytesReceived: videoStats.bytesReceived,
|
|
|
|
bytesSent: videoStats.bytesSent,
|
|
|
|
packetsLost: videoStats.packetsLost,
|
|
|
|
packetsReceived: videoStats.packetsReceived,
|
|
|
|
packetsSent: videoStats.packetsSent,
|
|
|
|
bitrate: videoBitrate,
|
|
|
|
lostPercentage: videoLostPercentage,
|
|
|
|
lostRecentPercentage: videoLostRecentPercentage,
|
|
|
|
height: videoStats.height,
|
|
|
|
width: videoStats.width,
|
|
|
|
codec: videoStats.codec,
|
|
|
|
decodeDelay: videoStats.decodeDelay,
|
|
|
|
encodeUsagePercent: videoStats.encodeUsagePercent,
|
|
|
|
rtt: videoStats.rtt,
|
|
|
|
currentDelay: videoStats.currentDelay,
|
2018-06-15 03:20:14 +08:00
|
|
|
},
|
2018-04-28 04:53:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
callback(result);
|
2018-06-15 03:20:14 +08:00
|
|
|
}, (exception) => {
|
|
|
|
log('error', `customGetStats() Promise rejected: ${exception.message}`);
|
2018-04-28 04:53:02 +08:00
|
|
|
callback(null);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
monitorTrackStart(peer, track, local, callback) {
|
2018-04-28 04:53:02 +08:00
|
|
|
const that = this;
|
2018-06-15 03:20:14 +08:00
|
|
|
console.log('Starting stats monitoring on', track.id);
|
2018-04-28 04:53:02 +08:00
|
|
|
const getStatsInterval = 2000;
|
|
|
|
|
|
|
|
const callGetStats = () => {
|
|
|
|
that.customGetStats(
|
|
|
|
peer,
|
|
|
|
track,
|
2018-06-15 03:20:14 +08:00
|
|
|
(results) => {
|
|
|
|
if (results == null || peer.signalingState === 'closed') {
|
2018-04-28 04:53:02 +08:00
|
|
|
that.monitorTrackStop(track.id);
|
|
|
|
} else {
|
|
|
|
callback(results);
|
|
|
|
}
|
|
|
|
},
|
2018-06-15 03:20:14 +08:00
|
|
|
getStatsInterval,
|
|
|
|
);
|
2018-04-28 04:53:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!this.monitoredTracks[track.id]) {
|
|
|
|
callGetStats();
|
|
|
|
this.monitoredTracks[track.id] = setInterval(
|
|
|
|
callGetStats,
|
|
|
|
getStatsInterval,
|
|
|
|
);
|
|
|
|
} else {
|
2018-06-15 03:20:14 +08:00
|
|
|
console.log('Already monitoring this track');
|
2018-04-28 04:53:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-15 03:20:14 +08:00
|
|
|
monitorTrackStop(trackId) {
|
2018-04-28 04:53:02 +08:00
|
|
|
if (this.monitoredTracks[trackId]) {
|
|
|
|
clearInterval(this.monitoredTracks[trackId]);
|
|
|
|
delete this.monitoredTracks[trackId];
|
2018-06-15 03:20:14 +08:00
|
|
|
console.log(`Track ${trackId} removed`);
|
2018-04-28 04:53:02 +08:00
|
|
|
} else {
|
2018-06-15 03:20:14 +08:00
|
|
|
console.log(`Track ${trackId} is not monitored`);
|
2018-04-28 04:53:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-27 06:16:30 +08:00
|
|
|
getStats(id, video, callback) {
|
|
|
|
const peer = this.webRtcPeers[id];
|
|
|
|
|
2018-05-26 03:24:41 +08:00
|
|
|
const hasLocalStream = peer && peer.started === true && peer.peerConnection.getLocalStreams().length > 0;
|
|
|
|
const hasRemoteStream = peer && peer.started === true && peer.peerConnection.getRemoteStreams().length > 0;
|
|
|
|
|
|
|
|
if (hasLocalStream) {
|
|
|
|
this.monitorTrackStart(peer.peerConnection, peer.peerConnection.getLocalStreams()[0].getVideoTracks()[0], true, callback);
|
|
|
|
} else if (hasRemoteStream) {
|
|
|
|
this.monitorTrackStart(peer.peerConnection, peer.peerConnection.getRemoteStreams()[0].getVideoTracks()[0], false, callback);
|
2018-04-27 06:16:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stopGettingStats(id) {
|
|
|
|
const peer = this.webRtcPeers[id];
|
|
|
|
|
2018-05-26 03:24:41 +08:00
|
|
|
const hasLocalStream = peer && peer.started === true && peer.peerConnection.getLocalStreams().length > 0;
|
|
|
|
const hasRemoteStream = peer && peer.started === true && peer.peerConnection.getRemoteStreams().length > 0;
|
|
|
|
|
|
|
|
if (hasLocalStream) {
|
|
|
|
this.monitorTrackStop(peer.peerConnection.getLocalStreams()[0].getVideoTracks()[0].id);
|
|
|
|
} else if (hasRemoteStream) {
|
|
|
|
this.monitorTrackStop(peer.peerConnection.getRemoteStreams()[0].getVideoTracks()[0].id);
|
2018-04-27 06:16:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
handlePlayStop(message) {
|
2018-03-20 01:52:39 +08:00
|
|
|
const id = message.cameraId;
|
2018-04-19 02:16:26 +08:00
|
|
|
|
|
|
|
log('info', 'Handle play stop for camera', id);
|
|
|
|
this.stopWebRTCPeer(id);
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
handlePlayStart(message) {
|
2018-04-19 02:16:26 +08:00
|
|
|
const id = message.cameraId;
|
|
|
|
const peer = this.webRtcPeers[id];
|
2018-07-10 05:29:27 +08:00
|
|
|
const videoTag = this.videoTags[id];
|
2018-04-14 03:16:06 +08:00
|
|
|
|
2018-05-23 04:55:24 +08:00
|
|
|
log('info', 'Handle play start for camera', id);
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
// Clear camera shared timeout when camera succesfully starts
|
2018-05-23 04:55:24 +08:00
|
|
|
clearTimeout(this.restartTimeout[id]);
|
|
|
|
delete this.restartTimeout[id];
|
|
|
|
delete this.restartTimer[id];
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-04-14 03:16:06 +08:00
|
|
|
peer.started = true;
|
|
|
|
|
2018-05-23 04:55:24 +08:00
|
|
|
if (!peer.attached) {
|
2018-07-10 05:29:27 +08:00
|
|
|
this.attachVideoStream(id);
|
2018-05-23 04:55:24 +08:00
|
|
|
}
|
|
|
|
|
2018-05-23 01:07:15 +08:00
|
|
|
if (id === this.props.userId) {
|
|
|
|
VideoService.sendUserShareWebcam(id);
|
2018-02-17 03:18:53 +08:00
|
|
|
VideoService.joinedVideo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleError(message) {
|
|
|
|
const { intl } = this.props;
|
2018-05-17 21:23:18 +08:00
|
|
|
const { userId } = this.props;
|
2018-06-15 03:20:14 +08:00
|
|
|
if (message.cameraId === userId) {
|
2018-02-17 03:18:53 +08:00
|
|
|
this.unshareWebcam();
|
2018-05-17 21:23:18 +08:00
|
|
|
this.notifyError(intl.formatMessage(intlMediaErrorsMessages[message.message]
|
|
|
|
|| intlMessages.sharingError));
|
2018-02-17 03:18:53 +08:00
|
|
|
} else {
|
2018-04-19 02:16:26 +08:00
|
|
|
this.stopWebRTCPeer(message.cameraId);
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-05-23 01:07:15 +08:00
|
|
|
log('debug', 'Handle error --------------------->');
|
2018-02-17 03:18:53 +08:00
|
|
|
log('debug', message.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
notifyError(message) {
|
|
|
|
notify(message, 'error', 'video');
|
|
|
|
}
|
|
|
|
|
|
|
|
shareWebcam() {
|
2018-04-09 22:39:27 +08:00
|
|
|
const { intl } = this.props;
|
2018-02-17 03:18:53 +08:00
|
|
|
|
2018-03-21 15:27:06 +08:00
|
|
|
if (this.connectedToMediaServer()) {
|
2018-04-19 02:16:26 +08:00
|
|
|
log('info', 'Sharing webcam');
|
2018-07-10 05:29:27 +08:00
|
|
|
this.sharedWebcam = true;
|
2018-03-21 15:27:06 +08:00
|
|
|
VideoService.joiningVideo();
|
|
|
|
} else {
|
2018-04-19 02:16:26 +08:00
|
|
|
log('debug', 'Error on sharing webcam');
|
2018-03-21 15:27:06 +08:00
|
|
|
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
|
|
|
|
|
|
|
VideoService.sendUserUnshareWebcam(this.props.userId);
|
2018-04-19 02:16:26 +08:00
|
|
|
VideoService.exitedVideo();
|
2018-07-10 05:29:27 +08:00
|
|
|
this.sharedWebcam = false;
|
2018-02-17 03:18:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-04-12 02:50:14 +08:00
|
|
|
if (!this.state.socketOpen) return null;
|
|
|
|
|
2018-02-17 03:18:53 +08:00
|
|
|
return (
|
2018-04-12 02:50:14 +08:00
|
|
|
<VideoList
|
|
|
|
users={this.props.users}
|
2018-07-10 05:29:27 +08:00
|
|
|
onMount={this.createVideoTag.bind(this)}
|
2018-04-27 06:16:30 +08:00
|
|
|
getStats={this.getStats.bind(this)}
|
|
|
|
stopGettingStats={this.stopGettingStats.bind(this)}
|
2018-05-26 03:24:41 +08:00
|
|
|
enableVideoStats={this.props.enableVideoStats}
|
2018-03-20 01:52:39 +08:00
|
|
|
/>
|
2018-02-17 03:18:53 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 23:29:51 +08:00
|
|
|
export default injectIntl(VideoProvider);
|