bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/join-handler/component.jsx

233 lines
6.8 KiB
React
Raw Normal View History

import React, { Component } from 'react';
2018-11-20 00:53:25 +08:00
import { Session } from 'meteor/session';
2018-12-18 23:15:51 +08:00
import PropTypes from 'prop-types';
import SanitizeHTML from 'sanitize-html';
import Auth from '/imports/ui/services/auth';
import { setCustomLogoUrl, setModeratorOnlyMessage } from '/imports/ui/components/user-list/service';
import { makeCall } from '/imports/ui/services/api';
import logger from '/imports/startup/client/logger';
import LoadingScreen from '/imports/ui/components/loading-screen/component';
2020-05-05 09:16:52 +08:00
import Users from '/imports/api/users';
2018-12-18 23:15:51 +08:00
const propTypes = {
children: PropTypes.element.isRequired,
};
2018-11-16 23:58:49 +08:00
class JoinHandler extends Component {
static setError(codeError) {
if (codeError) Session.set('codeError', codeError);
}
constructor(props) {
super(props);
2018-11-19 23:40:42 +08:00
this.fetchToken = this.fetchToken.bind(this);
this.state = {
joined: false,
};
}
componentDidMount() {
2019-07-13 03:22:47 +08:00
this._isMounted = true;
if (!this.firstJoinTime) {
this.firstJoinTime = new Date();
}
Tracker.autorun((c) => {
const {
connected,
status,
} = Meteor.status();
if (status === 'connecting') {
this.setState({ joined: false });
}
logger.debug(`Initial connection status change. status: ${status}, connected: ${connected}`);
if (connected) {
const msToConnect = (new Date() - this.firstJoinTime) / 1000;
const secondsToConnect = parseFloat(msToConnect).toFixed(2);
logger.info({
logCode: 'joinhandler_component_initial_connection_time',
extraInfo: {
attemptForUserInfo: Auth.fullInfo,
timeToConnect: secondsToConnect,
},
}, `Connection to Meteor took ${secondsToConnect}s`);
this.firstJoinTime = undefined;
this.fetchToken();
} else if (status === 'failed') {
c.stop();
const msToConnect = (new Date() - this.firstJoinTime) / 1000;
const secondsToConnect = parseFloat(msToConnect).toFixed(2);
logger.info({
logCode: 'joinhandler_component_initial_connection_failed',
extraInfo: {
attemptForUserInfo: Auth.fullInfo,
timeToConnect: secondsToConnect,
},
}, `Connection to Meteor failed, took ${secondsToConnect}s`);
JoinHandler.setError('400');
Session.set('errorMessageDescription', 'Failed to connect to server');
this.firstJoinTime = undefined;
}
});
}
2019-07-13 03:22:47 +08:00
componentWillUnmount() {
this._isMounted = false;
}
2018-12-10 23:52:25 +08:00
async fetchToken() {
2019-07-13 03:22:47 +08:00
if (!this._isMounted) return;
const urlParams = new URLSearchParams(window.location.search);
const sessionToken = urlParams.get('sessionToken');
if (!sessionToken) {
JoinHandler.setError('400');
Session.set('errorMessageDescription', 'Session token was not provided');
}
// Old credentials stored in memory were being used when joining a new meeting
Auth.clearCredentials();
const logUserInfo = () => {
const userInfo = window.navigator;
// Browser information is sent once on startup
// Sent here instead of Meteor.startup, as the
// user might not be validated by then, thus user's data
// would not be sent with this information
const clientInfo = {
language: userInfo.language,
userAgent: userInfo.userAgent,
screenSize: { width: window.screen.width, height: window.screen.height },
windowSize: { width: window.innerWidth, height: window.innerHeight },
bbbVersion: Meteor.settings.public.app.bbbServerVersion,
location: window.location.href,
};
logger.info({
logCode: 'joinhandler_component_clientinfo',
extraInfo: { clientInfo },
},
'Log information about the client');
};
const setAuth = (resp) => {
const {
meetingID, internalUserID, authToken, logoutUrl,
fullname, externUserID, confname,
} = resp;
2018-12-10 23:52:25 +08:00
return new Promise((resolve) => {
Auth.set(
meetingID, internalUserID, authToken, logoutUrl,
sessionToken, fullname, externUserID, confname,
);
resolve(resp);
});
};
2018-11-30 06:37:51 +08:00
const setLogoutURL = (url) => {
Auth.logoutURL = url;
return true;
};
2018-11-19 23:40:42 +08:00
const setLogoURL = (resp) => {
setCustomLogoUrl(resp.customLogoURL);
return resp;
};
const setModOnlyMessage = (resp) => {
if (resp && resp.modOnlyMessage) {
const sanitizedModOnlyText = SanitizeHTML(resp.modOnlyMessage, {
allowedTags: ['a', 'b', 'br', 'i', 'img', 'li', 'small', 'span', 'strong', 'u', 'ul'],
allowedAttributes: {
a: ['href', 'name', 'target'],
img: ['src', 'width', 'height'],
},
allowedSchemes: ['https'],
});
setModeratorOnlyMessage(sanitizedModOnlyText);
}
return resp;
};
const setCustomData = (resp) => {
2020-04-29 12:41:16 +08:00
const { customdata } = resp;
2018-12-10 23:52:25 +08:00
return new Promise((resolve) => {
if (customdata.length) {
2020-04-29 12:41:16 +08:00
makeCall('addUserSettings', customdata).then(r => resolve(r));
2018-12-10 23:52:25 +08:00
}
resolve(true);
});
};
2019-03-16 04:07:14 +08:00
const setBannerProps = (resp) => {
Session.set('bannerText', resp.bannerText);
Session.set('bannerColor', resp.bannerColor);
};
// use enter api to get params for the client
const url = `/bigbluebutton/api/enter?sessionToken=${sessionToken}`;
2018-12-10 23:52:25 +08:00
const fetchContent = await fetch(url, { credentials: 'same-origin' });
const parseToJson = await fetchContent.json();
const { response } = parseToJson;
2019-01-08 00:26:23 +08:00
2018-12-10 23:52:25 +08:00
setLogoutURL(response);
logUserInfo();
2018-12-10 23:52:25 +08:00
if (response.returncode !== 'FAILED') {
await setAuth(response);
2019-03-16 04:07:14 +08:00
setBannerProps(response);
2018-12-10 23:52:25 +08:00
setLogoURL(response);
setModOnlyMessage(response);
2020-05-05 09:16:52 +08:00
Tracker.autorun(async (cd) => {
const user = Users.findOne({ userId: Auth.userID, approved: true }, { fields: { _id: 1 } });
2020-05-05 09:16:52 +08:00
if (user) {
await setCustomData(response);
cd.stop();
}
});
logger.info({
logCode: 'joinhandler_component_joinroutehandler_success',
extraInfo: {
response,
},
}, 'User successfully went through main.joinRouteHandler');
2018-12-10 23:52:25 +08:00
} else {
2019-01-08 00:26:23 +08:00
const e = new Error(response.message);
if (!Session.get('codeError')) Session.set('errorMessageDescription', response.message);
logger.error({
logCode: 'joinhandler_component_joinroutehandler_error',
extraInfo: {
response,
error: e,
},
}, 'User faced an error on main.joinRouteHandler.');
2018-12-10 23:52:25 +08:00
}
this.setState({ joined: true });
}
render() {
const { children } = this.props;
const { joined } = this.state;
return joined
? children
: (<LoadingScreen />);
}
}
export default JoinHandler;
2018-12-18 23:15:51 +08:00
JoinHandler.propTypes = propTypes;