You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.js 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. // @flow
  2. import _ from 'lodash';
  3. import { JitsiTrackErrors } from '../lib-jitsi-meet';
  4. import {
  5. getLocalParticipant,
  6. hiddenParticipantJoined,
  7. hiddenParticipantLeft,
  8. participantJoined,
  9. participantLeft
  10. } from '../participants';
  11. import { toState } from '../redux';
  12. import { safeDecodeURIComponent } from '../util';
  13. import {
  14. AVATAR_URL_COMMAND,
  15. EMAIL_COMMAND,
  16. JITSI_CONFERENCE_URL_KEY
  17. } from './constants';
  18. import logger from './logger';
  19. /**
  20. * Returns root conference state.
  21. *
  22. * @param {Object} state - Global state.
  23. * @returns {Object} Conference state.
  24. */
  25. export const getConferenceState = (state: Object) => state['features/base/conference'];
  26. /**
  27. * Is the conference joined or not.
  28. *
  29. * @param {Object} state - Global state.
  30. * @returns {boolean}
  31. */
  32. export const getIsConferenceJoined = (state: Object) => Boolean(getConferenceState(state).conference);
  33. /**
  34. * Attach a set of local tracks to a conference.
  35. *
  36. * @param {JitsiConference} conference - Conference instance.
  37. * @param {JitsiLocalTrack[]} localTracks - List of local media tracks.
  38. * @protected
  39. * @returns {Promise}
  40. */
  41. export function _addLocalTracksToConference(
  42. conference: { addTrack: Function, getLocalTracks: Function },
  43. localTracks: Array<Object>) {
  44. const conferenceLocalTracks = conference.getLocalTracks();
  45. const promises = [];
  46. for (const track of localTracks) {
  47. // XXX The library lib-jitsi-meet may be draconian, for example, when
  48. // adding one and the same video track multiple times.
  49. if (conferenceLocalTracks.indexOf(track) === -1) {
  50. promises.push(
  51. conference.addTrack(track).catch(err => {
  52. _reportError(
  53. 'Failed to add local track to conference',
  54. err);
  55. }));
  56. }
  57. }
  58. return Promise.all(promises);
  59. }
  60. /**
  61. * Logic shared between web and RN which processes the {@code USER_JOINED}
  62. * conference event and dispatches either {@link participantJoined} or
  63. * {@link hiddenParticipantJoined}.
  64. *
  65. * @param {Object} store - The redux store.
  66. * @param {JitsiMeetConference} conference - The conference for which the
  67. * {@code USER_JOINED} event is being processed.
  68. * @param {JitsiParticipant} user - The user who has just joined.
  69. * @returns {void}
  70. */
  71. export function commonUserJoinedHandling(
  72. { dispatch }: Object,
  73. conference: Object,
  74. user: Object) {
  75. const id = user.getId();
  76. const displayName = user.getDisplayName();
  77. if (user.isHidden()) {
  78. dispatch(hiddenParticipantJoined(id, displayName));
  79. } else {
  80. const isReplacing = user.isReplacing && user.isReplacing();
  81. dispatch(participantJoined({
  82. botType: user.getBotType(),
  83. connectionStatus: user.getConnectionStatus(),
  84. conference,
  85. id,
  86. name: displayName,
  87. presence: user.getStatus(),
  88. role: user.getRole(),
  89. isReplacing
  90. }));
  91. }
  92. }
  93. /**
  94. * Logic shared between web and RN which processes the {@code USER_LEFT}
  95. * conference event and dispatches either {@link participantLeft} or
  96. * {@link hiddenParticipantLeft}.
  97. *
  98. * @param {Object} store - The redux store.
  99. * @param {JitsiMeetConference} conference - The conference for which the
  100. * {@code USER_LEFT} event is being processed.
  101. * @param {JitsiParticipant} user - The user who has just left.
  102. * @returns {void}
  103. */
  104. export function commonUserLeftHandling(
  105. { dispatch }: Object,
  106. conference: Object,
  107. user: Object) {
  108. const id = user.getId();
  109. if (user.isHidden()) {
  110. clog("USER_LEFT_HIDDEN")
  111. dispatch(hiddenParticipantLeft(id));
  112. } else {
  113. const isReplaced = user.isReplaced && user.isReplaced();
  114. clog("USER_LEFT_VIS",{user,isReplaced})
  115. dispatch(participantLeft(id, conference, isReplaced));
  116. }
  117. }
  118. /**
  119. * Evaluates a specific predicate for each {@link JitsiConference} known to the
  120. * redux state features/base/conference while it returns {@code true}.
  121. *
  122. * @param {Function | Object} stateful - The redux store, state, or
  123. * {@code getState} function.
  124. * @param {Function} predicate - The predicate to evaluate for each
  125. * {@code JitsiConference} know to the redux state features/base/conference
  126. * while it returns {@code true}.
  127. * @returns {boolean} If the specified {@code predicate} returned {@code true}
  128. * for all {@code JitsiConference} instances known to the redux state
  129. * features/base/conference.
  130. */
  131. export function forEachConference(
  132. stateful: Function | Object,
  133. predicate: (Object, URL) => boolean) {
  134. const state = getConferenceState(toState(stateful));
  135. for (const v of Object.values(state)) {
  136. // Does the value of the base/conference's property look like a
  137. // JitsiConference?
  138. if (v && typeof v === 'object') {
  139. // $FlowFixMe
  140. const url: URL = v[JITSI_CONFERENCE_URL_KEY];
  141. // XXX The Web version of Jitsi Meet does not utilize
  142. // JITSI_CONFERENCE_URL_KEY at the time of this writing. An
  143. // alternative is necessary then to recognize JitsiConference
  144. // instances and myUserId is as good as any other property.
  145. if ((url || typeof v.myUserId === 'function')
  146. && !predicate(v, url)) {
  147. return false;
  148. }
  149. }
  150. }
  151. return true;
  152. }
  153. /**
  154. * Returns the display name of the conference.
  155. *
  156. * @param {Function | Object} stateful - Reference that can be resolved to Redux
  157. * state with the {@code toState} function.
  158. * @returns {string}
  159. */
  160. export function getConferenceName(stateful: Function | Object): string {
  161. const state = toState(stateful);
  162. const { callee } = state['features/base/jwt'];
  163. const { callDisplayName } = state['features/base/config'];
  164. const { pendingSubjectChange, room, subject } = getConferenceState(state);
  165. return pendingSubjectChange
  166. || subject
  167. || callDisplayName
  168. || (callee && callee.name)
  169. || safeStartCase(safeDecodeURIComponent(room));
  170. }
  171. /**
  172. * Returns the name of the conference formatted for the title.
  173. *
  174. * @param {Function | Object} stateful - Reference that can be resolved to Redux state with the {@code toState}
  175. * function.
  176. * @returns {string} - The name of the conference formatted for the title.
  177. */
  178. export function getConferenceNameForTitle(stateful: Function | Object) {
  179. return safeStartCase(safeDecodeURIComponent(getConferenceState(toState(stateful)).room));
  180. }
  181. /**
  182. * Returns the UTC timestamp when the first participant joined the conference.
  183. *
  184. * @param {Function | Object} stateful - Reference that can be resolved to Redux
  185. * state with the {@code toState} function.
  186. * @returns {number}
  187. */
  188. export function getConferenceTimestamp(stateful: Function | Object): number {
  189. const state = toState(stateful);
  190. const { conferenceTimestamp } = getConferenceState(state);
  191. return conferenceTimestamp;
  192. }
  193. /**
  194. * Returns the current {@code JitsiConference} which is joining or joined and is
  195. * not leaving. Please note the contrast with merely reading the
  196. * {@code conference} state of the feature base/conference which is not joining
  197. * but may be leaving already.
  198. *
  199. * @param {Function|Object} stateful - The redux store, state, or
  200. * {@code getState} function.
  201. * @returns {JitsiConference|undefined}
  202. */
  203. export function getCurrentConference(stateful: Function | Object) {
  204. const { conference, joining, leaving, membersOnly, passwordRequired }
  205. = getConferenceState(toState(stateful));
  206. // There is a precedence
  207. if (conference) {
  208. return conference === leaving ? undefined : conference;
  209. }
  210. return joining || passwordRequired || membersOnly;
  211. }
  212. /**
  213. * Returns the stored room name.
  214. *
  215. * @param {Object} state - The current state of the app.
  216. * @returns {string}
  217. */
  218. export function getRoomName(state: Object): string {
  219. return getConferenceState(state).room;
  220. }
  221. /**
  222. * Handle an error thrown by the backend (i.e. {@code lib-jitsi-meet}) while
  223. * manipulating a conference participant (e.g. Pin or select participant).
  224. *
  225. * @param {Error} err - The Error which was thrown by the backend while
  226. * manipulating a conference participant and which is to be handled.
  227. * @protected
  228. * @returns {void}
  229. */
  230. export function _handleParticipantError(err: { message: ?string }) {
  231. // XXX DataChannels are initialized at some later point when the conference
  232. // has multiple participants, but code that pins or selects a participant
  233. // might be executed before. So here we're swallowing a particular error.
  234. // TODO Lib-jitsi-meet should be fixed to not throw such an exception in
  235. // these scenarios.
  236. if (err.message !== 'Data channels support is disabled!') {
  237. throw err;
  238. }
  239. }
  240. /**
  241. * Determines whether a specific string is a valid room name.
  242. *
  243. * @param {(string|undefined)} room - The name of the conference room to check
  244. * for validity.
  245. * @returns {boolean} If the specified room name is valid, then true; otherwise,
  246. * false.
  247. */
  248. export function isRoomValid(room: ?string) {
  249. return typeof room === 'string' && room !== '';
  250. }
  251. /**
  252. * Remove a set of local tracks from a conference.
  253. *
  254. * @param {JitsiConference} conference - Conference instance.
  255. * @param {JitsiLocalTrack[]} localTracks - List of local media tracks.
  256. * @protected
  257. * @returns {Promise}
  258. */
  259. export function _removeLocalTracksFromConference(
  260. conference: { removeTrack: Function },
  261. localTracks: Array<Object>) {
  262. return Promise.all(localTracks.map(track =>
  263. conference.removeTrack(track)
  264. .catch(err => {
  265. // Local track might be already disposed by direct
  266. // JitsiTrack#dispose() call. So we should ignore this error
  267. // here.
  268. if (err.name !== JitsiTrackErrors.TRACK_IS_DISPOSED) {
  269. _reportError(
  270. 'Failed to remove local track from conference',
  271. err);
  272. }
  273. })
  274. ));
  275. }
  276. /**
  277. * Reports a specific Error with a specific error message. While the
  278. * implementation merely logs the specified msg and err via the console at the
  279. * time of this writing, the intention of the function is to abstract the
  280. * reporting of errors and facilitate elaborating on it in the future.
  281. *
  282. * @param {string} msg - The error message to report.
  283. * @param {Error} err - The Error to report.
  284. * @private
  285. * @returns {void}
  286. */
  287. function _reportError(msg, err) {
  288. // TODO This is a good point to call some global error handler when we have
  289. // one.
  290. logger.error(msg, err);
  291. }
  292. /**
  293. * Sends a representation of the local participant such as her avatar (URL),
  294. * e-mail address, and display name to (the remote participants of) a specific
  295. * conference.
  296. *
  297. * @param {Function|Object} stateful - The redux store, state, or
  298. * {@code getState} function.
  299. * @param {JitsiConference} conference - The {@code JitsiConference} to which
  300. * the representation of the local participant is to be sent.
  301. * @returns {void}
  302. */
  303. export function sendLocalParticipant(
  304. stateful: Function | Object,
  305. conference: {
  306. sendCommand: Function,
  307. setDisplayName: Function,
  308. setLocalParticipantProperty: Function }) {
  309. const {
  310. avatarURL,
  311. email,
  312. features,
  313. name
  314. } = getLocalParticipant(stateful);
  315. avatarURL && conference.sendCommand(AVATAR_URL_COMMAND, {
  316. value: avatarURL
  317. });
  318. email && conference.sendCommand(EMAIL_COMMAND, {
  319. value: email
  320. });
  321. if (features && features['screen-sharing'] === 'true') {
  322. conference.setLocalParticipantProperty('features_screen-sharing', true);
  323. }
  324. conference.setDisplayName(name);
  325. }
  326. /**
  327. * A safe implementation of lodash#startCase that doesn't deburr the string.
  328. *
  329. * NOTE: According to lodash roadmap, lodash v5 will have this function.
  330. *
  331. * Code based on https://github.com/lodash/lodash/blob/master/startCase.js.
  332. *
  333. * @param {string} s - The string to do start case on.
  334. * @returns {string}
  335. */
  336. function safeStartCase(s = '') {
  337. return _.words(`${s}`.replace(/['\u2019]/g, '')).reduce(
  338. (result, word, index) => result + (index ? ' ' : '') + _.upperFirst(word)
  339. , '');
  340. }