123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
-
- import { Strophe } from 'strophe.js';
-
- import * as JitsiConferenceEvents from './JitsiConferenceEvents';
- import { ParticipantConnectionStatus }
- from './modules/connectivity/ParticipantConnectionStatus';
- import * as 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
- */
- constructor(jid, conference, displayName, hidden, statsID) {
- this._jid = jid;
- this._id = Strophe.getResourceFromJid(jid);
- this._conference = conference;
- this._displayName = displayName;
- this._supportsDTMF = false;
- this._tracks = [];
- this._role = 'none';
- this._status = null;
- this._availableDevices = {
- audio: undefined,
- video: undefined
- };
- this._hidden = hidden;
- this._statsID = statsID;
- this._connectionStatus = ParticipantConnectionStatus.ACTIVE;
- this._properties = {};
- }
-
- /* 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;
- }
-
- // Gets a link to an etherpad instance advertised by the participant?
- // getEtherpad() {
- // }
-
- /**
- * @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;
- }
-
- /**
- *
- */
- supportsDTMF() {
- return this._supportsDTMF;
- }
-
- /**
- * Returns a set with the features for the participant.
- * @param {int} timeout the timeout in ms for reply from the participant.
- * @returns {Promise<Set<String>, Error>}
- */
- getFeatures(timeout = 5000) {
- return this._conference.xmpp.caps.getFeatures(this._jid, timeout);
- }
- }
|