You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiConference.js 104KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267
  1. /* global __filename, $, Promise */
  2. import { Strophe } from 'strophe.js';
  3. import EventEmitter from 'events';
  4. import { getLogger } from 'jitsi-meet-logger';
  5. import isEqual from 'lodash.isequal';
  6. import * as JitsiConferenceErrors from './JitsiConferenceErrors';
  7. import JitsiConferenceEventManager from './JitsiConferenceEventManager';
  8. import * as JitsiConferenceEvents from './JitsiConferenceEvents';
  9. import JitsiParticipant from './JitsiParticipant';
  10. import JitsiTrackError from './JitsiTrackError';
  11. import * as JitsiTrackErrors from './JitsiTrackErrors';
  12. import * as JitsiTrackEvents from './JitsiTrackEvents';
  13. import authenticateAndUpgradeRole from './authenticateAndUpgradeRole';
  14. import P2PDominantSpeakerDetection from './modules/detection/P2PDominantSpeakerDetection';
  15. import RTC from './modules/RTC/RTC';
  16. import TalkMutedDetection from './modules/detection/TalkMutedDetection';
  17. import VADTalkMutedDetection from './modules/detection/VADTalkMutedDetection';
  18. import VADNoiseDetection from './modules/detection/VADNoiseDetection';
  19. import VADAudioAnalyser from './modules/detection/VADAudioAnalyser';
  20. import * as DetectionEvents from './modules/detection/DetectionEvents';
  21. import NoAudioSignalDetection from './modules/detection/NoAudioSignalDetection';
  22. import browser from './modules/browser';
  23. import ConnectionQuality from './modules/connectivity/ConnectionQuality';
  24. import IceFailedNotification
  25. from './modules/connectivity/IceFailedNotification';
  26. import ParticipantConnectionStatusHandler
  27. from './modules/connectivity/ParticipantConnectionStatus';
  28. import E2ePing from './modules/e2eping/e2eping';
  29. import Jvb121EventGenerator from './modules/event/Jvb121EventGenerator';
  30. import RecordingManager from './modules/recording/RecordingManager';
  31. import RttMonitor from './modules/rttmonitor/rttmonitor';
  32. import Settings from './modules/settings/Settings';
  33. import AvgRTPStatsReporter from './modules/statistics/AvgRTPStatsReporter';
  34. import AudioOutputProblemDetector from './modules/statistics/AudioOutputProblemDetector';
  35. import SpeakerStatsCollector from './modules/statistics/SpeakerStatsCollector';
  36. import Statistics from './modules/statistics/statistics';
  37. import Transcriber from './modules/transcription/transcriber';
  38. import GlobalOnErrorHandler from './modules/util/GlobalOnErrorHandler';
  39. import RandomUtil from './modules/util/RandomUtil';
  40. import ComponentsVersions from './modules/version/ComponentsVersions';
  41. import VideoSIPGW from './modules/videosipgw/VideoSIPGW';
  42. import * as VideoSIPGWConstants from './modules/videosipgw/VideoSIPGWConstants';
  43. import { JITSI_MEET_MUC_TYPE } from './modules/xmpp/xmpp';
  44. import * as MediaType from './service/RTC/MediaType';
  45. import * as RTCEvents from './service/RTC/RTCEvents';
  46. import VideoType from './service/RTC/VideoType';
  47. import {
  48. ACTION_JINGLE_RESTART,
  49. ACTION_JINGLE_SI_RECEIVED,
  50. ACTION_JINGLE_SI_TIMEOUT,
  51. ACTION_JINGLE_TERMINATE,
  52. ACTION_P2P_DECLINED,
  53. ACTION_P2P_ESTABLISHED,
  54. ACTION_P2P_FAILED,
  55. ACTION_P2P_SWITCH_TO_JVB,
  56. ICE_ESTABLISHMENT_DURATION_DIFF,
  57. createJingleEvent,
  58. createP2PEvent
  59. } from './service/statistics/AnalyticsEvents';
  60. import * as XMPPEvents from './service/xmpp/XMPPEvents';
  61. const logger = getLogger(__filename);
  62. /**
  63. * How long since Jicofo is supposed to send a session-initiate, before
  64. * {@link ACTION_JINGLE_SI_TIMEOUT} analytics event is sent (in ms).
  65. * @type {number}
  66. */
  67. const JINGLE_SI_TIMEOUT = 5000;
  68. /**
  69. * Creates a JitsiConference object with the given name and properties.
  70. * Note: this constructor is not a part of the public API (objects should be
  71. * created using JitsiConnection.createConference).
  72. * @param options.config properties / settings related to the conference that
  73. * will be created.
  74. * @param options.name the name of the conference
  75. * @param options.connection the JitsiConnection object for this
  76. * JitsiConference.
  77. * @param {number} [options.config.avgRtpStatsN=15] how many samples are to be
  78. * collected by {@link AvgRTPStatsReporter}, before arithmetic mean is
  79. * calculated and submitted to the analytics module.
  80. * @param {boolean} [options.config.p2p.enabled] when set to <tt>true</tt>
  81. * the peer to peer mode will be enabled. It means that when there are only 2
  82. * participants in the conference an attempt to make direct connection will be
  83. * made. If the connection succeeds the conference will stop sending data
  84. * through the JVB connection and will use the direct one instead.
  85. * @param {number} [options.config.p2p.backToP2PDelay=5] a delay given in
  86. * seconds, before the conference switches back to P2P, after the 3rd
  87. * participant has left the room.
  88. * @param {number} [options.config.channelLastN=-1] The requested amount of
  89. * videos are going to be delivered after the value is in effect. Set to -1 for
  90. * unlimited or all available videos.
  91. * @param {number} [options.config.forceJVB121Ratio]
  92. * "Math.random() < forceJVB121Ratio" will determine whether a 2 people
  93. * conference should be moved to the JVB instead of P2P. The decision is made on
  94. * the responder side, after ICE succeeds on the P2P connection.
  95. * @param {*} [options.config.openBridgeChannel] Which kind of communication to
  96. * open with the videobridge. Values can be "datachannel", "websocket", true
  97. * (treat it as "datachannel"), undefined (treat it as "datachannel") and false
  98. * (don't open any channel).
  99. * @constructor
  100. *
  101. * FIXME Make all methods which are called from lib-internal classes
  102. * to non-public (use _). To name a few:
  103. * {@link JitsiConference.onLocalRoleChanged}
  104. * {@link JitsiConference.onUserRoleChanged}
  105. * {@link JitsiConference.onMemberLeft}
  106. * and so on...
  107. */
  108. export default function JitsiConference(options) {
  109. if (!options.name || options.name.toLowerCase() !== options.name) {
  110. const errmsg
  111. = 'Invalid conference name (no conference name passed or it '
  112. + 'contains invalid characters like capital letters)!';
  113. logger.error(errmsg);
  114. throw new Error(errmsg);
  115. }
  116. this.eventEmitter = new EventEmitter();
  117. this.options = options;
  118. this.eventManager = new JitsiConferenceEventManager(this);
  119. this.participants = {};
  120. this._init(options);
  121. this.componentsVersions = new ComponentsVersions(this);
  122. /**
  123. * Jingle session instance for the JVB connection.
  124. * @type {JingleSessionPC}
  125. */
  126. this.jvbJingleSession = null;
  127. this.lastDominantSpeaker = null;
  128. this.dtmfManager = null;
  129. this.somebodySupportsDTMF = false;
  130. this.authEnabled = false;
  131. this.startAudioMuted = false;
  132. this.startVideoMuted = false;
  133. this.startMutedPolicy = {
  134. audio: false,
  135. video: false
  136. };
  137. this.isMutedByFocus = false;
  138. // when muted by focus we receive the jid of the initiator of the mute
  139. this.mutedByFocusActor = null;
  140. // Flag indicates if the 'onCallEnded' method was ever called on this
  141. // instance. Used to log extra analytics event for debugging purpose.
  142. // We need to know if the potential issue happened before or after
  143. // the restart.
  144. this.wasStopped = false;
  145. // Conference properties, maintained by jicofo.
  146. this.properties = {};
  147. /**
  148. * The object which monitors local and remote connection statistics (e.g.
  149. * sending bitrate) and calculates a number which represents the connection
  150. * quality.
  151. */
  152. this.connectionQuality
  153. = new ConnectionQuality(this, this.eventEmitter, options);
  154. /**
  155. * Reports average RTP statistics to the analytics module.
  156. * @type {AvgRTPStatsReporter}
  157. */
  158. this.avgRtpStatsReporter
  159. = new AvgRTPStatsReporter(this, options.config.avgRtpStatsN || 15);
  160. /**
  161. * Detects issues with the audio of remote participants.
  162. * @type {AudioOutputProblemDetector}
  163. */
  164. this._audioOutputProblemDetector = new AudioOutputProblemDetector(this);
  165. /**
  166. * Indicates whether the connection is interrupted or not.
  167. */
  168. this.isJvbConnectionInterrupted = false;
  169. /**
  170. * The object which tracks active speaker times
  171. */
  172. this.speakerStatsCollector = new SpeakerStatsCollector(this);
  173. /* P2P related fields below: */
  174. /**
  175. * Stores reference to deferred start P2P task. It's created when 3rd
  176. * participant leaves the room in order to avoid ping pong effect (it
  177. * could be just a page reload).
  178. * @type {number|null}
  179. */
  180. this.deferredStartP2PTask = null;
  181. const delay
  182. = parseInt(options.config.p2p && options.config.p2p.backToP2PDelay, 10);
  183. /**
  184. * A delay given in seconds, before the conference switches back to P2P
  185. * after the 3rd participant has left.
  186. * @type {number}
  187. */
  188. this.backToP2PDelay = isNaN(delay) ? 5 : delay;
  189. logger.info(`backToP2PDelay: ${this.backToP2PDelay}`);
  190. /**
  191. * If set to <tt>true</tt> it means the P2P ICE is no longer connected.
  192. * When <tt>false</tt> it means that P2P ICE (media) connection is up
  193. * and running.
  194. * @type {boolean}
  195. */
  196. this.isP2PConnectionInterrupted = false;
  197. /**
  198. * Flag set to <tt>true</tt> when P2P session has been established
  199. * (ICE has been connected) and this conference is currently in the peer to
  200. * peer mode (P2P connection is the active one).
  201. * @type {boolean}
  202. */
  203. this.p2p = false;
  204. /**
  205. * A JingleSession for the direct peer to peer connection.
  206. * @type {JingleSessionPC}
  207. */
  208. this.p2pJingleSession = null;
  209. this.videoSIPGWHandler = new VideoSIPGW(this.room);
  210. this.recordingManager = new RecordingManager(this.room);
  211. }
  212. // FIXME convert JitsiConference to ES6 - ASAP !
  213. JitsiConference.prototype.constructor = JitsiConference;
  214. /**
  215. * Create a resource for the a jid. We use the room nickname (the resource part
  216. * of the occupant JID, see XEP-0045) as the endpoint ID in colibri. We require
  217. * endpoint IDs to be 8 hex digits because in some cases they get serialized
  218. * into a 32bit field.
  219. *
  220. * @param {string} jid - The id set onto the XMPP connection.
  221. * @param {boolean} isAuthenticatedUser - Whether or not the user has connected
  222. * to the XMPP service with a password.
  223. * @returns {string}
  224. * @static
  225. */
  226. JitsiConference.resourceCreator = function(jid, isAuthenticatedUser) {
  227. let mucNickname;
  228. if (isAuthenticatedUser) {
  229. // For authenticated users generate a random ID.
  230. mucNickname = RandomUtil.randomHexString(8).toLowerCase();
  231. } else {
  232. // We try to use the first part of the node (which for anonymous users
  233. // on prosody is a UUID) to match the previous behavior (and maybe make
  234. // debugging easier).
  235. mucNickname = Strophe.getNodeFromJid(jid).substr(0, 8)
  236. .toLowerCase();
  237. // But if this doesn't have the required format we just generate a new
  238. // random nickname.
  239. const re = /[0-9a-f]{8}/g;
  240. if (!re.test(mucNickname)) {
  241. mucNickname = RandomUtil.randomHexString(8).toLowerCase();
  242. }
  243. }
  244. return mucNickname;
  245. };
  246. /**
  247. * Initializes the conference object properties
  248. * @param options {object}
  249. * @param options.connection {JitsiConnection} overrides this.connection
  250. */
  251. JitsiConference.prototype._init = function(options = {}) {
  252. // Override connection and xmpp properties (Useful if the connection
  253. // reloaded)
  254. if (options.connection) {
  255. this.connection = options.connection;
  256. this.xmpp = this.connection.xmpp;
  257. // Setup XMPP events only if we have new connection object.
  258. this.eventManager.setupXMPPListeners();
  259. }
  260. const { config } = this.options;
  261. const statsCurrentId = config.statisticsId ? config.statisticsId : Settings.callStatsUserName;
  262. this.room = this.xmpp.createRoom(
  263. this.options.name, {
  264. ...config,
  265. statsId: statsCurrentId
  266. },
  267. JitsiConference.resourceCreator
  268. );
  269. // Connection interrupted/restored listeners
  270. this._onIceConnectionInterrupted
  271. = this._onIceConnectionInterrupted.bind(this);
  272. this.room.addListener(
  273. XMPPEvents.CONNECTION_INTERRUPTED, this._onIceConnectionInterrupted);
  274. this._onIceConnectionRestored = this._onIceConnectionRestored.bind(this);
  275. this.room.addListener(
  276. XMPPEvents.CONNECTION_RESTORED, this._onIceConnectionRestored);
  277. this._onIceConnectionEstablished
  278. = this._onIceConnectionEstablished.bind(this);
  279. this.room.addListener(
  280. XMPPEvents.CONNECTION_ESTABLISHED, this._onIceConnectionEstablished);
  281. this._updateProperties = this._updateProperties.bind(this);
  282. this.room.addListener(XMPPEvents.CONFERENCE_PROPERTIES_CHANGED,
  283. this._updateProperties);
  284. this.rttMonitor = new RttMonitor(config.rttMonitor || {});
  285. this.e2eping = new E2ePing(
  286. this,
  287. config,
  288. (message, to) => {
  289. try {
  290. this.sendMessage(
  291. message, to, true /* sendThroughVideobridge */);
  292. } catch (error) {
  293. logger.warn('Failed to send E2E ping request or response.', error && error.msg);
  294. }
  295. });
  296. if (!this.rtc) {
  297. this.rtc = new RTC(this, options);
  298. this.eventManager.setupRTCListeners();
  299. }
  300. this.participantConnectionStatus
  301. = new ParticipantConnectionStatusHandler(
  302. this.rtc,
  303. this,
  304. {
  305. // Both these options are not public API, leaving it here only
  306. // as an entry point through config for tuning up purposes.
  307. // Default values should be adjusted as soon as optimal values
  308. // are discovered.
  309. rtcMuteTimeout: config._peerConnStatusRtcMuteTimeout,
  310. outOfLastNTimeout: config._peerConnStatusOutOfLastNTimeout
  311. });
  312. this.participantConnectionStatus.init();
  313. if (!this.statistics) {
  314. this.statistics = new Statistics(this.xmpp, {
  315. aliasName: statsCurrentId,
  316. userName: config.statisticsDisplayName ? config.statisticsDisplayName : this.myUserId(),
  317. callStatsConfIDNamespace: this.connection.options.hosts.domain,
  318. confID: config.confID || `${this.connection.options.hosts.domain}/${this.options.name}`,
  319. customScriptUrl: config.callStatsCustomScriptUrl,
  320. callStatsID: config.callStatsID,
  321. callStatsSecret: config.callStatsSecret,
  322. roomName: this.options.name,
  323. applicationName: config.applicationName,
  324. getWiFiStatsMethod: config.getWiFiStatsMethod
  325. });
  326. Statistics.analytics.addPermanentProperties({
  327. 'callstats_name': statsCurrentId
  328. });
  329. }
  330. this.eventManager.setupChatRoomListeners();
  331. // Always add listeners because on reload we are executing leave and the
  332. // listeners are removed from statistics module.
  333. this.eventManager.setupStatisticsListeners();
  334. if (config.enableTalkWhileMuted) {
  335. // If VAD processor factory method is provided uses VAD based detection, otherwise fallback to audio level
  336. // based detection.
  337. if (config.createVADProcessor) {
  338. logger.info('Using VAD detection for generating talk while muted events');
  339. if (!this._audioAnalyser) {
  340. this._audioAnalyser = new VADAudioAnalyser(this, config.createVADProcessor);
  341. }
  342. const vadTalkMutedDetection = new VADTalkMutedDetection();
  343. vadTalkMutedDetection.on(DetectionEvents.VAD_TALK_WHILE_MUTED, () =>
  344. this.eventEmitter.emit(JitsiConferenceEvents.TALK_WHILE_MUTED));
  345. this._audioAnalyser.addVADDetectionService(vadTalkMutedDetection);
  346. } else {
  347. logger.info('Using audio level based detection for generating talk while muted events');
  348. this._talkWhileMutedDetection = new TalkMutedDetection(
  349. this, () => this.eventEmitter.emit(JitsiConferenceEvents.TALK_WHILE_MUTED));
  350. }
  351. }
  352. if (config.enableNoisyMicDetection) {
  353. if (config.createVADProcessor) {
  354. if (!this._audioAnalyser) {
  355. this._audioAnalyser = new VADAudioAnalyser(this, config.createVADProcessor);
  356. }
  357. const vadNoiseDetection = new VADNoiseDetection();
  358. vadNoiseDetection.on(DetectionEvents.VAD_NOISY_DEVICE, () =>
  359. this.eventEmitter.emit(JitsiConferenceEvents.NOISY_MIC));
  360. this._audioAnalyser.addVADDetectionService(vadNoiseDetection);
  361. } else {
  362. logger.warn('No VAD Processor was provided. Noisy microphone detection service was not initialized!');
  363. }
  364. }
  365. // Generates events based on no audio input detector.
  366. if (config.enableNoAudioDetection) {
  367. this._noAudioSignalDetection = new NoAudioSignalDetection(this);
  368. this._noAudioSignalDetection.on(DetectionEvents.NO_AUDIO_INPUT, () => {
  369. this.eventEmitter.emit(JitsiConferenceEvents.NO_AUDIO_INPUT);
  370. });
  371. this._noAudioSignalDetection.on(DetectionEvents.AUDIO_INPUT_STATE_CHANGE, hasAudioSignal => {
  372. this.eventEmitter.emit(JitsiConferenceEvents.AUDIO_INPUT_STATE_CHANGE, hasAudioSignal);
  373. });
  374. }
  375. if ('channelLastN' in config) {
  376. this.setLastN(config.channelLastN);
  377. }
  378. /**
  379. * Emits {@link JitsiConferenceEvents.JVB121_STATUS}.
  380. * @type {Jvb121EventGenerator}
  381. */
  382. this.jvb121Status = new Jvb121EventGenerator(this);
  383. // creates dominant speaker detection that works only in p2p mode
  384. this.p2pDominantSpeakerDetection = new P2PDominantSpeakerDetection(this);
  385. if (config && config.deploymentInfo && config.deploymentInfo.userRegion) {
  386. this.setLocalParticipantProperty(
  387. 'region', config.deploymentInfo.userRegion);
  388. }
  389. };
  390. /**
  391. * Joins the conference.
  392. * @param password {string} the password
  393. */
  394. JitsiConference.prototype.join = function(password) {
  395. if (this.room) {
  396. this.room.join(password).then(() => this._maybeSetSITimeout());
  397. }
  398. };
  399. /**
  400. * Authenticates and upgrades the role of the local participant/user.
  401. *
  402. * @returns {Object} A <tt>thenable</tt> which (1) settles when the process of
  403. * authenticating and upgrading the role of the local participant/user finishes
  404. * and (2) has a <tt>cancel</tt> method that allows the caller to interrupt the
  405. * process.
  406. */
  407. JitsiConference.prototype.authenticateAndUpgradeRole = function(options) {
  408. return authenticateAndUpgradeRole.call(this, {
  409. ...options,
  410. onCreateResource: JitsiConference.resourceCreator
  411. });
  412. };
  413. /**
  414. * Check if joined to the conference.
  415. */
  416. JitsiConference.prototype.isJoined = function() {
  417. return this.room && this.room.joined;
  418. };
  419. /**
  420. * Tells whether or not the P2P mode is enabled in the configuration.
  421. * @return {boolean}
  422. */
  423. JitsiConference.prototype.isP2PEnabled = function() {
  424. return Boolean(this.options.config.p2p && this.options.config.p2p.enabled)
  425. // FIXME: remove once we have a default config template. -saghul
  426. || typeof this.options.config.p2p === 'undefined';
  427. };
  428. /**
  429. * When in P2P test mode, the conference will not automatically switch to P2P
  430. * when there 2 participants.
  431. * @return {boolean}
  432. */
  433. JitsiConference.prototype.isP2PTestModeEnabled = function() {
  434. return Boolean(this.options.config.testing
  435. && this.options.config.testing.p2pTestMode);
  436. };
  437. /**
  438. * Leaves the conference.
  439. * @returns {Promise}
  440. */
  441. JitsiConference.prototype.leave = function() {
  442. if (this.participantConnectionStatus) {
  443. this.participantConnectionStatus.dispose();
  444. this.participantConnectionStatus = null;
  445. }
  446. if (this.avgRtpStatsReporter) {
  447. this.avgRtpStatsReporter.dispose();
  448. this.avgRtpStatsReporter = null;
  449. }
  450. if (this._audioOutputProblemDetector) {
  451. this._audioOutputProblemDetector.dispose();
  452. this._audioOutputProblemDetector = null;
  453. }
  454. if (this.rttMonitor) {
  455. this.rttMonitor.stop();
  456. this.rttMonitor = null;
  457. }
  458. if (this.e2eping) {
  459. this.e2eping.stop();
  460. this.e2eping = null;
  461. }
  462. this.getLocalTracks().forEach(track => this.onLocalTrackRemoved(track));
  463. this.rtc.closeBridgeChannel();
  464. if (this.statistics) {
  465. this.statistics.dispose();
  466. }
  467. this._delayedIceFailed && this._delayedIceFailed.cancel();
  468. // Close both JVb and P2P JingleSessions
  469. if (this.jvbJingleSession) {
  470. this.jvbJingleSession.close();
  471. this.jvbJingleSession = null;
  472. }
  473. if (this.p2pJingleSession) {
  474. this.p2pJingleSession.close();
  475. this.p2pJingleSession = null;
  476. }
  477. // leave the conference
  478. if (this.room) {
  479. const room = this.room;
  480. // Unregister connection state listeners
  481. room.removeListener(
  482. XMPPEvents.CONNECTION_INTERRUPTED,
  483. this._onIceConnectionInterrupted);
  484. room.removeListener(
  485. XMPPEvents.CONNECTION_RESTORED,
  486. this._onIceConnectionRestored);
  487. room.removeListener(
  488. XMPPEvents.CONNECTION_ESTABLISHED,
  489. this._onIceConnectionEstablished);
  490. room.removeListener(
  491. XMPPEvents.CONFERENCE_PROPERTIES_CHANGED,
  492. this._updateProperties);
  493. this.eventManager.removeXMPPListeners();
  494. this.room = null;
  495. return room.leave()
  496. .then(() => {
  497. if (this.rtc) {
  498. this.rtc.destroy();
  499. }
  500. })
  501. .catch(error => {
  502. // remove all participants because currently the conference
  503. // won't be usable anyway. This is done on success automatically
  504. // by the ChatRoom instance.
  505. this.getParticipants().forEach(
  506. participant => this.onMemberLeft(participant.getJid()));
  507. throw error;
  508. });
  509. }
  510. // If this.room == null we are calling second time leave().
  511. return Promise.reject(
  512. new Error('The conference is has been already left'));
  513. };
  514. /**
  515. * Returns name of this conference.
  516. */
  517. JitsiConference.prototype.getName = function() {
  518. return this.options.name;
  519. };
  520. /**
  521. * Returns the {@link JitsiConnection} used by this this conference.
  522. */
  523. JitsiConference.prototype.getConnection = function() {
  524. return this.connection;
  525. };
  526. /**
  527. * Check if authentication is enabled for this conference.
  528. */
  529. JitsiConference.prototype.isAuthEnabled = function() {
  530. return this.authEnabled;
  531. };
  532. /**
  533. * Check if user is logged in.
  534. */
  535. JitsiConference.prototype.isLoggedIn = function() {
  536. return Boolean(this.authIdentity);
  537. };
  538. /**
  539. * Get authorized login.
  540. */
  541. JitsiConference.prototype.getAuthLogin = function() {
  542. return this.authIdentity;
  543. };
  544. /**
  545. * Check if external authentication is enabled for this conference.
  546. */
  547. JitsiConference.prototype.isExternalAuthEnabled = function() {
  548. return this.room && this.room.moderator.isExternalAuthEnabled();
  549. };
  550. /**
  551. * Get url for external authentication.
  552. * @param {boolean} [urlForPopup] if true then return url for login popup,
  553. * else url of login page.
  554. * @returns {Promise}
  555. */
  556. JitsiConference.prototype.getExternalAuthUrl = function(urlForPopup) {
  557. return new Promise((resolve, reject) => {
  558. if (!this.isExternalAuthEnabled()) {
  559. reject();
  560. return;
  561. }
  562. if (urlForPopup) {
  563. this.room.moderator.getPopupLoginUrl(resolve, reject);
  564. } else {
  565. this.room.moderator.getLoginUrl(resolve, reject);
  566. }
  567. });
  568. };
  569. /**
  570. * Returns the local tracks of the given media type, or all local tracks if no
  571. * specific type is given.
  572. * @param {MediaType} [mediaType] Optional media type (audio or video).
  573. */
  574. JitsiConference.prototype.getLocalTracks = function(mediaType) {
  575. let tracks = [];
  576. if (this.rtc) {
  577. tracks = this.rtc.getLocalTracks(mediaType);
  578. }
  579. return tracks;
  580. };
  581. /**
  582. * Obtains local audio track.
  583. * @return {JitsiLocalTrack|null}
  584. */
  585. JitsiConference.prototype.getLocalAudioTrack = function() {
  586. return this.rtc ? this.rtc.getLocalAudioTrack() : null;
  587. };
  588. /**
  589. * Obtains local video track.
  590. * @return {JitsiLocalTrack|null}
  591. */
  592. JitsiConference.prototype.getLocalVideoTrack = function() {
  593. return this.rtc ? this.rtc.getLocalVideoTrack() : null;
  594. };
  595. /**
  596. * Attaches a handler for events(For example - "participant joined".) in the
  597. * conference. All possible event are defined in JitsiConferenceEvents.
  598. * @param eventId the event ID.
  599. * @param handler handler for the event.
  600. *
  601. * Note: consider adding eventing functionality by extending an EventEmitter
  602. * impl, instead of rolling ourselves
  603. */
  604. JitsiConference.prototype.on = function(eventId, handler) {
  605. if (this.eventEmitter) {
  606. this.eventEmitter.on(eventId, handler);
  607. }
  608. };
  609. /**
  610. * Removes event listener
  611. * @param eventId the event ID.
  612. * @param [handler] optional, the specific handler to unbind
  613. *
  614. * Note: consider adding eventing functionality by extending an EventEmitter
  615. * impl, instead of rolling ourselves
  616. */
  617. JitsiConference.prototype.off = function(eventId, handler) {
  618. if (this.eventEmitter) {
  619. this.eventEmitter.removeListener(eventId, handler);
  620. }
  621. };
  622. // Common aliases for event emitter
  623. JitsiConference.prototype.addEventListener = JitsiConference.prototype.on;
  624. JitsiConference.prototype.removeEventListener = JitsiConference.prototype.off;
  625. /**
  626. * Receives notifications from other participants about commands / custom events
  627. * (sent by sendCommand or sendCommandOnce methods).
  628. * @param command {String} the name of the command
  629. * @param handler {Function} handler for the command
  630. */
  631. JitsiConference.prototype.addCommandListener = function(command, handler) {
  632. if (this.room) {
  633. this.room.addPresenceListener(command, handler);
  634. }
  635. };
  636. /**
  637. * Removes command listener
  638. * @param command {String} the name of the command
  639. * @param handler {Function} handler to remove for the command
  640. */
  641. JitsiConference.prototype.removeCommandListener = function(command, handler) {
  642. if (this.room) {
  643. this.room.removePresenceListener(command, handler);
  644. }
  645. };
  646. /**
  647. * Sends text message to the other participants in the conference
  648. * @param message the text message.
  649. * @param elementName the element name to encapsulate the message.
  650. * @deprecated Use 'sendMessage' instead. TODO: this should be private.
  651. */
  652. JitsiConference.prototype.sendTextMessage = function(
  653. message, elementName = 'body') {
  654. if (this.room) {
  655. const displayName = (this.room.getFromPresence('nick') || {}).value;
  656. this.room.sendMessage(message, elementName, displayName);
  657. }
  658. };
  659. /**
  660. * Send private text message to another participant of the conference
  661. * @param id the id of the participant to send a private message.
  662. * @param message the text message.
  663. * @param elementName the element name to encapsulate the message.
  664. * @deprecated Use 'sendMessage' instead. TODO: this should be private.
  665. */
  666. JitsiConference.prototype.sendPrivateTextMessage = function(
  667. id, message, elementName = 'body') {
  668. if (this.room) {
  669. this.room.sendPrivateMessage(id, message, elementName);
  670. }
  671. };
  672. /**
  673. * Send presence command.
  674. * @param name {String} the name of the command.
  675. * @param values {Object} with keys and values that will be sent.
  676. **/
  677. JitsiConference.prototype.sendCommand = function(name, values) {
  678. if (this.room) {
  679. this.room.addToPresence(name, values);
  680. this.room.sendPresence();
  681. } else {
  682. logger.warn('Not sending a command, room not initialized.');
  683. }
  684. };
  685. /**
  686. * Send presence command one time.
  687. * @param name {String} the name of the command.
  688. * @param values {Object} with keys and values that will be sent.
  689. **/
  690. JitsiConference.prototype.sendCommandOnce = function(name, values) {
  691. this.sendCommand(name, values);
  692. this.removeCommand(name);
  693. };
  694. /**
  695. * Removes presence command.
  696. * @param name {String} the name of the command.
  697. **/
  698. JitsiConference.prototype.removeCommand = function(name) {
  699. if (this.room) {
  700. this.room.removeFromPresence(name);
  701. }
  702. };
  703. /**
  704. * Sets the display name for this conference.
  705. * @param name the display name to set
  706. */
  707. JitsiConference.prototype.setDisplayName = function(name) {
  708. if (this.room) {
  709. // remove previously set nickname
  710. this.room.removeFromPresence('nick');
  711. this.room.addToPresence('nick', {
  712. attributes: { xmlns: 'http://jabber.org/protocol/nick' },
  713. value: name
  714. });
  715. this.room.sendPresence();
  716. }
  717. };
  718. /**
  719. * Set new subject for this conference. (available only for moderator)
  720. * @param {string} subject new subject
  721. */
  722. JitsiConference.prototype.setSubject = function(subject) {
  723. if (this.room && this.isModerator()) {
  724. this.room.setSubject(subject);
  725. }
  726. };
  727. /**
  728. * Get a transcriber object for all current participants in this conference
  729. * @return {Transcriber} the transcriber object
  730. */
  731. JitsiConference.prototype.getTranscriber = function() {
  732. if (this.transcriber === undefined) {
  733. this.transcriber = new Transcriber();
  734. // add all existing local audio tracks to the transcriber
  735. const localAudioTracks = this.getLocalTracks(MediaType.AUDIO);
  736. for (const localAudio of localAudioTracks) {
  737. this.transcriber.addTrack(localAudio);
  738. }
  739. // and all remote audio tracks
  740. const remoteAudioTracks = this.rtc.getRemoteTracks(MediaType.AUDIO);
  741. for (const remoteTrack of remoteAudioTracks) {
  742. this.transcriber.addTrack(remoteTrack);
  743. }
  744. }
  745. return this.transcriber;
  746. };
  747. /**
  748. * Returns the transcription status.
  749. *
  750. * @returns {String} "on" or "off".
  751. */
  752. JitsiConference.prototype.getTranscriptionStatus = function() {
  753. return this.room.transcriptionStatus;
  754. };
  755. /**
  756. * Adds JitsiLocalTrack object to the conference.
  757. * @param track the JitsiLocalTrack object.
  758. * @returns {Promise<JitsiLocalTrack>}
  759. * @throws {Error} if the specified track is a video track and there is already
  760. * another video track in the conference.
  761. */
  762. JitsiConference.prototype.addTrack = function(track) {
  763. if (track.isVideoTrack()) {
  764. // Ensure there's exactly 1 local video track in the conference.
  765. const localVideoTrack = this.rtc.getLocalVideoTrack();
  766. if (localVideoTrack) {
  767. // Don't be excessively harsh and severe if the API client happens
  768. // to attempt to add the same local video track twice.
  769. if (track === localVideoTrack) {
  770. return Promise.resolve(track);
  771. }
  772. return Promise.reject(new Error(
  773. 'cannot add second video track to the conference'));
  774. }
  775. }
  776. return this.replaceTrack(null, track);
  777. };
  778. /**
  779. * Fires TRACK_AUDIO_LEVEL_CHANGED change conference event (for local tracks).
  780. * @param {number} audioLevel the audio level
  781. * @param {TraceablePeerConnection} [tpc]
  782. */
  783. JitsiConference.prototype._fireAudioLevelChangeEvent = function(
  784. audioLevel,
  785. tpc) {
  786. const activeTpc = this.getActivePeerConnection();
  787. // There will be no TraceablePeerConnection if audio levels do not come from
  788. // a peerconnection. LocalStatsCollector.js measures audio levels using Web
  789. // Audio Analyser API and emits local audio levels events through
  790. // JitsiTrack.setAudioLevel, but does not provide TPC instance which is
  791. // optional.
  792. if (!tpc || activeTpc === tpc) {
  793. this.eventEmitter.emit(
  794. JitsiConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED,
  795. this.myUserId(), audioLevel);
  796. }
  797. };
  798. /**
  799. * Fires TRACK_MUTE_CHANGED change conference event.
  800. * @param track the JitsiTrack object related to the event.
  801. */
  802. JitsiConference.prototype._fireMuteChangeEvent = function(track) {
  803. // check if track was muted by focus and now is unmuted by user
  804. if (this.isMutedByFocus && track.isAudioTrack() && !track.isMuted()) {
  805. this.isMutedByFocus = false;
  806. // unmute local user on server
  807. this.room.muteParticipant(this.room.myroomjid, false);
  808. }
  809. let actorParticipant;
  810. if (this.mutedByFocusActor) {
  811. const actorId = Strophe.getResourceFromJid(this.mutedByFocusActor);
  812. actorParticipant = this.participants[actorId];
  813. }
  814. this.eventEmitter.emit(JitsiConferenceEvents.TRACK_MUTE_CHANGED, track, actorParticipant);
  815. };
  816. /**
  817. * Clear JitsiLocalTrack properties and listeners.
  818. * @param track the JitsiLocalTrack object.
  819. */
  820. JitsiConference.prototype.onLocalTrackRemoved = function(track) {
  821. track._setConference(null);
  822. this.rtc.removeLocalTrack(track);
  823. track.removeEventListener(JitsiTrackEvents.TRACK_MUTE_CHANGED,
  824. track.muteHandler);
  825. track.removeEventListener(JitsiTrackEvents.TRACK_AUDIO_LEVEL_CHANGED,
  826. track.audioLevelHandler);
  827. // send event for stopping screen sharing
  828. // FIXME: we assume we have only one screen sharing track
  829. // if we change this we need to fix this check
  830. if (track.isVideoTrack() && track.videoType === VideoType.DESKTOP) {
  831. this.statistics.sendScreenSharingEvent(false);
  832. }
  833. this.eventEmitter.emit(JitsiConferenceEvents.TRACK_REMOVED, track);
  834. };
  835. /**
  836. * Removes JitsiLocalTrack from the conference and performs
  837. * a new offer/answer cycle.
  838. * @param {JitsiLocalTrack} track
  839. * @returns {Promise}
  840. */
  841. JitsiConference.prototype.removeTrack = function(track) {
  842. return this.replaceTrack(track, null);
  843. };
  844. /**
  845. * Replaces oldTrack with newTrack and performs a single offer/answer
  846. * cycle after both operations are done. Either oldTrack or newTrack
  847. * can be null; replacing a valid 'oldTrack' with a null 'newTrack'
  848. * effectively just removes 'oldTrack'
  849. * @param {JitsiLocalTrack} oldTrack the current stream in use to be replaced
  850. * @param {JitsiLocalTrack} newTrack the new stream to use
  851. * @returns {Promise} resolves when the replacement is finished
  852. */
  853. JitsiConference.prototype.replaceTrack = function(oldTrack, newTrack) {
  854. // First do the removal of the oldTrack at the JitsiConference level
  855. if (oldTrack) {
  856. if (oldTrack.disposed) {
  857. return Promise.reject(
  858. new JitsiTrackError(JitsiTrackErrors.TRACK_IS_DISPOSED));
  859. }
  860. }
  861. if (newTrack) {
  862. if (newTrack.disposed) {
  863. return Promise.reject(
  864. new JitsiTrackError(JitsiTrackErrors.TRACK_IS_DISPOSED));
  865. }
  866. }
  867. // Now replace the stream at the lower levels
  868. return this._doReplaceTrack(oldTrack, newTrack)
  869. .then(() => {
  870. if (oldTrack) {
  871. this.onLocalTrackRemoved(oldTrack);
  872. }
  873. if (newTrack) {
  874. // Now handle the addition of the newTrack at the
  875. // JitsiConference level
  876. this._setupNewTrack(newTrack);
  877. }
  878. return Promise.resolve();
  879. }, error => Promise.reject(new Error(error)));
  880. };
  881. /**
  882. * Replaces the track at the lower level by going through the Jingle session
  883. * and WebRTC peer connection. The track is replaced without the need for an
  884. * offer/answer cycle.
  885. * @param {JitsiLocalTrack} localTrack - the local track whose media stream has
  886. * been updated.
  887. */
  888. JitsiConference.prototype.replaceTrackWithoutOfferAnswer = function(localTrack) {
  889. const replaceTrackPromises = [];
  890. if (this.jvbJingleSession) {
  891. replaceTrackPromises.push(
  892. this.jvbJingleSession.replaceTrackWithoutOfferAnswer(localTrack));
  893. } else {
  894. logger.info('replaceTrackWithoutOfferAnswer - no JVB JingleSession');
  895. }
  896. if (this.p2pJingleSession) {
  897. replaceTrackPromises.push(
  898. this.p2pJingleSession.replaceTrackWithoutOfferAnswer(localTrack));
  899. } else {
  900. logger.info('_doReplaceTrack - no P2P JingleSession');
  901. }
  902. return Promise.all(replaceTrackPromises);
  903. };
  904. /**
  905. * Replaces the tracks at the lower level by going through the Jingle session
  906. * and WebRTC peer connection. The method will resolve immediately if there is
  907. * currently no JingleSession started.
  908. * @param {JitsiLocalTrack|null} oldTrack the track to be removed during
  909. * the process or <tt>null</t> if the method should act as "add track"
  910. * @param {JitsiLocalTrack|null} newTrack the new track to be added or
  911. * <tt>null</tt> if the method should act as "remove track"
  912. * @return {Promise} resolved when the process is done or rejected with a string
  913. * which describes the error.
  914. * @private
  915. */
  916. JitsiConference.prototype._doReplaceTrack = function(oldTrack, newTrack) {
  917. const replaceTrackPromises = [];
  918. if (this.jvbJingleSession) {
  919. replaceTrackPromises.push(
  920. this.jvbJingleSession.replaceTrack(oldTrack, newTrack));
  921. } else {
  922. logger.info('_doReplaceTrack - no JVB JingleSession');
  923. }
  924. if (this.p2pJingleSession) {
  925. replaceTrackPromises.push(
  926. this.p2pJingleSession.replaceTrack(oldTrack, newTrack));
  927. } else {
  928. logger.info('_doReplaceTrack - no P2P JingleSession');
  929. }
  930. return Promise.all(replaceTrackPromises);
  931. };
  932. /**
  933. * Operations related to creating a new track
  934. * @param {JitsiLocalTrack} newTrack the new track being created
  935. */
  936. JitsiConference.prototype._setupNewTrack = function(newTrack) {
  937. if (newTrack.isAudioTrack() || (newTrack.isVideoTrack()
  938. && newTrack.videoType !== VideoType.DESKTOP)) {
  939. // Report active device to statistics
  940. const devices = RTC.getCurrentlyAvailableMediaDevices();
  941. const device
  942. = devices.find(
  943. d =>
  944. d.kind === `${newTrack.getTrack().kind}input`
  945. && d.label === newTrack.getTrack().label);
  946. if (device) {
  947. Statistics.sendActiveDeviceListEvent(
  948. RTC.getEventDataForActiveDevice(device));
  949. }
  950. }
  951. if (newTrack.isVideoTrack()) {
  952. this.removeCommand('videoType');
  953. this.sendCommand('videoType', {
  954. value: newTrack.videoType,
  955. attributes: {
  956. xmlns: 'http://jitsi.org/jitmeet/video'
  957. }
  958. });
  959. }
  960. this.rtc.addLocalTrack(newTrack);
  961. // ensure that we're sharing proper "is muted" state
  962. if (newTrack.isAudioTrack()) {
  963. this.room.setAudioMute(newTrack.isMuted());
  964. } else {
  965. this.room.setVideoMute(newTrack.isMuted());
  966. }
  967. newTrack.muteHandler = this._fireMuteChangeEvent.bind(this, newTrack);
  968. newTrack.audioLevelHandler = this._fireAudioLevelChangeEvent.bind(this);
  969. newTrack.addEventListener(
  970. JitsiTrackEvents.TRACK_MUTE_CHANGED,
  971. newTrack.muteHandler);
  972. newTrack.addEventListener(
  973. JitsiTrackEvents.TRACK_AUDIO_LEVEL_CHANGED,
  974. newTrack.audioLevelHandler);
  975. newTrack._setConference(this);
  976. this.eventEmitter.emit(JitsiConferenceEvents.TRACK_ADDED, newTrack);
  977. };
  978. /**
  979. * Method called by the {@link JitsiLocalTrack} (a video one) in order to add
  980. * back the underlying WebRTC MediaStream to the PeerConnection (which has
  981. * removed on video mute).
  982. * @param {JitsiLocalTrack} track the local track that will be added as part of
  983. * the unmute operation.
  984. * @return {Promise} resolved when the process is done or rejected with a string
  985. * which describes the error.
  986. */
  987. JitsiConference.prototype._addLocalTrackAsUnmute = function(track) {
  988. const addAsUnmutePromises = [];
  989. if (this.jvbJingleSession) {
  990. addAsUnmutePromises.push(this.jvbJingleSession.addTrackAsUnmute(track));
  991. } else {
  992. logger.info(
  993. 'Add local MediaStream as unmute -'
  994. + ' no JVB Jingle session started yet');
  995. }
  996. if (this.p2pJingleSession) {
  997. addAsUnmutePromises.push(this.p2pJingleSession.addTrackAsUnmute(track));
  998. } else {
  999. logger.info(
  1000. 'Add local MediaStream as unmute -'
  1001. + ' no P2P Jingle session started yet');
  1002. }
  1003. return Promise.all(addAsUnmutePromises);
  1004. };
  1005. /**
  1006. * Method called by the {@link JitsiLocalTrack} (a video one) in order to remove
  1007. * the underlying WebRTC MediaStream from the PeerConnection. The purpose of
  1008. * that is to stop sending any data and turn off the HW camera device.
  1009. * @param {JitsiLocalTrack} track the local track that will be removed.
  1010. * @return {Promise}
  1011. */
  1012. JitsiConference.prototype._removeLocalTrackAsMute = function(track) {
  1013. const removeAsMutePromises = [];
  1014. if (this.jvbJingleSession) {
  1015. removeAsMutePromises.push(
  1016. this.jvbJingleSession.removeTrackAsMute(track));
  1017. } else {
  1018. logger.info(
  1019. 'Remove local MediaStream - no JVB JingleSession started yet');
  1020. }
  1021. if (this.p2pJingleSession) {
  1022. removeAsMutePromises.push(
  1023. this.p2pJingleSession.removeTrackAsMute(track));
  1024. } else {
  1025. logger.info(
  1026. 'Remove local MediaStream - no P2P JingleSession started yet');
  1027. }
  1028. return Promise.all(removeAsMutePromises);
  1029. };
  1030. /**
  1031. * Get role of the local user.
  1032. * @returns {string} user role: 'moderator' or 'none'
  1033. */
  1034. JitsiConference.prototype.getRole = function() {
  1035. return this.room.role;
  1036. };
  1037. /**
  1038. * Returns whether or not the current conference has been joined as a hidden
  1039. * user.
  1040. *
  1041. * @returns {boolean|null} True if hidden, false otherwise. Will return null if
  1042. * no connection is active.
  1043. */
  1044. JitsiConference.prototype.isHidden = function() {
  1045. if (!this.connection) {
  1046. return null;
  1047. }
  1048. return Strophe.getDomainFromJid(this.connection.getJid())
  1049. === this.options.config.hiddenDomain;
  1050. };
  1051. /**
  1052. * Check if local user is moderator.
  1053. * @returns {boolean|null} true if local user is moderator, false otherwise. If
  1054. * we're no longer in the conference room then <tt>null</tt> is returned.
  1055. */
  1056. JitsiConference.prototype.isModerator = function() {
  1057. return this.room ? this.room.isModerator() : null;
  1058. };
  1059. /**
  1060. * Set password for the room.
  1061. * @param {string} password new password for the room.
  1062. * @returns {Promise}
  1063. */
  1064. JitsiConference.prototype.lock = function(password) {
  1065. if (!this.isModerator()) {
  1066. return Promise.reject(new Error('You are not moderator.'));
  1067. }
  1068. return new Promise((resolve, reject) => {
  1069. this.room.lockRoom(
  1070. password || '',
  1071. () => resolve(),
  1072. err => reject(err),
  1073. () => reject(JitsiConferenceErrors.PASSWORD_NOT_SUPPORTED));
  1074. });
  1075. };
  1076. /**
  1077. * Remove password from the room.
  1078. * @returns {Promise}
  1079. */
  1080. JitsiConference.prototype.unlock = function() {
  1081. return this.lock();
  1082. };
  1083. /**
  1084. * Elects the participant with the given id to be the selected participant in
  1085. * order to receive higher video quality (if simulcast is enabled).
  1086. * Or cache it if channel is not created and send it once channel is available.
  1087. * @param participantId the identifier of the participant
  1088. * @throws NetworkError or InvalidStateError or Error if the operation fails.
  1089. * @returns {void}
  1090. */
  1091. JitsiConference.prototype.selectParticipant = function(participantId) {
  1092. this.selectParticipants([ participantId ]);
  1093. };
  1094. /*
  1095. * Elects participants with given ids to be the selected participants in order
  1096. * to receive higher video quality (if simulcast is enabled). The argument
  1097. * should be an array of participant id strings or an empty array; an error will
  1098. * be thrown if a non-array is passed in. The error is thrown as a layer of
  1099. * protection against passing an invalid argument, as the error will happen in
  1100. * the bridge and may not be visible in the client.
  1101. *
  1102. * @param {Array<strings>} participantIds - An array of identifiers for
  1103. * participants.
  1104. * @returns {void}
  1105. */
  1106. JitsiConference.prototype.selectParticipants = function(participantIds) {
  1107. if (!Array.isArray(participantIds)) {
  1108. throw new Error('Invalid argument; participantIds must be an array.');
  1109. }
  1110. this.rtc.selectEndpoints(participantIds);
  1111. };
  1112. /**
  1113. * Elects the participant with the given id to be the pinned participant in
  1114. * order to always receive video for this participant (even when last n is
  1115. * enabled).
  1116. * @param participantId the identifier of the participant
  1117. * @throws NetworkError or InvalidStateError or Error if the operation fails.
  1118. */
  1119. JitsiConference.prototype.pinParticipant = function(participantId) {
  1120. this.rtc.pinEndpoint(participantId);
  1121. };
  1122. /**
  1123. * Obtains the current value for "lastN". See {@link setLastN} for more info.
  1124. * @returns {number}
  1125. */
  1126. JitsiConference.prototype.getLastN = function() {
  1127. return this.rtc.getLastN();
  1128. };
  1129. /**
  1130. * Selects a new value for "lastN". The requested amount of videos are going
  1131. * to be delivered after the value is in effect. Set to -1 for unlimited or
  1132. * all available videos.
  1133. * @param lastN the new number of videos the user would like to receive.
  1134. * @throws Error or RangeError if the given value is not a number or is smaller
  1135. * than -1.
  1136. */
  1137. JitsiConference.prototype.setLastN = function(lastN) {
  1138. if (!Number.isInteger(lastN) && !Number.parseInt(lastN, 10)) {
  1139. throw new Error(`Invalid value for lastN: ${lastN}`);
  1140. }
  1141. const n = Number(lastN);
  1142. if (n < -1) {
  1143. throw new RangeError('lastN cannot be smaller than -1');
  1144. }
  1145. this.rtc.setLastN(n);
  1146. // If the P2P session is not fully established yet, we wait until it gets
  1147. // established.
  1148. if (this.p2pJingleSession) {
  1149. const isVideoActive = n !== 0;
  1150. this.p2pJingleSession
  1151. .setMediaTransferActive(true, isVideoActive)
  1152. .catch(error => {
  1153. logger.error(
  1154. `Failed to adjust video transfer status (${isVideoActive})`,
  1155. error);
  1156. });
  1157. }
  1158. };
  1159. /**
  1160. * Checks if the participant given by participantId is currently included in
  1161. * the last N.
  1162. * @param {string} participantId the identifier of the participant we would
  1163. * like to check.
  1164. * @return {boolean} true if the participant with id is in the last N set or
  1165. * if there's no last N set, false otherwise.
  1166. * @deprecated this method should never be used to figure out the UI, but
  1167. * {@link ParticipantConnectionStatus} should be used instead.
  1168. */
  1169. JitsiConference.prototype.isInLastN = function(participantId) {
  1170. return this.rtc.isInLastN(participantId);
  1171. };
  1172. /**
  1173. * @return Array<JitsiParticipant> an array of all participants in this
  1174. * conference.
  1175. */
  1176. JitsiConference.prototype.getParticipants = function() {
  1177. return Object.keys(this.participants).map(function(key) {
  1178. return this.participants[key];
  1179. }, this);
  1180. };
  1181. /**
  1182. * Returns the number of participants in the conference, including the local
  1183. * participant.
  1184. * @param countHidden {boolean} Whether or not to include hidden participants
  1185. * in the count. Default: false.
  1186. **/
  1187. JitsiConference.prototype.getParticipantCount
  1188. = function(countHidden = false) {
  1189. let participants = this.getParticipants();
  1190. if (!countHidden) {
  1191. participants = participants.filter(p => !p.isHidden());
  1192. }
  1193. // Add one for the local participant.
  1194. return participants.length + 1;
  1195. };
  1196. /**
  1197. * @returns {JitsiParticipant} the participant in this conference with the
  1198. * specified id (or undefined if there isn't one).
  1199. * @param id the id of the participant.
  1200. */
  1201. JitsiConference.prototype.getParticipantById = function(id) {
  1202. return this.participants[id];
  1203. };
  1204. /**
  1205. * Kick participant from this conference.
  1206. * @param {string} id id of the participant to kick
  1207. */
  1208. JitsiConference.prototype.kickParticipant = function(id) {
  1209. const participant = this.getParticipantById(id);
  1210. if (!participant) {
  1211. return;
  1212. }
  1213. this.room.kick(participant.getJid());
  1214. };
  1215. /**
  1216. * Maybe clears the timeout which emits {@link ACTION_JINGLE_SI_TIMEOUT}
  1217. * analytics event.
  1218. * @private
  1219. */
  1220. JitsiConference.prototype._maybeClearSITimeout = function() {
  1221. if (this._sessionInitiateTimeout
  1222. && (this.jvbJingleSession || this.getParticipantCount() < 2)) {
  1223. window.clearTimeout(this._sessionInitiateTimeout);
  1224. this._sessionInitiateTimeout = null;
  1225. }
  1226. };
  1227. /**
  1228. * Sets a timeout which will emit {@link ACTION_JINGLE_SI_TIMEOUT} analytics
  1229. * event.
  1230. * @private
  1231. */
  1232. JitsiConference.prototype._maybeSetSITimeout = function() {
  1233. // Jicofo is supposed to invite if there are at least 2 participants
  1234. if (!this.jvbJingleSession
  1235. && this.getParticipantCount() >= 2
  1236. && !this._sessionInitiateTimeout) {
  1237. this._sessionInitiateTimeout = window.setTimeout(() => {
  1238. this._sessionInitiateTimeout = null;
  1239. Statistics.sendAnalytics(createJingleEvent(
  1240. ACTION_JINGLE_SI_TIMEOUT,
  1241. {
  1242. p2p: false,
  1243. value: JINGLE_SI_TIMEOUT
  1244. }));
  1245. }, JINGLE_SI_TIMEOUT);
  1246. }
  1247. };
  1248. /**
  1249. * Mutes a participant.
  1250. * @param {string} id The id of the participant to mute.
  1251. */
  1252. JitsiConference.prototype.muteParticipant = function(id) {
  1253. const participant = this.getParticipantById(id);
  1254. if (!participant) {
  1255. return;
  1256. }
  1257. this.room.muteParticipant(participant.getJid(), true);
  1258. };
  1259. /* eslint-disable max-params */
  1260. /**
  1261. * Notifies this JitsiConference that a new member has joined its chat room.
  1262. *
  1263. * FIXME This should NOT be exposed!
  1264. *
  1265. * @param jid the jid of the participant in the MUC
  1266. * @param nick the display name of the participant
  1267. * @param role the role of the participant in the MUC
  1268. * @param isHidden indicates if this is a hidden participant (system
  1269. * participant for example a recorder).
  1270. * @param statsID the participant statsID (optional)
  1271. * @param status the initial status if any
  1272. * @param identity the member identity, if any
  1273. * @param botType the member botType, if any
  1274. */
  1275. JitsiConference.prototype.onMemberJoined = function(
  1276. jid, nick, role, isHidden, statsID, status, identity, botType) {
  1277. const id = Strophe.getResourceFromJid(jid);
  1278. if (id === 'focus' || this.myUserId() === id) {
  1279. return;
  1280. }
  1281. const participant
  1282. = new JitsiParticipant(jid, this, nick, isHidden, statsID, status, identity);
  1283. participant._role = role;
  1284. participant._botType = botType;
  1285. this.participants[id] = participant;
  1286. this.eventEmitter.emit(
  1287. JitsiConferenceEvents.USER_JOINED,
  1288. id,
  1289. participant);
  1290. this._updateFeatures(participant);
  1291. this._maybeStartOrStopP2P();
  1292. this._maybeSetSITimeout();
  1293. };
  1294. /* eslint-enable max-params */
  1295. /**
  1296. * Updates features for a participant.
  1297. * @param {JitsiParticipant} participant - The participant to query for features.
  1298. * @returns {void}
  1299. * @private
  1300. */
  1301. JitsiConference.prototype._updateFeatures = function(participant) {
  1302. participant.getFeatures()
  1303. .then(features => {
  1304. participant._supportsDTMF = features.has('urn:xmpp:jingle:dtmf:0');
  1305. this.updateDTMFSupport();
  1306. if (features.has('http://jitsi.org/protocol/jigasi')) {
  1307. participant.setProperty('features_jigasi', true);
  1308. }
  1309. })
  1310. .catch(() => false);
  1311. };
  1312. /**
  1313. * Get notified when member bot type had changed.
  1314. * @param jid the member jid
  1315. * @param botType the new botType value
  1316. * @private
  1317. */
  1318. JitsiConference.prototype._onMemberBotTypeChanged = function(jid, botType) {
  1319. // find the participant and mark it as non bot, as the real one will join
  1320. // in a moment
  1321. const peers = this.getParticipants();
  1322. const botParticipant = peers.find(p => p.getJid() === jid);
  1323. if (botParticipant) {
  1324. botParticipant._botType = botType;
  1325. const id = Strophe.getResourceFromJid(jid);
  1326. this.eventEmitter.emit(
  1327. JitsiConferenceEvents.BOT_TYPE_CHANGED,
  1328. id,
  1329. botType);
  1330. }
  1331. // if botType changed to undefined, botType was removed, in case of
  1332. // poltergeist mode this is the moment when the poltergeist had exited and
  1333. // the real participant had already replaced it.
  1334. // In this case we can check and try p2p
  1335. if (!botParticipant._botType) {
  1336. this._maybeStartOrStopP2P();
  1337. }
  1338. };
  1339. JitsiConference.prototype.onMemberLeft = function(jid) {
  1340. const id = Strophe.getResourceFromJid(jid);
  1341. if (id === 'focus' || this.myUserId() === id) {
  1342. return;
  1343. }
  1344. const participant = this.participants[id];
  1345. delete this.participants[id];
  1346. const removedTracks = this.rtc.removeRemoteTracks(id);
  1347. removedTracks.forEach(
  1348. track =>
  1349. this.eventEmitter.emit(JitsiConferenceEvents.TRACK_REMOVED, track));
  1350. // there can be no participant in case the member that left is focus
  1351. if (participant) {
  1352. this.eventEmitter.emit(
  1353. JitsiConferenceEvents.USER_LEFT, id, participant);
  1354. }
  1355. this._maybeStartOrStopP2P(true /* triggered by user left event */);
  1356. this._maybeClearSITimeout();
  1357. };
  1358. /**
  1359. * Designates an event indicating that we were kicked from the XMPP MUC.
  1360. * @param {boolean} isSelfPresence - whether it is for local participant
  1361. * or another participant.
  1362. * @param {string} actorId - the id of the participant who was initiator
  1363. * of the kick.
  1364. * @param {string?} kickedParticipantId - when it is not a kick for local participant,
  1365. * this is the id of the participant which was kicked.
  1366. */
  1367. JitsiConference.prototype.onMemberKicked = function(isSelfPresence, actorId, kickedParticipantId) {
  1368. const actorParticipant = this.participants[actorId];
  1369. if (isSelfPresence) {
  1370. this.eventEmitter.emit(
  1371. JitsiConferenceEvents.KICKED, actorParticipant);
  1372. this.leave();
  1373. return;
  1374. }
  1375. const kickedParticipant = this.participants[kickedParticipantId];
  1376. this.eventEmitter.emit(
  1377. JitsiConferenceEvents.PARTICIPANT_KICKED, actorParticipant, kickedParticipant);
  1378. };
  1379. /**
  1380. * Method called on local MUC role change.
  1381. * @param {string} role the name of new user's role as defined by XMPP MUC.
  1382. */
  1383. JitsiConference.prototype.onLocalRoleChanged = function(role) {
  1384. // Emit role changed for local JID
  1385. this.eventEmitter.emit(
  1386. JitsiConferenceEvents.USER_ROLE_CHANGED, this.myUserId(), role);
  1387. };
  1388. JitsiConference.prototype.onUserRoleChanged = function(jid, role) {
  1389. const id = Strophe.getResourceFromJid(jid);
  1390. const participant = this.getParticipantById(id);
  1391. if (!participant) {
  1392. return;
  1393. }
  1394. participant._role = role;
  1395. this.eventEmitter.emit(JitsiConferenceEvents.USER_ROLE_CHANGED, id, role);
  1396. };
  1397. JitsiConference.prototype.onDisplayNameChanged = function(jid, displayName) {
  1398. const id = Strophe.getResourceFromJid(jid);
  1399. const participant = this.getParticipantById(id);
  1400. if (!participant) {
  1401. return;
  1402. }
  1403. if (participant._displayName === displayName) {
  1404. return;
  1405. }
  1406. participant._displayName = displayName;
  1407. this.eventEmitter.emit(
  1408. JitsiConferenceEvents.DISPLAY_NAME_CHANGED,
  1409. id,
  1410. displayName);
  1411. };
  1412. /**
  1413. * Notifies this JitsiConference that a JitsiRemoteTrack was added into
  1414. * the conference.
  1415. *
  1416. * @param {JitsiRemoteTrack} track the JitsiRemoteTrack which was added to this
  1417. * JitsiConference
  1418. */
  1419. JitsiConference.prototype.onRemoteTrackAdded = function(track) {
  1420. if (track.isP2P && !this.isP2PActive()) {
  1421. logger.info(
  1422. 'Trying to add remote P2P track, when not in P2P - IGNORED');
  1423. return;
  1424. } else if (!track.isP2P && this.isP2PActive()) {
  1425. logger.info(
  1426. 'Trying to add remote JVB track, when in P2P - IGNORED');
  1427. return;
  1428. }
  1429. const id = track.getParticipantId();
  1430. const participant = this.getParticipantById(id);
  1431. if (!participant) {
  1432. logger.error(`No participant found for id: ${id}`);
  1433. return;
  1434. }
  1435. // Add track to JitsiParticipant.
  1436. participant._tracks.push(track);
  1437. if (this.transcriber) {
  1438. this.transcriber.addTrack(track);
  1439. }
  1440. const emitter = this.eventEmitter;
  1441. track.addEventListener(
  1442. JitsiTrackEvents.TRACK_MUTE_CHANGED,
  1443. () => emitter.emit(JitsiConferenceEvents.TRACK_MUTE_CHANGED, track));
  1444. track.addEventListener(
  1445. JitsiTrackEvents.TRACK_AUDIO_LEVEL_CHANGED,
  1446. (audioLevel, tpc) => {
  1447. const activeTPC = this.getActivePeerConnection();
  1448. if (activeTPC === tpc) {
  1449. emitter.emit(
  1450. JitsiConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED,
  1451. id,
  1452. audioLevel);
  1453. }
  1454. }
  1455. );
  1456. emitter.emit(JitsiConferenceEvents.TRACK_ADDED, track);
  1457. };
  1458. /**
  1459. * Callback called by the Jingle plugin when 'session-answer' is received.
  1460. * @param {JingleSessionPC} session the Jingle session for which an answer was
  1461. * received.
  1462. * @param {jQuery} answer a jQuery selector pointing to 'jingle' IQ element
  1463. */
  1464. // eslint-disable-next-line no-unused-vars
  1465. JitsiConference.prototype.onCallAccepted = function(session, answer) {
  1466. if (this.p2pJingleSession === session) {
  1467. logger.info('P2P setAnswer');
  1468. this.p2pJingleSession.setAnswer(answer);
  1469. }
  1470. };
  1471. /**
  1472. * Callback called by the Jingle plugin when 'transport-info' is received.
  1473. * @param {JingleSessionPC} session the Jingle session for which the IQ was
  1474. * received
  1475. * @param {jQuery} transportInfo a jQuery selector pointing to 'jingle' IQ
  1476. * element
  1477. */
  1478. // eslint-disable-next-line no-unused-vars
  1479. JitsiConference.prototype.onTransportInfo = function(session, transportInfo) {
  1480. if (this.p2pJingleSession === session) {
  1481. logger.info('P2P addIceCandidates');
  1482. this.p2pJingleSession.addIceCandidates(transportInfo);
  1483. }
  1484. };
  1485. /**
  1486. * Notifies this JitsiConference that a JitsiRemoteTrack was removed from
  1487. * the conference.
  1488. *
  1489. * @param {JitsiRemoteTrack} removedTrack
  1490. */
  1491. JitsiConference.prototype.onRemoteTrackRemoved = function(removedTrack) {
  1492. this.getParticipants().forEach(participant => {
  1493. const tracks = participant.getTracks();
  1494. for (let i = 0; i < tracks.length; i++) {
  1495. if (tracks[i] === removedTrack) {
  1496. // Since the tracks have been compared and are
  1497. // considered equal the result of splice can be ignored.
  1498. participant._tracks.splice(i, 1);
  1499. this.eventEmitter.emit(
  1500. JitsiConferenceEvents.TRACK_REMOVED, removedTrack);
  1501. if (this.transcriber) {
  1502. this.transcriber.removeTrack(removedTrack);
  1503. }
  1504. break;
  1505. }
  1506. }
  1507. }, this);
  1508. };
  1509. /**
  1510. * Handles an incoming call event for the P2P jingle session.
  1511. */
  1512. JitsiConference.prototype._onIncomingCallP2P = function(
  1513. jingleSession,
  1514. jingleOffer) {
  1515. let rejectReason;
  1516. if (!browser.supportsP2P()) {
  1517. rejectReason = {
  1518. reason: 'unsupported-applications',
  1519. reasonDescription: 'P2P not supported',
  1520. errorMsg: 'This client does not support P2P connections'
  1521. };
  1522. } else if (!this.isP2PEnabled() && !this.isP2PTestModeEnabled()) {
  1523. rejectReason = {
  1524. reason: 'decline',
  1525. reasonDescription: 'P2P disabled',
  1526. errorMsg: 'P2P mode disabled in the configuration'
  1527. };
  1528. } else if (this.p2pJingleSession) {
  1529. // Reject incoming P2P call (already in progress)
  1530. rejectReason = {
  1531. reason: 'busy',
  1532. reasonDescription: 'P2P already in progress',
  1533. errorMsg: 'Duplicated P2P "session-initiate"'
  1534. };
  1535. } else if (!this._shouldBeInP2PMode()) {
  1536. rejectReason = {
  1537. reason: 'decline',
  1538. reasonDescription: 'P2P requirements not met',
  1539. errorMsg: 'Received P2P "session-initiate" when should not be in P2P mode'
  1540. };
  1541. Statistics.sendAnalytics(createJingleEvent(ACTION_P2P_DECLINED));
  1542. }
  1543. if (rejectReason) {
  1544. this._rejectIncomingCall(jingleSession, rejectReason);
  1545. } else {
  1546. this._acceptP2PIncomingCall(jingleSession, jingleOffer);
  1547. }
  1548. };
  1549. /**
  1550. * Handles an incoming call event.
  1551. */
  1552. JitsiConference.prototype.onIncomingCall = function(
  1553. jingleSession,
  1554. jingleOffer,
  1555. now) {
  1556. // Handle incoming P2P call
  1557. if (jingleSession.isP2P) {
  1558. this._onIncomingCallP2P(jingleSession, jingleOffer);
  1559. } else {
  1560. if (!this.room.isFocus(jingleSession.remoteJid)) {
  1561. const description = 'Rejecting session-initiate from non-focus.';
  1562. this._rejectIncomingCall(
  1563. jingleSession, {
  1564. reason: 'security-error',
  1565. reasonDescription: description,
  1566. errorMsg: description
  1567. });
  1568. return;
  1569. }
  1570. this._acceptJvbIncomingCall(jingleSession, jingleOffer, now);
  1571. }
  1572. };
  1573. /**
  1574. * Accepts an incoming call event for the JVB jingle session.
  1575. */
  1576. JitsiConference.prototype._acceptJvbIncomingCall = function(
  1577. jingleSession,
  1578. jingleOffer,
  1579. now) {
  1580. // Accept incoming call
  1581. this.jvbJingleSession = jingleSession;
  1582. this.room.connectionTimes['session.initiate'] = now;
  1583. if (this.wasStopped) {
  1584. Statistics.sendAnalyticsAndLog(
  1585. createJingleEvent(ACTION_JINGLE_RESTART, { p2p: false }));
  1586. }
  1587. const serverRegion
  1588. = $(jingleOffer)
  1589. .find('>bridge-session[xmlns="http://jitsi.org/protocol/focus"]')
  1590. .attr('region');
  1591. this.eventEmitter.emit(
  1592. JitsiConferenceEvents.SERVER_REGION_CHANGED,
  1593. serverRegion);
  1594. this._maybeClearSITimeout();
  1595. Statistics.sendAnalytics(createJingleEvent(
  1596. ACTION_JINGLE_SI_RECEIVED,
  1597. {
  1598. p2p: false,
  1599. value: now
  1600. }));
  1601. try {
  1602. jingleSession.initialize(this.room, this.rtc, this.options.config);
  1603. } catch (error) {
  1604. GlobalOnErrorHandler.callErrorHandler(error);
  1605. }
  1606. // Open a channel with the videobridge.
  1607. this._setBridgeChannel(jingleOffer, jingleSession.peerconnection);
  1608. // Add local tracks to the session
  1609. try {
  1610. jingleSession.acceptOffer(
  1611. jingleOffer,
  1612. () => {
  1613. // If for any reason invite for the JVB session arrived after
  1614. // the P2P has been established already the media transfer needs
  1615. // to be turned off here.
  1616. if (this.isP2PActive() && this.jvbJingleSession) {
  1617. this._suspendMediaTransferForJvbConnection();
  1618. }
  1619. },
  1620. error => {
  1621. GlobalOnErrorHandler.callErrorHandler(error);
  1622. logger.error(
  1623. 'Failed to accept incoming Jingle session', error);
  1624. },
  1625. this.getLocalTracks()
  1626. );
  1627. // Start callstats as soon as peerconnection is initialized,
  1628. // do not wait for XMPPEvents.PEERCONNECTION_READY, as it may never
  1629. // happen in case if user doesn't have or denied permission to
  1630. // both camera and microphone.
  1631. logger.info('Starting CallStats for JVB connection...');
  1632. this.statistics.startCallStats(
  1633. this.jvbJingleSession.peerconnection,
  1634. 'jitsi' /* Remote user ID for JVB is 'jitsi' */);
  1635. this.statistics.startRemoteStats(this.jvbJingleSession.peerconnection);
  1636. } catch (e) {
  1637. GlobalOnErrorHandler.callErrorHandler(e);
  1638. logger.error(e);
  1639. }
  1640. };
  1641. /**
  1642. * Sets the BridgeChannel.
  1643. *
  1644. * @param {jQuery} offerIq a jQuery selector pointing to the jingle element of
  1645. * the offer IQ which may carry the WebSocket URL for the 'websocket'
  1646. * BridgeChannel mode.
  1647. * @param {TraceablePeerConnection} pc the peer connection which will be used
  1648. * to listen for new WebRTC Data Channels (in the 'datachannel' mode).
  1649. */
  1650. JitsiConference.prototype._setBridgeChannel = function(offerIq, pc) {
  1651. let wsUrl = null;
  1652. const webSocket
  1653. = $(offerIq)
  1654. .find('>content>transport>web-socket')
  1655. .first();
  1656. if (webSocket.length === 1) {
  1657. wsUrl = webSocket[0].getAttribute('url');
  1658. }
  1659. let bridgeChannelType;
  1660. switch (this.options.config.openBridgeChannel) {
  1661. case 'datachannel':
  1662. case true:
  1663. case undefined:
  1664. bridgeChannelType = 'datachannel';
  1665. break;
  1666. case 'websocket':
  1667. bridgeChannelType = 'websocket';
  1668. break;
  1669. }
  1670. if (bridgeChannelType === 'datachannel') {
  1671. this.rtc.initializeBridgeChannel(pc, null);
  1672. } else if (bridgeChannelType === 'websocket' && wsUrl) {
  1673. this.rtc.initializeBridgeChannel(null, wsUrl);
  1674. }
  1675. };
  1676. /**
  1677. * Rejects incoming Jingle call.
  1678. * @param {JingleSessionPC} jingleSession the session instance to be rejected.
  1679. * @param {object} [options]
  1680. * @param {string} options.reason the name of the reason element as defined
  1681. * by Jingle
  1682. * @param {string} options.reasonDescription the reason description which will
  1683. * be included in Jingle 'session-terminate' message.
  1684. * @param {string} options.errorMsg an error message to be logged on global
  1685. * error handler
  1686. * @private
  1687. */
  1688. JitsiConference.prototype._rejectIncomingCall = function(
  1689. jingleSession,
  1690. options) {
  1691. if (options && options.errorMsg) {
  1692. GlobalOnErrorHandler.callErrorHandler(new Error(options.errorMsg));
  1693. }
  1694. // Terminate the jingle session with a reason
  1695. jingleSession.terminate(
  1696. null /* success callback => we don't care */,
  1697. error => {
  1698. logger.warn(
  1699. 'An error occurred while trying to terminate'
  1700. + ' invalid Jingle session', error);
  1701. }, {
  1702. reason: options && options.reason,
  1703. reasonDescription: options && options.reasonDescription,
  1704. sendSessionTerminate: true
  1705. });
  1706. };
  1707. /**
  1708. * Handles the call ended event.
  1709. * XXX is this due to the remote side terminating the Jingle session?
  1710. *
  1711. * @param {JingleSessionPC} jingleSession the jingle session which has been
  1712. * terminated.
  1713. * @param {String} reasonCondition the Jingle reason condition.
  1714. * @param {String|null} reasonText human readable reason text which may provide
  1715. * more details about why the call has been terminated.
  1716. */
  1717. JitsiConference.prototype.onCallEnded = function(
  1718. jingleSession,
  1719. reasonCondition,
  1720. reasonText) {
  1721. logger.info(
  1722. `Call ended: ${reasonCondition} - ${reasonText} P2P ?${
  1723. jingleSession.isP2P}`);
  1724. if (jingleSession === this.jvbJingleSession) {
  1725. this.wasStopped = true;
  1726. Statistics.sendAnalytics(
  1727. createJingleEvent(ACTION_JINGLE_TERMINATE, { p2p: false }));
  1728. // Stop the stats
  1729. if (this.statistics) {
  1730. this.statistics.stopRemoteStats(
  1731. this.jvbJingleSession.peerconnection);
  1732. logger.info('Stopping JVB CallStats');
  1733. this.statistics.stopCallStats(
  1734. this.jvbJingleSession.peerconnection);
  1735. }
  1736. // Current JVB JingleSession is no longer valid, so set it to null
  1737. this.jvbJingleSession = null;
  1738. // Let the RTC service do any cleanups
  1739. this.rtc.onCallEnded();
  1740. } else if (jingleSession === this.p2pJingleSession) {
  1741. // It's the responder who decides to enforce JVB mode, so that both
  1742. // initiator and responder are aware if it was intentional.
  1743. if (reasonCondition === 'decline' && reasonText === 'force JVB121') {
  1744. logger.info('In forced JVB 121 mode...');
  1745. Statistics.analytics.addPermanentProperties({ forceJvb121: true });
  1746. } else if (reasonCondition === 'connectivity-error'
  1747. && reasonText === 'ICE FAILED') {
  1748. // It can happen that the other peer detects ICE failed and
  1749. // terminates the session, before we get the event on our side.
  1750. // But we are able to parse the reason and mark it here.
  1751. Statistics.analytics.addPermanentProperties({ p2pFailed: true });
  1752. }
  1753. this._stopP2PSession();
  1754. } else {
  1755. logger.error(
  1756. 'Received onCallEnded for invalid session',
  1757. jingleSession.sid,
  1758. jingleSession.remoteJid,
  1759. reasonCondition,
  1760. reasonText);
  1761. }
  1762. };
  1763. /**
  1764. * Handles the suspend detected event. Leaves the room and fires suspended.
  1765. * @param {JingleSessionPC} jingleSession
  1766. */
  1767. JitsiConference.prototype.onSuspendDetected = function(jingleSession) {
  1768. if (!jingleSession.isP2P) {
  1769. this.leave();
  1770. this.eventEmitter.emit(JitsiConferenceEvents.SUSPEND_DETECTED);
  1771. }
  1772. };
  1773. JitsiConference.prototype.updateDTMFSupport = function() {
  1774. let somebodySupportsDTMF = false;
  1775. const participants = this.getParticipants();
  1776. // check if at least 1 participant supports DTMF
  1777. for (let i = 0; i < participants.length; i += 1) {
  1778. if (participants[i].supportsDTMF()) {
  1779. somebodySupportsDTMF = true;
  1780. break;
  1781. }
  1782. }
  1783. if (somebodySupportsDTMF !== this.somebodySupportsDTMF) {
  1784. this.somebodySupportsDTMF = somebodySupportsDTMF;
  1785. this.eventEmitter.emit(
  1786. JitsiConferenceEvents.DTMF_SUPPORT_CHANGED,
  1787. somebodySupportsDTMF);
  1788. }
  1789. };
  1790. /**
  1791. * Allows to check if there is at least one user in the conference
  1792. * that supports DTMF.
  1793. * @returns {boolean} true if somebody supports DTMF, false otherwise
  1794. */
  1795. JitsiConference.prototype.isDTMFSupported = function() {
  1796. return this.somebodySupportsDTMF;
  1797. };
  1798. /**
  1799. * Returns the local user's ID
  1800. * @return {string} local user's ID
  1801. */
  1802. JitsiConference.prototype.myUserId = function() {
  1803. return (
  1804. this.room && this.room.myroomjid
  1805. ? Strophe.getResourceFromJid(this.room.myroomjid)
  1806. : null);
  1807. };
  1808. JitsiConference.prototype.sendTones = function(tones, duration, pause) {
  1809. const peerConnection = this.getActivePeerConnection();
  1810. if (peerConnection) {
  1811. peerConnection.sendTones(tones, duration, pause);
  1812. } else {
  1813. logger.warn('cannot sendTones: no peer connection');
  1814. }
  1815. };
  1816. /**
  1817. * Starts recording the current conference.
  1818. *
  1819. * @param {Object} options - Configuration for the recording. See
  1820. * {@link Chatroom#startRecording} for more info.
  1821. * @returns {Promise} See {@link Chatroom#startRecording} for more info.
  1822. */
  1823. JitsiConference.prototype.startRecording = function(options) {
  1824. if (this.room) {
  1825. return this.recordingManager.startRecording(options);
  1826. }
  1827. return Promise.reject(new Error('The conference is not created yet!'));
  1828. };
  1829. /**
  1830. * Stop a recording session.
  1831. *
  1832. * @param {string} sessionID - The ID of the recording session that
  1833. * should be stopped.
  1834. * @returns {Promise} See {@link Chatroom#stopRecording} for more info.
  1835. */
  1836. JitsiConference.prototype.stopRecording = function(sessionID) {
  1837. if (this.room) {
  1838. return this.recordingManager.stopRecording(sessionID);
  1839. }
  1840. return Promise.reject(new Error('The conference is not created yet!'));
  1841. };
  1842. /**
  1843. * Returns true if the SIP calls are supported and false otherwise
  1844. */
  1845. JitsiConference.prototype.isSIPCallingSupported = function() {
  1846. if (this.room) {
  1847. return this.room.isSIPCallingSupported();
  1848. }
  1849. return false;
  1850. };
  1851. /**
  1852. * Dials a number.
  1853. * @param number the number
  1854. */
  1855. JitsiConference.prototype.dial = function(number) {
  1856. if (this.room) {
  1857. return this.room.dial(number);
  1858. }
  1859. return new Promise((resolve, reject) => {
  1860. reject(new Error('The conference is not created yet!'));
  1861. });
  1862. };
  1863. /**
  1864. * Hangup an existing call
  1865. */
  1866. JitsiConference.prototype.hangup = function() {
  1867. if (this.room) {
  1868. return this.room.hangup();
  1869. }
  1870. return new Promise((resolve, reject) => {
  1871. reject(new Error('The conference is not created yet!'));
  1872. });
  1873. };
  1874. /**
  1875. * Starts the transcription service.
  1876. */
  1877. JitsiConference.prototype.startTranscriber = function() {
  1878. return this.dial('jitsi_meet_transcribe');
  1879. };
  1880. /**
  1881. * Stops the transcription service.
  1882. */
  1883. JitsiConference.prototype.stopTranscriber = JitsiConference.prototype.hangup;
  1884. /**
  1885. * Returns the phone number for joining the conference.
  1886. */
  1887. JitsiConference.prototype.getPhoneNumber = function() {
  1888. if (this.room) {
  1889. return this.room.getPhoneNumber();
  1890. }
  1891. return null;
  1892. };
  1893. /**
  1894. * Returns the pin for joining the conference with phone.
  1895. */
  1896. JitsiConference.prototype.getPhonePin = function() {
  1897. if (this.room) {
  1898. return this.room.getPhonePin();
  1899. }
  1900. return null;
  1901. };
  1902. /**
  1903. * Returns the meeting unique ID if any.
  1904. *
  1905. * @returns {string|undefined}
  1906. */
  1907. JitsiConference.prototype.getMeetingUniqueId = function() {
  1908. if (this.room) {
  1909. return this.room.getMeetingId();
  1910. }
  1911. };
  1912. /**
  1913. * Will return P2P or JVB <tt>TraceablePeerConnection</tt> depending on
  1914. * which connection is currently active.
  1915. *
  1916. * @return {TraceablePeerConnection|null} null if there isn't any active
  1917. * <tt>TraceablePeerConnection</tt> currently available.
  1918. * @public (FIXME how to make package local ?)
  1919. */
  1920. JitsiConference.prototype.getActivePeerConnection = function() {
  1921. if (this.isP2PActive()) {
  1922. return this.p2pJingleSession.peerconnection;
  1923. }
  1924. return this.jvbJingleSession ? this.jvbJingleSession.peerconnection : null;
  1925. };
  1926. /**
  1927. * Returns the connection state for the current room. Its ice connection state
  1928. * for its session.
  1929. * NOTE that "completed" ICE state which can appear on the P2P connection will
  1930. * be converted to "connected".
  1931. * @return {string|null} ICE state name or <tt>null</tt> if there is no active
  1932. * peer connection at this time.
  1933. */
  1934. JitsiConference.prototype.getConnectionState = function() {
  1935. const peerConnection = this.getActivePeerConnection();
  1936. return peerConnection ? peerConnection.getConnectionState() : null;
  1937. };
  1938. /**
  1939. * Make all new participants mute their audio/video on join.
  1940. * @param policy {Object} object with 2 boolean properties for video and audio:
  1941. * @param {boolean} audio if audio should be muted.
  1942. * @param {boolean} video if video should be muted.
  1943. */
  1944. JitsiConference.prototype.setStartMutedPolicy = function(policy) {
  1945. if (!this.isModerator()) {
  1946. return;
  1947. }
  1948. this.startMutedPolicy = policy;
  1949. this.room.removeFromPresence('startmuted');
  1950. this.room.addToPresence('startmuted', {
  1951. attributes: {
  1952. audio: policy.audio,
  1953. video: policy.video,
  1954. xmlns: 'http://jitsi.org/jitmeet/start-muted'
  1955. }
  1956. });
  1957. this.room.sendPresence();
  1958. };
  1959. /**
  1960. * Returns current start muted policy
  1961. * @returns {Object} with 2 properties - audio and video.
  1962. */
  1963. JitsiConference.prototype.getStartMutedPolicy = function() {
  1964. return this.startMutedPolicy;
  1965. };
  1966. /**
  1967. * Check if audio is muted on join.
  1968. */
  1969. JitsiConference.prototype.isStartAudioMuted = function() {
  1970. return this.startAudioMuted;
  1971. };
  1972. /**
  1973. * Check if video is muted on join.
  1974. */
  1975. JitsiConference.prototype.isStartVideoMuted = function() {
  1976. return this.startVideoMuted;
  1977. };
  1978. /**
  1979. * Get object with internal logs.
  1980. */
  1981. JitsiConference.prototype.getLogs = function() {
  1982. const data = this.xmpp.getJingleLog();
  1983. const metadata = {};
  1984. metadata.time = new Date();
  1985. metadata.url = window.location.href;
  1986. metadata.ua = navigator.userAgent;
  1987. const log = this.xmpp.getXmppLog();
  1988. if (log) {
  1989. metadata.xmpp = log;
  1990. }
  1991. data.metadata = metadata;
  1992. return data;
  1993. };
  1994. /**
  1995. * Returns measured connectionTimes.
  1996. */
  1997. JitsiConference.prototype.getConnectionTimes = function() {
  1998. return this.room.connectionTimes;
  1999. };
  2000. /**
  2001. * Sets a property for the local participant.
  2002. */
  2003. JitsiConference.prototype.setLocalParticipantProperty = function(name, value) {
  2004. this.sendCommand(`jitsi_participant_${name}`, { value });
  2005. };
  2006. /**
  2007. * Removes a property for the local participant and sends the updated presence.
  2008. */
  2009. JitsiConference.prototype.removeLocalParticipantProperty = function(name) {
  2010. this.removeCommand(`jitsi_participant_${name}`);
  2011. this.room.sendPresence();
  2012. };
  2013. /**
  2014. * Gets a local participant property.
  2015. *
  2016. * @return value of the local participant property if the tagName exists in the
  2017. * list of properties, otherwise returns undefined.
  2018. */
  2019. JitsiConference.prototype.getLocalParticipantProperty = function(name) {
  2020. const property = this.room.presMap.nodes.find(prop =>
  2021. prop.tagName === `jitsi_participant_${name}`
  2022. );
  2023. return property ? property.value : undefined;
  2024. };
  2025. /**
  2026. * Sends the given feedback through CallStats if enabled.
  2027. *
  2028. * @param overallFeedback an integer between 1 and 5 indicating the
  2029. * user feedback
  2030. * @param detailedFeedback detailed feedback from the user. Not yet used
  2031. * @returns {Promise} Resolves if feedback is submitted successfully.
  2032. */
  2033. JitsiConference.prototype.sendFeedback = function(
  2034. overallFeedback,
  2035. detailedFeedback) {
  2036. return this.statistics.sendFeedback(overallFeedback, detailedFeedback);
  2037. };
  2038. /**
  2039. * Returns true if the callstats integration is enabled, otherwise returns
  2040. * false.
  2041. *
  2042. * @returns true if the callstats integration is enabled, otherwise returns
  2043. * false.
  2044. */
  2045. JitsiConference.prototype.isCallstatsEnabled = function() {
  2046. return this.statistics.isCallstatsEnabled();
  2047. };
  2048. /**
  2049. * Handles track attached to container (Calls associateStreamWithVideoTag method
  2050. * from statistics module)
  2051. * @param {JitsiLocalTrack|JitsiRemoteTrack} track the track
  2052. * @param container the container
  2053. */
  2054. JitsiConference.prototype._onTrackAttach = function(track, container) {
  2055. const isLocal = track.isLocal();
  2056. let ssrc = null;
  2057. const isP2P = track.isP2P;
  2058. const remoteUserId = isP2P ? track.getParticipantId() : 'jitsi';
  2059. const peerConnection
  2060. = isP2P
  2061. ? this.p2pJingleSession && this.p2pJingleSession.peerconnection
  2062. : this.jvbJingleSession && this.jvbJingleSession.peerconnection;
  2063. if (isLocal) {
  2064. // Local tracks have SSRC stored on per peer connection basis
  2065. if (peerConnection) {
  2066. ssrc = peerConnection.getLocalSSRC(track);
  2067. }
  2068. } else {
  2069. ssrc = track.getSSRC();
  2070. }
  2071. if (!container.id || !ssrc || !peerConnection) {
  2072. return;
  2073. }
  2074. this.statistics.associateStreamWithVideoTag(
  2075. peerConnection,
  2076. ssrc,
  2077. isLocal,
  2078. remoteUserId,
  2079. track.getUsageLabel(),
  2080. container.id);
  2081. };
  2082. /**
  2083. * Logs an "application log" message.
  2084. * @param message {string} The message to log. Note that while this can be a
  2085. * generic string, the convention used by lib-jitsi-meet and jitsi-meet is to
  2086. * log valid JSON strings, with an "id" field used for distinguishing between
  2087. * message types. E.g.: {id: "recorder_status", status: "off"}
  2088. */
  2089. JitsiConference.prototype.sendApplicationLog = function(message) {
  2090. Statistics.sendLog(message);
  2091. };
  2092. /**
  2093. * Checks if the user identified by given <tt>mucJid</tt> is the conference
  2094. * focus.
  2095. * @param mucJid the full MUC address of the user to be checked.
  2096. * @returns {boolean|null} <tt>true</tt> if MUC user is the conference focus,
  2097. * <tt>false</tt> when is not. <tt>null</tt> if we're not in the MUC anymore and
  2098. * are unable to figure out the status or if given <tt>mucJid</tt> is invalid.
  2099. */
  2100. JitsiConference.prototype._isFocus = function(mucJid) {
  2101. return this.room ? this.room.isFocus(mucJid) : null;
  2102. };
  2103. /**
  2104. * Fires CONFERENCE_FAILED event with INCOMPATIBLE_SERVER_VERSIONS parameter
  2105. */
  2106. JitsiConference.prototype._fireIncompatibleVersionsEvent = function() {
  2107. this.eventEmitter.emit(JitsiConferenceEvents.CONFERENCE_FAILED,
  2108. JitsiConferenceErrors.INCOMPATIBLE_SERVER_VERSIONS);
  2109. };
  2110. /**
  2111. * Sends a message via the data channel.
  2112. * @param to {string} the id of the endpoint that should receive the message.
  2113. * If "" the message will be sent to all participants.
  2114. * @param payload {object} the payload of the message.
  2115. * @throws NetworkError or InvalidStateError or Error if the operation fails.
  2116. * @deprecated Use 'sendMessage' instead. TODO: this should be private.
  2117. */
  2118. JitsiConference.prototype.sendEndpointMessage = function(to, payload) {
  2119. this.rtc.sendChannelMessage(to, payload);
  2120. };
  2121. /**
  2122. * Sends a broadcast message via the data channel.
  2123. * @param payload {object} the payload of the message.
  2124. * @throws NetworkError or InvalidStateError or Error if the operation fails.
  2125. * @deprecated Use 'sendMessage' instead. TODO: this should be private.
  2126. */
  2127. JitsiConference.prototype.broadcastEndpointMessage = function(payload) {
  2128. this.sendEndpointMessage('', payload);
  2129. };
  2130. /**
  2131. * Sends a message to a given endpoint (if 'to' is a non-empty string), or
  2132. * broadcasts it to all endpoints in the conference.
  2133. * @param {string} to The ID of the endpoint/participant which is to receive
  2134. * the message, or '' to broadcast the message to all endpoints in the
  2135. * conference.
  2136. * @param {string|object} message the message to send. If this is of type
  2137. * 'string' it will be sent as a chat message. If it is of type 'object', it
  2138. * will be encapsulated in a format recognized by jitsi-meet and converted to
  2139. * JSON before being sent.
  2140. * @param {boolean} sendThroughVideobridge Whether to send the message through
  2141. * jitsi-videobridge (via the COLIBRI data channel or web socket), or through
  2142. * the XMPP MUC. Currently only objects can be sent through jitsi-videobridge.
  2143. */
  2144. JitsiConference.prototype.sendMessage = function(
  2145. message,
  2146. to = '',
  2147. sendThroughVideobridge = false) {
  2148. const messageType = typeof message;
  2149. // Through videobridge we support only objects. Through XMPP we support
  2150. // objects (encapsulated in a specific JSON format) and strings (i.e.
  2151. // regular chat messages).
  2152. if (messageType !== 'object'
  2153. && (sendThroughVideobridge || messageType !== 'string')) {
  2154. logger.error(`Can not send a message of type ${messageType}`);
  2155. return;
  2156. }
  2157. if (sendThroughVideobridge) {
  2158. this.sendEndpointMessage(to, message);
  2159. } else {
  2160. let messageToSend = message;
  2161. // Name of packet extension of message stanza to send the required
  2162. // message in.
  2163. let elementName = 'body';
  2164. if (messageType === 'object') {
  2165. elementName = 'json-message';
  2166. // Mark as valid JSON message if not already
  2167. if (!messageToSend.hasOwnProperty(JITSI_MEET_MUC_TYPE)) {
  2168. messageToSend[JITSI_MEET_MUC_TYPE] = '';
  2169. }
  2170. try {
  2171. messageToSend = JSON.stringify(messageToSend);
  2172. } catch (e) {
  2173. logger.error('Can not send a message, stringify failed: ', e);
  2174. return;
  2175. }
  2176. }
  2177. if (to) {
  2178. this.sendPrivateTextMessage(to, messageToSend, elementName);
  2179. } else {
  2180. // Broadcast
  2181. this.sendTextMessage(messageToSend, elementName);
  2182. }
  2183. }
  2184. };
  2185. JitsiConference.prototype.isConnectionInterrupted = function() {
  2186. return this.isP2PActive()
  2187. ? this.isP2PConnectionInterrupted : this.isJvbConnectionInterrupted;
  2188. };
  2189. /**
  2190. * Handles {@link XMPPEvents.CONNECTION_INTERRUPTED}
  2191. * @param {JingleSessionPC} session
  2192. * @private
  2193. */
  2194. JitsiConference.prototype._onIceConnectionInterrupted = function(session) {
  2195. if (session.isP2P) {
  2196. this.isP2PConnectionInterrupted = true;
  2197. } else {
  2198. this.isJvbConnectionInterrupted = true;
  2199. }
  2200. if (session.isP2P === this.isP2PActive()) {
  2201. this.eventEmitter.emit(JitsiConferenceEvents.CONNECTION_INTERRUPTED);
  2202. }
  2203. };
  2204. /**
  2205. * Handles {@link XMPPEvents.CONNECTION_ICE_FAILED}
  2206. * @param {JingleSessionPC} session
  2207. * @private
  2208. */
  2209. JitsiConference.prototype._onIceConnectionFailed = function(session) {
  2210. // We do nothing for the JVB connection, because it's up to the Jicofo to
  2211. // eventually come up with the new offer (at least for the time being).
  2212. if (session.isP2P) {
  2213. // Add p2pFailed property to analytics to distinguish, between "good"
  2214. // and "bad" connection
  2215. Statistics.analytics.addPermanentProperties({ p2pFailed: true });
  2216. if (this.p2pJingleSession) {
  2217. Statistics.sendAnalyticsAndLog(
  2218. createP2PEvent(
  2219. ACTION_P2P_FAILED,
  2220. {
  2221. initiator: this.p2pJingleSession.isInitiator
  2222. }));
  2223. }
  2224. this._stopP2PSession('connectivity-error', 'ICE FAILED');
  2225. } else if (session && this.jvbJingleSession === session) {
  2226. if (this.xmpp.isPingSupported()) {
  2227. this._delayedIceFailed = new IceFailedNotification(this);
  2228. this._delayedIceFailed.start(session);
  2229. } else {
  2230. // Let Jicofo know that the JVB's ICE connection has failed
  2231. logger.info('PING not supported - sending ICE failed immediately');
  2232. session.sendIceFailedNotification();
  2233. }
  2234. }
  2235. };
  2236. /**
  2237. * Handles {@link XMPPEvents.CONNECTION_RESTORED}
  2238. * @param {JingleSessionPC} session
  2239. * @private
  2240. */
  2241. JitsiConference.prototype._onIceConnectionRestored = function(session) {
  2242. if (session.isP2P) {
  2243. this.isP2PConnectionInterrupted = false;
  2244. } else {
  2245. this.isJvbConnectionInterrupted = false;
  2246. this._delayedIceFailed && this._delayedIceFailed.cancel();
  2247. }
  2248. if (session.isP2P === this.isP2PActive()) {
  2249. this.eventEmitter.emit(JitsiConferenceEvents.CONNECTION_RESTORED);
  2250. }
  2251. };
  2252. /**
  2253. * Accept incoming P2P Jingle call.
  2254. * @param {JingleSessionPC} jingleSession the session instance
  2255. * @param {jQuery} jingleOffer a jQuery selector pointing to 'jingle' IQ element
  2256. * @private
  2257. */
  2258. JitsiConference.prototype._acceptP2PIncomingCall = function(
  2259. jingleSession,
  2260. jingleOffer) {
  2261. this.isP2PConnectionInterrupted = false;
  2262. // Accept the offer
  2263. this.p2pJingleSession = jingleSession;
  2264. this.p2pJingleSession.initialize(this.room, this.rtc, this.options.config);
  2265. logger.info('Starting CallStats for P2P connection...');
  2266. let remoteID = Strophe.getResourceFromJid(this.p2pJingleSession.remoteJid);
  2267. const participant = this.participants[remoteID];
  2268. if (participant) {
  2269. remoteID = participant.getStatsID() || remoteID;
  2270. }
  2271. this.statistics.startCallStats(
  2272. this.p2pJingleSession.peerconnection,
  2273. remoteID);
  2274. const localTracks = this.getLocalTracks();
  2275. this.p2pJingleSession.acceptOffer(
  2276. jingleOffer,
  2277. () => {
  2278. logger.debug('Got RESULT for P2P "session-accept"');
  2279. },
  2280. error => {
  2281. logger.error(
  2282. 'Failed to accept incoming P2P Jingle session', error);
  2283. },
  2284. localTracks);
  2285. };
  2286. /**
  2287. * Adds remote tracks to the conference associated with the JVB session.
  2288. * @private
  2289. */
  2290. JitsiConference.prototype._addRemoteJVBTracks = function() {
  2291. this._addRemoteTracks(
  2292. 'JVB', this.jvbJingleSession.peerconnection.getRemoteTracks());
  2293. };
  2294. /**
  2295. * Adds remote tracks to the conference associated with the P2P session.
  2296. * @private
  2297. */
  2298. JitsiConference.prototype._addRemoteP2PTracks = function() {
  2299. this._addRemoteTracks(
  2300. 'P2P', this.p2pJingleSession.peerconnection.getRemoteTracks());
  2301. };
  2302. /**
  2303. * Generates fake "remote track added" events for given Jingle session.
  2304. * @param {string} logName the session's nickname which will appear in log
  2305. * messages.
  2306. * @param {Array<JitsiRemoteTrack>} remoteTracks the tracks that will be added
  2307. * @private
  2308. */
  2309. JitsiConference.prototype._addRemoteTracks = function(logName, remoteTracks) {
  2310. for (const track of remoteTracks) {
  2311. logger.info(`Adding remote ${logName} track: ${track}`);
  2312. this.rtc.eventEmitter.emit(RTCEvents.REMOTE_TRACK_ADDED, track);
  2313. }
  2314. };
  2315. /**
  2316. * Called when {@link XMPPEvents.CONNECTION_ESTABLISHED} event is
  2317. * triggered for a {@link JingleSessionPC}. Switches the conference to use
  2318. * the P2P connection if the event comes from the P2P session.
  2319. * @param {JingleSessionPC} jingleSession the session instance.
  2320. * @private
  2321. */
  2322. JitsiConference.prototype._onIceConnectionEstablished = function(
  2323. jingleSession) {
  2324. if (this.p2pJingleSession !== null) {
  2325. // store the establishment time of the p2p session as a field of the
  2326. // JitsiConference because the p2pJingleSession might get disposed (thus
  2327. // the value is lost).
  2328. this.p2pEstablishmentDuration
  2329. = this.p2pJingleSession.establishmentDuration;
  2330. }
  2331. if (this.jvbJingleSession !== null) {
  2332. this.jvbEstablishmentDuration
  2333. = this.jvbJingleSession.establishmentDuration;
  2334. }
  2335. let done = false;
  2336. const forceJVB121Ratio = this.options.config.forceJVB121Ratio;
  2337. // We don't care about the JVB case, there's nothing to be done
  2338. if (!jingleSession.isP2P) {
  2339. done = true;
  2340. } else if (this.p2pJingleSession !== jingleSession) {
  2341. logger.error('CONNECTION_ESTABLISHED - wrong P2P session instance ?!');
  2342. done = true;
  2343. } else if (!jingleSession.isInitiator
  2344. && typeof forceJVB121Ratio === 'number'
  2345. && Math.random() < forceJVB121Ratio) {
  2346. logger.info(`Forcing JVB 121 mode (ratio=${forceJVB121Ratio})...`);
  2347. Statistics.analytics.addPermanentProperties({ forceJvb121: true });
  2348. this._stopP2PSession('decline', 'force JVB121');
  2349. done = true;
  2350. }
  2351. if (!isNaN(this.p2pEstablishmentDuration)
  2352. && !isNaN(this.jvbEstablishmentDuration)) {
  2353. const establishmentDurationDiff
  2354. = this.p2pEstablishmentDuration - this.jvbEstablishmentDuration;
  2355. Statistics.sendAnalytics(
  2356. ICE_ESTABLISHMENT_DURATION_DIFF,
  2357. { value: establishmentDurationDiff });
  2358. }
  2359. if (jingleSession.isP2P === this.isP2PActive()) {
  2360. this.eventEmitter.emit(JitsiConferenceEvents.CONNECTION_ESTABLISHED);
  2361. }
  2362. if (done) {
  2363. return;
  2364. }
  2365. // Update P2P status and emit events
  2366. this._setP2PStatus(true);
  2367. // Remove remote tracks
  2368. if (this.jvbJingleSession) {
  2369. this._removeRemoteJVBTracks();
  2370. } else {
  2371. logger.info('Not removing remote JVB tracks - no session yet');
  2372. }
  2373. this._addRemoteP2PTracks();
  2374. // Stop media transfer over the JVB connection
  2375. if (this.jvbJingleSession) {
  2376. this._suspendMediaTransferForJvbConnection();
  2377. }
  2378. logger.info('Starting remote stats with p2p connection');
  2379. this.statistics.startRemoteStats(this.p2pJingleSession.peerconnection);
  2380. Statistics.sendAnalyticsAndLog(
  2381. createP2PEvent(
  2382. ACTION_P2P_ESTABLISHED,
  2383. {
  2384. initiator: this.p2pJingleSession.isInitiator
  2385. }));
  2386. };
  2387. /**
  2388. * Called when the chat room reads a new list of properties from jicofo's
  2389. * presence. The properties may have changed, but they don't have to.
  2390. *
  2391. * @param {Object} properties - The properties keyed by the property name
  2392. * ('key').
  2393. * @private
  2394. */
  2395. JitsiConference.prototype._updateProperties = function(properties = {}) {
  2396. const changed = !isEqual(properties, this.properties);
  2397. this.properties = properties;
  2398. if (changed) {
  2399. this.eventEmitter.emit(
  2400. JitsiConferenceEvents.PROPERTIES_CHANGED,
  2401. this.properties);
  2402. // Some of the properties need to be added to analytics events.
  2403. const analyticsKeys = [
  2404. // The number of jitsi-videobridge instances currently used for the
  2405. // conference.
  2406. 'bridge-count',
  2407. // The conference creation time (set by jicofo).
  2408. 'created-ms',
  2409. 'octo-enabled'
  2410. ];
  2411. analyticsKeys.forEach(key => {
  2412. if (properties[key] !== undefined) {
  2413. Statistics.analytics.addPermanentProperties({
  2414. [key.replace('-', '_')]: properties[key]
  2415. });
  2416. }
  2417. });
  2418. }
  2419. };
  2420. /**
  2421. * Gets a conference property with a given key.
  2422. *
  2423. * @param {string} key - The key.
  2424. * @returns {*} The value
  2425. */
  2426. JitsiConference.prototype.getProperty = function(key) {
  2427. return this.properties[key];
  2428. };
  2429. /**
  2430. * Clears the deferred start P2P task if it has been scheduled.
  2431. * @private
  2432. */
  2433. JitsiConference.prototype._maybeClearDeferredStartP2P = function() {
  2434. if (this.deferredStartP2PTask) {
  2435. logger.info('Cleared deferred start P2P task');
  2436. clearTimeout(this.deferredStartP2PTask);
  2437. this.deferredStartP2PTask = null;
  2438. }
  2439. };
  2440. /**
  2441. * Removes from the conference remote tracks associated with the JVB
  2442. * connection.
  2443. * @private
  2444. */
  2445. JitsiConference.prototype._removeRemoteJVBTracks = function() {
  2446. this._removeRemoteTracks(
  2447. 'JVB', this.jvbJingleSession.peerconnection.getRemoteTracks());
  2448. };
  2449. /**
  2450. * Removes from the conference remote tracks associated with the P2P
  2451. * connection.
  2452. * @private
  2453. */
  2454. JitsiConference.prototype._removeRemoteP2PTracks = function() {
  2455. this._removeRemoteTracks(
  2456. 'P2P', this.p2pJingleSession.peerconnection.getRemoteTracks());
  2457. };
  2458. /**
  2459. * Generates fake "remote track removed" events for given Jingle session.
  2460. * @param {string} sessionNickname the session's nickname which will appear in
  2461. * log messages.
  2462. * @param {Array<JitsiRemoteTrack>} remoteTracks the tracks that will be removed
  2463. * @private
  2464. */
  2465. JitsiConference.prototype._removeRemoteTracks = function(
  2466. sessionNickname,
  2467. remoteTracks) {
  2468. for (const track of remoteTracks) {
  2469. logger.info(`Removing remote ${sessionNickname} track: ${track}`);
  2470. this.rtc.eventEmitter.emit(RTCEvents.REMOTE_TRACK_REMOVED, track);
  2471. }
  2472. };
  2473. /**
  2474. * Resumes media transfer over the JVB connection.
  2475. * @private
  2476. */
  2477. JitsiConference.prototype._resumeMediaTransferForJvbConnection = function() {
  2478. logger.info('Resuming media transfer over the JVB connection...');
  2479. this.jvbJingleSession.setMediaTransferActive(true, true).then(
  2480. () => {
  2481. logger.info('Resumed media transfer over the JVB connection!');
  2482. },
  2483. error => {
  2484. logger.error(
  2485. 'Failed to resume media transfer over the JVB connection:',
  2486. error);
  2487. });
  2488. };
  2489. /**
  2490. * Sets new P2P status and updates some events/states hijacked from
  2491. * the <tt>JitsiConference</tt>.
  2492. * @param {boolean} newStatus the new P2P status value, <tt>true</tt> means that
  2493. * P2P is now in use, <tt>false</tt> means that the JVB connection is now in use
  2494. * @private
  2495. */
  2496. JitsiConference.prototype._setP2PStatus = function(newStatus) {
  2497. if (this.p2p === newStatus) {
  2498. logger.debug(`Called _setP2PStatus with the same status: ${newStatus}`);
  2499. return;
  2500. }
  2501. this.p2p = newStatus;
  2502. if (newStatus) {
  2503. logger.info('Peer to peer connection established!');
  2504. // When we end up in a valid P2P session need to reset the properties
  2505. // in case they have persisted, after session with another peer.
  2506. Statistics.analytics.addPermanentProperties({
  2507. p2pFailed: false,
  2508. forceJvb121: false
  2509. });
  2510. // Sync up video transfer active in case p2pJingleSession not existed
  2511. // when the lastN value was being adjusted.
  2512. const isVideoActive = this.rtc.getLastN() !== 0;
  2513. this.p2pJingleSession
  2514. .setMediaTransferActive(true, isVideoActive)
  2515. .catch(error => {
  2516. logger.error(
  2517. 'Failed to sync up P2P video transfer status'
  2518. + `(${isVideoActive})`, error);
  2519. });
  2520. } else {
  2521. logger.info('Peer to peer connection closed!');
  2522. }
  2523. // Put the JVB connection on hold/resume
  2524. if (this.jvbJingleSession) {
  2525. this.statistics.sendConnectionResumeOrHoldEvent(
  2526. this.jvbJingleSession.peerconnection, !newStatus);
  2527. }
  2528. // Clear dtmfManager, so that it can be recreated with new connection
  2529. this.dtmfManager = null;
  2530. // Update P2P status
  2531. this.eventEmitter.emit(
  2532. JitsiConferenceEvents.P2P_STATUS,
  2533. this,
  2534. this.p2p);
  2535. // Refresh connection interrupted/restored
  2536. this.eventEmitter.emit(
  2537. this.isConnectionInterrupted()
  2538. ? JitsiConferenceEvents.CONNECTION_INTERRUPTED
  2539. : JitsiConferenceEvents.CONNECTION_RESTORED);
  2540. };
  2541. /**
  2542. * Starts new P2P session.
  2543. * @param {string} remoteJid the JID of the remote participant
  2544. * @private
  2545. */
  2546. JitsiConference.prototype._startP2PSession = function(remoteJid) {
  2547. this._maybeClearDeferredStartP2P();
  2548. if (this.p2pJingleSession) {
  2549. logger.error('P2P session already started!');
  2550. return;
  2551. }
  2552. this.isP2PConnectionInterrupted = false;
  2553. this.p2pJingleSession
  2554. = this.xmpp.connection.jingle.newP2PJingleSession(
  2555. this.room.myroomjid,
  2556. remoteJid);
  2557. logger.info(
  2558. 'Created new P2P JingleSession', this.room.myroomjid, remoteJid);
  2559. this.p2pJingleSession.initialize(this.room, this.rtc, this.options.config);
  2560. logger.info('Starting CallStats for P2P connection...');
  2561. let remoteID = Strophe.getResourceFromJid(this.p2pJingleSession.remoteJid);
  2562. const participant = this.participants[remoteID];
  2563. if (participant) {
  2564. remoteID = participant.getStatsID() || remoteID;
  2565. }
  2566. this.statistics.startCallStats(
  2567. this.p2pJingleSession.peerconnection,
  2568. remoteID);
  2569. // NOTE one may consider to start P2P with the local tracks detached,
  2570. // but no data will be sent until ICE succeeds anyway. And we switch
  2571. // immediately once the P2P ICE connects.
  2572. const localTracks = this.getLocalTracks();
  2573. this.p2pJingleSession.invite(localTracks);
  2574. };
  2575. /**
  2576. * Suspends media transfer over the JVB connection.
  2577. * @private
  2578. */
  2579. JitsiConference.prototype._suspendMediaTransferForJvbConnection = function() {
  2580. logger.info('Suspending media transfer over the JVB connection...');
  2581. this.jvbJingleSession.setMediaTransferActive(false, false).then(
  2582. () => {
  2583. logger.info('Suspended media transfer over the JVB connection !');
  2584. },
  2585. error => {
  2586. logger.error(
  2587. 'Failed to suspend media transfer over the JVB connection:',
  2588. error);
  2589. });
  2590. };
  2591. /**
  2592. * Method when called will decide whether it's the time to start or stop
  2593. * the P2P session.
  2594. * @param {boolean} userLeftEvent if <tt>true</tt> it means that the call
  2595. * originates from the user left event.
  2596. * @private
  2597. */
  2598. JitsiConference.prototype._maybeStartOrStopP2P = function(userLeftEvent) {
  2599. if (!browser.supportsP2P()
  2600. || !this.isP2PEnabled()
  2601. || this.isP2PTestModeEnabled()) {
  2602. logger.info('Auto P2P disabled');
  2603. return;
  2604. }
  2605. const peers = this.getParticipants();
  2606. const peerCount = peers.length;
  2607. // FIXME 1 peer and it must *support* P2P switching
  2608. const shouldBeInP2P = this._shouldBeInP2PMode();
  2609. // Clear deferred "start P2P" task
  2610. if (!shouldBeInP2P && this.deferredStartP2PTask) {
  2611. this._maybeClearDeferredStartP2P();
  2612. }
  2613. // Start peer to peer session
  2614. if (!this.p2pJingleSession && shouldBeInP2P) {
  2615. const peer = peerCount && peers[0];
  2616. const myId = this.myUserId();
  2617. const peersId = peer.getId();
  2618. if (myId > peersId) {
  2619. logger.debug(
  2620. 'I\'m the bigger peersId - '
  2621. + 'the other peer should start P2P', myId, peersId);
  2622. return;
  2623. } else if (myId === peersId) {
  2624. logger.error('The same IDs ? ', myId, peersId);
  2625. return;
  2626. }
  2627. const jid = peer.getJid();
  2628. if (userLeftEvent) {
  2629. if (this.deferredStartP2PTask) {
  2630. logger.error('Deferred start P2P task\'s been set already!');
  2631. return;
  2632. }
  2633. logger.info(
  2634. `Will start P2P with: ${jid} after ${
  2635. this.backToP2PDelay} seconds...`);
  2636. this.deferredStartP2PTask = setTimeout(
  2637. this._startP2PSession.bind(this, jid),
  2638. this.backToP2PDelay * 1000);
  2639. } else {
  2640. logger.info(`Will start P2P with: ${jid}`);
  2641. this._startP2PSession(jid);
  2642. }
  2643. } else if (this.p2pJingleSession && !shouldBeInP2P) {
  2644. logger.info(`Will stop P2P with: ${this.p2pJingleSession.remoteJid}`);
  2645. // Log that there will be a switch back to the JVB connection
  2646. if (this.p2pJingleSession.isInitiator && peerCount > 1) {
  2647. Statistics.sendAnalyticsAndLog(
  2648. createP2PEvent(ACTION_P2P_SWITCH_TO_JVB));
  2649. }
  2650. this._stopP2PSession();
  2651. }
  2652. };
  2653. /**
  2654. * Tells whether or not this conference should be currently in the P2P mode.
  2655. *
  2656. * @private
  2657. * @returns {boolean}
  2658. */
  2659. JitsiConference.prototype._shouldBeInP2PMode = function() {
  2660. const peers = this.getParticipants();
  2661. const peerCount = peers.length;
  2662. const hasBotPeer = peers.find(p => p._botType === 'poltergeist') !== undefined;
  2663. const shouldBeInP2P = peerCount === 1 && !hasBotPeer;
  2664. logger.debug(`P2P? peerCount: ${peerCount}, hasBotPeer: ${hasBotPeer} => ${shouldBeInP2P}`);
  2665. return shouldBeInP2P;
  2666. };
  2667. /**
  2668. * Stops the current P2P session.
  2669. * @param {string} [reason="success"] one of the Jingle "reason" element
  2670. * names as defined by https://xmpp.org/extensions/xep-0166.html#def-reason
  2671. * @param {string} [reasonDescription="Turing off P2P session"] text
  2672. * description that will be included in the session terminate message
  2673. * @private
  2674. */
  2675. JitsiConference.prototype._stopP2PSession = function(
  2676. reason,
  2677. reasonDescription) {
  2678. if (!this.p2pJingleSession) {
  2679. logger.error('No P2P session to be stopped!');
  2680. return;
  2681. }
  2682. const wasP2PEstablished = this.isP2PActive();
  2683. // Swap remote tracks, but only if the P2P has been fully established
  2684. if (wasP2PEstablished) {
  2685. if (this.jvbJingleSession) {
  2686. this._resumeMediaTransferForJvbConnection();
  2687. }
  2688. // Remove remote P2P tracks
  2689. this._removeRemoteP2PTracks();
  2690. }
  2691. // Stop P2P stats
  2692. logger.info('Stopping remote stats for P2P connection');
  2693. this.statistics.stopRemoteStats(this.p2pJingleSession.peerconnection);
  2694. logger.info('Stopping CallStats for P2P connection');
  2695. this.statistics.stopCallStats(this.p2pJingleSession.peerconnection);
  2696. this.p2pJingleSession.terminate(
  2697. () => {
  2698. logger.info('P2P session terminate RESULT');
  2699. },
  2700. error => {
  2701. // Because both initiator and responder are simultaneously
  2702. // terminating their JingleSessions in case of the 'to JVB switch'
  2703. // when 3rd participant joins, both will dispose their sessions and
  2704. // reply with 'item-not-found' (see strophe.jingle.js). We don't
  2705. // want to log this as an error since it's expected behaviour.
  2706. //
  2707. // We want them both to terminate, because in case of initiator's
  2708. // crash the responder would stay in P2P mode until ICE fails which
  2709. // could take up to 20 seconds.
  2710. //
  2711. // NOTE lack of 'reason' is considered as graceful session terminate
  2712. // where both initiator and responder terminate their sessions
  2713. // simultaneously.
  2714. if (reason) {
  2715. logger.error(
  2716. 'An error occurred while trying to terminate'
  2717. + ' P2P Jingle session', error);
  2718. }
  2719. }, {
  2720. reason: reason ? reason : 'success',
  2721. reasonDescription: reasonDescription
  2722. ? reasonDescription : 'Turing off P2P session',
  2723. sendSessionTerminate: this.room
  2724. && this.getParticipantById(
  2725. Strophe.getResourceFromJid(this.p2pJingleSession.remoteJid))
  2726. });
  2727. this.p2pJingleSession = null;
  2728. // Update P2P status and other affected events/states
  2729. this._setP2PStatus(false);
  2730. if (wasP2PEstablished) {
  2731. // Add back remote JVB tracks
  2732. if (this.jvbJingleSession) {
  2733. this._addRemoteJVBTracks();
  2734. } else {
  2735. logger.info('Not adding remote JVB tracks - no session yet');
  2736. }
  2737. }
  2738. };
  2739. /**
  2740. * Checks whether or not the conference is currently in the peer to peer mode.
  2741. * Being in peer to peer mode means that the direct connection has been
  2742. * established and the P2P connection is being used for media transmission.
  2743. * @return {boolean} <tt>true</tt> if in P2P mode or <tt>false</tt> otherwise.
  2744. */
  2745. JitsiConference.prototype.isP2PActive = function() {
  2746. return this.p2p;
  2747. };
  2748. /**
  2749. * Returns the current ICE state of the P2P connection.
  2750. * NOTE: method is used by the jitsi-meet-torture tests.
  2751. * @return {string|null} an ICE state or <tt>null</tt> if there's currently
  2752. * no P2P connection.
  2753. */
  2754. JitsiConference.prototype.getP2PConnectionState = function() {
  2755. if (this.isP2PActive()) {
  2756. return this.p2pJingleSession.peerconnection.getConnectionState();
  2757. }
  2758. return null;
  2759. };
  2760. /**
  2761. * Manually starts new P2P session (should be used only in the tests).
  2762. */
  2763. JitsiConference.prototype.startP2PSession = function() {
  2764. const peers = this.getParticipants();
  2765. // Start peer to peer session
  2766. if (peers.length === 1) {
  2767. const peerJid = peers[0].getJid();
  2768. this._startP2PSession(peerJid);
  2769. } else {
  2770. throw new Error(
  2771. 'There must be exactly 1 participant to start the P2P session !');
  2772. }
  2773. };
  2774. /**
  2775. * Manually stops the current P2P session (should be used only in the tests)
  2776. */
  2777. JitsiConference.prototype.stopP2PSession = function() {
  2778. this._stopP2PSession();
  2779. };
  2780. /**
  2781. * Get a summary of how long current participants have been the dominant speaker
  2782. * @returns {object}
  2783. */
  2784. JitsiConference.prototype.getSpeakerStats = function() {
  2785. return this.speakerStatsCollector.getStats();
  2786. };
  2787. /**
  2788. * Sets the maximum video size the local participant should receive from remote
  2789. * participants.
  2790. *
  2791. * @param {number} maxFrameHeightPixels the maximum frame height, in pixels,
  2792. * this receiver is willing to receive.
  2793. * @returns {void}
  2794. */
  2795. JitsiConference.prototype.setReceiverVideoConstraint = function(
  2796. maxFrameHeight) {
  2797. this.rtc.setReceiverVideoConstraint(maxFrameHeight);
  2798. };
  2799. /**
  2800. * Creates a video SIP GW session and returns it if service is enabled. Before
  2801. * creating a session one need to check whether video SIP GW service is
  2802. * available in the system {@link JitsiConference.isVideoSIPGWAvailable}. Even
  2803. * if there are available nodes to serve this request, after creating the
  2804. * session those nodes can be taken and the request about using the
  2805. * created session can fail.
  2806. *
  2807. * @param {string} sipAddress - The sip address to be used.
  2808. * @param {string} displayName - The display name to be used for this session.
  2809. * @returns {JitsiVideoSIPGWSession|Error} Returns null if conference is not
  2810. * initialised and there is no room.
  2811. */
  2812. JitsiConference.prototype.createVideoSIPGWSession
  2813. = function(sipAddress, displayName) {
  2814. if (!this.room) {
  2815. return new Error(VideoSIPGWConstants.ERROR_NO_CONNECTION);
  2816. }
  2817. return this.videoSIPGWHandler
  2818. .createVideoSIPGWSession(sipAddress, displayName);
  2819. };