您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

functions.js 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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_ID_COMMAND,
  15. AVATAR_URL_COMMAND,
  16. EMAIL_COMMAND,
  17. JITSI_CONFERENCE_URL_KEY,
  18. VIDEO_QUALITY_LEVELS
  19. } from './constants';
  20. import logger from './logger';
  21. /**
  22. * Attach a set of local tracks to a conference.
  23. *
  24. * @param {JitsiConference} conference - Conference instance.
  25. * @param {JitsiLocalTrack[]} localTracks - List of local media tracks.
  26. * @protected
  27. * @returns {Promise}
  28. */
  29. export function _addLocalTracksToConference(
  30. conference: { addTrack: Function, getLocalTracks: Function },
  31. localTracks: Array<Object>) {
  32. const conferenceLocalTracks = conference.getLocalTracks();
  33. const promises = [];
  34. for (const track of localTracks) {
  35. // XXX The library lib-jitsi-meet may be draconian, for example, when
  36. // adding one and the same video track multiple times.
  37. if (conferenceLocalTracks.indexOf(track) === -1) {
  38. promises.push(
  39. conference.addTrack(track).catch(err => {
  40. _reportError(
  41. 'Failed to add local track to conference',
  42. err);
  43. }));
  44. }
  45. }
  46. return Promise.all(promises);
  47. }
  48. /**
  49. * Logic shared between web and RN which processes the {@code USER_JOINED}
  50. * conference event and dispatches either {@link participantJoined} or
  51. * {@link hiddenParticipantJoined}.
  52. *
  53. * @param {Object} store - The redux store.
  54. * @param {JitsiMeetConference} conference - The conference for which the
  55. * {@code USER_JOINED} event is being processed.
  56. * @param {JitsiParticipant} user - The user who has just joined.
  57. * @returns {void}
  58. */
  59. export function commonUserJoinedHandling(
  60. { dispatch }: Object,
  61. conference: Object,
  62. user: Object) {
  63. const id = user.getId();
  64. const displayName = user.getDisplayName();
  65. if (user.isHidden()) {
  66. dispatch(hiddenParticipantJoined(id, displayName));
  67. } else {
  68. dispatch(participantJoined({
  69. botType: user.getBotType(),
  70. conference,
  71. id,
  72. name: displayName,
  73. presence: user.getStatus(),
  74. role: user.getRole()
  75. }));
  76. }
  77. }
  78. /**
  79. * Logic shared between web and RN which processes the {@code USER_LEFT}
  80. * conference event and dispatches either {@link participantLeft} or
  81. * {@link hiddenParticipantLeft}.
  82. *
  83. * @param {Object} store - The redux store.
  84. * @param {JitsiMeetConference} conference - The conference for which the
  85. * {@code USER_LEFT} event is being processed.
  86. * @param {JitsiParticipant} user - The user who has just left.
  87. * @returns {void}
  88. */
  89. export function commonUserLeftHandling(
  90. { dispatch }: Object,
  91. conference: Object,
  92. user: Object) {
  93. const id = user.getId();
  94. if (user.isHidden()) {
  95. dispatch(hiddenParticipantLeft(id));
  96. } else {
  97. dispatch(participantLeft(id, conference));
  98. }
  99. }
  100. /**
  101. * Evaluates a specific predicate for each {@link JitsiConference} known to the
  102. * redux state features/base/conference while it returns {@code true}.
  103. *
  104. * @param {Function | Object} stateful - The redux store, state, or
  105. * {@code getState} function.
  106. * @param {Function} predicate - The predicate to evaluate for each
  107. * {@code JitsiConference} know to the redux state features/base/conference
  108. * while it returns {@code true}.
  109. * @returns {boolean} If the specified {@code predicate} returned {@code true}
  110. * for all {@code JitsiConference} instances known to the redux state
  111. * features/base/conference.
  112. */
  113. export function forEachConference(
  114. stateful: Function | Object,
  115. predicate: (Object, URL) => boolean) {
  116. const state = toState(stateful)['features/base/conference'];
  117. for (const v of Object.values(state)) {
  118. // Does the value of the base/conference's property look like a
  119. // JitsiConference?
  120. if (v && typeof v === 'object') {
  121. // $FlowFixMe
  122. const url: URL = v[JITSI_CONFERENCE_URL_KEY];
  123. // XXX The Web version of Jitsi Meet does not utilize
  124. // JITSI_CONFERENCE_URL_KEY at the time of this writing. An
  125. // alternative is necessary then to recognize JitsiConference
  126. // instances and myUserId is as good as any other property.
  127. if ((url || typeof v.myUserId === 'function')
  128. && !predicate(v, url)) {
  129. return false;
  130. }
  131. }
  132. }
  133. return true;
  134. }
  135. /**
  136. * Returns the display name of the conference.
  137. *
  138. * @param {Function | Object} stateful - Reference that can be resolved to Redux
  139. * state with the {@code toState} function.
  140. * @returns {string}
  141. */
  142. export function getConferenceName(stateful: Function | Object): string {
  143. const state = toState(stateful);
  144. const { callee } = state['features/base/jwt'];
  145. const { callDisplayName } = state['features/base/config'];
  146. const { pendingSubjectChange, room, subject } = state['features/base/conference'];
  147. return pendingSubjectChange
  148. || subject
  149. || callDisplayName
  150. || (callee && callee.name)
  151. || safeStartCase(safeDecodeURIComponent(room));
  152. }
  153. /**
  154. * Returns the name of the conference formated for the title.
  155. *
  156. * @param {Function | Object} stateful - Reference that can be resolved to Redux state with the {@code toState}
  157. * function.
  158. * @returns {string} - The name of the conference formated for the title.
  159. */
  160. export function getConferenceNameForTitle(stateful: Function | Object) {
  161. return safeStartCase(safeDecodeURIComponent(toState(stateful)['features/base/conference'].room));
  162. }
  163. /**
  164. * Returns the UTC timestamp when the first participant joined the conference.
  165. *
  166. * @param {Function | Object} stateful - Reference that can be resolved to Redux
  167. * state with the {@code toState} function.
  168. * @returns {number}
  169. */
  170. export function getConferenceTimestamp(stateful: Function | Object): number {
  171. const state = toState(stateful);
  172. const { conferenceTimestamp } = state['features/base/conference'];
  173. return conferenceTimestamp;
  174. }
  175. /**
  176. * Returns the current {@code JitsiConference} which is joining or joined and is
  177. * not leaving. Please note the contrast with merely reading the
  178. * {@code conference} state of the feature base/conference which is not joining
  179. * but may be leaving already.
  180. *
  181. * @param {Function|Object} stateful - The redux store, state, or
  182. * {@code getState} function.
  183. * @returns {JitsiConference|undefined}
  184. */
  185. export function getCurrentConference(stateful: Function | Object) {
  186. const { conference, joining, leaving, passwordRequired }
  187. = toState(stateful)['features/base/conference'];
  188. // There is a precendence
  189. if (conference) {
  190. return conference === leaving ? undefined : conference;
  191. }
  192. return joining || passwordRequired;
  193. }
  194. /**
  195. * Finds the nearest match for the passed in {@link availableHeight} to am
  196. * enumerated value in {@code VIDEO_QUALITY_LEVELS}.
  197. *
  198. * @param {number} availableHeight - The height to which a matching video
  199. * quality level should be found.
  200. * @returns {number} The closest matching value from
  201. * {@code VIDEO_QUALITY_LEVELS}.
  202. */
  203. export function getNearestReceiverVideoQualityLevel(availableHeight: number) {
  204. const qualityLevels = [
  205. VIDEO_QUALITY_LEVELS.HIGH,
  206. VIDEO_QUALITY_LEVELS.STANDARD,
  207. VIDEO_QUALITY_LEVELS.LOW
  208. ];
  209. let selectedLevel = qualityLevels[0];
  210. for (let i = 1; i < qualityLevels.length; i++) {
  211. const previousValue = qualityLevels[i - 1];
  212. const currentValue = qualityLevels[i];
  213. const diffWithCurrent = Math.abs(availableHeight - currentValue);
  214. const diffWithPrevious = Math.abs(availableHeight - previousValue);
  215. if (diffWithCurrent < diffWithPrevious) {
  216. selectedLevel = currentValue;
  217. }
  218. }
  219. return selectedLevel;
  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. avatarID,
  311. avatarURL,
  312. email,
  313. features,
  314. name
  315. } = getLocalParticipant(stateful);
  316. avatarID && conference.sendCommand(AVATAR_ID_COMMAND, {
  317. value: avatarID
  318. });
  319. avatarURL && conference.sendCommand(AVATAR_URL_COMMAND, {
  320. value: avatarURL
  321. });
  322. email && conference.sendCommand(EMAIL_COMMAND, {
  323. value: email
  324. });
  325. if (features && features['screen-sharing'] === 'true') {
  326. conference.setLocalParticipantProperty('features_screen-sharing', true);
  327. }
  328. conference.setDisplayName(name);
  329. }
  330. /**
  331. * A safe implementation of lodash#startCase that doesn't deburr the string.
  332. *
  333. * NOTE: According to lodash roadmap, lodash v5 will have this function.
  334. *
  335. * Code based on https://github.com/lodash/lodash/blob/master/startCase.js.
  336. *
  337. * @param {string} s - The string to do start case on.
  338. * @returns {string}
  339. */
  340. function safeStartCase(s = '') {
  341. return _.words(`${s}`.replace(/['\u2019]/g, '')).reduce(
  342. (result, word, index) => result + (index ? ' ' : '') + _.upperFirst(word)
  343. , '');
  344. }