jiti-meet/react/features/base/known-domains/middleware.js

58 lines
1.3 KiB
JavaScript

// @flow
import { getDefaultURL } from '../../app';
import { APP_WILL_MOUNT } from '../app';
import { SET_ROOM } from '../conference';
import { MiddlewareRegistry } from '../redux';
import { parseURIString } from '../util';
import { addKnownDomains } from './actions';
MiddlewareRegistry.register(store => next => action => {
const result = next(action);
switch (action.type) {
case APP_WILL_MOUNT:
_appWillMount(store);
break;
case SET_ROOM:
_setRoom(store);
break;
}
return result;
});
/**
* Adds the domain of the app's {@code defaultURL} to the list of domains known
* to the feature base/known-domains.
*
* @param {Object} store - The redux store.
* @private
* @returns {Promise}
*/
function _appWillMount({ dispatch, getState }) {
const defaultURL = parseURIString(getDefaultURL(getState));
dispatch(addKnownDomains(defaultURL.host));
}
/**
* Adds the domain of {@code locationURL} to the list of domains known to the
* feature base/known-domains.
*
* @param {Object} store - The redux store.
* @private
* @returns {Promise}
*/
function _setRoom({ dispatch, getState }) {
const { locationURL } = getState()['features/base/connection'];
let host;
locationURL
&& (host = locationURL.host)
&& dispatch(addKnownDomains(host));
}