51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
// @flow
|
|
|
|
import {
|
|
UPDATE_DIAL_IN_NUMBERS_FAILED,
|
|
UPDATE_DIAL_IN_NUMBERS_SUCCESS
|
|
} from './actionTypes';
|
|
import { getDialInConferenceID, getDialInNumbers } from './functions';
|
|
|
|
/**
|
|
* Sends AJAX requests for dial-in numbers and conference ID.
|
|
*
|
|
* @returns {Function}
|
|
*/
|
|
export function updateDialInNumbers() {
|
|
return (dispatch: Dispatch<*>, getState: Function) => {
|
|
const state = getState();
|
|
const { dialInConfCodeUrl, dialInNumbersUrl, hosts }
|
|
= state['features/base/config'];
|
|
const mucURL = hosts && hosts.muc;
|
|
|
|
if (!dialInConfCodeUrl || !dialInNumbersUrl || !mucURL) {
|
|
// URLs for fetching dial in numbers not defined
|
|
return;
|
|
}
|
|
|
|
const { room } = state['features/base/conference'];
|
|
|
|
Promise.all([
|
|
getDialInNumbers(dialInNumbersUrl),
|
|
getDialInConferenceID(dialInConfCodeUrl, room, mucURL)
|
|
])
|
|
.then(([ dialInNumbers, { conference, id, message } ]) => {
|
|
if (!conference || !id) {
|
|
return Promise.reject(message);
|
|
}
|
|
|
|
dispatch({
|
|
type: UPDATE_DIAL_IN_NUMBERS_SUCCESS,
|
|
conferenceID: id,
|
|
dialInNumbers
|
|
});
|
|
})
|
|
.catch(error => {
|
|
dispatch({
|
|
type: UPDATE_DIAL_IN_NUMBERS_FAILED,
|
|
error
|
|
});
|
|
});
|
|
};
|
|
}
|