bigbluebutton-Github/bigbluebutton-html5/imports/startup/client/base.jsx

437 lines
12 KiB
React
Raw Normal View History

2021-04-30 00:52:22 +08:00
import React, { Component } from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import PropTypes from 'prop-types';
2017-03-11 02:33:46 +08:00
import Auth from '/imports/ui/services/auth';
import AppContainer from '/imports/ui/components/app/container';
2017-03-11 04:47:23 +08:00
import ErrorScreen from '/imports/ui/components/error-screen/component';
import MeetingEnded from '/imports/ui/components/meeting-ended/component';
2017-03-11 02:33:46 +08:00
import LoadingScreen from '/imports/ui/components/loading-screen/component';
2017-04-06 20:36:59 +08:00
import Settings from '/imports/ui/services/settings';
import logger from '/imports/startup/client/logger';
2018-07-19 20:46:44 +08:00
import Users from '/imports/api/users';
2018-10-13 01:05:30 +08:00
import { Session } from 'meteor/session';
import { FormattedMessage } from 'react-intl';
import { Meteor } from 'meteor/meteor';
2019-08-22 03:27:15 +08:00
import Meetings, { RecordMeetings } from '../../api/meetings';
2019-03-20 04:06:13 +08:00
import AppService from '/imports/ui/components/app/service';
2019-04-10 01:55:10 +08:00
import Breakouts from '/imports/api/breakouts';
import AudioService from '/imports/ui/components/audio/service';
import { notify } from '/imports/ui/services/notification';
import deviceInfo from '/imports/utils/deviceInfo';
import getFromUserSettings from '/imports/ui/services/users-settings';
import LayoutManagerContainer from '/imports/ui/components/layout/layout-manager/container';
import { withLayoutContext } from '/imports/ui/components/layout/context';
2020-04-23 22:07:44 +08:00
import VideoService from '/imports/ui/components/video-provider/service';
import DebugWindow from '/imports/ui/components/debug-window/component';
const CHAT_CONFIG = Meteor.settings.public.chat;
const CHAT_ENABLED = CHAT_CONFIG.enabled;
const PUBLIC_CHAT_ID = CHAT_CONFIG.public_id;
const BREAKOUT_END_NOTIFY_DELAY = 50;
const HTML = document.getElementsByTagName('html')[0];
2019-04-10 01:55:10 +08:00
let breakoutNotified = false;
2021-03-18 02:01:08 +08:00
let checkedUserSettings = false;
const propTypes = {
subscriptionsReady: PropTypes.bool,
approved: PropTypes.bool,
2019-04-06 02:10:05 +08:00
meetingHasEnded: PropTypes.bool.isRequired,
meetingExist: PropTypes.bool,
};
2017-03-11 02:33:46 +08:00
const defaultProps = {
2019-06-05 03:23:44 +08:00
approved: false,
meetingExist: false,
subscriptionsReady: false,
};
2017-03-11 02:33:46 +08:00
2019-03-12 21:56:05 +08:00
const fullscreenChangedEvents = [
'fullscreenchange',
'webkitfullscreenchange',
'mozfullscreenchange',
'MSFullscreenChange',
];
2017-03-11 02:33:46 +08:00
class Base extends Component {
2019-03-12 00:21:12 +08:00
static handleFullscreenChange() {
if (document.fullscreenElement
|| document.webkitFullscreenElement
|| document.mozFullScreenElement
|| document.msFullscreenElement) {
Session.set('isFullscreen', true);
2019-03-12 00:21:12 +08:00
} else {
Session.set('isFullscreen', false);
2019-03-12 00:21:12 +08:00
}
}
2017-03-11 02:33:46 +08:00
constructor(props) {
super(props);
this.state = {
loading: false,
meetingExisted: false,
2017-03-11 02:33:46 +08:00
};
this.updateLoadingState = this.updateLoadingState.bind(this);
}
2019-03-12 00:21:12 +08:00
componentDidMount() {
const { animations } = this.props;
const {
userID: localUserId,
} = Auth;
if (animations) HTML.classList.add('animationsEnabled');
if (!animations) HTML.classList.add('animationsDisabled');
2019-03-12 00:21:12 +08:00
fullscreenChangedEvents.forEach((event) => {
document.addEventListener(event, Base.handleFullscreenChange);
});
Session.set('isFullscreen', false);
const users = Users.find({
meetingId: Auth.meetingID,
validated: true,
userId: { $ne: localUserId },
}, { fields: { name: 1, userId: 1 } });
users.observe({
added: (user) => {
const subscriptionsReady = Session.get('subscriptionsReady');
if (!subscriptionsReady) return;
const {
userJoinAudioAlerts,
userJoinPushAlerts,
} = Settings.application;
if (!userJoinAudioAlerts && !userJoinPushAlerts) return;
if (userJoinAudioAlerts) {
AudioService.playAlertSound(`${Meteor.settings.public.app.cdn
+ Meteor.settings.public.app.basename
+ Meteor.settings.public.app.instanceId}`
+ '/resources/sounds/userJoin.mp3');
}
if (userJoinPushAlerts) {
notify(
<FormattedMessage
id="app.notification.userJoinPushAlert"
description="Notification for a user joins the meeting"
values={{
0: user.name,
}}
/>,
'info',
'user',
);
}
},
});
2019-03-12 00:21:12 +08:00
}
componentDidUpdate(prevProps, prevState) {
const {
approved,
meetingExist,
animations,
2019-04-12 05:12:54 +08:00
ejected,
2019-06-27 00:29:34 +08:00
isMeteorConnected,
subscriptionsReady,
2020-06-09 11:09:46 +08:00
layoutContextDispatch,
usersVideo,
} = this.props;
2019-03-12 00:21:12 +08:00
const {
loading,
meetingExisted,
} = this.state;
2018-07-19 20:46:44 +08:00
2020-06-09 11:09:46 +08:00
if (usersVideo !== prevProps.usersVideo) {
layoutContextDispatch(
{
type: 'setUsersVideo',
value: usersVideo.length,
},
);
}
if (!prevProps.subscriptionsReady && subscriptionsReady) {
logger.info({ logCode: 'startup_client_subscriptions_ready' }, 'Subscriptions are ready');
}
2019-03-20 04:06:13 +08:00
if (prevProps.meetingExist && !meetingExist && !meetingExisted) {
this.setMeetingExisted(true);
}
2019-03-20 04:06:13 +08:00
// In case the meteor restart avoid error log
2019-06-27 00:29:34 +08:00
if (isMeteorConnected && (prevState.meetingExisted !== meetingExisted) && meetingExisted) {
2019-03-20 04:06:13 +08:00
this.setMeetingExisted(false);
}
// In case the meeting delayed to load
2019-04-06 02:10:05 +08:00
if (!subscriptionsReady || !meetingExist) return;
if (approved && loading && subscriptionsReady) this.updateLoadingState(false);
if (prevProps.ejected || ejected) {
Session.set('codeError', '403');
Session.set('isMeetingEnded', true);
}
// In case the meteor restart avoid error log
2019-06-27 00:29:34 +08:00
if (isMeteorConnected && (prevState.meetingExisted !== meetingExisted)) {
this.setMeetingExisted(false);
}
const enabled = HTML.classList.contains('animationsEnabled');
const disabled = HTML.classList.contains('animationsDisabled');
if (animations && animations !== prevProps.animations) {
if (disabled) HTML.classList.remove('animationsDisabled');
HTML.classList.add('animationsEnabled');
} else if (!animations && animations !== prevProps.animations) {
if (enabled) HTML.classList.remove('animationsEnabled');
HTML.classList.add('animationsDisabled');
}
2018-07-19 20:46:44 +08:00
}
2019-03-12 00:21:12 +08:00
componentWillUnmount() {
fullscreenChangedEvents.forEach((event) => {
document.removeEventListener(event, Base.handleFullscreenChange);
});
}
setMeetingExisted(meetingExisted) {
this.setState({ meetingExisted });
}
2017-03-11 02:33:46 +08:00
updateLoadingState(loading = false) {
this.setState({
loading,
});
}
renderByState() {
2018-10-13 01:05:30 +08:00
const { updateLoadingState } = this;
const stateControls = { updateLoadingState };
2019-04-06 02:10:05 +08:00
const { loading } = this.state;
const {
codeError,
2019-03-20 04:06:13 +08:00
ejected,
ejectedReason,
meetingExist,
2019-04-06 02:10:05 +08:00
meetingHasEnded,
meetingIsBreakout,
subscriptionsReady,
User,
} = this.props;
if ((loading || !subscriptionsReady) && !meetingHasEnded && meetingExist) {
2019-04-06 02:10:05 +08:00
return (<LoadingScreen>{loading}</LoadingScreen>);
}
if (ejected) {
return (<MeetingEnded code="403" reason={ejectedReason} />);
}
if ((meetingHasEnded || User?.loggedOut) && meetingIsBreakout) {
window.close();
return null;
}
2019-03-20 04:06:13 +08:00
if (((meetingHasEnded && !meetingIsBreakout)) || (codeError && User?.loggedOut)) {
2019-03-20 04:06:13 +08:00
return (<MeetingEnded code={codeError} />);
2018-10-13 01:05:30 +08:00
}
if (codeError && !meetingHasEnded) {
// 680 is set for the codeError when the user requests a logout
if (codeError !== '680') {
return (<ErrorScreen code={codeError} />);
}
return (<MeetingEnded code={codeError} />);
}
2017-06-03 03:25:02 +08:00
return (<AppContainer {...this.props} baseControls={stateControls} />);
2017-03-11 02:33:46 +08:00
}
render() {
const {
meetingExist,
} = this.props;
const { meetingExisted } = this.state;
2017-03-11 02:33:46 +08:00
return (
<>
2020-09-04 07:35:57 +08:00
{meetingExist && Auth.loggedIn && <DebugWindow />}
{meetingExist && Auth.loggedIn && <LayoutManagerContainer />}
{
(!meetingExisted && !meetingExist && Auth.loggedIn)
? <LoadingScreen />
2020-07-24 05:14:31 +08:00
: this.renderByState()
}
</>
2017-03-11 02:33:46 +08:00
);
}
2017-06-03 03:25:02 +08:00
}
2017-03-11 02:33:46 +08:00
Base.propTypes = propTypes;
Base.defaultProps = defaultProps;
2018-10-03 03:53:13 +08:00
const BaseContainer = withTracker(() => {
2019-11-14 06:36:23 +08:00
const {
animations,
} = Settings.application;
const {
credentials,
loggedIn,
} = Auth;
const { meetingId } = credentials;
let breakoutRoomSubscriptionHandler;
2019-03-08 00:33:34 +08:00
let meetingModeratorSubscriptionHandler;
2019-03-20 04:06:13 +08:00
2019-07-25 02:57:39 +08:00
const fields = {
approved: 1,
authed: 1,
ejected: 1,
ejectedReason: 1,
color: 1,
effectiveConnectionType: 1,
extId: 1,
guest: 1,
intId: 1,
locked: 1,
loggedOut: 1,
meetingId: 1,
userId: 1,
inactivityCheck: 1,
responseDelay: 1,
};
2019-07-25 02:57:39 +08:00
const User = Users.findOne({ intId: credentials.requesterUserId }, { fields });
const meeting = Meetings.findOne({ meetingId }, {
fields: {
meetingEnded: 1,
meetingProp: 1,
2019-07-25 02:57:39 +08:00
},
});
if (meeting && meeting.meetingEnded) {
Session.set('codeError', '410');
2019-03-20 04:06:13 +08:00
}
2020-08-06 01:16:41 +08:00
const approved = User?.approved && User?.guest;
const ejected = User?.ejected;
const ejectedReason = User?.ejectedReason;
let userSubscriptionHandler;
Breakouts.find({}, { fields: { _id: 1 } }).observeChanges({
2019-04-10 01:55:10 +08:00
added() {
breakoutNotified = false;
},
removed() {
// Need to check the number of breakouts left because if a user's role changes to viewer
// then all but one room is removed. The data here isn't reactive so no need to filter
// the fields
const numBreakouts = Breakouts.find().count();
if (!AudioService.isUsingAudio() && !breakoutNotified && numBreakouts === 0) {
if (meeting && !meeting.meetingEnded && !meeting.meetingProp.isBreakout) {
// There's a race condition when reloading a tab where the collection gets cleared
// out and then refilled. The removal of the old data triggers the notification so
// instead wait a bit and check to see that records weren't added right after.
setTimeout(() => {
if (breakoutNotified) {
notify(
<FormattedMessage
id="app.toast.breakoutRoomEnded"
description="message when the breakout room is ended"
/>,
'info',
'rooms',
);
}
}, BREAKOUT_END_NOTIFY_DELAY);
2019-04-10 01:55:10 +08:00
}
breakoutNotified = true;
}
},
});
2019-08-22 03:27:15 +08:00
RecordMeetings.find({ meetingId }, { fields: { recording: 1 } }).observe({
2019-04-10 01:55:10 +08:00
changed: (newDocument, oldDocument) => {
2019-08-22 03:27:15 +08:00
if (newDocument) {
if (!oldDocument.recording && newDocument.recording) {
2019-04-11 02:20:31 +08:00
notify(
<FormattedMessage
id="app.notification.recordingStart"
description="Notification for when the recording starts"
/>,
'success',
'record',
);
}
2019-04-10 01:55:10 +08:00
2019-08-22 03:27:15 +08:00
if (oldDocument.recording && !newDocument.recording) {
2019-04-11 02:20:31 +08:00
notify(
<FormattedMessage
2019-06-10 22:36:33 +08:00
id="app.notification.recordingPaused"
2019-04-11 02:20:31 +08:00
description="Notification for when the recording stops"
/>,
'error',
'record',
);
}
2019-04-10 01:55:10 +08:00
}
},
});
2021-03-18 02:01:08 +08:00
if (Session.equals('openPanel', undefined) || Session.equals('subscriptionsReady', true)) {
if (!checkedUserSettings) {
2021-04-01 01:13:36 +08:00
if (getFromUserSettings('bbb_show_participants_on_login', Meteor.settings.public.layout.showParticipantsOnLogin) && !deviceInfo.isPhone) {
2021-03-18 02:01:08 +08:00
if (CHAT_ENABLED && getFromUserSettings('bbb_show_public_chat_on_login', !Meteor.settings.public.chat.startClosed)) {
Session.set('openPanel', 'chat');
Session.set('idChatOpen', PUBLIC_CHAT_ID);
} else {
Session.set('openPanel', 'userlist');
}
} else {
2021-03-18 02:01:08 +08:00
Session.set('openPanel', '');
}
window.dispatchEvent(new Event('panelChanged'));
if (Session.equals('subscriptionsReady', true)) {
2021-03-18 02:01:08 +08:00
checkedUserSettings = true;
}
}
}
2020-03-03 21:59:01 +08:00
const codeError = Session.get('codeError');
2021-03-02 22:56:10 +08:00
const { streams: usersVideo } = VideoService.getVideoStreams();
2020-04-23 22:07:44 +08:00
2017-03-11 02:33:46 +08:00
return {
approved,
ejected,
ejectedReason,
userSubscriptionHandler,
breakoutRoomSubscriptionHandler,
2019-03-08 00:33:34 +08:00
meetingModeratorSubscriptionHandler,
animations,
User,
2019-06-27 00:29:34 +08:00
isMeteorConnected: Meteor.status().connected,
2019-04-11 02:20:31 +08:00
meetingExist: !!meeting,
2019-04-06 02:10:05 +08:00
meetingHasEnded: !!meeting && meeting.meetingEnded,
meetingIsBreakout: AppService.meetingIsBreakout(),
subscriptionsReady: Session.get('subscriptionsReady'),
loggedIn,
codeError,
2020-04-23 22:07:44 +08:00
usersVideo,
2017-03-11 02:33:46 +08:00
};
})(withLayoutContext(Base));
export default BaseContainer;