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.

functions.js 12KB

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