Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

middleware.native.js 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. // @flow
  2. import i18next from 'i18next';
  3. import { NativeEventEmitter, NativeModules } from 'react-native';
  4. import { MiddlewareRegistry } from '../base/redux';
  5. import { APP_WILL_MOUNT, APP_WILL_UNMOUNT } from '../app';
  6. import { getInviteURL } from '../base/connection';
  7. import { inviteVideoRooms } from '../videosipgw';
  8. import {
  9. BEGIN_ADD_PEOPLE,
  10. _SET_EMITTER_SUBSCRIPTIONS
  11. } from './actionTypes';
  12. import {
  13. getInviteResultsForQuery,
  14. isAddPeopleEnabled,
  15. isDialOutEnabled,
  16. sendInvitesForItems
  17. } from './functions';
  18. import './middleware.any';
  19. /**
  20. * The react-native module of the feature invite.
  21. */
  22. const { Invite } = NativeModules;
  23. /**
  24. * The middleware of the feature invite specific to mobile/react-native.
  25. *
  26. * @param {Store} store - The redux store.
  27. * @returns {Function}
  28. */
  29. Invite && MiddlewareRegistry.register(store => next => action => {
  30. switch (action.type) {
  31. case _SET_EMITTER_SUBSCRIPTIONS:
  32. return _setEmitterSubscriptions(store, next, action);
  33. case APP_WILL_MOUNT:
  34. return _appWillMount(store, next, action);
  35. case APP_WILL_UNMOUNT: {
  36. const result = next(action);
  37. store.dispatch({
  38. type: _SET_EMITTER_SUBSCRIPTIONS,
  39. emitterSubscriptions: undefined
  40. });
  41. return result;
  42. }
  43. case BEGIN_ADD_PEOPLE:
  44. return _beginAddPeople(store, next, action);
  45. }
  46. return next(action);
  47. });
  48. /**
  49. * Notifies the feature jwt that the action {@link APP_WILL_MOUNT} is being
  50. * dispatched within a specific redux {@code store}.
  51. *
  52. * @param {Store} store - The redux store in which the specified {@code action}
  53. * is being dispatched.
  54. * @param {Dispatch} next - The redux dispatch function to dispatch the
  55. * specified {@code action} to the specified {@code store}.
  56. * @param {Action} action - The redux action {@code APP_WILL_MOUNT} which is
  57. * being dispatched in the specified {@code store}.
  58. * @private
  59. * @returns {*} The value returned by {@code next(action)}.
  60. */
  61. function _appWillMount({ dispatch, getState }, next, action) {
  62. const result = next(action);
  63. const emitter = new NativeEventEmitter(Invite);
  64. const context = {
  65. dispatch,
  66. getState
  67. };
  68. dispatch({
  69. type: _SET_EMITTER_SUBSCRIPTIONS,
  70. emitterSubscriptions: [
  71. emitter.addListener(
  72. 'org.jitsi.meet:features/invite#invite',
  73. _onInvite,
  74. context),
  75. emitter.addListener(
  76. 'org.jitsi.meet:features/invite#performQuery',
  77. _onPerformQuery,
  78. context)
  79. ]
  80. });
  81. return result;
  82. }
  83. /**
  84. * Notifies the feature invite that the action {@link BEGIN_ADD_PEOPLE} is being
  85. * dispatched within a specific redux {@code store}.
  86. *
  87. * @param {Store} store - The redux store in which the specified {@code action}
  88. * is being dispatched.
  89. * @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
  90. * specified {@code action} to the specified {@code store}.
  91. * @param {Action} action - The redux action {@code BEGIN_ADD_PEOPLE} which is
  92. * being dispatched in the specified {@code store}.
  93. * @private
  94. * @returns {*} The value returned by {@code next(action)}.
  95. */
  96. function _beginAddPeople({ getState }, next, action) {
  97. const result = next(action);
  98. // The JavaScript App needs to provide uniquely identifying information to
  99. // the native Invite module so that the latter may match the former to the
  100. // native JitsiMeetView which hosts it.
  101. const { app } = getState()['features/app'];
  102. if (app) {
  103. const { externalAPIScope } = app.props;
  104. if (externalAPIScope) {
  105. Invite.beginAddPeople(externalAPIScope);
  106. }
  107. }
  108. return result;
  109. }
  110. /**
  111. * Handles the {@code invite} event of the feature invite i.e. invites specific
  112. * invitees to the current, ongoing conference.
  113. *
  114. * @param {Object} event - The details of the event.
  115. * @returns {void}
  116. */
  117. function _onInvite(
  118. { addPeopleControllerScope, externalAPIScope, invitees }) {
  119. const { getState } = this; // eslint-disable-line no-invalid-this
  120. const state = getState();
  121. const { conference } = state['features/base/conference'];
  122. const { inviteServiceUrl } = state['features/base/config'];
  123. const options = {
  124. conference,
  125. inviteServiceUrl,
  126. inviteUrl: getInviteURL(state),
  127. inviteVideoRooms,
  128. jwt: state['features/base/jwt'].jwt
  129. };
  130. sendInvitesForItems(invitees, options)
  131. .then(failedInvitees =>
  132. Invite.inviteSettled(
  133. externalAPIScope,
  134. addPeopleControllerScope,
  135. failedInvitees));
  136. }
  137. /**
  138. * Handles the {@code performQuery} event of the feature invite i.e. queries for
  139. * invitees who may subsequently be invited to the current, ongoing conference.
  140. *
  141. * @param {Object} event - The details of the event.
  142. * @returns {void}
  143. */
  144. function _onPerformQuery(
  145. { addPeopleControllerScope, externalAPIScope, query }) {
  146. const { getState } = this; // eslint-disable-line no-invalid-this
  147. const state = getState();
  148. const {
  149. dialOutAuthUrl,
  150. peopleSearchQueryTypes,
  151. peopleSearchUrl
  152. } = state['features/base/config'];
  153. const options = {
  154. dialOutAuthUrl,
  155. addPeopleEnabled: isAddPeopleEnabled(state),
  156. dialOutEnabled: isDialOutEnabled(state),
  157. jwt: state['features/base/jwt'].jwt,
  158. peopleSearchQueryTypes,
  159. peopleSearchUrl
  160. };
  161. getInviteResultsForQuery(query, options)
  162. .catch(() => [])
  163. .then(results => {
  164. const translatedResults = results.map(result => {
  165. if (result.type === 'phone') {
  166. result.title = i18next.t('addPeople.telephone', {
  167. number: result.number
  168. });
  169. if (result.showCountryCodeReminder) {
  170. result.subtitle = i18next.t(
  171. 'addPeople.countryReminder'
  172. );
  173. }
  174. }
  175. return result;
  176. }).filter(result => result.type !== 'phone' || result.allowed);
  177. Invite.receivedResults(
  178. externalAPIScope,
  179. addPeopleControllerScope,
  180. query,
  181. translatedResults);
  182. });
  183. }
  184. /**
  185. * Notifies the feature invite that the action
  186. * {@link _SET_EMITTER_SUBSCRIPTIONS} is being dispatched within a specific
  187. * redux {@code store}.
  188. *
  189. * @param {Store} store - The redux store in which the specified {@code action}
  190. * is being dispatched.
  191. * @param {Dispatch} next - The redux dispatch function to dispatch the
  192. * specified {@code action} to the specified {@code store}.
  193. * @param {Action} action - The redux action {@code _SET_EMITTER_SUBSCRIPTIONS}
  194. * which is being dispatched in the specified {@code store}.
  195. * @private
  196. * @returns {*}
  197. */
  198. function _setEmitterSubscriptions({ getState }, next, action) {
  199. const { emitterSubscriptions } = getState()['features/invite'];
  200. if (emitterSubscriptions) {
  201. for (const subscription of emitterSubscriptions) {
  202. subscription.remove();
  203. }
  204. }
  205. return next(action);
  206. }