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.

actions.js 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. import { JitsiConferenceEvents } from '../lib-jitsi-meet';
  2. import { setVideoMuted } from '../media';
  3. import {
  4. dominantSpeakerChanged,
  5. getLocalParticipant,
  6. participantConnectionStatusChanged,
  7. participantJoined,
  8. participantLeft,
  9. participantRoleChanged,
  10. participantUpdated
  11. } from '../participants';
  12. import { trackAdded, trackRemoved } from '../tracks';
  13. import {
  14. CONFERENCE_FAILED,
  15. CONFERENCE_JOINED,
  16. CONFERENCE_LEFT,
  17. CONFERENCE_WILL_JOIN,
  18. CONFERENCE_WILL_LEAVE,
  19. LOCK_STATE_CHANGED,
  20. SET_AUDIO_ONLY,
  21. _SET_AUDIO_ONLY_VIDEO_MUTED,
  22. SET_LARGE_VIDEO_HD_STATUS,
  23. SET_LASTN,
  24. SET_PASSWORD,
  25. SET_PASSWORD_FAILED,
  26. SET_ROOM
  27. } from './actionTypes';
  28. import {
  29. AVATAR_ID_COMMAND,
  30. AVATAR_URL_COMMAND,
  31. EMAIL_COMMAND
  32. } from './constants';
  33. import { _addLocalTracksToConference } from './functions';
  34. import type { Dispatch } from 'redux';
  35. /**
  36. * Adds conference (event) listeners.
  37. *
  38. * @param {JitsiConference} conference - The JitsiConference instance.
  39. * @param {Dispatch} dispatch - The Redux dispatch function.
  40. * @private
  41. * @returns {void}
  42. */
  43. function _addConferenceListeners(conference, dispatch) {
  44. // Dispatches into features/base/conference follow:
  45. conference.on(
  46. JitsiConferenceEvents.CONFERENCE_FAILED,
  47. (...args) => dispatch(conferenceFailed(conference, ...args)));
  48. conference.on(
  49. JitsiConferenceEvents.CONFERENCE_JOINED,
  50. (...args) => dispatch(conferenceJoined(conference, ...args)));
  51. conference.on(
  52. JitsiConferenceEvents.CONFERENCE_LEFT,
  53. (...args) => dispatch(conferenceLeft(conference, ...args)));
  54. conference.on(
  55. JitsiConferenceEvents.LOCK_STATE_CHANGED,
  56. (...args) => dispatch(lockStateChanged(conference, ...args)));
  57. // Dispatches into features/base/tracks follow:
  58. conference.on(
  59. JitsiConferenceEvents.TRACK_ADDED,
  60. t => t && !t.isLocal() && dispatch(trackAdded(t)));
  61. conference.on(
  62. JitsiConferenceEvents.TRACK_REMOVED,
  63. t => t && !t.isLocal() && dispatch(trackRemoved(t)));
  64. // Dispatches into features/base/participants follow:
  65. conference.on(
  66. JitsiConferenceEvents.DOMINANT_SPEAKER_CHANGED,
  67. (...args) => dispatch(dominantSpeakerChanged(...args)));
  68. conference.on(
  69. JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED,
  70. (...args) => dispatch(participantConnectionStatusChanged(...args)));
  71. conference.on(
  72. JitsiConferenceEvents.USER_JOINED,
  73. (id, user) => dispatch(participantJoined({
  74. id,
  75. name: user.getDisplayName(),
  76. role: user.getRole()
  77. })));
  78. conference.on(
  79. JitsiConferenceEvents.USER_LEFT,
  80. (...args) => dispatch(participantLeft(...args)));
  81. conference.on(
  82. JitsiConferenceEvents.USER_ROLE_CHANGED,
  83. (...args) => dispatch(participantRoleChanged(...args)));
  84. conference.addCommandListener(
  85. AVATAR_ID_COMMAND,
  86. (data, id) => dispatch(participantUpdated({
  87. id,
  88. avatarID: data.value
  89. })));
  90. conference.addCommandListener(
  91. AVATAR_URL_COMMAND,
  92. (data, id) => dispatch(participantUpdated({
  93. id,
  94. avatarURL: data.value
  95. })));
  96. conference.addCommandListener(
  97. EMAIL_COMMAND,
  98. (data, id) => dispatch(participantUpdated({
  99. id,
  100. email: data.value
  101. })));
  102. }
  103. /**
  104. * Sets the data for the local participant to the conference.
  105. *
  106. * @param {JitsiConference} conference - The JitsiConference instance.
  107. * @param {Object} state - The Redux state.
  108. * @returns {void}
  109. */
  110. function _setLocalParticipantData(conference, state) {
  111. const { avatarID } = getLocalParticipant(state);
  112. conference.removeCommand(AVATAR_ID_COMMAND);
  113. conference.sendCommand(AVATAR_ID_COMMAND, {
  114. value: avatarID
  115. });
  116. }
  117. /**
  118. * Signals that a specific conference has failed.
  119. *
  120. * @param {JitsiConference} conference - The JitsiConference that has failed.
  121. * @param {string} error - The error describing/detailing the cause of the
  122. * failure.
  123. * @returns {{
  124. * type: CONFERENCE_FAILED,
  125. * conference: JitsiConference,
  126. * error: string
  127. * }}
  128. * @public
  129. */
  130. export function conferenceFailed(conference, error) {
  131. return {
  132. type: CONFERENCE_FAILED,
  133. conference,
  134. error
  135. };
  136. }
  137. /**
  138. * Attach any pre-existing local media to the conference once the conference has
  139. * been joined.
  140. *
  141. * @param {JitsiConference} conference - The JitsiConference instance which was
  142. * joined by the local participant.
  143. * @returns {Function}
  144. */
  145. export function conferenceJoined(conference) {
  146. return (dispatch, getState) => {
  147. const localTracks
  148. = getState()['features/base/tracks']
  149. .filter(t => t.local)
  150. .map(t => t.jitsiTrack);
  151. if (localTracks.length) {
  152. _addLocalTracksToConference(conference, localTracks);
  153. }
  154. dispatch({
  155. type: CONFERENCE_JOINED,
  156. conference
  157. });
  158. };
  159. }
  160. /**
  161. * Signals that a specific conference has been left.
  162. *
  163. * @param {JitsiConference} conference - The JitsiConference instance which was
  164. * left by the local participant.
  165. * @returns {{
  166. * type: CONFERENCE_LEFT,
  167. * conference: JitsiConference
  168. * }}
  169. */
  170. export function conferenceLeft(conference) {
  171. return {
  172. type: CONFERENCE_LEFT,
  173. conference
  174. };
  175. }
  176. /**
  177. * Signals the intention of the application to have the local participant join a
  178. * specific conference. Similar in fashion to {@code CONFERENCE_JOINED}.
  179. *
  180. * @param {JitsiConference} conference - The JitsiConference instance the
  181. * local participant will (try to) join.
  182. * @returns {{
  183. * type: CONFERENCE_WILL_JOIN,
  184. * conference: JitsiConference
  185. * }}
  186. */
  187. function _conferenceWillJoin(conference) {
  188. return {
  189. type: CONFERENCE_WILL_JOIN,
  190. conference
  191. };
  192. }
  193. /**
  194. * Signals the intention of the application to have the local participant leave
  195. * a specific conference. Similar in fashion to CONFERENCE_LEFT. Contrary to it
  196. * though, it's not guaranteed because CONFERENCE_LEFT may be triggered by
  197. * lib-jitsi-meet and not the application.
  198. *
  199. * @param {JitsiConference} conference - The JitsiConference instance which will
  200. * be left by the local participant.
  201. * @returns {{
  202. * type: CONFERENCE_LEFT,
  203. * conference: JitsiConference
  204. * }}
  205. */
  206. export function conferenceWillLeave(conference) {
  207. return {
  208. type: CONFERENCE_WILL_LEAVE,
  209. conference
  210. };
  211. }
  212. /**
  213. * Initializes a new conference.
  214. *
  215. * @returns {Function}
  216. */
  217. export function createConference() {
  218. return (dispatch, getState) => {
  219. const state = getState();
  220. const connection = state['features/base/connection'].connection;
  221. if (!connection) {
  222. throw new Error('Cannot create a conference without a connection!');
  223. }
  224. const { password, room } = state['features/base/conference'];
  225. if (!room) {
  226. throw new Error('Cannot join a conference without a room name!');
  227. }
  228. const conference
  229. = connection.initJitsiConference(
  230. // XXX Lib-jitsi-meet does not accept uppercase letters.
  231. room.toLowerCase(),
  232. state['features/base/config']);
  233. dispatch(_conferenceWillJoin(conference));
  234. _addConferenceListeners(conference, dispatch);
  235. _setLocalParticipantData(conference, state);
  236. conference.join(password);
  237. };
  238. }
  239. /**
  240. * Signals that the lock state of a specific JitsiConference changed.
  241. *
  242. * @param {JitsiConference} conference - The JitsiConference which had its lock
  243. * state changed.
  244. * @param {boolean} locked - If the specified conference became locked, true;
  245. * otherwise, false.
  246. * @returns {{
  247. * type: LOCK_STATE_CHANGED,
  248. * conference: JitsiConference,
  249. * locked: boolean
  250. * }}
  251. */
  252. export function lockStateChanged(conference, locked) {
  253. return {
  254. type: LOCK_STATE_CHANGED,
  255. conference,
  256. locked
  257. };
  258. }
  259. /**
  260. * Sets the audio-only flag for the current JitsiConference.
  261. *
  262. * @param {boolean} audioOnly - True if the conference should be audio only;
  263. * false, otherwise.
  264. * @private
  265. * @returns {{
  266. * type: SET_AUDIO_ONLY,
  267. * audioOnly: boolean
  268. * }}
  269. */
  270. function _setAudioOnly(audioOnly) {
  271. return {
  272. type: SET_AUDIO_ONLY,
  273. audioOnly
  274. };
  275. }
  276. /**
  277. * Signals that the app should mute video because it's now in audio-only mode,
  278. * or unmute it because it no longer is. If video was already muted, nothing
  279. * will happen; otherwise, it will be muted. When audio-only mode is disabled,
  280. * the previous state will be restored.
  281. *
  282. * @param {boolean} muted - True if video should be muted; false, otherwise.
  283. * @protected
  284. * @returns {Function}
  285. */
  286. export function _setAudioOnlyVideoMuted(muted: boolean) {
  287. return (dispatch, getState) => {
  288. if (muted) {
  289. const { video } = getState()['features/base/media'];
  290. if (video.muted) {
  291. // Video is already muted, do nothing.
  292. return;
  293. }
  294. } else {
  295. const { audioOnlyVideoMuted }
  296. = getState()['features/base/conference'];
  297. if (!audioOnlyVideoMuted) {
  298. // We didn't mute video, do nothing.
  299. return;
  300. }
  301. }
  302. // Remember that local video was muted due to the audio-only mode
  303. // vs user's choice.
  304. dispatch({
  305. type: _SET_AUDIO_ONLY_VIDEO_MUTED,
  306. muted
  307. });
  308. dispatch(setVideoMuted(muted));
  309. };
  310. }
  311. /**
  312. * Action to set whether or not the currently displayed large video is in
  313. * high-definition.
  314. *
  315. * @param {boolean} isLargeVideoHD - True if the large video is high-definition.
  316. * @returns {{
  317. * type: SET_LARGE_VIDEO_HD_STATUS,
  318. * isLargeVideoHD: boolean
  319. * }}
  320. */
  321. export function setLargeVideoHDStatus(isLargeVideoHD) {
  322. return {
  323. type: SET_LARGE_VIDEO_HD_STATUS,
  324. isLargeVideoHD
  325. };
  326. }
  327. /**
  328. * Sets the video channel's last N (value) of the current conference. A value of
  329. * undefined shall be used to reset it to the default value.
  330. *
  331. * @param {(number|undefined)} lastN - The last N value to be set.
  332. * @returns {Function}
  333. */
  334. export function setLastN(lastN: ?number) {
  335. return (dispatch: Dispatch<*>, getState: Function) => {
  336. if (typeof lastN === 'undefined') {
  337. const config = getState()['features/base/config'];
  338. /* eslint-disable no-param-reassign */
  339. lastN = config.channelLastN;
  340. if (typeof lastN === 'undefined') {
  341. lastN = -1;
  342. }
  343. /* eslint-enable no-param-reassign */
  344. }
  345. dispatch({
  346. type: SET_LASTN,
  347. lastN
  348. });
  349. };
  350. }
  351. /**
  352. * Sets the password to join or lock a specific JitsiConference.
  353. *
  354. * @param {JitsiConference} conference - The JitsiConference which requires a
  355. * password to join or is to be locked with the specified password.
  356. * @param {Function} method - The JitsiConference method of password protection
  357. * such as join or lock.
  358. * @param {string} password - The password with which the specified conference
  359. * is to be joined or locked.
  360. * @returns {Function}
  361. */
  362. export function setPassword(conference, method, password) {
  363. return (dispatch, getState) => {
  364. switch (method) {
  365. case conference.join: {
  366. let state = getState()['features/base/conference'];
  367. // Make sure that the action will set a password for a conference
  368. // that the application wants joined.
  369. if (state.passwordRequired === conference) {
  370. dispatch({
  371. type: SET_PASSWORD,
  372. conference,
  373. method,
  374. password
  375. });
  376. // Join the conference with the newly-set password.
  377. // Make sure that the action did set the password.
  378. state = getState()['features/base/conference'];
  379. if (state.password === password
  380. && !state.passwordRequired
  381. // Make sure that the application still wants the
  382. // conference joined.
  383. && !state.conference) {
  384. method.call(conference, password);
  385. }
  386. }
  387. break;
  388. }
  389. case conference.lock: {
  390. const state = getState()['features/base/conference'];
  391. if (state.conference === conference) {
  392. return (
  393. method.call(conference, password)
  394. .then(() => dispatch({
  395. type: SET_PASSWORD,
  396. conference,
  397. method,
  398. password
  399. }))
  400. .catch(error => dispatch({
  401. type: SET_PASSWORD_FAILED,
  402. error
  403. }))
  404. );
  405. }
  406. return Promise.reject();
  407. }
  408. }
  409. };
  410. }
  411. /**
  412. * Sets (the name of) the room of the conference to be joined.
  413. *
  414. * @param {(string|undefined)} room - The name of the room of the conference to
  415. * be joined.
  416. * @returns {{
  417. * type: SET_ROOM,
  418. * room: string
  419. * }}
  420. */
  421. export function setRoom(room) {
  422. return {
  423. type: SET_ROOM,
  424. room
  425. };
  426. }
  427. /**
  428. * Toggles the audio-only flag for the current JitsiConference.
  429. *
  430. * @returns {Function}
  431. */
  432. export function toggleAudioOnly() {
  433. return (dispatch: Dispatch<*>, getState: Function) => {
  434. const { audioOnly } = getState()['features/base/conference'];
  435. return dispatch(_setAudioOnly(!audioOnly));
  436. };
  437. }