123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- // @flow
-
- import { getMeetingRegion, getRecordingSharingUrl } from '../base/config';
- import JitsiMeetJS, { JitsiRecordingConstants } from '../base/lib-jitsi-meet';
- import { getLocalParticipant, getParticipantDisplayName } from '../base/participants';
- import { copyText } from '../base/util/helpers';
- import { getVpaasTenant, isVpaasMeeting } from '../billing-counter/functions';
- import {
- NOTIFICATION_TIMEOUT,
- hideNotification,
- showErrorNotification,
- showNotification
- } from '../notifications';
-
- import {
- CLEAR_RECORDING_SESSIONS,
- RECORDING_SESSION_UPDATED,
- SET_PENDING_RECORDING_NOTIFICATION_UID,
- SET_STREAM_KEY
- } from './actionTypes';
- import { getRecordingLink, getResourceId } from './functions';
- import logger from './logger';
-
- /**
- * Clears the data of every recording sessions.
- *
- * @returns {{
- * type: CLEAR_RECORDING_SESSIONS
- * }}
- */
- export function clearRecordingSessions() {
- return {
- type: CLEAR_RECORDING_SESSIONS
- };
- }
-
- /**
- * Signals that the pending recording notification should be removed from the
- * screen.
- *
- * @param {string} streamType - The type of the stream ({@code 'file'} or
- * {@code 'stream'}).
- * @returns {Function}
- */
- export function hidePendingRecordingNotification(streamType: string) {
- return (dispatch: Function, getState: Function) => {
- const { pendingNotificationUids } = getState()['features/recording'];
- const pendingNotificationUid = pendingNotificationUids[streamType];
-
- if (pendingNotificationUid) {
- dispatch(hideNotification(pendingNotificationUid));
- dispatch(
- _setPendingRecordingNotificationUid(
- undefined, streamType));
- }
- };
- }
-
- /**
- * Sets the stream key last used by the user for later reuse.
- *
- * @param {string} streamKey - The stream key to set.
- * @returns {{
- * type: SET_STREAM_KEY,
- * streamKey: string
- * }}
- */
- export function setLiveStreamKey(streamKey: string) {
- return {
- type: SET_STREAM_KEY,
- streamKey
- };
- }
-
- /**
- * Signals that the pending recording notification should be shown on the
- * screen.
- *
- * @param {string} streamType - The type of the stream ({@code file} or
- * {@code stream}).
- * @returns {Function}
- */
- export function showPendingRecordingNotification(streamType: string) {
- return async (dispatch: Function) => {
- const isLiveStreaming
- = streamType === JitsiMeetJS.constants.recording.mode.STREAM;
- const dialogProps = isLiveStreaming ? {
- descriptionKey: 'liveStreaming.pending',
- titleKey: 'dialog.liveStreaming'
- } : {
- descriptionKey: 'recording.pending',
- titleKey: 'dialog.recording'
- };
- const notification = await dispatch(showNotification({
- isDismissAllowed: false,
- ...dialogProps
- }));
-
- if (notification) {
- dispatch(_setPendingRecordingNotificationUid(notification.uid, streamType));
- }
- };
- }
-
- /**
- * Signals that the recording error notification should be shown.
- *
- * @param {Object} props - The Props needed to render the notification.
- * @returns {showErrorNotification}
- */
- export function showRecordingError(props: Object) {
- return showErrorNotification(props);
- }
-
- /**
- * Signals that the stopped recording notification should be shown on the
- * screen for a given period.
- *
- * @param {string} streamType - The type of the stream ({@code file} or
- * {@code stream}).
- * @param {string?} participantName - The participant name stopping the recording.
- * @returns {showNotification}
- */
- export function showStoppedRecordingNotification(streamType: string, participantName?: string) {
- const isLiveStreaming
- = streamType === JitsiMeetJS.constants.recording.mode.STREAM;
- const descriptionArguments = { name: participantName };
- const dialogProps = isLiveStreaming ? {
- descriptionKey: participantName ? 'liveStreaming.offBy' : 'liveStreaming.off',
- descriptionArguments,
- titleKey: 'dialog.liveStreaming'
- } : {
- descriptionKey: participantName ? 'recording.offBy' : 'recording.off',
- descriptionArguments,
- titleKey: 'dialog.recording'
- };
-
- return showNotification(dialogProps, NOTIFICATION_TIMEOUT);
- }
-
- /**
- * Signals that a started recording notification should be shown on the
- * screen for a given period.
- *
- * @param {string} mode - The type of the recording: Stream of File.
- * @param {string | Object } initiator - The participant who started recording.
- * @param {string} sessionId - The recording session id.
- * @returns {Function}
- */
- export function showStartedRecordingNotification(
- mode: string,
- initiator: Object | string,
- sessionId: string) {
- return async (dispatch: Function, getState: Function) => {
- const state = getState();
- const initiatorId = getResourceId(initiator);
- const participantName = getParticipantDisplayName(state, initiatorId);
- let dialogProps = {
- customActionNameKey: undefined,
- descriptionKey: participantName ? 'liveStreaming.onBy' : 'liveStreaming.on',
- descriptionArguments: { name: participantName },
- isDismissAllowed: true,
- titleKey: 'dialog.liveStreaming'
- };
-
- if (mode !== JitsiMeetJS.constants.recording.mode.STREAM) {
- const recordingSharingUrl = getRecordingSharingUrl(state);
- const iAmRecordingInitiator = getLocalParticipant(state).id === initiatorId;
-
- dialogProps = {
- customActionHandler: undefined,
- customActionNameKey: undefined,
- descriptionKey: participantName ? 'recording.onBy' : 'recording.on',
- descriptionArguments: { name: participantName },
- isDismissAllowed: true,
- titleKey: 'dialog.recording'
- };
-
- // fetch the recording link from the server for recording initiators in jaas meetings
- if (recordingSharingUrl
- && isVpaasMeeting(state)
- && iAmRecordingInitiator) {
- const region = getMeetingRegion(state);
- const tenant = getVpaasTenant(state);
-
- try {
- const link = await getRecordingLink(recordingSharingUrl, sessionId, region, tenant);
-
- // add the option to copy recording link
- dialogProps.customActionNameKey = 'recording.copyLink';
- dialogProps.customActionHandler = () => copyText(link);
- dialogProps.titleKey = 'recording.on';
- dialogProps.descriptionKey = 'recording.linkGenerated';
- dialogProps.isDismissAllowed = false;
- } catch (err) {
- dispatch(showErrorNotification({
- titleKey: 'recording.errorFetchingLink'
- }));
-
- return logger.error('Could not fetch recording link', err);
- }
- }
- }
-
- dispatch(showNotification(dialogProps));
- };
- }
-
- /**
- * Updates the known state for a given recording session.
- *
- * @param {Object} session - The new state to merge with the existing state in
- * redux.
- * @returns {{
- * type: RECORDING_SESSION_UPDATED,
- * sessionData: Object
- * }}
- */
- export function updateRecordingSessionData(session: Object) {
- const status = session.getStatus();
- const timestamp
- = status === JitsiRecordingConstants.status.ON
- ? Date.now() / 1000
- : undefined;
-
- return {
- type: RECORDING_SESSION_UPDATED,
- sessionData: {
- error: session.getError(),
- id: session.getID(),
- initiator: session.getInitiator(),
- liveStreamViewURL: session.getLiveStreamViewURL(),
- mode: session.getMode(),
- status,
- terminator: session.getTerminator(),
- timestamp
- }
- };
- }
-
- /**
- * Sets UID of the the pending streaming notification to use it when hinding
- * the notification is necessary, or unsets it when undefined (or no param) is
- * passed.
- *
- * @param {?number} uid - The UID of the notification.
- * @param {string} streamType - The type of the stream ({@code file} or
- * {@code stream}).
- * @returns {{
- * type: SET_PENDING_RECORDING_NOTIFICATION_UID,
- * streamType: string,
- * uid: number
- * }}
- */
- function _setPendingRecordingNotificationUid(uid: ?number, streamType: string) {
- return {
- type: SET_PENDING_RECORDING_NOTIFICATION_UID,
- streamType,
- uid
- };
- }
|