123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- // @flow
-
- import { getGravatarURL } from '@jitsi/js-utils/avatar';
- import type { Store } from 'redux';
-
- import { JitsiParticipantConnectionStatus } from '../lib-jitsi-meet';
- import { MEDIA_TYPE, shouldRenderVideoTrack } from '../media';
- import { toState } from '../redux';
- import { getTrackByMediaTypeAndParticipant } from '../tracks';
- import { createDeferred } from '../util';
-
- import {
- JIGASI_PARTICIPANT_ICON,
- MAX_DISPLAY_NAME_LENGTH,
- PARTICIPANT_ROLE
- } from './constants';
- import { preloadImage } from './preloadImage';
-
- declare var interfaceConfig: Object;
-
- /**
- * Temp structures for avatar urls to be checked/preloaded.
- */
- const AVATAR_QUEUE = [];
- const AVATAR_CHECKED_URLS = new Map();
- /* eslint-disable arrow-body-style, no-unused-vars */
- const AVATAR_CHECKER_FUNCTIONS = [
- (participant, _) => {
- return participant && participant.isJigasi ? JIGASI_PARTICIPANT_ICON : null;
- },
- (participant, _) => {
- return participant && participant.avatarURL ? participant.avatarURL : null;
- },
- (participant, store) => {
- if (participant && participant.email) {
- // TODO: remove once libravatar has deployed their new scaled up infra. -saghul
- const gravatarBaseURL
- = store.getState()['features/base/config'].gravatarBaseURL ?? 'https://www.gravatar.com/avatar/';
-
- return getGravatarURL(participant.email, gravatarBaseURL);
- }
-
- return null;
- }
- ];
- /* eslint-enable arrow-body-style, no-unused-vars */
-
- /**
- * Resolves the first loadable avatar URL for a participant.
- *
- * @param {Object} participant - The participant to resolve avatars for.
- * @param {Store} store - Redux store.
- * @returns {Promise}
- */
- export function getFirstLoadableAvatarUrl(participant: Object, store: Store<any, any>) {
- const deferred = createDeferred();
- const fullPromise = deferred.promise
- .then(() => _getFirstLoadableAvatarUrl(participant, store))
- .then(src => {
-
- if (AVATAR_QUEUE.length) {
- const next = AVATAR_QUEUE.shift();
-
- next.resolve();
- }
-
- return src;
- });
-
- if (AVATAR_QUEUE.length) {
- AVATAR_QUEUE.push(deferred);
- } else {
- deferred.resolve();
- }
-
- return fullPromise;
- }
-
- /**
- * Returns local participant from Redux state.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {(Participant|undefined)}
- */
- export function getLocalParticipant(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
-
- return state.local;
- }
-
- /**
- * Normalizes a display name so then no invalid values (padding, length...etc)
- * can be set.
- *
- * @param {string} name - The display name to set.
- * @returns {string}
- */
- export function getNormalizedDisplayName(name: string) {
- if (!name || !name.trim()) {
- return undefined;
- }
-
- return name.trim().substring(0, MAX_DISPLAY_NAME_LENGTH);
- }
-
- /**
- * Returns participant by ID from Redux state.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @param {string} id - The ID of the participant to retrieve.
- * @private
- * @returns {(Participant|undefined)}
- */
- export function getParticipantById(
- stateful: Object | Function, id: string): ?Object {
- const state = toState(stateful)['features/base/participants'];
- const { local, remote } = state;
-
- return remote.get(id) || (local?.id === id ? local : undefined);
- }
-
- /**
- * Returns the participant with the ID matching the passed ID or the local participant if the ID is
- * undefined.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @param {string|undefined} [participantID] - An optional partipantID argument.
- * @returns {Participant|undefined}
- */
- export function getParticipantByIdOrUndefined(stateful: Object | Function, participantID: ?string) {
- return participantID ? getParticipantById(stateful, participantID) : getLocalParticipant(stateful);
- }
-
- /**
- * Returns a count of the known participants in the passed in redux state,
- * excluding any fake participants.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {number}
- */
- export function getParticipantCount(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
- const { local, remote, fakeParticipants } = state;
-
- return remote.size - fakeParticipants.size + (local ? 1 : 0);
- }
-
- /**
- * Returns the Map with fake participants.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {Map<string, Participant>} - The Map with fake participants.
- */
- export function getFakeParticipants(stateful: Object | Function) {
- return toState(stateful)['features/base/participants'].fakeParticipants;
- }
-
- /**
- * Returns a count of the known remote participants in the passed in redux state.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {number}
- */
- export function getRemoteParticipantCount(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
-
- return state.remote.size;
- }
-
- /**
- * Returns a count of the known participants in the passed in redux state,
- * including fake participants.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {number}
- */
- export function getParticipantCountWithFake(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
- const { local, remote } = state;
-
- return remote.size + (local ? 1 : 0);
- }
-
- /**
- * Returns participant's display name.
- *
- * FIXME: Remove the hardcoded strings once interfaceConfig is stored in redux
- * and merge with a similarly named method in {@code conference.js}.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state.
- * @param {string} id - The ID of the participant's display name to retrieve.
- * @returns {string}
- */
- export function getParticipantDisplayName(
- stateful: Object | Function,
- id: string) {
- const participant = getParticipantById(stateful, id);
-
- if (participant) {
- if (participant.name) {
- return participant.name;
- }
-
- if (participant.local) {
- return typeof interfaceConfig === 'object'
- ? interfaceConfig.DEFAULT_LOCAL_DISPLAY_NAME
- : 'me';
- }
- }
-
- return typeof interfaceConfig === 'object'
- ? interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME
- : 'Fellow Jitster';
- }
-
- /**
- * Returns the presence status of a participant associated with the passed id.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state.
- * @param {string} id - The id of the participant.
- * @returns {string} - The presence status.
- */
- export function getParticipantPresenceStatus(
- stateful: Object | Function, id: string) {
- if (!id) {
- return undefined;
- }
- const participantById = getParticipantById(stateful, id);
-
- if (!participantById) {
- return undefined;
- }
-
- return participantById.presence;
- }
-
- /**
- * Returns true if there is at least 1 participant with screen sharing feature and false otherwise.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state.
- * @returns {boolean}
- */
- export function haveParticipantWithScreenSharingFeature(stateful: Object | Function) {
- return toState(stateful)['features/base/participants'].haveParticipantWithScreenSharingFeature;
- }
-
- /**
- * Selectors for getting all remote participants.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {Map<string, Object>}
- */
- export function getRemoteParticipants(stateful: Object | Function) {
- return toState(stateful)['features/base/participants'].remote;
- }
-
- /**
- * Returns the participant which has its pinned state set to truthy.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {(Participant|undefined)}
- */
- export function getPinnedParticipant(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
- const { pinnedParticipant } = state;
-
- if (!pinnedParticipant) {
- return undefined;
- }
-
- return getParticipantById(stateful, pinnedParticipant);
- }
-
- /**
- * Returns true if the participant is a moderator.
- *
- * @param {string} participant - Participant object.
- * @returns {boolean}
- */
- export function isParticipantModerator(participant: Object) {
- return participant?.role === PARTICIPANT_ROLE.MODERATOR;
- }
-
- /**
- * Returns the dominant speaker participant.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state or redux's
- * {@code getState} function to be used to retrieve the state features/base/participants.
- * @returns {Participant} - The participant from the redux store.
- */
- export function getDominantSpeakerParticipant(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
- const { dominantSpeaker } = state;
-
- if (!dominantSpeaker) {
- return undefined;
- }
-
- return getParticipantById(stateful, dominantSpeaker);
- }
-
- /**
- * Returns true if all of the meeting participants are moderators.
- *
- * @param {Object|Function} stateful -Object or function that can be resolved
- * to the Redux state.
- * @returns {boolean}
- */
- export function isEveryoneModerator(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
-
- return state.everyoneIsModerator === true;
- }
-
- /**
- * Checks a value and returns true if it's a preloaded icon object.
- *
- * @param {?string | ?Object} icon - The icon to check.
- * @returns {boolean}
- */
- export function isIconUrl(icon: ?string | ?Object) {
- return Boolean(icon) && (typeof icon === 'object' || typeof icon === 'function');
- }
-
- /**
- * Returns true if the current local participant is a moderator in the
- * conference.
- *
- * @param {Object|Function} stateful - Object or function that can be resolved
- * to the Redux state.
- * @returns {boolean}
- */
- export function isLocalParticipantModerator(stateful: Object | Function) {
- const state = toState(stateful)['features/base/participants'];
-
- const { local } = state;
-
- if (!local) {
- return false;
- }
-
- return isParticipantModerator(local);
- }
-
- /**
- * Returns true if the video of the participant should be rendered.
- * NOTE: This is currently only used on mobile.
- *
- * @param {Object|Function} stateful - Object or function that can be resolved
- * to the Redux state.
- * @param {string} id - The ID of the participant.
- * @returns {boolean}
- */
- export function shouldRenderParticipantVideo(stateful: Object | Function, id: string) {
- const state = toState(stateful);
- const participant = getParticipantById(state, id);
-
- if (!participant) {
- return false;
- }
-
- /* First check if we have an unmuted video track. */
- const videoTrack
- = getTrackByMediaTypeAndParticipant(state['features/base/tracks'], MEDIA_TYPE.VIDEO, id);
-
- if (!shouldRenderVideoTrack(videoTrack, /* waitForVideoStarted */ false)) {
- return false;
- }
-
- /* Then check if the participant connection is active. */
- const connectionStatus = participant.connectionStatus || JitsiParticipantConnectionStatus.ACTIVE;
-
- if (connectionStatus !== JitsiParticipantConnectionStatus.ACTIVE) {
- return false;
- }
-
- /* Then check if audio-only mode is not active. */
- const audioOnly = state['features/base/audio-only'].enabled;
-
- if (!audioOnly) {
- return true;
- }
-
- /* Last, check if the participant is sharing their screen and they are on stage. */
- const remoteScreenShares = state['features/video-layout'].remoteScreenShares || [];
- const largeVideoParticipantId = state['features/large-video'].participantId;
- const participantIsInLargeVideoWithScreen
- = participant.id === largeVideoParticipantId && remoteScreenShares.includes(participant.id);
-
- return participantIsInLargeVideoWithScreen;
- }
-
- /**
- * Resolves the first loadable avatar URL for a participant.
- *
- * @param {Object} participant - The participant to resolve avatars for.
- * @param {Store} store - Redux store.
- * @returns {?string}
- */
- async function _getFirstLoadableAvatarUrl(participant, store) {
- for (let i = 0; i < AVATAR_CHECKER_FUNCTIONS.length; i++) {
- const url = AVATAR_CHECKER_FUNCTIONS[i](participant, store);
-
- if (url !== null) {
- if (AVATAR_CHECKED_URLS.has(url)) {
- if (AVATAR_CHECKED_URLS.get(url)) {
- return url;
- }
- } else {
- try {
- const finalUrl = await preloadImage(url);
-
- AVATAR_CHECKED_URLS.set(finalUrl, true);
-
- return finalUrl;
- } catch (e) {
- AVATAR_CHECKED_URLS.set(url, false);
- }
- }
- }
- }
-
- return undefined;
- }
-
-
- /**
- * Selector for retrieving sorted participants by display name.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {Array<Object>}
- */
- export function getSortedParticipants(stateful: Object | Function) {
- const localParticipant = getLocalParticipant(stateful);
- const remoteParticipants = getRemoteParticipants(stateful);
- const raisedHandParticipantIds = getRaiseHandsQueue(stateful);
-
- const items = [];
- const dominantSpeaker = getDominantSpeakerParticipant(stateful);
- const raisedHandParticipants = [];
-
- raisedHandParticipantIds
- .map(id => remoteParticipants.get(id) || localParticipant)
- .forEach(p => {
- if (p !== dominantSpeaker) {
- raisedHandParticipants.push(p);
- }
- });
-
- remoteParticipants.forEach(p => {
- if (p !== dominantSpeaker && !raisedHandParticipantIds.find(id => p.id === id)) {
- items.push(p);
- }
- });
-
- if (!raisedHandParticipantIds.find(id => localParticipant.id === id)) {
- items.push(localParticipant);
- }
-
- items.sort((a, b) =>
- getParticipantDisplayName(stateful, a.id).localeCompare(getParticipantDisplayName(stateful, b.id))
- );
-
- items.unshift(...raisedHandParticipants);
-
- if (dominantSpeaker && dominantSpeaker !== localParticipant) {
- items.unshift(dominantSpeaker);
- }
-
- return items;
- }
-
- /**
- * Selector for retrieving ids of alphabetically sorted participants by name.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {Array<string>}
- */
- export function getSortedParticipantIds(stateful: Object | Function): Array<string> {
- const participantIds = getSortedParticipants(stateful).map((p): Object => p.id);
-
- return participantIds;
- }
-
- /**
- * Get the participants queue with raised hands.
- *
- * @param {(Function|Object)} stateful - The (whole) redux state, or redux's
- * {@code getState} function to be used to retrieve the state
- * features/base/participants.
- * @returns {Array<string>}
- */
- export function getRaiseHandsQueue(stateful: Object | Function): Array<string> {
- const { raisedHandsQueue } = toState(stateful)['features/base/participants'];
-
- return raisedHandsQueue;
- }
|