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

390 lines
11 KiB
React
Raw Normal View History

2017-03-11 02:33:46 +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';
2018-07-19 20:46:44 +08:00
import IntlStartup from './intl';
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 { FormattedMessage } from 'react-intl';
2019-04-10 01:55:10 +08:00
import { notify } from '/imports/ui/services/notification';
import deviceInfo from '/imports/utils/deviceInfo';
import getFromUserSettings from '/imports/ui/services/users-settings';
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;
const propTypes = {
subscriptionsReady: PropTypes.bool,
locale: PropTypes.string,
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 = {
2017-11-01 01:13:44 +08:00
locale: undefined,
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;
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);
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,
} = this.props;
2019-03-12 00:21:12 +08:00
const {
loading,
meetingExisted,
} = this.state;
2018-07-19 20:46:44 +08:00
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,
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" />);
}
if ((meetingHasEnded || (User && User.loggedOut)) && meetingIsBreakout) {
window.close();
return null;
}
2019-03-20 04:06:13 +08:00
if (((meetingHasEnded && !meetingIsBreakout)) || (codeError && (User && 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') {
logger.error({ logCode: 'startup_client_usercouldnotlogin_error' }, `User could not log in HTML5, hit ${codeError}`);
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() {
2018-10-13 01:05:30 +08:00
const { updateLoadingState } = this;
const { locale, meetingExist } = this.props;
2018-10-13 01:05:30 +08:00
const stateControls = { updateLoadingState };
const { meetingExisted } = this.state;
2017-03-11 02:33:46 +08:00
return (
(!meetingExisted && !meetingExist && Auth.loggedIn)
? <LoadingScreen />
: (
<IntlStartup locale={locale} baseControls={stateControls}>
{this.renderByState()}
</IntlStartup>
)
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 {
locale,
animations,
userJoinAudioAlerts,
userJoinPushAlerts,
} = Settings.application;
const {
credentials,
loggedIn,
userID: localUserId,
} = 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,
color: 1,
effectiveConnectionType: 1,
extId: 1,
guest: 1,
intId: 1,
locked: 1,
loggedOut: 1,
meetingId: 1,
userId: 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
}
2019-07-25 03:08:27 +08:00
const approved = User && User.approved && User.guest;
2019-07-25 02:57:39 +08:00
const ejected = User && User.ejected;
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
}
},
});
2019-11-14 06:36:23 +08:00
if (userJoinAudioAlerts || userJoinPushAlerts) {
Users.find({}, { fields: { validated: 1, name: 1, userId: 1 } }).observe({
changed: (newDocument) => {
if (newDocument.validated && newDocument.name && newDocument.userId !== localUserId) {
if (userJoinAudioAlerts) {
const audio = new Audio(`${Meteor.settings.public.app.cdn + Meteor.settings.public.app.basename}/resources/sounds/userJoin.mp3`);
audio.play();
}
if (userJoinPushAlerts) {
notify(
<FormattedMessage
id="app.notification.userJoinPushAlert"
description="Notification for a user joins the meeting"
values={{
0: newDocument.name,
}}
/>,
'info',
'user',
);
}
2019-11-13 02:00:48 +08:00
}
2019-11-14 06:36:23 +08:00
},
});
}
2019-11-06 04:08:26 +08:00
2020-05-24 03:43:26 +08:00
if (getFromUserSettings('bbb_show_participants_on_login', true) && !deviceInfo.type().isPhone) {
Session.set('openPanel', 'userlist');
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', '');
}
const codeError = Session.get('codeError');
2017-03-11 02:33:46 +08:00
return {
approved,
ejected,
locale,
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,
2017-03-11 02:33:46 +08:00
};
2018-10-03 03:53:13 +08:00
})(Base);
export default BaseContainer;