This repository has been archived by the owner on May 17, 2022. It is now read-only.
forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 6
/
JitsiParticipant.js
330 lines (291 loc) · 8.87 KB
/
JitsiParticipant.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
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 Boolean(this._identity?.user?.['hidden-from-recorder']);
}
/**
* @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;
}
}