123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
-
- import { Strophe } from 'strophe.js';
-
-
- import * as JitsiConferenceEvents from './JitsiConferenceEvents';
- import { ParticipantConnectionStatus }
- from './modules/connectivity/ParticipantConnectionStatus';
- import { MediaType } from './service/RTC/MediaType';
-
- /**
- * Represents a participant in (i.e. a member of) a conference.
- */
- export default class JitsiParticipant {
-
- /* eslint-disable max-params */
-
- /**
- * Initializes a new JitsiParticipant instance.
- *
- * @constructor
- * @param jid the conference XMPP jid
- * @param conference
- * @param displayName
- * @param {Boolean} hidden - True if the new JitsiParticipant instance is to
- * represent a hidden participant; otherwise, false.
- * @param {string} statsID - optional participant statsID
- * @param {string} status - the initial status if any.
- * @param {object} identity - the xmpp identity
- * @param {boolean?} isReplacing - whether this is a participant replacing another into the meeting.
- * @param {boolean?} isReplaced - whether this is a participant to be kicked and replaced into the meeting.
- */
- constructor(jid, conference, displayName, hidden, statsID, status, identity, isReplacing, isReplaced) {
- this._jid = jid;
- this._id = Strophe.getResourceFromJid(jid);
- this._conference = conference;
- this._displayName = displayName;
- this._supportsDTMF = false;
- this._tracks = [];
- this._role = 'none';
- this._status = status;
- this._hidden = hidden;
- this._statsID = statsID;
- this._connectionStatus = ParticipantConnectionStatus.ACTIVE;
- this._properties = {};
- this._identity = identity;
- this._isReplacing = isReplacing;
- this._isReplaced = isReplaced;
- this._features = new Set();
- }
-
- /* eslint-enable max-params */
-
- /**
- * @returns {JitsiConference} The conference that this participant belongs
- * to.
- */
- getConference() {
- return this._conference;
- }
-
- /**
- * Gets the value of a property of this participant.
- */
- getProperty(name) {
- return this._properties[name];
- }
-
- /**
- * Checks whether this <tt>JitsiParticipant</tt> has any video tracks which
- * are muted according to their underlying WebRTC <tt>MediaStreamTrack</tt>
- * muted status.
- * @return {boolean} <tt>true</tt> if this <tt>participant</tt> contains any
- * video <tt>JitsiTrack</tt>s which are muted as defined in
- * {@link JitsiTrack.isWebRTCTrackMuted}.
- */
- hasAnyVideoTrackWebRTCMuted() {
- return (
- this.getTracks().some(
- jitsiTrack =>
- jitsiTrack.getType() === MediaType.VIDEO
- && jitsiTrack.isWebRTCTrackMuted()));
- }
-
- /**
- * Updates participant's connection status.
- * @param {string} state the current participant connection state.
- * {@link ParticipantConnectionStatus}.
- * @private
- */
- _setConnectionStatus(status) {
- this._connectionStatus = status;
- }
-
- /**
- * Return participant's connectivity status.
- *
- * @returns {string} the connection status
- * <tt>ParticipantConnectionStatus</tt> of the user.
- * {@link ParticipantConnectionStatus}.
- */
- getConnectionStatus() {
- return this._connectionStatus;
- }
-
- /**
- * Sets the value of a property of this participant, and fires an event if
- * the value has changed.
- * @name the name of the property.
- * @value the value to set.
- */
- setProperty(name, value) {
- const oldValue = this._properties[name];
-
- if (value !== oldValue) {
- this._properties[name] = value;
- this._conference.eventEmitter.emit(
- JitsiConferenceEvents.PARTICIPANT_PROPERTY_CHANGED,
- this,
- name,
- oldValue,
- value);
- }
- }
-
- /**
- * @returns {Array.<JitsiTrack>} The list of media tracks for this
- * participant.
- */
- getTracks() {
- return this._tracks.slice();
- }
-
- /**
- * @param {MediaType} mediaType
- * @returns {Array.<JitsiTrack>} an array of media tracks for this
- * participant, for given media type.
- */
- getTracksByMediaType(mediaType) {
- return this.getTracks().filter(track => track.getType() === mediaType);
- }
-
- /**
- * @returns {String} The ID of this participant.
- */
- getId() {
- return this._id;
- }
-
- /**
- * @returns {String} The JID of this participant.
- */
- getJid() {
- return this._jid;
- }
-
- /**
- * @returns {String} The human-readable display name of this participant.
- */
- getDisplayName() {
- return this._displayName;
- }
-
- /**
- * @returns {String} The stats ID of this participant.
- */
- getStatsID() {
- return this._statsID;
- }
-
- /**
- * @returns {String} The status of the participant.
- */
- getStatus() {
- return this._status;
- }
-
- /**
- * @returns {Boolean} Whether this participant is a moderator or not.
- */
- isModerator() {
- return this._role === 'moderator';
- }
-
- /**
- * @returns {Boolean} Whether this participant is a hidden participant. Some
- * special system participants may want to join hidden (like for example the
- * recorder).
- */
- isHidden() {
- return this._hidden;
- }
-
- /**
- * @returns {Boolean} Whether this participant is a hidden participant. Some
- * special system participants may want to join hidden (like for example the
- * recorder).
- */
- isHiddenFromRecorder() {
- return this._identity?.user?.['hidden-from-recorder'] === 'true';
- }
-
- /**
- * @returns {Boolean} Whether this participant replaces another participant
- * from the meeting.
- */
- isReplacing() {
- return this._isReplacing;
- }
-
- /**
- * @returns {Boolean} Wheter this participants will be replaced by another
- * participant in the meeting.
- */
- isReplaced() {
- return this._isReplaced;
- }
-
- /**
- * @returns {Boolean} Whether this participant has muted their audio.
- */
- isAudioMuted() {
- return this._isMediaTypeMuted(MediaType.AUDIO);
- }
-
- /**
- * Determines whether all JitsiTracks which are of a specific MediaType and
- * which belong to this JitsiParticipant are muted.
- *
- * @param {MediaType} mediaType - The MediaType of the JitsiTracks to be
- * checked.
- * @private
- * @returns {Boolean} True if all JitsiTracks which are of the specified
- * mediaType and which belong to this JitsiParticipant are muted; otherwise,
- * false.
- */
- _isMediaTypeMuted(mediaType) {
- return this.getTracks().reduce(
- (muted, track) =>
- muted && (track.getType() !== mediaType || track.isMuted()),
- true);
- }
-
- /**
- * @returns {Boolean} Whether this participant has muted their video.
- */
- isVideoMuted() {
- return this._isMediaTypeMuted(MediaType.VIDEO);
- }
-
- /**
- * @returns {String} The role of this participant.
- */
- getRole() {
- return this._role;
- }
-
- /**
- * Sets a new participant role.
- * @param {String} newRole - the new role.
- */
- setRole(newRole) {
- this._role = newRole;
- }
-
- /**
- * Sets whether participant is replacing another based on jwt.
- * @param {String} newIsReplacing - whether is replacing.
- */
- setIsReplacing(newIsReplacing) {
- this._isReplacing = newIsReplacing;
- }
-
- /**
- * Sets whether participant is being replaced by another based on jwt.
- * @param {boolean} newIsReplaced - whether is being replaced.
- */
- setIsReplaced(newIsReplaced) {
- this._isReplaced = newIsReplaced;
- }
-
- /**
- *
- */
- supportsDTMF() {
- return this._supportsDTMF;
- }
-
- /**
- * Returns a set with the features for the participant.
- * @returns {Promise<Set<String>, Error>}
- */
- getFeatures() {
- return Promise.resolve(this._features);
- }
-
- /**
- * Checks current set features.
- * @param {String} feature - the feature to check.
- * @return {boolean} <tt>true</tt> if this <tt>participant</tt> contains the
- * <tt>feature</tt>.
- */
- hasFeature(feature) {
- return this._features.has(feature);
- }
-
- /**
- * Set new features.
- * @param {Set<String>|undefined} newFeatures - Sets new features.
- */
- setFeatures(newFeatures) {
- this._features = newFeatures || new Set();
- }
-
- /**
- * Returns the bot type for the participant.
- *
- * @returns {string|undefined} - The bot type of the participant.
- */
- getBotType() {
- return this._botType;
- }
-
- /**
- * Sets the bot type for the participant.
- * @param {String} newBotType - The new bot type to set.
- */
- setBotType(newBotType) {
- this._botType = newBotType;
- }
-
- /**
- * Returns the connection jid for the participant.
- *
- * @returns {string|undefined} - The connection jid of the participant.
- */
- getConnectionJid() {
- return this._connectionJid;
- }
-
- /**
- * Sets the connection jid for the participant.
- * @param {String} newJid - The connection jid to set.
- */
- setConnectionJid(newJid) {
- this._connectionJid = newJid;
- }
- }
|