@vkontakte/calls-sdk 2.6.2-dev.c83d2bc.0 → 2.6.2-dev.c8d6e43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/CallsSDK.d.ts +76 -16
  2. package/abstract/BaseApi.d.ts +7 -3
  3. package/abstract/BaseSignaling.d.ts +16 -5
  4. package/calls-sdk.cjs.js +8 -8
  5. package/calls-sdk.esm.js +8 -8
  6. package/classes/Conversation.d.ts +37 -9
  7. package/classes/MediaSource.d.ts +7 -2
  8. package/classes/ProducerCommandSerializationService.d.ts +2 -0
  9. package/classes/codec/IEncoder.d.ts +3 -0
  10. package/classes/codec/LibVPxEncoder.d.ts +4 -1
  11. package/classes/codec/Types.d.ts +6 -1
  12. package/classes/codec/WebCodecsEncoder.d.ts +4 -1
  13. package/classes/screenshare/PacketHistory.d.ts +30 -0
  14. package/classes/screenshare/PacketHistory.test.d.ts +1 -0
  15. package/classes/screenshare/ScreenCaptureSender.d.ts +15 -1
  16. package/classes/screenshare/ScreenCongestionControl.d.ts +25 -0
  17. package/classes/screenshare/SharingStatReport.d.ts +6 -0
  18. package/classes/screenshare/Utils.d.ts +5 -0
  19. package/classes/transport/ServerTransport.d.ts +2 -1
  20. package/default/Api.d.ts +7 -3
  21. package/default/Signaling.d.ts +16 -5
  22. package/enums/ConversationFeature.d.ts +2 -1
  23. package/enums/LiveStatus.d.ts +7 -0
  24. package/enums/MediaOption.d.ts +3 -1
  25. package/enums/RoomsEventType.d.ts +6 -0
  26. package/enums/SignalingCommandType.d.ts +11 -1
  27. package/enums/SignalingNotification.d.ts +11 -1
  28. package/package.json +1 -1
  29. package/static/External.d.ts +93 -6
  30. package/static/Params.d.ts +97 -9
  31. package/static/Polyfills.d.ts +7 -0
  32. package/static/Utils.d.ts +2 -1
  33. package/static/WebRTCUtils.d.ts +44 -11
  34. package/static/WebRTCUtils.test.d.ts +1 -0
  35. package/types/Asr.d.ts +5 -0
  36. package/types/Conversation.d.ts +1 -0
  37. package/types/ConversationFeature.d.ts +3 -0
  38. package/types/ConversationParams.d.ts +1 -0
  39. package/types/ExternalId.d.ts +2 -0
  40. package/types/MediaSettings.d.ts +5 -1
  41. package/types/MovieShare.d.ts +58 -0
  42. package/types/Participant.d.ts +3 -0
  43. package/types/ParticipantListChunk.d.ts +2 -0
  44. package/types/ParticipantStreamDescription.d.ts +2 -1
  45. package/types/Room.d.ts +77 -0
  46. package/types/SignalingMessage.d.ts +62 -0
  47. package/types/WaitingHall.d.ts +2 -8
  48. package/utils/ArrayDequeue.d.ts +24 -0
  49. package/utils/ArrayDequeue.spec.d.ts +1 -0
  50. package/worker/LibVPxEncoderWorker.d.ts +1 -1
package/calls-sdk.esm.js CHANGED
@@ -1,12 +1,12 @@
1
1
  /**
2
- * @vkontakte/calls-sdk v2.6.2-dev.c83d2bc.0
3
- * Wed, 16 Nov 2022 17:17:22 GMT
2
+ * @vkontakte/calls-sdk v2.6.2-dev.c8d6e43.0
3
+ * Wed, 08 Feb 2023 12:51:56 GMT
4
4
  * https://st.mycdn.me/static/callssdk/2-6-2/doc/
5
5
  */
6
6
 
7
- var ba=Object.defineProperty,Ma=Object.defineProperties;var Da=Object.getOwnPropertyDescriptors;var sr=Object.getOwnPropertySymbols;var Aa=Object.prototype.hasOwnProperty,ka=Object.prototype.propertyIsEnumerable;var or=Math.pow,cr=(a,e,t)=>e in a?ba(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t,Oe=(a,e)=>{for(var t in e||(e={}))Aa.call(e,t)&&cr(a,t,e[t]);if(sr)for(var t of sr(e))ka.call(e,t)&&cr(a,t,e[t]);return a},st=(a,e)=>Ma(a,Da(e));var o=(a,e,t)=>new Promise((i,r)=>{var n=l=>{try{p(t.next(l))}catch(u){r(u)}},s=l=>{try{p(t.throw(l))}catch(u){r(u)}},p=l=>l.done?i(l.value):Promise.resolve(l.value).then(n,s);p((t=t.apply(a,e)).next())});import Ca from"webrtc-adapter";var yt=class{createJoinLink(e){return o(this,null,function*(){return{join_link:"nop"}})}removeJoinLink(e){return o(this,null,function*(){return{success:!0}})}getAnonymTokenByLink(e,t){return o(this,null,function*(){return""})}log(e){}prepareUserIds(e){return o(this,null,function*(){})}getCachedOkIdByExternalId(e){return null}cacheExternalId(e,t){}hangupConversation(e){}removeHistoryRecords(e){return o(this,null,function*(){})}cleanup(){}};var Pt=class{log(e,t,i=!1){}destroy(){}};var X=class{constructor(){this._handlers={};this._listeners=[]}_triggerEvent(e,...t){if(!!this._handlers.hasOwnProperty(e))for(let i of this._handlers[e])i.apply(this,t)}addEventListener(e,t){if(typeof t!="function")throw new Error("Listener should be a function");return this._handlers.hasOwnProperty(e)||(this._handlers[e]=[]),this._handlers[e].push(t),{dispose:this.removeEventListener.bind(this,e,t)}}removeEventListener(e,t){if(!this._handlers.hasOwnProperty(e))return;t||delete this._handlers[e];let i=this._handlers[e].indexOf(t);i>=0&&this._handlers[e].splice(i,1)}subscribe(e,t,i){let r=e.addEventListener(t,i);this._listeners.push(r)}unsubscribe(){this._listeners.forEach(e=>{e.dispose()})}};var Rt=class extends X{get ready(){return!0}setParticipantIdRegistry(e){}requestRealloc(){}setEndpoint(e){}setConversationId(e){}readyToSend(){}cleanup(){}requestTestMode(e,t){}getNextCommandSequenceNumber(){return 0}};var dr=(i=>(i.INCOMING="INCOMING",i.OUTGOING="OUTGOING",i.JOINING="JOINING",i))(dr||{}),qe=dr;var pr=(i=>(i.USER="USER",i.GROUP="GROUP",i.CHAT="CHAT",i))(pr||{}),We=pr;var lr=(t=>(t.ATTENDEE="ATTENDEE",t.HAND_UP="HAND_UP",t))(lr||{}),fi=lr;var ur=(t=>(t.ADD_PARTICIPANT="ADD_PARTICIPANT",t.RECORD="RECORD",t))(ur||{}),mr=ur;var hr=(n=>(n.REQUIRE_AUTH_TO_JOIN="REQUIRE_AUTH_TO_JOIN",n.AUDIENCE_MODE="AUDIENCE_MODE",n.WAITING_HALL="WAITING_HALL",n.ASR="ASR",n.FEEDBACK="FEEDBACK",n))(hr||{}),Si=hr;function _r(a,e){if(a.length!==e.length)return!1;for(let t of a)if(!e.includes(t))return!1;return!0}function gr(a,e){let t=new Set(a);for(let[i,r]of Object.entries(e))r?t.add(i):t.delete(i);return Array.from(t)}var fr=(q=>(q.CAMERA_PERMISSION="camera",q.MIC_PERMISSION="mic",q.CAMERA_ACCESS="cameralock",q.MIC_ACCESS="miclock",q.MIC_NOT_FOUND="nomic",q.SCREEN_PERMISSION="screenpermission",q.SCREEN_ACCESS="screenlock",q.CONNECTION="connection",q.NETWORK="network",q.UNKNOWN="unknown",q.UNSUPPORTED="unsupported",q.SIGNALING_FAILED="signalingfailed",q.API="api",q.AUTH="auth",q))(fr||{}),te=fr;var Sr=(z=>(z.CANCELED="CANCELED",z.REJECTED="REJECTED",z.REMOVED="REMOVED",z.HUNGUP="HUNGUP",z.MISSED="MISSED",z.BUSY="BUSY",z.FAILED="FAILED",z.NETWORK_ERROR="NETWORK_ERROR",z.KILLED="KILLED",z.BANNED="BANNED",z.HAS_ACTIVE_CALL="HAS_ACTIVE_CALL",z.CALLER_IS_BLOCKED="CALLER_IS_BLOCKED",z.NOT_FRIENDS="NOT_FRIENDS",z.CALLEE_IS_OFFLINE="CALLEE_IS_OFFLINE",z.CALLER_IS_REJECTED="CALLER_IS_REJECTED",z.UNKNOWN_ERROR="UNKNOWN_ERROR",z.UNSUPPORTED="UNSUPPORTED",z.OLD_VERSION="OLD_VERSION",z.SERVICE_DISABLED="SERVICE_DISABLED",z.EXTERNAL_API_ERROR="EXTERNAL_API_ERROR",z.SOCKET_CLOSED="SOCKET_CLOSED",z.ENDED="ENDED",z.KILLED_WITHOUT_DELETE="KILLED_WITHOUT_DELETE",z.ANOTHER_DEVICE="ANOTHER_DEVICE",z))(Sr||{}),A=Sr;var vr=(i=>(i.AUDIO="AUDIO",i.VIDEO="VIDEO",i.SCREEN_SHARING="SCREEN_SHARING",i))(vr||{}),de=vr;var Er=(i=>(i.UNMUTE="UNMUTE",i.MUTE="MUTE",i.MUTE_PERMANENT="MUTE_PERMANENT",i))(Er||{}),we=Er;var Ir=(r=>(r.CALLED="CALLED",r.ACCEPTED="ACCEPTED",r.REJECTED="REJECTED",r.HUNGUP="HUNGUP",r))(Ir||{}),W=Ir;var Tr=(r=>(r.START="start",r.ACCEPT="accept",r.JOIN="join",r.RETRY="retry",r))(Tr||{}),je=Tr;var Cr=(i=>(i.NOTIFICATION="NOTIFICATION",i.FAILED="FAILED",i.RECONNECT="RECONNECT",i))(Cr||{}),_e=Cr;var yr=(k=>(k.TRANSMITTED_DATA="transmitted-data",k.ACCEPTED_CALL="accepted-call",k.HUNGUP="hungup",k.PARTICIPANT_ADDED="participant-added",k.PARTICIPANT_JOINED="participant-joined",k.CLOSED_CONVERSATION="closed-conversation",k.MEDIA_SETTINGS_CHANGED="media-settings-changed",k.PARTICIPANT_STATE_CHANGED="participant-state-changed",k.RATE_CALL_DATA="rate-call-data",k.FEATURE_SET_CHANGED="feature-set-changed",k.TOPOLOGY_CHANGED="topology-changed",k.PRODUCER_UPDATED="producer-updated",k.CONSUMER_ANSWERED="consumer-answered",k.MULTIPARTY_CHAT_CREATED="multiparty-chat-created",k.FORCE_MEDIA_SETTINGS_CHANGE="force-media-settings-change",k.SETTINGS_UPDATE="settings-update",k.VIDEO_QUALITY_UPDATE="video-quality-update",k.REGISTERED_PEER="registered-peer",k.SWITCH_MICRO="switch-micro",k.RECORD_STARTED="record-started",k.RECORD_STOPPED="record-stopped",k.REALLOC_CON="realloc-con",k.AUDIO_ACTIVITY="audio-activity",k.SPEAKER_CHANGED="speaker-changed",k.STALLED_ACTIVITY="stalled-activity",k.CHAT_MESSAGE="chat-message",k.CUSTOM_DATA="custom-data",k.ROLES_CHANGED="roles-changed",k.MUTE_PARTICIPANT="mute-participant",k.PIN_PARTICIPANT="pin-participant",k.OPTIONS_CHANGED="options-changed",k.NETWORK_STATUS="network-status",k.PARTICIPANT_SOURCES_UPDATE="participant-sources-update",k.PROMOTE_PARTICIPANT="promote-participant",k.CHAT_ROOM_UPDATED="chat-room-updated",k.PROMOTION_APPROVED="promotion-approved",k.JOIN_LINK_CHANGED="join-link-changed",k.FEEDBACK="feedback",k))(yr||{}),w=yr;var Pr=($=>($.ERROR="callError",$.DEVICES="callDevices",$.CALL_SPEC_ERROR="callSpecError",$.ICE_CONNECTION_STATE="callIceConnectionState",$.ICE_CONNECTION_TYPE="callIceConnectionType",$.ICE_RESTART="callIceRestart",$.PUSH="callPush",$.OUTGOING_CALL="callStart",$.OUTGOING_MULTIPARTY_CALL="callStartMultiparty",$.JOIN_CONVERSATION="callJoinConversation",$.ACCEPTED_OUTGOING="callAcceptedOutgoing",$.ACCEPT_INCOMING="callAcceptIncoming",$.DECLINE_INCOMING="callDeclineIncoming",$.ACCEPT_CONCURRENT="callAcceptConcurrent",$.HANGUP="callHangup",$.MEDIA_STATUS="callMediaStatus",$.DEVICE_CHANGED="callDeviceChanged",$.SOCKET_ACTION="callSocketAction",$.ADD_PARTICIPANT="callAddParticipant",$.REMOVE_PARTICIPANT="callRemoveParticipant",$.POOR_CONNECTION="callPoorConnection",$.TOPOLOGY_CHANGE_REQUESTED="callTopologyChangeRequested",$.RELAY_POLICY="callForceRelay",$.PAT_ALLOCATED="patAllocate",$.PAT_DEALLOCATED="patDeallocate",$.PAT_ERROR="patError",$.PAT_WAITING_TIME_ERROR="patWaitingTimeError",$.PAT_OUTDATED_RESPONSE="patOutdatedResponse",$))(Pr||{}),v=Pr;var Rr=(t=>(t.AUDIO_MIX="audio-mix",t.PARTICIPANT_AGNOSTIC_TRACK_PREFIX="pat",t))(Rr||{}),xe=Rr;var br=(t=>(t.NO_AVAILABLE_TRACKS="no-available-tracks",t.UNKNOWN_ERROR="unknown-error",t))(br||{}),Mr=br;function Dr(a){switch(a){case 1:return"no-available-tracks";default:return"unknown-error"}}var Ar=(t=>(t.CREATOR="CREATOR",t.ADMIN="ADMIN",t))(Ar||{}),ot=Ar;function bt(a,e){if(a.length!==e.length)return!1;for(let t of a)if(!e.includes(t))return!1;return!0}var kr=(t=>(t.USER="USER",t.GROUP="GROUP",t))(kr||{}),Q=kr;var vi=class{constructor(){this._items=[]}get length(){return this._items.length}push(e){this._items.push(e)}shift(){return this._items.shift()||null}bisect(){let e=this.length>1?Math.floor(this.length/2):1;this._items=this._items.slice(e)}clear(){this._items=[]}toString(){return this._items.length?JSON.stringify(this._items,(e,t)=>t instanceof Error?String(t):t):""}};var Or=2*1024*1024,Oa=512*1024,Mt=100*1024,wa=5,Ei="_okcls_logs_session_",xa=3e4,wr=class{constructor(){this._items=[];this._itemsSize=0;this._storageSize=Or;try{let e=window.localStorage;for(let t of Object.keys(e)){if(t.indexOf(Ei)!==0)continue;let i=e.getItem(t);if(!i){Nr(t);continue}let r=Lr(i);this.add(t,r)}}catch(e){console.error("Storage is blocked",e),this._storageSize=0}this._items.sort((e,t)=>e.date-t.date),this.cleanup(Mt)}get size(){return this._itemsSize}get length(){return this._items.length}get available(){return Math.max(this._storageSize-this._itemsSize,0)}get items(){return this._items}set storageSize(e){this._storageSize=e}add(e,t){let i=parseInt(e.replace(Ei,""),10);this._itemsSize+=t,this._items.push({key:e,size:t,date:i})}deleteOldestItem(){let e=this._items.shift();e&&(Nr(e.key),this._itemsSize-=e.size)}cleanup(e){for(;this.length&&(this.size>Or||this.length>wa-1||this.size+e>this.available);)this.deleteOldestItem()}};function xr(){return`${Ei}${Date.now()}`}function Lr(a){return new Blob([a]).size}function Nr(a){try{window.localStorage.removeItem(a)}catch(e){console.error("Failed to remove log from storage",e)}}function Ii(){let a=ze.toString();if(!fe.available||!a)return;let e=Lr(a);fe.cleanup(e);try{window.localStorage.setItem(Wt,a)}catch(t){if(console.warn("Failed to write log to storage",t),fe.storageSize=fe.size+e,fe.cleanup(Mt+e),fe.available>=Mt+e){Ii();return}if(e>Mt){ze.bisect(),Ii();return}fe.storageSize=0;return}e>Oa&&(fe.add(Wt,e),Wt=xr(),ze.clear(),fe.cleanup(Mt))}function Ti(){!fe.available||!ze.length||Ii()}function La(a=!1){let e=[];try{let r=window.localStorage;for(let s of fe.items){let p=r.getItem(s.key);e.push(p)}let n=ze.toString();n&&e.push(n)}catch(r){console.error("Storage is blocked",r)}let t=`[${e.join(",")}]`;if(a)return t;let i=`logs_${Date.now()}.json`;return Na(t,i),i}function Na(a,e){let t=document.createElement("a"),i=new Blob([a],{type:"text/json"});t.href=URL.createObjectURL(i),t.download=e,t.click()}function Ur(a,e){!fe.available||(ze.push({t:Date.now(),l:a,d:e}),yi||(yi=window.setTimeout(()=>{yi=null,Ti()},xa)))}function Ci(){fe||(fe=new wr,ze=new vi,Wt=xr(),window.addEventListener("beforeunload",Ti))}var fe,ze,Wt,yi=null;window.__VKCallsSDKLogs__=(a=!1)=>(fe||Ci(),Ti(),La(a));import Br from"@vkontakte/libvpx";var ge=(s=>(s.INIT="init",s.READY="ready",s.FRAME="frame",s.ERROR="error",s.DEBUG="debug",s.LOG_ERROR="log_error",s))(ge||{});var m=class extends Pt{constructor(e,t){super();this._batchInterval=3e3;this._batch=[];this._batchTimeout=null;this._api=e,this._externalLogger=t}_send(e){this._api.log(e)}_sendBatch(){this._stopTimeout(),this._batch.length>0&&(this._send(this._batch),this._batch=[],this._startTimeout())}_startTimeout(){this._batchTimeout=window.setTimeout(()=>this._sendBatch(),this._batchInterval)}_stopTimeout(){this._batchTimeout&&(clearTimeout(this._batchTimeout),this._batchTimeout=null)}_onUnload(){this._sendBatch(),this._stopTimeout()}log(e,t,i=!1){let r={};typeof t!="undefined"&&(r.param=t),this._logInternal(e,r,i),this._externalLogger&&this._externalLogger.log(e,t,i)}logCustom(e,t,i=!1){this._logInternal(e,t,i)}_logInternal(e,t,i){let r={type:1,time:0,operation:e,timestamp:Date.now(),custom:t,uid:this._api.getUserId()};this._batch.push(r),(i||!this._batchTimeout)&&this._sendBatch()}destroy(){this._sendBatch(),this._stopTimeout(),this._externalLogger&&this._externalLogger.destroy()}static create(e,t){m._instance||(m._instance=new m(e,t))}static log(e,t,i=!1){m._instance&&m._instance.log(e,t,i)}static logCustom(e,t,i=!1){m._instance&&m._instance.logCustom(e,t,i)}static destroy(){m._instance&&m._instance.destroy(),m._instance=null}};var Be=class{constructor(){this._worker=null}_createWorker(s,p){return o(this,arguments,function*(e,t,i=[],r={},n=[]){return new Promise((l,u)=>{let R=i.join(","),D=new Blob([e,`exports.default(${R});`],{type:"application/javascript; charset=utf-8"}),x=window.URL.createObjectURL(D);this._worker=new Worker(x),this._worker.onmessage=L=>{switch(L.data.type){case ge.READY:l();break;case ge.ERROR:u(L.data.error);break;case ge.FRAME:t(L.data);break;case ge.DEBUG:c.debug(L.data.message);break;case ge.LOG_ERROR:m.log(v.ERROR,L.data.message);break}},this._sendToWorker(ge.INIT,r,n)})})}_removeWorker(){var e;(e=this._worker)==null||e.terminate(),this._worker=null}_sendToWorker(e,t={},i=[]){var r;(r=this._worker)==null||r.postMessage(Object.assign({type:e},t),i)}static isBrowserSupported(){throw new Error("Not implemented")}};var ct=class extends Be{init(e){return o(this,null,function*(){c.debug("LibVPxDecoder started"),yield this._createWorker('var exports=(()=>{var b=Object.defineProperty;var E=a=>b(a,"__esModule",{value:!0});var M=(a,p)=>{E(a);for(var e in p)b(a,e,{get:p[e],enumerable:!0})};var V={};M(V,{default:()=>D});var t=(s=>(s.INIT="init",s.READY="ready",s.FRAME="frame",s.ERROR="error",s.DEBUG="debug",s.LOG_ERROR="log_error",s))(t||{});var D=(a,p)=>{let e=null,n=null,g=!0;function y(){return a({locateFile:p}).then(r=>n=r)}function s(r,m,l,R,x){if(!n){self.postMessage({type:t.LOG_ERROR,message:"decoder-init-fail-libvpx"}),self.postMessage({type:t.FRAME,error:"Fatal initialization error"});return}if(g!==l&&(g=l,e&&(e=null,self.postMessage({type:t.DEBUG,message:`LibVPxDecoder codec changed to ${l?"VP9":"VP8"} - reinitialize`}))),!e&&(self.postMessage({type:t.DEBUG,message:`LibVPxDecoder codec ${l?"VP9":"VP8"}`}),e=new n.VpxDecoder,e.debug(x),!e.init(l?n.VpxType.VP9:n.VpxType.VP8))){e=null,self.postMessage({type:t.FRAME,error:"Decoder failed to create"});return}try{e.allocateBuffer(m.byteLength).set(new Uint8Array(m))}catch(o){self.postMessage({type:t.DEBUG,message:o}),e=null,self.postMessage({type:t.FRAME,error:String(o)});return}if(!(e.decode()&&e.nextImage())){self.postMessage({type:t.FRAME,error:"Decode failed"});return}let d=e.getImageBuffer();if(!d){self.postMessage({type:t.FRAME,error:"No decoded data"});return}let c=e.getImageWidth(),f=e.getImageHeight();e.nextImage()&&(self.postMessage({type:t.DEBUG,message:"LibVPxDecoder dropped frame"}),self.postMessage({type:t.LOG_ERROR,message:"LibVPxDecoder-drop"}));let i=new Uint8ClampedArray(d.byteLength);if(i.set(d),R){let o=new ImageData(i,c,f);createImageBitmap(o,0,0,c,f).then(u=>{self.postMessage({type:t.FRAME,data:u},[u]),u.close()})}else self.postMessage({type:t.FRAME,data:i.buffer,width:c,height:f},[i.buffer])}y().then(()=>{self.onmessage=r=>{switch(r.data.type){case t.FRAME:s(r.data.timestamp,r.data.data,r.data.isVP9,r.data.useImageBitmap,r.data.debug);break}},self.postMessage({type:t.READY})}).catch(r=>{self.postMessage({type:t.ERROR,error:String(r)})})};return V;})();\n',t=>{if(t.error)c.warn("LibVPxDecoder",t.error);else if(t.data instanceof ArrayBuffer){let i=new ImageData(new Uint8ClampedArray(t.data),t.width,t.height);e(i)}else e(t.data)},[Br,Br.getUrl])})}decodeFrame(e,t,i,r){let n="ImageBitmap"in window;this._sendToWorker(ge.FRAME,{timestamp:e,data:t.buffer,isVP9:i,keyFrame:r,useImageBitmap:n,debug:c.enabled()},[t.buffer])}destroy(){this._removeWorker(),c.debug("LibVPxDecoder destroyed")}static isBrowserSupported(){return"WebAssembly"in window&&"Worker"in window}};var Pi="_okcls_",dt=(()=>{try{let a=Date.now().toString(),e=window.localStorage,t=!1;return e.setItem(a,a),t=e.getItem(a)===a,e.removeItem(a),t?e:null}catch(a){return null}})();function Ba(a){let e=dt?dt.getItem(Pi+a):null;if(e===null)return null;try{return JSON.parse(e)}catch(t){return null}}function Va(a,e){try{dt&&dt.setItem(Pi+a,JSON.stringify(e))}catch(t){}}function Fa(a){dt&&dt.removeItem(Pi+a)}var Ri;(i=>{function a(r){return Ba(r)||null}i.get=a;function e(r,n){Va(r,n)}i.set=e;function t(r){Fa(r)}i.remove=t})(Ri||(Ri={}));var $e=Ri;function Vr(a,e){if(a.isAudioEnabled!==e.isAudioEnabled||a.isVideoEnabled!==e.isVideoEnabled||a.isScreenSharingEnabled!==e.isScreenSharingEnabled||a.videoStreams.length!==e.videoStreams.length)return!1;for(let t of a.videoStreams)if(!e.videoStreams.find(i=>i.id===t.id&&i.source===t.source))return!1;return!0}function me(a){return Object.assign({isAudioEnabled:!1,isVideoEnabled:!1,isScreenSharingEnabled:!1,videoStreams:[]},a||{})}var Fr=a=>a.stop(),Gr=a=>a.getTracks().forEach(Fr),bi=a=>a.getVideoTracks().forEach(Fr),Hr=a=>a.getVideoTracks()[0].clone();var N=class extends Error{constructor(e,t){super();this.name="HangupReason",this.code=t&&t.code||0,this.remote=t&&t.remote||!1,Object.values(A).indexOf(e)>-1?this.hangup=e:this.error=e;let i=[];this.error&&i.push("error"),this.remote&&i.push("remote"),this.code&&i.push(`code: ${this.code}`),t&&t.message&&i.push(`message: '${t.message}'`),this.message=e+(i.length?` (${i.join(", ")})`:""),Error.captureStackTrace&&Error.captureStackTrace(this,N)}};var Ee=(i=>(i.SOURCE_CHANGED="SOURCE_CHANGED",i.TRACK_REPLACED="TRACK_REPLACED",i.SCREEN_STATUS="SCREEN_STATUS",i))(Ee||{}),ae=(i=>(i.audio="audio",i.video="video",i.screen="screen",i))(ae||{}),Mi=class extends X{constructor(){super();this._stream=null;this._trackVideoStreamBackup=null;this._screenTrack=null;this._sendVideoTrack=null;this._mediaSettings=me();this._videoStatusOnScreenCapturingEnabled=!1;this._effect=null;this._initDeviceChangeListener()}request(){return o(this,arguments,function*(e=[de.AUDIO],t=!0){if(this._stream)return;let i=e.includes(de.VIDEO),r=e.includes(de.AUDIO);if(!b.isBrowserSupported())throw new N(te.UNSUPPORTED);try{this._stream=yield b.getUserMedia(i,r,t),this._mediaSettings.isVideoEnabled=i&&this._stream.getVideoTracks().filter(n=>n.enabled).length>0||!1,this._mediaSettings.isAudioEnabled=r&&this._stream.getAudioTracks().filter(n=>n.enabled).length>0||!1}catch(n){throw new N(n)}})}getStream(){return this._stream}getScreenTrack(){return this._screenTrack}getSendVideoTrack(e=!1){return this._sendVideoTrack&&!e?this._sendVideoTrack:this._stream?this._stream.getVideoTracks()[0]:null}_getSendAudioTrack(){var e;return((e=this._stream)==null?void 0:e.getAudioTracks()[0])||null}addTrackToPeerConnection(e,t,i,r){let n=this.getStream(),s=this._getSendAudioTrack(),p=this.getSendVideoTrack(i);if(!n||!s&&!p&&!t)throw new Error("No local stream found");if(s&&!t){if(r){let{codecs:l}=RTCRtpSender.getCapabilities("audio"),u="audio/red",R=48e3,D=l.findIndex(x=>x.mimeType===u&&x.clockRate===R);if(D>=0){let x=[];x.push(l[D]);for(let L=0;L<l.length;L++)L!==D&&x.push(l[L]);e.getTransceivers().forEach(L=>L.setCodecPreferences(x))}}e.addTrack(s,n)}p&&!t&&e.addTrack(p,n)}getMediaSettings(){return this._mediaSettings}changeDevice(e){return o(this,null,function*(){switch(e){case"videoinput":return this._changeVideoInput();case"audioinput":return this._changeAudioInput();default:return Promise.reject()}})}setVideoStream(e,t){return o(this,null,function*(){return t?this._changeScreen(e):this._changeVideoInput(e)})}_initDeviceChangeListener(){if(!navigator.mediaDevices||!navigator.mediaDevices.enumerateDevices||!navigator.mediaDevices.addEventListener)return;let e=!1,t=!1,i=S.throttle(()=>{t&&this._changeVideoInput().catch(()=>{}),e&&this._changeAudioInput().catch(()=>{}),e=!1,t=!1},1e3);this._onDeviceChange=()=>o(this,null,function*(){if(!this._stream)return;let r=this._stream.getAudioTracks()[0],n=r&&r.enabled&&r.getSettings(),s=n&&n.deviceId,p=this._stream.getVideoTracks()[0],l=p&&p.enabled&&p.getSettings(),u=l&&l.deviceId;if(!s&&!u)return;let R=yield navigator.mediaDevices.enumerateDevices();!e&&s&&(e=!R.find(D=>D.deviceId===s)),!t&&u&&(t=!R.find(D=>D.deviceId===u)),i()}),navigator.mediaDevices.addEventListener("devicechange",this._onDeviceChange)}_destroyDeviceChangeListener(){this._onDeviceChange&&navigator.mediaDevices.removeEventListener("devicechange",this._onDeviceChange)}_changeVideoInput(e=null){return o(this,null,function*(){try{let t=e?"stream":"video",i=e||(yield b.getUserVideo(void 0,!!this._effect));if(!this._stream)i.getTracks().forEach(r=>r.stop());else{d.consumerScreenTrack||this._disableScreenCapture();let r=this._getVideoEffectTrack(i),n=yield this._videoEffect(this._effect,r);this._stopLocalTrack("video"),m.log(v.DEVICE_CHANGED,t),c.log("Video stream changed"),yield this._replaceLocalTrack(n),this._mediaSettings.isVideoEnabled=!0,this._triggerEvent("SOURCE_CHANGED",{kind:"video",mediaSettings:this._mediaSettings})}}catch(t){throw m.log(v.ERROR,"change_video"),c.warn("Camera change failed",t),t}})}_getVideoEffectTrack(e){let t;return this._effect?(this._trackVideoStreamBackup||(this._trackVideoStreamBackup=Hr(e)),t=this._trackVideoStreamBackup.clone(),bi(e)):this._trackVideoStreamBackup?(t=this._trackVideoStreamBackup.clone(),this._stopAndRemoveTrackVideoStreamBackup(),bi(e)):t=e.getVideoTracks()[0],t}setAudioStream(e){return o(this,null,function*(){return this._changeAudioInput(e)})}_changeAudioInput(e=null){return o(this,null,function*(){try{if(e=e||(yield b.getUserAudio()),!this._stream)e.getTracks().forEach(t=>t.stop());else{let t=e.getAudioTracks()[0];this._stopLocalTrack("audio"),m.log(v.DEVICE_CHANGED,"audio"),c.log("Audio stream changed"),yield this._replaceLocalTrack(t),this._mediaSettings.isAudioEnabled=!0,this._triggerEvent("SOURCE_CHANGED",{kind:"audio",mediaSettings:this._mediaSettings})}}catch(t){throw m.log(v.ERROR,"change_audio"),c.error("Microphone change failed",t),t}})}_changeScreen(e){return o(this,null,function*(){try{if(e=e||(yield b.getScreenMedia()),e.addEventListener("inactive",()=>{this._mediaSettings.isScreenSharingEnabled&&this.toggleScreenCapturing(!1)},!1),!this._stream)e.getTracks().forEach(t=>t.stop());else{let t=e.getVideoTracks()[0],i=d.consumerScreenTrack?t:yield this._videoEffect(null,t);m.log(v.DEVICE_CHANGED,"screen"),c.log("Screen capturing started"),this._screenTrack=i,this._mediaSettings.isScreenSharingEnabled=!0,d.consumerScreenTrack||(this._videoStatusOnScreenCapturingEnabled=this._mediaSettings.isVideoEnabled,this._mediaSettings.isVideoEnabled=!0,this._stopLocalTrack("video"),this._sendVideoTrack=d.consumerScreenDataChannel?b.getBlackMediaTrack(d.videoMinWidth,d.videoMinHeight):i,yield this._replaceLocalTrack(i,this._sendVideoTrack)),this._triggerEvent("SCREEN_STATUS",{track:i,mediaSettings:this._mediaSettings}),this._triggerEvent("SOURCE_CHANGED",{kind:"screen",mediaSettings:this._mediaSettings})}}catch(t){throw m.log(v.ERROR,"screen"),c.warn("Screen capturing failed",t),t}})}_disableScreenCapture(){this._sendVideoTrack&&(this._sendVideoTrack.stop(),this._sendVideoTrack=null),this._screenTrack&&(this._screenTrack.stop(),this._screenTrack=null),this._mediaSettings.isScreenSharingEnabled&&(this._mediaSettings.isScreenSharingEnabled=!1,this._triggerEvent("SCREEN_STATUS",{mediaSettings:this._mediaSettings}),this._triggerEvent("SOURCE_CHANGED",{kind:"screen",mediaSettings:this._mediaSettings}))}_replaceLocalTrack(e,t){return o(this,null,function*(){!this._stream||this._stream.getTracks().forEach(i=>{var r,n;i.kind===e.kind&&((r=this._stream)==null||r.removeTrack(i),(n=this._stream)==null||n.addTrack(e),this._triggerEvent("TRACK_REPLACED",e,t))})})}_stopLocalTrack(e){this._stream&&this._stream.getTracks().forEach(t=>{t.kind===e&&t.stop()})}_videoEffect(e,t){return o(this,null,function*(){if(!d.videoEffects)return t;try{return m.log(v.DEVICE_CHANGED,`effect_${e}`),d.videoEffects.setEffect(e,t)}catch(i){return c.warn("Video effect failed",i),t}})}_stopAndRemoveTrackVideoStreamBackup(){this._trackVideoStreamBackup&&(this._trackVideoStreamBackup.stop(),this._trackVideoStreamBackup=null)}destroy(){this._destroyDeviceChangeListener(),d.videoEffects&&(this._effect=null,d.videoEffects.destroy()),this._stream&&(Gr(this._stream),this._stream=null),this._stopAndRemoveTrackVideoStreamBackup(),this._disableScreenCapture()}toggleScreenCapturing(e){return o(this,null,function*(){return e?this._changeScreen():d.consumerScreenTrack?this._disableScreenCapture():this._videoStatusOnScreenCapturingEnabled?this._changeVideoInput():this.toggleVideo(!1)})}toggleVideo(e){return o(this,null,function*(){if(!this._stream)return;d.consumerScreenTrack||this._disableScreenCapture();let t;if(e){let i=yield b.getUserVideo(void 0,!!this._effect);t=this._getVideoEffectTrack(i),t=yield this._videoEffect(this._effect,t)}else t=b.getBlackMediaTrack(d.videoMinWidth,d.videoMinHeight),t=yield this._videoEffect(null,t),this._stopAndRemoveTrackVideoStreamBackup();this._stopLocalTrack("video"),yield this._replaceLocalTrack(t),this._mediaSettings.isVideoEnabled=e,this._triggerEvent("SOURCE_CHANGED",{kind:"video",mediaSettings:this._mediaSettings})})}toggleAudio(e){return o(this,null,function*(){if(!this._stream)return;let t;e?t=(yield b.getUserAudio()).getAudioTracks()[0]:t=b.getSilentMediaTrack(),this._stopLocalTrack("audio"),yield this._replaceLocalTrack(t),this._mediaSettings.isAudioEnabled=e,this._triggerEvent("SOURCE_CHANGED",{kind:"audio",mediaSettings:this._mediaSettings})})}setResolution(e,t){return o(this,null,function*(){if(!d.consumerScreenTrack&&this._mediaSettings.isScreenSharingEnabled)return;if(!this._stream)throw new Error("Local stream not found");let i=this._stream.getVideoTracks()[0];if(!i)throw new Error("Local video track not found");if(!!i.enabled){if(!this._effect)return i.applyConstraints({width:{ideal:e},height:{ideal:t}});yield this.toggleVideo(!1),yield this.toggleVideo(!0)}})}updateNoiseSuppression(){return o(this,null,function*(){if(!this._stream||!this._mediaSettings.isAudioEnabled)return;let e=this._stream.getAudioTracks()[0];if(!e)throw new Error("Local audio track not found");if(!!e.enabled)return e.applyConstraints({noiseSuppression:d.noiseSuppression})})}videoEffect(e){return o(this,null,function*(){if(!d.videoEffects)throw new Error("Video Effects library is not set");if(!d.consumerScreenTrack&&this._mediaSettings.isScreenSharingEnabled)throw new Error("Can't apply effect to screensharing");if(!this._mediaSettings.isVideoEnabled){this._effect=e;return}if(this._stream&&e!==this._effect)return this._effect=e,this._changeVideoInput(this._stream)})}};var pt=":",jt="d",Ga=533,Di="a=fmtp:",Ha="sps-pps-idr-in-keyframe=1",Ai;(_i=>{function a(h,I,C,f,P,U=!1,M=!1){let k=/[\r\n]+/,ie=`\r
8
- `;if(!I&&!C&&!f&&!M&&!U&&!P)return h;function be(K){let ce=["a=rtcp-fb:111 nack","a=rtcp-fb:111 nack pli"],_="a=rtcp-fb:111",y=K.findIndex(O=>O.startsWith(_));return~y&&(K[y]=K[y]+ie+ce.join(ie)),K}function He(K,ce,_){let y=K.split(" "),O=y.slice(0,3),Y;for(Y=3;Y<y.length;Y++)_.includes(y[Y])&&O.push(y[Y]);for(Y=3;Y<y.length;Y++)!_.includes(y[Y])&&!ce.includes(y[Y])&&O.push(y[Y]);return O.join(" ")}function Me(K,ce){let _=new RegExp("a=rtpmap:(\\d+) ([a-zA-Z0-9-]+)\\/\\d+"),y,O=[];for(y=0;y<K.length;++y){let Y=K[y].match(_);Y&&Y.length===3&&Y[2]===ce&&O.push(Y[1])}return O}function De(K,ce,_,y){let O,Y="m="+ce;for(O=0;O<K.length;++O)if(K[O].startsWith(Y)){K[O]=He(K[O],_,y);break}}function Ae(K,ce){let _=new RegExp(Di+"(\\d+)");for(let y=0;y<K.length;++y){let O=K[y].match(_);if(O&&O.length===2&&ce.includes(O[1])){let Y=K[y].trim()===Di+O[1]?" ":";";K[y]+=Y+Ha}}}function Ue(K){let ce=Me(K,"H264");if(C){let _=ce.slice(0),y=new RegExp(Di+"(\\d+) apt=(\\d+)"),O;for(O=0;O<K.length;++O){let Te=K[O].match(y);Te&&Te.length===3&&_.includes(Te[2])&&_.push(Te[1])}let Y=new RegExp("a=(rtpmap|rtcp-fb|fmtp):(\\d+) .*");for(O=K.length;O--;){let Te=K[O].match(Y);Te&&Te.length===3&&_.includes(Te[2])&&K.splice(O,1)}De(K,"video",_,[])}else I&&De(K,"video",[],ce),P&&Ae(K,ce)}function ke(K){let ce=Me(K,"VP9");f&&De(K,"video",[],ce)}function Ct(K){let ce=Me(K,"red");ce.length>0&&De(K,"audio",[],ce)}let nt=h.split(k);return(C||I||P)&&Ue(nt),f&&ke(nt),M&&Ct(nt),U&&be(nt),nt.join(ie)}_i.patchSDP=a;function e(h){return h?`${h.type||"WEB_SOCKET"}_${h.id}`:"_"}_i.getPeerIdString=e;function t(h,I){return h&&h.id===I.id&&(h.type||"WEB_SOCKET")===(I.type||"WEB_SOCKET")}_i.comparePeerId=t;function i(h){return o(this,null,function*(){return!h||!h.getStats?Promise.resolve(null):h.getStats(null).then(I=>{let C=null,f=null;if(I.forEach(P=>{P.type==="transport"&&P.selectedCandidatePairId?f=I.get(P.selectedCandidatePairId):P.type==="candidate-pair"&&P.state==="succeeded"&&!f&&(!P.hasOwnProperty("selected")||P.selected)&&(f=P)}),f&&f.localCandidateId){let P=I.get(f.localCandidateId);P&&(C={type:P.candidateType,ip:P.ip||P.ipAddress,port:P.port||P.portNumber})}return C}).catch(()=>null)})}_i.getPeerConnectionHostInfo=i;let r=/^[0-9]+$/,n=/^([gu])([0-9]+)$/;function s(h,I){let C=String(h);return n.test(C)?(c.warn(`Already composite id [${h}] type supplied [${I}]`),C):I===Q.GROUP?"g"+C:I===Q.USER?"u"+C:(c.warn(`Unknown type [${I}] for id [${h}]`),C.match(r)?"u"+C:C)}_i.composeUserId=s;function p(h,I,C){let f=s(h,I);return l(f,C)}_i.composeParticipantId=p;function l(h,I){return I?h+pt+jt+I:h}_i.compose=l;function u(h){return p(h.id,h.idType||Q.USER,h.deviceIdx||0)}_i.composeId=u;function R(h){return h.participant?u(h.participant):p(h.participantId,h.participantType||Q.USER,h.deviceIdx||0)}_i.composeMessageId=R;function D(h){let I=String(h),C=I.match(n);return C?{id:Number(C[2]),type:C[1]==="g"?Q.GROUP:Q.USER}:(c.warn(`Unsupported compositeId [${h}]`),{id:Number(I),type:Q.USER})}_i.decomposeId=D;function x(h){let I=h.split(pt+jt);return{compositeUserId:I[0],deviceIdx:I.length>1?parseInt(I[1],10):0}}_i.decomposeParticipantId=x;function L(){var M,k;let h=(k=(M=window.crypto)==null?void 0:M.randomUUID)==null?void 0:k.call(M);if(h)return h;let I="0123456789abcdefghijklmnopqrstuvwxyz".split(""),C=new Array(36),f=0,P,U;for(U=0;U<36;U++)U===8||U===13||U===18||U===23?C[U]="-":U===14?C[U]="4":(f<=2&&(f=33554432+Math.random()*16777216|0),P=f&15,f=f>>4,C[U]=I[U===19?P&3|8:P]);return C.join("")}_i.uuid=L;function q(h,I){let C;function f(){let P=this,U=arguments;C&&window.clearTimeout(C),C=window.setTimeout(()=>{h.apply(P,U)},I)}return f}_i.throttle=q;function ue(h){if(!window.BigInt)return null;let I="",C=h.split(`
9
- `);for(let U of C)if(U.startsWith("a=fingerprint")){let M=U.split(" ");if(M.length===2){I=M[1];break}}if(!I)return BigInt(-1);let f=I.split(":"),P=BigInt(0);for(let U=Math.min(7,f.length-1);U>=0;U--){let M=BigInt(parseInt(f[U],16));P<<=BigInt(8),P|=M}return BigInt.asIntN(64,P)}_i.sdpFingerprint=ue;function Ne(h){return o(this,null,function*(){return new Promise(I=>window.setTimeout(I,h))})}_i.delay=Ne;function pe(h,I,C){let f=[];return h.getSenders().forEach(P=>Ye(I,P,P.track,C,f)),f}_i.applySettings=pe;function Ye(h,I,C,f,P){var U;if(h&&C&&C.kind===ae.video){let M=C.getSettings();if(M){let k=h.maxBitrateK?h.maxBitrateK*1024:null,ie=M.width,be=M.height,He=ie&&be&&h.maxDimension?Math.max(1,Math.max(ie,be)/h.maxDimension):null,Me=h.maxFramerate?h.maxFramerate:null;if(ie&&be&&h.maxDimension&&h.maxDimension>Math.max(ie,be)){let ke=Math.round(ie*be/256),Ct=(Math.round(ke*Ga/1e4)+1)*1e4;k=k===null?Ct:Math.min(Ct,k)}let De=h.degradationPreference?h.degradationPreference:"balanced",Ae=f[C.id];if(Ae&&Ae.bitrate===k&&Ae.scaleResolutionDownBy===He&&Ae.maxFramerate===Me&&Ae.degradationPreference===De){P[C.id]=Ae;return}P[C.id]={bitrate:k,scaleResolutionDownBy:He,maxFramerate:Me,degradationPreference:De};let Ue=I.getParameters();Ue.encodings||(Ue.encodings=[{}]),Ue.encodings.forEach(ke=>{k?ke.maxBitrate=k:delete ke.maxBitrate,He?ke.scaleResolutionDownBy=He:delete ke.scaleResolutionDownBy,Me?ke.maxFramerate=Me:delete ke.maxFramerate}),Ue.degradationPreference=De,(U=I.setParameters)==null||U.call(I,Ue)}}}_i.applyVideoTrackSettings=Ye;function oe(h,I){Array.isArray(I)||(I=[I]);for(let C of I)if(h.includes(C))return!0;return!1}_i.includesOneOf=oe;function Pe(h){var I;return Object.entries(((I=h.participantState)==null?void 0:I.state)||{}).reduce((C,[f,P])=>(h.participantState&&(C[f]={ts:h.participantState.stateUpdateTs[f],state:P}),C),{})}_i.mapParticipantState=Pe;function Re(h){let I=h.map(C=>({uid:C.externalId,mediaSettings:C.mediaSettings,status:C.status,muteStates:C.muteStates,unmuteOptions:C.unmuteOptions,participantState:C.participantState,markers:C.markers}));return d.filterObservers?I.filter(C=>!C.uid.observer):I}_i.mapSharedParticipants=Re;function Tt(h,I){let C=Object.keys(h),f=Object.keys(I);if(C.length!==f.length)return!1;for(let P of C)if(!f.hasOwnProperty(P)||h[P].state!==I[P].state||h[P].ts!==I[P].ts)return!1;return!0}_i.isEqualParticipantState=Tt;function tr(h,I){let C=Object.keys(h),f=Object.keys(I);if(C.length!==f.length)return!1;for(let P of C)if(!I.hasOwnProperty(P)||h[P]!==I[P])return!1;return!0}_i.isObjectsEquals=tr;function z(h,I){if(h.length!==I.length)return!1;for(let C of h)if(I.indexOf(C)<0)return!1;return!0}_i.isArraysEquals=z;function ir(h){return!Object.keys(h).length}_i.isEmptyObject=ir;function rr(h,I){if(!h&&!I)return 0;if(!h||!I)return h?-1:1;return f(I.rank,h.rank)||f(h.ts,I.ts)||C(h,I);function C(P,U){let M={[Q.USER]:0,[Q.GROUP]:1},{compositeUserId:k,deviceIdx:ie}=x(P.id),{compositeUserId:be,deviceIdx:He}=x(U.id),{id:Me,type:De}=D(k),{id:Ae,type:Ue}=D(be);return f(M[De],M[Ue])||f(Me,Ae)||f(ie,He)}function f(P,U){return P<U?-1:P===U?0:1}}_i.participantMarkerCompare=rr;function ar(h,I){let C=Object.entries(h).filter(([,f])=>Array.isArray(I)?!I.includes(f):f!==I);return Object.fromEntries(C)}_i.objectFilterOutValues=ar;function $(h,I,C){let f=C;for(let P in h)!h.hasOwnProperty(P)||(f=I(f,h[P],P));return f}_i.objectReduce=$,_i.setImmediate=(()=>{let h=1,I={},C=null;return typeof MessageChannel!="undefined"&&(C=new MessageChannel,C.port1.onmessage=f=>{let P=f.data;I[P]&&(I[P](),delete I[P])}),function(f){if(C&&document.visibilityState==="hidden"){let U=h;return h=h>=Number.MAX_SAFE_INTEGER?1:h+1,I[U]=f,C.port2.postMessage(U),()=>{I[U]&&delete I[U]}}let P=setTimeout(f,0);return()=>clearTimeout(P)}})()})(Ai||(Ai={}));var S=Ai;var Qe=null,ki=null,Kt=[],qt=[],Oi=[],Dt=null,At=null,wi=null,xi=!1,Li=!1,$t,lt,Jt,Wr=!1,jr=!1,Ni=null,Ui="",Yt=[],Bi=null,Kr=navigator.appVersion,Wa=navigator.appName,Ie=navigator.userAgent,qr=(r=>(r.USER="user",r.ENVIRONMENT="environment",r.LEFT="left",r.RIGHT="right",r))(qr||{}),kt=class{constructor(e,t=!1,i=d.videoMaxWidth,r=d.videoMaxHeight){let n=!1;if(e){n={noiseSuppression:d.noiseSuppression,echoCancellation:!0,autoGainControl:!0};let p;At&&(p=At.deviceId),typeof e=="string"&&(p=e),p&&(n.deviceId={ideal:p})}let s=!1;if(t){s={width:{min:d.videoMinWidth,max:i,ideal:i},height:{min:d.videoMinHeight,max:r,ideal:r},aspectRatio:{ideal:d.videoAspectRatio},frameRate:{ideal:d.videoFrameRate}};let p;Dt&&(p=Dt.deviceId),typeof t=="string"&&(p=t),p&&(s.deviceId={ideal:p}),d.videoFacingMode&&(s.facingMode={ideal:d.videoFacingMode})}this.audio=n,this.video=s,this.needVideo=!!s}getNative(){return Object.assign({},{audio:this.audio,video:this.video})}simplify(){return typeof this.video=="object"&&(this.video.width||this.video.height?(delete this.video.width,delete this.video.height):this.video.aspectRatio?delete this.video.aspectRatio:this.video.frameRate?delete this.video.frameRate:(this.video.deviceId||this.video.facingMode)&&(delete this.video.deviceId,delete this.video.facingMode)),typeof this.audio=="object"&&(this.audio.echoCancellation||this.audio.autoGainControl||this.audio.noiseSuppression?(delete this.audio.echoCancellation,delete this.audio.autoGainControl,delete this.audio.noiseSuppression):this.audio.deviceId&&delete this.audio.deviceId),this.video===!0&&this.audio===!0?this.video=!1:this.video===!1&&this.audio===!0?(this.audio=!1,this.video=this.needVideo):this.video===!0&&this.audio===!1&&(this.video=!1),this.video&&!Object.keys(this.video).length&&(this.video=!0),this.audio&&!Object.keys(this.audio).length&&(this.audio=!0),this}canSimplify(){let e=typeof this.video=="object"&&(this.video.width||this.video.height||this.video.aspectRatio||this.video.frameRate||this.video.facingMode||this.video.deviceId)||this.video;return!!(typeof this.audio=="object"&&(this.audio.deviceId||this.audio.noiseSuppression||this.audio.echoCancellation||this.audio.autoGainControl)||this.audio||e)}isVideo(){return!!this.video}isAudio(){return!!this.audio}},$r=class extends kt{constructor(e,t){super(!1,!0);typeof this.video=="object"?(delete this.video.deviceId,delete this.video.aspectRatio,delete this.video.frameRate,delete this.video.facingMode):this.video={},this.video.cursor="motion",this.video.width=e,this.video.height=t,this.video.frameRate=d.screenFrameRate}};function ja(){return o(this,null,function*(){Qe=null,yield zt()})}function Ka(){Qe=null,zt().then(()=>E.onDeviceChange())}function zt(){return o(this,null,function*(){return Qe||(!navigator.mediaDevices||!navigator.mediaDevices.enumerateDevices?[]:(!ki&&navigator.mediaDevices.addEventListener&&(ki=S.throttle(Ka,1e3),navigator.mediaDevices.addEventListener("devicechange",ki)),Qe=navigator.mediaDevices.enumerateDevices().then(a=>{Kt=a.filter(r=>r.kind==="videoinput"?(r.label&&(xi=!0),!0):!1),qt=a.filter(r=>r.kind==="audioinput"?(r.label?Li=!0:Xe.isMobile()&&Xe.browserName()==="Firefox"&&(Li=xi),!0):!1),Oi=a.filter(r=>r.kind==="audiooutput");let e=$e.get("videoinput"),t=$e.get("audioinput"),i=$e.get("audiooutput");return Dt=Kt.find(r=>r.deviceId===e)||null,At=qt.find(r=>r.deviceId===t)||null,wi=Oi.find(r=>r.deviceId===i)||null,Qe=Promise.resolve(a),a}).catch(()=>(Qe=null,[]))))})}function qa(){return o(this,null,function*(){return Xe.isBrowserSupported()?new Promise(a=>{new window.RTCPeerConnection().createOffer({offerToReceiveVideo:!0}).then(t=>{/^a=rtpmap:\d+ VP8\/\d+$/m.test(t.sdp)&&(Wr=!0),/^a=mid:0$/m.test(t.sdp)&&(jr=!0),a()}).catch(a)}):Promise.resolve()})}function Qt(a,e){return o(this,null,function*(){c.debug("Try to get media",a.getNative());let t=Xe.hasPermissions(a.isVideo());!t&&!e&&E.onPermissionsRequested();try{let i=yield navigator.mediaDevices.getUserMedia(a.getNative());return t||(yield ja()),i}catch(i){switch(i.name){case"PermissionDeniedError":case"PermissionDismissedError":case"NotAllowedError":case"SecurityError":case"DOMException":e=a.isVideo()?te.CAMERA_PERMISSION:te.MIC_PERMISSION;break;case"OverconstrainedError":case"TypeError":case"NotFoundError":break;case"AbortError":case"NotReadableError":e=a.isVideo()?te.CAMERA_ACCESS:te.MIC_ACCESS;break}if(a.canSimplify())return Qt(a.simplify(),e);let r=e||te.UNKNOWN;throw E.onPermissionsError(r),r}})}function $a(a){return o(this,null,function*(){c.debug("Try to get screen",a.getNative());try{let e=yield navigator.mediaDevices.getDisplayMedia(a.getNative()),t=e==null?void 0:e.getVideoTracks()[0];return t&&(c.debug("Got display media track",t.id),t.contentHint="text"),e}catch(e){switch(e.name){case"PermissionDeniedError":case"NotAllowedError":case"SecurityError":throw te.SCREEN_PERMISSION;default:throw te.SCREEN_ACCESS}}})}function Xt(){return Yt.length||(Yt=(()=>{let a,e=!1,t=0,i="0",r=Ie.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i)||[];if(/trident/i.test(r[1]))return a=/\brv[ :]+(\d+)/g.exec(Ie),["IE",a&&a[1]||"Unknown",e,t,i];if(r[1]==="Safari"){if(a=Ie.match(/\bEdge\/(\d+)/),a)return["Edge",a[1]||"Unknown",e,t,i];if(a=Ie.match(/\bCriOS\/(\d+)/),a)return["Chrome",a[1],!0,Number(a[1]),i];if(a=Ie.match(/\bFxiOS\/(\d+)/),a)return["Firefox",a[1],!1,t,i];if(a=Ie.match(/\bYaBrowser\/(\d+)/),a)return["Yandex",a[1],!1,t,i];if(a=Ie.match(/\bOPT\/(\d+)/),a)return["Opera",a[1],!1,t,i]}if(r[1]==="Chrome"){if(e=!0,t=Number(r[2]),a=Ie.match(/\bOPR\/(\d+)/),a)return["Opera",a[1]||"Unknown",e,t,i];if(a=Ie.match(/\bYaBrowser\/(\d+)/),a)return["Yandex",a[1]||"Unknown",e,t,i];if(a=Ie.match(/\bSferum\/((\d+)(?:\.\d+)*)/),a)return["Sferum",a[1]||"Unknown",e,t,i];if(a=Ie.match(/\bEdge?\/(\d+)/),a)return["Edge",a[1]||"Unknown",e,t,i];if(typeof window.opr!="undefined"&&/^(.+\.)?ok.ru$/.test(window.location.host))return["Opera","Hidden",e,t,i]}return a=Ie.match(/version\/(\d+)(?:(?:\.)(\d+))?/i),a&&a[2]!==void 0&&(i=a[2]),[r[2]?r[1]:Wa,a&&a[1]||r[2]||Kr,e,t,i]})()),Yt}var Xe;(C=>{function a(){return o(this,null,function*(){return yield qa(),zt()})}C.init=a;function e(){return Kt}C.getCameras=e;function t(){return qt}C.getMicrophones=t;function i(){return Oi}C.getOutput=i;function r(){return Kt.length>0}C.hasCamera=r;function n(){return qt.length>0}C.hasMicrophone=n;function s(){return Dt}C.getSavedCamera=s;function p(){return At}C.getSavedMicrophone=p;function l(){return wi}C.getSavedOutput=l;function u(){return xi}C.hasCameraPermission=u;function R(){return Li}C.hasMicrophonePermission=R;function D(f=!1){return R()?r()&&f?u():!0:!1}C.hasPermissions=D;function x(f=!1,P=!0,U=!0){return o(this,null,function*(){let M=n()&&P,k=r()&&f,ie;if(!M&&!k)ie=new MediaStream;else try{ie=yield Qt(new kt(M,k))}catch(be){ie=new MediaStream}return!ie.getVideoTracks().length&&U&&ie.addTrack(Ye()),!ie.getAudioTracks().length&&U&&ie.addTrack(pe()),ie})}C.getUserMedia=x;function L(){return o(this,null,function*(){return $a(new $r(window.screen.width,window.screen.height))})}C.getScreenMedia=L;function q(f,P=!1){return o(this,null,function*(){let U=P?d.videoEffectMaxWidth:d.videoMaxWidth,M=P?d.videoEffectMaxHeight:d.videoMaxHeight;return Qt(new kt(!1,f||!0,U,M))})}C.getUserVideo=q;function ue(f){return o(this,null,function*(){return Qt(new kt(f||!0,!1))})}C.getUserAudio=ue;function Ne(f,P){return o(this,null,function*(){let M=(yield zt()).find(k=>k.kind===f&&k.deviceId===P);return M?(f==="videoinput"?Dt=M:f==="audioinput"?At=M:f==="audiooutput"&&(wi=M),$e.set(f,P),M):null})}C.saveDeviceId=Ne;function pe(){if(!Jt||Jt.readyState==="ended"){let f=h(),P=f.createMediaStreamDestination(),U=f.createGain();U.gain.value=1e-5,U.connect(P),U.connect(f.destination);let M=f.createOscillator();M.type="sine",M.frequency.value=0,M.connect(U),M.start(),Jt=P.stream.getAudioTracks()[0]}return Object.assign(Jt.clone(),{enabled:!1})}C.getSilentMediaTrack=pe;function Ye(f=d.videoMinWidth,P=d.videoMinHeight){return lt||(lt=document.createElement("canvas"),lt.getContext("2d")),lt.width=f,lt.height=P,(!$t||$t.readyState==="ended")&&($t=lt.captureStream(d.videoFrameRate).getVideoTracks()[0]),Object.assign($t.clone(),{enabled:!1})}C.getBlackMediaTrack=Ye;function oe(){if($()==="Edge"&&Number(hi())<70)return!1;try{let f=window;return navigator.mediaDevices&&navigator.mediaDevices.getUserMedia&&f.RTCPeerConnection&&f.RTCIceCandidate&&f.RTCSessionDescription&&f.HTMLCanvasElement&&f.HTMLCanvasElement.prototype.captureStream&&f.RTCRtpSender&&f.RTCRtpSender.prototype.replaceTrack&&f.RTCRtpSender.prototype.getParameters&&navigator.sendBeacon&&!0||!1}catch(f){return!1}}C.isBrowserSupported=oe;function Pe(){return!!navigator.mediaDevices.getDisplayMedia}C.isScreenCapturingSupported=Pe;function Re(){return Wr}C.canVP8=Re;function Tt(){return jr}C.isUnifiedPlan=Tt;function tr(){let f=C.browserName()==="Safari"&&C.browserVersion()==="15"&&C.browserSubVersion()==="1",P=C.browserName()==="Opera"&&C.os()==="Windows";return f||P}C.isBrokenH264=tr;function z(){return!(C.baseChromeVersion()&&C.isMobile())}C.canPreferH264=z;function ir(){var f;return((f=window.RTCRtpTransceiver)==null?void 0:f.prototype)&&"setCodecPreferences"in window.RTCRtpTransceiver.prototype}C.canPreferRed=ir;function rr(){return Ui||(Ui=(()=>{let f={Windows:/Win/,Android:/Android/,OpenBSD:/OpenBSD/,SunOS:/SunOS/,Linux:/(Linux|X11)/,iPad:/(iPad)/,iPhone:/(iPhone)/,iPod:/(iPod)/,MacOS:/(MacPPC|MacIntel|Mac_PowerPC|Macintosh|Mac OS X)/,QNX:/QNX/,UNIX:/UNIX/,BeOS:/BeOS/,OS2:/OS\/2/,Bot:/(nuhk|Googlebot|Yammybot|Openbot|Slurp|MSNBot|Ask Jeeves\/Teoma|ia_archiver)/};for(let P in f)if(f.hasOwnProperty(P)&&f[P].test(Ie))return P;return"Unknown"})()),Ui}C.os=rr;function ar(){return Ni===null&&(Ni=/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(Kr)),Ni}C.isMobile=ar;function $(){return Xt()[0]}C.browserName=$;function hi(){return Xt()[1]}C.browserVersion=hi;function _i(){return Xt()[3]}C.baseChromeVersion=_i;function h(){return Bi||(Bi=new(window.AudioContext||window.webkitAudioContext)),Bi}C.getAudioContext=h;function I(){return Xt()[4]}C.browserSubVersion=I})(Xe||(Xe={}));var b=Xe;var Ke=class extends Be{init(e){return o(this,null,function*(){c.debug("WebCodecsDecoder started"),yield this._createWorker('var exports=(()=>{var i=Object.defineProperty;var E=a=>i(a,"__esModule",{value:!0});var g=(a,e)=>{E(a);for(var t in e)i(a,t,{get:e[t],enumerable:!0})};var V={};g(V,{default:()=>D});var n=(t=>(t.VP9="vp09.00.50.08",t.VP8="vp8",t))(n||{}),o=(r=>(r.INIT="init",r.READY="ready",r.FRAME="frame",r.ERROR="error",r.DEBUG="debug",r.LOG_ERROR="log_error",r))(o||{});var D=a=>{let e=null,t=!0;function p(){self.postMessage({type:o.READY})}function f(d,r,s,l=!1){if(!e||t!==s){if(!l){self.postMessage({type:o.DEBUG,message:"WebCodecsDecoder dropped frame - waiting for keyframe"});return}t=s,e?self.postMessage({type:o.DEBUG,message:`WebCodecsDecoder codec changed to ${s?"VP9":"VP8"}`}):(self.postMessage({type:o.DEBUG,message:`WebCodecsDecoder codec ${s?"VP9":"VP8"}`}),e=new VideoDecoder({output:c=>{let m=a?[c]:[];self.postMessage({type:o.FRAME,data:c},m),c.close()},error:c=>{e&&e.state!=="closed"&&e.close(),e=null,self.postMessage({type:o.FRAME,error:"WebCodecsDecoder failed, reinitialize"})}})),e.configure({codec:s?n.VP9:n.VP8})}let u=new EncodedVideoChunk({type:l?"key":"delta",timestamp:d,data:r});e.decode(u)}self.onmessage=d=>{switch(d.data.type){case o.INIT:p();break;case o.FRAME:f(d.data.timestamp,d.data.data,d.data.isVP9,d.data.keyFrame);break}}};return V;})();\n',t=>{t.error?c.warn("WebCodecsDecoder",t.error):e(t.data)},[b.baseChromeVersion()>=92])})}decodeFrame(e,t,i,r=!1){this._sendToWorker(ge.FRAME,{timestamp:e,data:t.buffer,isVP9:i,keyFrame:r},[t.buffer])}destroy(){this._removeWorker(),c.debug("WebCodecsDecoder destroyed")}static isBrowserSupported(){return"VideoDecoder"in window&&"Worker"in window&&"VideoFrame"in window}};import{BitStream as Ja}from"bit-buffer";var Ya=65536,Ze=class{constructor(e,t){this._chunks=[];this._participantId=e,this._onStream=t}appendChunk(e){let t=this._chunks.length;if(e.start)t&&(c.warn("[FrameBuilder] Cleanup buffer",Array.prototype.slice.call(this._chunks)),this._chunks=[]);else if(!t||(this._chunks[t-1].sequence+1)%Ya!==e.sequence){c.warn("[FrameBuilder] Got incorrect chunk");return}if(this._chunks.push(e),e.end){let i=this._processFrameData(),{width:r,height:n}=Ze.getFrameSize(i);this._processFrame({timestamp:e.timestamp,frameData:i,isVP9:e.isVP9,keyframe:e.keyframe,width:r,height:n})}}destroy(){this._chunks=[]}_processFrameData(){let e=this._chunks;this._chunks=[];let t=e.reduce((n,s)=>n+s.data.byteLength,0),i=new Uint8Array(t),r=0;for(let n of e)i.set(new Uint8Array(n.data),r),r+=n.data.byteLength;return i}static getFrameSize(e){let t={width:0,height:0},i=new Ja(e.buffer);i.bigEndian=!0,i.index+=2;let r=i.readBits(1),s=i.readBits(1)<<1|r;return s===3&&i.index++,i.readBits(1)===1||i.readBits(1)!==0||(i.index++,i.index++,i.index+=24,s>=2&&i.index++,i.readBits(3)!==7?(i.index++,(s===1||s===3)&&(i.index+=3)):(s===1||s===3)&&i.index++,t.width=i.readBits(16)+1,t.height=i.readBits(16)+1),t}static isBrowserSupported(){throw new Error("Method `isBrowserSupported` is not implemented")}};var ut=class{constructor(e){this._onStream=e}drawFrame(e){return o(this,null,function*(){throw new Error("Method `drawFrame` is not supported by this implementation")})}drawImage(e){throw new Error("Method `drawImage` is not supported by this implementation")}static isBrowserSupported(){throw new Error("Method `isBrowserSupported` is not implemented")}};var Ot=class extends ut{constructor(e){super(e);this._canvas=null;this._canvasContext=null;this._stream=null;this._track=null;c.debug("CanvasRenderer started"),this._useImageBitmap="ImageBitmap"in window}_createStream(e,t){this._canvas||(this._canvas=document.createElement("canvas"),this._canvas.width=e,this._canvas.height=t,this._canvas.style.pointerEvents="none",this._canvas.style.visibility="hidden",this._canvas.style.position="absolute",this._canvas.style.width="160px",this._canvas.style.height="90px",this._canvas.style.bottom="0",this._canvas.style.right="0",this._canvas.style.zIndex="5000",document.body.appendChild(this._canvas),this._useImageBitmap?this._canvasContext=this._canvas.getContext("bitmaprenderer"):this._canvasContext=this._canvas.getContext("2d"),this._stream=this._canvas.captureStream(0),this._track=this._stream.getVideoTracks()[0],this._track.contentHint="text")}_removeStream(){this._stream&&(this._stream.getTracks().forEach(e=>e.stop()),this._stream=null,this._track=null),this._canvasContext=null;try{this._canvas&&document.body.removeChild(this._canvas)}catch(e){}this._canvas=null}_requestCanvasFrame(){this._track&&this._track.requestFrame?this._track.requestFrame():this._stream&&this._stream.requestFrame&&this._stream.requestFrame()}drawFrame(e){return o(this,null,function*(){let t="createImageBitmap"in e?yield e.createImageBitmap():yield createImageBitmap(e);this.drawImage(t),t.close()})}drawImage(e){this._track||(this._createStream(e.width,e.height),this._onStream(this._stream));let t=this._canvas;if(t.width=e.width,t.height=e.height,e instanceof ImageData){let i=this._canvasContext;i.clearRect(0,0,t.width,t.height),i.putImageData(e,0,0)}else this._canvasContext.transferFromImageBitmap(e);this._requestCanvasFrame()}destroy(){this._removeStream(),c.debug("CanvasRenderer destroyed")}static isBrowserSupported(){return("CanvasCaptureMediaStream"in window||"CanvasCaptureMediaStreamTrack"in window)&&!(b.browserName()==="Safari"&&Number(b.browserVersion())===15)}};var mt=class extends ut{constructor(e){super(e);c.debug("TrackGeneratorRenderer started"),this._generator=new MediaStreamTrackGenerator({kind:ae.video}),this._writer=this._generator.writable.getWriter(),this._stream=new MediaStream([this._generator]),this._onStream(this._stream)}drawFrame(e){return o(this,null,function*(){yield this._writer.write(e)})}destroy(){this._writer.releaseLock(),this._generator.writable.close().then(()=>this._generator.stop()),c.debug("TrackGeneratorRenderer destroyed")}static isBrowserSupported(){return"VideoFrame"in window&&"MediaStreamTrackGenerator"in window&&Ke.isBrowserSupported()}};var wt=class extends Ze{constructor(e,t){super(e,t);this._decoderReady=!1;this._decoderQueue=[];c.debug(`StreamBuilder started for participant [${e}]`),mt.isBrowserSupported()?this._renderer=new mt(t):this._renderer=new Ot(t),Ke.isBrowserSupported()?this._decoder=new Ke:this._decoder=new ct;let i=r=>o(this,null,function*(){"VideoFrame"in window&&r instanceof VideoFrame?yield this._renderer.drawFrame(r):this._renderer.drawImage(r)});this._decoder.init(i).then(()=>{this._decoderReady=!0,this._decodeQueue()})}_processFrame(e){!this._decoderReady||this._decoderQueue.length?(this._decoderQueue.push(e),this._decodeQueue()):this._decoder.decodeFrame(e.timestamp,e.frameData,e.isVP9,e.keyframe)}_decodeQueue(){if(!this._decoderReady)return;let e=this._decoderQueue;this._decoderQueue=[],e.forEach(t=>{this._decoder.decodeFrame(t.timestamp,t.frameData,t.isVP9,t.keyframe)})}destroy(){super.destroy(),this._decoder.destroy(),this._renderer.destroy(),c.debug(`StreamBuilder destroyed for participant ${this._participantId}`)}static isBrowserSupported(){return Ot.isBrowserSupported()||mt.isBrowserSupported()}};var Zt=1,za=1,Jr=0,ei=11,Yr=1,zr=2,Qr=4,Xr=8;function Zr(a,e,t,i,r,n,s){let p=0;e&&(p|=Yr),t&&(p|=zr),i&&(p|=Qr),s||(p|=Xr);let l=new ArrayBuffer(ei),u=new DataView(l);if(u.setUint8(0,Zt),u.setUint16(1,r),u.setUint32(3,a),u.setUint8(7,n?1:0),u.setUint16(8,Jr),u.setUint8(10,p),!s)return l;let R=new Uint8Array(l.byteLength+s.byteLength);return R.set(new Uint8Array(l),0),R.set(new Uint8Array(s),l.byteLength),R.buffer}function ea(a){let e=new DataView(a),t=e.getUint8(0),i=e.getUint16(1),r=e.getUint32(3),n=e.getUint8(7)===1,s=e.getUint16(8),p=e.getUint8(10),l=!!(p&Yr),u=!!(p&zr),R=!!(p&Qr),D=!!(p&Xr);if(t!==Zt)throw new Error(`Unexpected protocol version. Got ${t}, expected ${Zt}`);return{timestamp:r,start:l,end:u,keyframe:R,sequence:i,isVP9:n,ssrc:s,eos:D,data:a.slice(ei)}}function ta(a){if(!a||!a.byteLength||a.byteLength!==4)return!1;let e=new DataView(a);return!(e.getUint8(0)!==Zt||e.getUint8(1)!==za||e.getUint16(2)!==Jr)}import*as T from"simple-ebml-builder";var Qa=or(2,15)-1,Vi=1,Xa=5,Za=5;var ti=class{constructor(e){this._queue=[];this._clearBufferTill=0;this._mediaSource=new MediaSource,this._codec=e;let t=()=>{this._mediaSource.removeEventListener("sourceopen",t),this._initBuffer(),this._handleQueue()};this._mediaSource.addEventListener("sourceopen",t,!1)}_handleQueue(){if(!this._sourceBuffer||this._sourceBuffer.updating||!this._queue.length)return;if(this._clearBufferTill&&this._sourceBuffer.buffered.length){let i=this._sourceBuffer.buffered.start(0);i<this._clearBufferTill&&(this._sourceBuffer.remove(i,this._clearBufferTill),c.debug(`[WebmBuilder] SourceBuffer cleanup from ${i} to ${this._clearBufferTill}`)),this._clearBufferTill=0;return}let e=this._queue;this._queue=[];let t=ti._buildQueue(e);this._sourceBuffer.appendBuffer(t)}static _buildQueue(e){if(e.length){if(e.length===1)return T.build(e[0])}else return new Uint8Array;let t=e.reduce((n,s)=>n+s.countSize(),0),i=new Uint8Array(t),r=0;for(let n of e){let s=T.build(n);i.set(s,r),r+=s.byteLength}return i}_initBuffer(){this._sourceBuffer=this._mediaSource.addSourceBuffer(`video/webm; codecs="${this._codec}"`),this._sourceBuffer.mode="sequence",this._sourceBuffer.addEventListener("updateend",()=>this._handleQueue())}changeType(e){var t;return this._codec=e,(t=this._sourceBuffer)==null?void 0:t.changeType(e)}append(e,t=!1){this._queue.push(e),t&&this._handleQueue()}cleanup(){var n,s,p;((n=this._mediaSource)==null?void 0:n.readyState)==="open"&&((s=this._sourceBuffer)==null||s.abort());let e=(p=this._sourceBuffer)==null?void 0:p.buffered,t=e==null?void 0:e.length;if(!t)return;let i=e.start(0),r=Math.max(0,e.end(t-1)-Xa);r-i>Za&&(this._clearBufferTill=r)}destroy(){this._queue=[],this._mediaSource.readyState==="open"&&(this._sourceBuffer.abort(),this._mediaSource.endOfStream()),this._sourceBuffer=null,this._clearBufferTill=0}get codec(){return this._codec}get mediaSource(){return this._mediaSource}get buffered(){var e;return(e=this._sourceBuffer)==null?void 0:e.buffered}},Le=class extends Ze{constructor(e,t){super(e,t);this._video=null;this._stream=null;this._earliestTimestamp=0;this._clusterStartTime=0;this._lastFrameTimestamp=0;c.debug(`[WebmBuilder] started for participant [${e}]`)}static _intToU16BE(e){return new Uint8Array([e>>8,e])}static _genWebmHeader(){return T.element(T.ID.EBML,[T.element(T.ID.EBMLVersion,T.number(1)),T.element(T.ID.EBMLReadVersion,T.number(1)),T.element(T.ID.EBMLMaxIDLength,T.number(4)),T.element(T.ID.EBMLMaxSizeLength,T.number(8)),T.element(T.ID.DocType,T.string("webm")),T.element(T.ID.DocTypeVersion,T.number(2)),T.element(T.ID.DocTypeReadVersion,T.number(2))])}static _genSegmentHeader(e,t,i){let r=T.element(T.ID.Info,[T.element(T.ID.TimecodeScale,T.number(1e6)),T.element(T.ID.MuxingApp,T.string("vk-webm-builder")),T.element(T.ID.WritingApp,T.string("vk-webm-builder"))]),n=[T.element(T.ID.PixelWidth,T.number(e)),T.element(T.ID.PixelHeight,T.number(t))],s=T.element(T.ID.Tracks,T.element(T.ID.TrackEntry,[T.element(T.ID.TrackNumber,T.number(Vi)),T.element(T.ID.TrackUID,T.number(Vi)),T.element(T.ID.TrackType,T.number(1)),T.element(T.ID.FlagLacing,T.number(0)),T.element(T.ID.DefaultDuration,T.number(1e9)),T.element(T.ID.CodecID,T.string(`V_${i.toUpperCase()}`)),T.element(T.ID.Video,n)]));return T.unknownSizeElement(T.ID.Segment,[r,s])}static _genClusterHeader(e){return T.unknownSizeElement(T.ID.Cluster,[T.element(T.ID.Timecode,T.number(Math.round(e)))])}_createVideo(e){this._mediaBuffer=new ti(e),this._video=document.createElement("video"),this._video.autoplay=!0,this._video.controls=!1,this._video.muted=!0,this._video.style.pointerEvents="none",this._video.style.visibility="hidden",this._video.style.position="absolute",this._video.style.width="160px",this._video.style.height="90px",this._video.style.bottom="0",this._video.style.right="0",this._video.style.zIndex="5000",this._video.src=URL.createObjectURL(this._mediaBuffer.mediaSource),document.body.appendChild(this._video);let t=()=>{if(this._video.src){c.warn(`[WebmBuilder] Video paused for participant [${this._participantId}], try to play again`);let i=this._video.seekable;i.length&&(this._video.currentTime=i.end(i.length-1)-.1),this._video.play().catch(()=>{})}};this._video.onpause=t,this._video.onwaiting=t,this._video.onstalled=t,this._video.onerror=()=>c.warn(`[WebmBuilder] Video Error for participant [${this._participantId}]`,this._video.error),this._stream=this._video.captureStream(),this._onStream(this._stream)}_processFrame(e){let t=e.isVP9?"vp9":"vp8";this._mediaBuffer?this._mediaBuffer.codec!==t&&this._mediaBuffer.changeType(t):this._createVideo(t);let i=e.timestamp;if(i<=this._lastFrameTimestamp&&(i=this._lastFrameTimestamp+10,c.debug(`[WebmBuilder] Fixup timestamp for participant [${this._participantId}]`)),this._lastFrameTimestamp=i,this._earliestTimestamp)i-=this._earliestTimestamp;else{if(!e.keyframe)return;this._earliestTimestamp=i,i=0}if(e.keyframe){this._clusterStartTime=i,this._mediaBuffer.cleanup(),c.debug(`[WebmBuilder] Segment header for participant [${this._participantId}]`);let s=Le._genWebmHeader();this._mediaBuffer.append(s);let p=Le._genSegmentHeader(e.width,e.height,t);this._mediaBuffer.append(p)}let r=Math.round(i-this._clusterStartTime);if(r>Qa&&(this._clusterStartTime=i,r=0),r===0){c.debug(`[WebmBuilder] Cluster header for participant [${this._participantId}]`);let s=Le._genClusterHeader(this._clusterStartTime);this._mediaBuffer.append(s)}let n=T.element(T.ID.SimpleBlock,[T.vintEncodedNumber(Vi),T.bytes(Le._intToU16BE(r)),T.number((e.keyframe?1:0)<<7),T.bytes(e.frameData)]);this._mediaBuffer.append(n,!0)}destroy(){super.destroy(),this._video&&(this._video.onpause=null,this._video.onwaiting=null,this._video.onstalled=null,this._video.onerror=null,this._video.pause(),this._video.src="",document.body.removeChild(this._video)),this._mediaBuffer&&(this._mediaBuffer.destroy(),this._mediaBuffer=null),this._stream&&(this._stream.getTracks().forEach(e=>e.stop()),this._stream=null),c.debug(`[WebmBuilder] destroyed for participant [${this._participantId}]`)}static isBrowserSupported(){var e,t,i;return"captureStream"in((e=window.HTMLVideoElement)==null?void 0:e.prototype)&&((t=window.MediaSource)==null?void 0:t.isTypeSupported('video/webm; codecs="vp8"'))&&((i=window.MediaSource)==null?void 0:i.isTypeSupported('video/webm; codecs="vp9"'))}};var ht=class{constructor(e,t,i,r){this._participantIdRegistry=null;this._streamBuilders={};this._onStream=()=>{};this._onEos=()=>{};c.debug("ScreenCaptureReceiver started"),this._datachannel=e,this._participantIdRegistry=t,this._onStream=i,this._onEos=r,this._datachannel.onmessage=n=>this._onDataChannelMessage(n.data)}_onDataChannelMessage(e){var n,s;let t=ea(e),i=(s=(n=this._participantIdRegistry)==null?void 0:n.getStreamDescription(t.ssrc))==null?void 0:s.participantId;if(!i){c.warn(`Participant id for ssrc ${t.ssrc} not found in registry`);return}if(t.eos){this.close(i),this._onEos(i);return}let r=this._streamBuilders[i];if(!r){let p=l=>this._onStream(i,l);d.screenShareWebmBuilder&&Le.isBrowserSupported()?r=new Le(i,p):r=new wt(i,p),this._streamBuilders[i]=r}r.appendChunk(t)}close(e){let t=this._streamBuilders[e];t&&(t.destroy(),delete this._streamBuilders[e])}destroy(){this._datachannel.onbufferedamountlow=null,this._datachannel.onmessage=null,this._onStream=()=>{},Object.values(this._streamBuilders).forEach(e=>e.destroy()),this._streamBuilders={},this._participantIdRegistry=null,c.debug("ScreenCaptureReceiver destroyed")}static isBrowserSupported(){return(Ke.isBrowserSupported()||ct.isBrowserSupported())&&(wt.isBrowserSupported()||Le.isBrowserSupported())}};import ia from"@vkontakte/libvpx";var en=1e3,xt=class extends Be{constructor(e,t){super();this._video=null;this._imageCapture=null;this._canvas=null;this._canvasCtx=null;this._stream=null;this._track=null;this._frameReadTimeout=0;this._lastFrame=null;this._sourceTrack=e,this._onFrame=t,this._useImageCapture="ImageCapture"in window&&"ImageBitmap"in window,(e.readyState!=="live"||!e.enabled||e.muted)&&(this._useImageCapture=!1)}_createDom(){this._canvas||(this._canvas=document.createElement("canvas"),this._canvas.style.pointerEvents="none",this._canvas.style.visibility="hidden",this._canvas.style.position="absolute",this._canvas.style.width="160px",this._canvas.style.height="90px",this._canvas.style.bottom="0",this._canvas.style.right="160px",this._canvas.style.zIndex="5000",this._canvasCtx=this._canvas.getContext("2d"),document.body.appendChild(this._canvas)),!this._video&&!this._useImageCapture&&(this._video=document.createElement("video"),this._video.controls=!1,this._video.autoplay=!1,this._video.preload="auto",this._video.muted=!0,this._video.style.pointerEvents="none",this._video.style.visibility="hidden",this._video.style.position="absolute",this._video.style.width="160px",this._video.style.height="90px",this._video.style.bottom="0",this._video.style.right="0",this._video.style.zIndex="5000",document.body.appendChild(this._video))}_removeDom(){try{this._canvas&&document.body.removeChild(this._canvas),this._video&&document.body.removeChild(this._video)}catch(e){}this._canvasCtx=null,this._canvas=null,this._video=null}_createStream(e){return o(this,null,function*(){if(!this._canvas)throw new Error("Canvas not found");if(!this._video&&!this._useImageCapture)throw new Error("Video element not found");return this._stream=this._canvas.captureStream(0),this._track=this._stream.getVideoTracks()[0],new Promise((t,i)=>{if(this._useImageCapture)this._imageCapture=new ImageCapture(e),t();else{let r=this._video;r.srcObject=new MediaStream([e]),r.onloadeddata=p=>t(),r.onerror=()=>i(new Error("Video element error"));let n=r.play(),s=()=>i(new Error("Autoplay is disabled"));n?n.catch(s):s()}})})}_removeStream(){var e;window.clearTimeout(this._frameReadTimeout),(e=this._lastFrame)==null||e.close(),this._stream&&(this._stream.getTracks().forEach(t=>t.stop()),this._stream=null,this._track=null),this._video&&(this._video.pause(),this._video.srcObject=null),this._imageCapture&&(this._imageCapture=null)}_drawFrameVideo(){if(!this._canvas||!this._canvasCtx||!this._video||!this._track)throw new Error("Fatal error");this._video.paused&&this._video.play();let e=this._video.videoWidth,t=this._video.videoHeight;return this._canvas.width=this._video.width=e,this._canvas.height=this._video.height=t,this._canvasCtx.clearRect(0,0,e,t),this._canvasCtx.drawImage(this._video,0,0,e,t),this._requestCanvasFrame(),this._canvasCtx.getImageData(0,0,e,t)}_getFrameBitmap(){return o(this,null,function*(){if(!this._imageCapture)throw new Error("Destroyed");return this._imageCapture.grabFrame()})}_drawFrameData(e){var r;if(!this._canvas||!this._canvasCtx||!this._track)throw new Error("Destroyed");let t=e.width,i=e.height;return this._canvas.width=t,this._canvas.height=i,this._canvasCtx.clearRect(0,0,t,i),this._canvasCtx.drawImage(e,0,0,t,i),this._requestCanvasFrame(),(r=this._canvasCtx)==null?void 0:r.getImageData(0,0,t,i)}_requestCanvasFrame(){this._track&&this._track.requestFrame?this._track.requestFrame():this._stream&&this._stream.requestFrame&&this._stream.requestFrame()}init(){return o(this,null,function*(){this._createDom();let e=this._sourceTrack.getSettings().width,t=this._sourceTrack.getSettings().height;c.debug(`LibVPxEncoder started ${e}x${t}, codec ${this.isVP9()?"VP9":"VP8"}`),yield this._createStream(this._sourceTrack),yield this._createWorker(`var exports=(()=>{var u=Object.defineProperty;var b=o=>u(o,"__esModule",{value:!0});var g=(o,n)=>{b(o);for(var t in n)u(o,t,{get:n[t],enumerable:!0})};var y={};g(y,{default:()=>R});var e=(r=>(r.INIT="init",r.READY="ready",r.FRAME="frame",r.ERROR="error",r.DEBUG="debug",r.LOG_ERROR="log_error",r))(e||{});var R=(o,n)=>{let t;function m(a,r){return o({locateFile:n}).then(s=>{if(t=new s.VpxEncoder,t.debug(r),!t.init(a?s.VpxType.VP9:s.VpxType.VP8))throw self.postMessage({type:e.LOG_ERROR,message:"encoder-init-fail-libvpx"}),new Error("LibVPxEncoder failed to create");t.setMaxQuantizer(10),t.setTargetBitrate(1024)})}function E(a,r,s,i){let c=t.allocateImage(a,r);if(!c){self.postMessage({type:e.FRAME,error:"No buffer data"});return}c.set(new Uint8Array(s));let f=Math.round(performance.now()),l=150;if(!t.encode(f,l,i)){self.postMessage({type:e.FRAME,error:"Encode failed"});return}let p=t.readFrame();if(!p){self.postMessage({type:e.FRAME,error:"No encoded data"});return}t.readFrame()&&(self.postMessage({type:e.DEBUG,message:"LibVPxEncoder dropped frame"}),self.postMessage({type:e.LOG_ERROR,message:"LibVPxEncoder-drop"}));let d=new Uint8Array(p.byteLength);d.set(p),self.postMessage({type:e.FRAME,frameType:i?"key":"delta",timestamp:f,duration:l,data:d.buffer},[d.buffer])}self.onmessage=a=>{switch(a.data.type){case e.INIT:m(a.data.isVP9,a.data.debug).then(()=>self.postMessage({type:e.READY})).catch(r=>self.postMessage({type:e.ERROR,error:String(r)}));break;case e.FRAME:E(a.data.width,a.data.height,a.data.imageData,a.data.keyFrame);break}}};return y;})();
10
- `,i=>{var r;i.error?this._onFrame(null,i.error):this._onFrame({type:i.frameType,timestamp:i.timestamp,duration:i.duration,data:i.data,byteLength:(r=i.data)==null?void 0:r.byteLength})},[ia,ia.getUrl],{isVP9:this.isVP9(),debug:c.enabled()})})}_encode(e,t){let i=e.data.buffer;this._sendToWorker(ge.FRAME,{width:e.width,height:e.height,imageData:i,keyFrame:t},[i])}_requestFrameVideo(e){let t=this._drawFrameVideo();this._encode(t,e)}_requestFrameBitmap(e){this._frameReadTimeout=window.setTimeout(()=>{if(this._lastFrame){let t=this._drawFrameData(this._lastFrame);this._encode(t,e)}else this._onFrame(null)},en),this._getFrameBitmap().then(t=>{var r;window.clearTimeout(this._frameReadTimeout),(r=this._lastFrame)==null||r.close(),this._lastFrame=t;let i=this._drawFrameData(t);this._encode(i,e)}).catch(()=>{})}requestFrame(e=!1){this._useImageCapture?this._requestFrameBitmap(e):this._requestFrameVideo(e)}isVP9(){return!1}destroy(){this._removeWorker(),this._removeStream(),this._removeDom(),c.debug("LibVPxEncoder destroyed")}static isBrowserSupported(){return"WebAssembly"in window&&"Worker"in window&&("CanvasCaptureMediaStream"in window||"CanvasCaptureMediaStreamTrack"in window)}};var _t=class extends Be{constructor(e,t){super();this._sourceTrack=e,this._onFrame=t,this._trackProcessor=new MediaStreamTrackProcessor(e)}init(){return o(this,null,function*(){let e=this._sourceTrack.getSettings().width,t=this._sourceTrack.getSettings().height,i=this._trackProcessor.readable;c.debug(`WebCodecsEncoder started ${e}x${t}, codec ${this.isVP9()?"VP9":"VP8"}`),yield this._createWorker(`var exports=(()=>{var E=Object.defineProperty;var g=i=>E(i,"__esModule",{value:!0});var F=(i,l)=>{g(i);for(var r in l)E(i,r,{get:l[r],enumerable:!0})};var A={};F(A,{default:()=>h});var n=(r=>(r.VP9="vp09.00.50.08",r.VP8="vp8",r))(n||{}),d=(t=>(t.INIT="init",t.READY="ready",t.FRAME="frame",t.ERROR="error",t.DEBUG="debug",t.LOG_ERROR="log_error",t))(d||{});var h=()=>{let i=1e3,l,r,c,s,f,t,a=null,p=0,u=!1;function V(e){l=e.readable,r=l.getReader(),c=e.width,s=e.height,f=e.isVP9,t=e.framerate,m.configure({framerate:t,codec:f?n.VP9:n.VP8,width:c,height:s,latencyMode:"realtime"}),self.postMessage({type:d.READY})}function y(e){p=self.setTimeout(()=>{a&&b(a,e)},i),!u&&(u=!0,r.read().finally(()=>{u=!1,self.clearTimeout(p)}).then(({done:o,value:R})=>{if(a==null||a.close(),a=null,!(o||!R)){if(!m){r.releaseLock(),l.cancel();return}a=R,b(R,e)}}))}function b(e,o){(e.codedWidth!==c||e.codedHeight!==s)&&(c=e.codedWidth,s=e.codedHeight,m.configure({framerate:t,codec:f?n.VP9:n.VP8,width:c,height:s,latencyMode:"realtime"})),m.encode(e,{keyFrame:o})}let m=new VideoEncoder({output:e=>{let o;e.data?o=e.data:(o=new ArrayBuffer(e.byteLength),e.copyTo(o)),self.postMessage({type:d.FRAME,frameType:e.type,timestamp:e.timestamp,duration:e.duration,data:o},[o])},error:e=>{self.postMessage({type:d.FRAME,error:String(e)})}});self.onmessage=e=>{switch(e.data.type){case d.INIT:V(e.data);break;case d.FRAME:y(e.data.keyFrame);break}}};return A;})();
11
- `,r=>{var n;r.error?this._onFrame(null,r.error):this._onFrame({type:r.frameType,timestamp:r.timestamp,duration:r.duration,data:r.data,byteLength:(n=r.data)==null?void 0:n.byteLength})},[],{readable:i,width:e,height:t,isVP9:this.isVP9(),framerate:d.screenFrameRate},[i])})}requestFrame(e=!1){this._sendToWorker(ge.FRAME,{keyFrame:e})}isVP9(){return!0}destroy(){this._removeWorker(),c.debug("WebCodecsEncoder destroyed")}static isBrowserSupported(){return"VideoEncoder"in window&&"Worker"in window&&"EncodedVideoChunk"in window&&"MediaStreamTrackProcessor"in window}};var tn=65536,Fi=0,gt=class{constructor(e,t){this._destroyed=!1;this._needKeyframe=!0;c.debug("ScreenCaptureSender started"),this.DATA_SIZE=d.consumerScreenDataChannelPacketSize-ei,this._datachannel=t;let i=(r,n)=>{if(!this._destroyed){if(!r){c.warn("requestFrame failed, keyFrame: "+this._needKeyframe,n),this._needKeyframe=!0,this._requestFrame();return}this._send(r).catch(s=>{c.warn("sendFrame failed",s),this._needKeyframe=!0}).finally(()=>this._requestFrame())}};_t.isBrowserSupported()?this._encoder=new _t(e,i):this._encoder=new xt(e,i),this._datachannel.onmessage=r=>{ta(r.data)&&(c.debug(`[${this._datachannel.label}] Requested keyframe`),this._needKeyframe=!0)},this._encoder.init().then(()=>this._requestFrame()).catch(r=>c.warn("ScreenCaptureSender init failed",r))}_requestFrame(){this._destroyed||(this._encoder.requestFrame(this._needKeyframe),this._needKeyframe=!1)}_wrapHeader(e,t,i,r,n){let s=Zr(e,t,i,r,Fi,this._encoder.isVP9(),n);return Fi=(Fi+1)%tn,s}_stopPacket(){return this._wrapHeader(Date.now(),!1,!1,!1,null)}_send(e){return o(this,null,function*(){return new Promise((t,i)=>{this._sendChunk(e,0,t,i)})})}_sendChunk(e,t,i,r){if(!this._datachannel||this._datachannel.readyState!=="open"){r();return}let n=e.data.slice(t,t+this.DATA_SIZE),s=e.data.byteLength<=t+n.byteLength,p=this._wrapHeader(e.timestamp,!t,s,e.type==="key",n);this._datachannel.onbufferedamountlow=s?()=>{this._datachannel.bufferedAmount<=this._datachannel.bufferedAmountLowThreshold&&i()}:null;try{this._datachannel.send(p)}catch(l){c.warn("Error send data to DataChannel",l),r();return}s||S.setImmediate(()=>this._sendChunk(e,t+this.DATA_SIZE,i,r))}destroy(){this._datachannel.onbufferedamountlow=null,this._datachannel.onmessage=null,this._datachannel.readyState==="open"&&this._datachannel.send(this._stopPacket()),this._destroyed=!0,this._encoder.destroy(),c.debug("ScreenCaptureSender destroyed")}static isBrowserSupported(){return _t.isBrowserSupported()||xt.isBrowserSupported()}};var Z=class{static get sessionKey(){return Z._sessionKey}static set sessionKey(e){Z._sessionKey=e}static get sessionSecretKey(){return Z._sessionSecretKey}static set sessionSecretKey(e){Z._sessionSecretKey=e}static get accessToken(){return Z._accessToken}static set accessToken(e){Z._accessToken=e}static isEmpty(){return!Z._sessionKey||!Z._sessionSecretKey}};var g=class{static set(e){e.hasOwnProperty("voiceParams")&&(Object.assign(g._params.voiceParams,e.voiceParams),delete e.voiceParams),e.hasOwnProperty("specListenerParams")&&(Object.assign(g._params.specListenerParams,e.specListenerParams),delete e.specListenerParams),e.hasOwnProperty("unifiedPlanBrowsers")&&(Object.assign(g._params.unifiedPlanBrowsers,e.unifiedPlanBrowsers),delete e.unifiedPlanBrowsers),e.hasOwnProperty("apiAuth")&&(Z.accessToken=e.apiAuth.accessToken,Z.sessionKey=e.apiAuth.sessionKey,Z.sessionSecretKey=e.apiAuth.sessionSecretKey),Object.assign(g._params,S.objectFilterOutValues(e,void 0))}static get(e){return g._params[e]}static get appName(){return"ok.calls.sdk.js"}static get appVersion(){return 1.1}static get sdkVersion(){return"2.6.2-dev.c83d2bc.0"}static get debug(){return undefined}static get protocolVersion(){return g._params.joinFromMultipleDevices?6:5}static get platform(){return g._params.platform}static set platform(e){g._params.platform=e}static get clientType(){return g._params.clientType}static set clientType(e){g._params.clientType=e}static get device(){return g._params.device}static get apiKey(){return g._params.apiKey}static get apiEnv(){return g._params.apiEnv}static get apiEndpoint(){switch(g.apiEnv){case"AUTO":case"PROD":return"https://api.mycdn.me";case"PROD_OK":return"https://api.ok.ru";case"TEST":return"https://apitest.ok.ru/api";case"VIDEOTEST":return"https://videotestapi.ok.ru/api";default:return g._params.apiEnv}}static get authToken(){return g._params.authToken}static set authToken(e){g._params.authToken=e}static get anonymToken(){return g._params.anonymToken}static set anonymToken(e){g._params.anonymToken=e}static get domain(){return g._params.domain}static get externalDomain(){return g._params.externalDomain}static get iceServers(){return g._params.iceServers}static set iceServers(e){g._params.iceServers=e}static get wssBase(){return g._params.wssBase}static set wssBase(e){g._params.wssBase=e}static get wssToken(){return g._params.wssToken}static set wssToken(e){g._params.wssToken=e}static get signalingReconnectDelay(){return g._params.signalingReconnectDelay}static get signalingReconnectMaxDelay(){return g._params.signalingReconnectMaxDelay}static get signalingReconnectMaxCount(){return g._params.signalingReconnectMaxCount}static get waitConnectionDelay(){return g._params.waitConnectionDelay}static get waitResponseDelay(){return g._params.waitResponseDelay}static get waitMessageDelay(){return g._params.waitMessageDelay}static get waitAnotherTabDelay(){return g._params.waitAnotherTabDelay}static get debugLog(){return g._params.debugLog}static get forceRelayPolicy(){return g._params.forceRelayPolicy}static set forceRelayPolicy(e){g._params.forceRelayPolicy=e}static get videoMinWidth(){return g._params.videoMinWidth}static get videoMaxWidth(){return g._params.videoMaxWidth}static set videoMaxWidth(e){g._params.videoMaxWidth=e}static get videoMinHeight(){return g._params.videoMinHeight}static get videoMaxHeight(){return g._params.videoMaxHeight}static set videoMaxHeight(e){g._params.videoMaxHeight=e}static get videoAspectRatio(){return g._params.videoAspectRatio}static get videoFrameRate(){return g._params.videoFrameRate}static get videoFacingMode(){return g._params.videoFacingMode}static get screenFrameRate(){return g._params.screenFrameRate}static get videoEffects(){return g._params.videoEffects}static set videoEffects(e){g._params.videoEffects=e}static get videoEffectMaxWidth(){return g._params.videoEffectMaxWidth}static set videoEffectMaxWidth(e){g._params.videoEffectMaxWidth=e}static get videoEffectMaxHeight(){return g._params.videoEffectMaxHeight}static set videoEffectMaxHeight(e){g._params.videoEffectMaxHeight=e}static get voiceParams(){return g._params.voiceParams}static get specListenerParams(){return g._params.specListenerParams}static get iceRestartWaitTime(){return g._params.iceRestartWaitTime}static get transportConnectionWaitTime(){return g._params.transportConnectionWaitTime}static get statisticsInterval(){return g._params.statisticsInterval}static set statisticsInterval(e){g._params.statisticsInterval=e}static get networkStatisticsInterval(){return g._params.networkStatisticsInterval}static get perfStatReportEnabled(){return g._params.perfStatReportEnabled}static get callStatReportEnabled(){return g._params.callStatReportEnabled}static get producerNotificationDataChannel(){return g._params.producerNotificationDataChannel}static get producerCommandDataChannel(){return g._params.producerCommandDataChannel}static get consumerScreenDataChannel(){return g._params.consumerScreenDataChannel&&gt.isBrowserSupported()}static get producerScreenDataChannel(){return g._params.producerScreenDataChannel&&g.producerNotificationDataChannel&&ht.isBrowserSupported()}static get consumerScreenDataChannelPacketSize(){return g._params.consumerScreenDataChannelPacketSize}static get screenShareWebmBuilder(){return g._params.screenShareWebmBuilder}static get noiseSuppression(){return g._params.noiseSuppression}static set noiseSuppression(e){g._params.noiseSuppression=e}static get preferH264(){return g._params.preferH264}static get preferVP9(){return g._params.preferVP9}static get audioNack(){return g._params.audioNack}static get consumerScreenTrack(){return g._params.consumerScreenTrack&&g.consumerScreenDataChannel}static get producerScreenTrack(){return g._params.producerScreenTrack}static isUnifiedPlanSupported(e,t){let i=g._params.unifiedPlanBrowsers;return i.hasOwnProperty(e)?t>=i[e]:!1}static get movieShare(){return g._params.movieShare&&g.videoTracksCount>0}static get videoTracksCount(){return g.producerNotificationDataChannel?g._params.videoTracksCount:0}static get breakVideoPayloadTypes(){return g._params.breakVideoPayloadTypes}static get filteredMessages(){return g._params.filteredMessages}static get useParticipantListChunk(){return g._params.useParticipantListChunk&&g._params.videoTracksCount>0}static get participantListChunkInitIndex(){var e;return(e=g._params.participantListChunkInitIndex)!=null?e:0}static get participantListChunkInitCount(){var e;return(e=g._params.participantListChunkInitCount)!=null?e:null}static get serverAudioRed(){return g._params.serverAudioRed&&b.canPreferRed()}static get p2pAudioRed(){return g._params.p2pAudioRed&&b.canPreferRed()}static get h264spsPpsIdrInKeyframe(){return g._params.h264spsPpsIdrInKeyframe}static get batchParticipantsOnStart(){return g._params.batchParticipantsOnStart}static get filterObservers(){return g._params.filterObservers}static get muteMode(){return g._params.muteMode}static get preserveAudioTracks(){return g._params.preserveAudioTracks}},d=g;d._params={platform:"WEB",clientType:"PORTAL",device:"browser",apiKey:"",authToken:"",anonymToken:"",apiEnv:"AUTO",domain:"",externalDomain:"",iceServers:[],wssBase:"",wssToken:"",signalingReconnectDelay:1e3,signalingReconnectMaxDelay:5e3,signalingReconnectMaxCount:20,waitConnectionDelay:1e4,waitResponseDelay:1e4,waitMessageDelay:15e3,waitAnotherTabDelay:200,debugLog:!1,forceRelayPolicy:!1,videoMinWidth:428,videoMinHeight:240,videoMaxWidth:1280,videoMaxHeight:720,videoAspectRatio:16/9,videoFrameRate:25,screenFrameRate:15,videoEffects:null,videoEffectMaxWidth:640,videoEffectMaxHeight:360,iceRestartWaitTime:2e4,transportConnectionWaitTime:5e3,statisticsInterval:5e3,networkStatisticsInterval:2e4,perfStatReportEnabled:!0,callStatReportEnabled:!1,voiceParams:{smoothing:.8,minFreq:200,maxFreq:5e3,interval:500,threshold:.35,speakerLevelMultiplier:1.8},specListenerParams:{connectionTimeout:1e4,volumeTimeout:1e4},unifiedPlanBrowsers:{Firefox:10,Chrome:76,Safari:12},producerNotificationDataChannel:!0,producerCommandDataChannel:!0,consumerScreenDataChannel:!0,producerScreenDataChannel:!0,consumerScreenDataChannelPacketSize:16*1024,screenShareWebmBuilder:!1,noiseSuppression:!0,preferH264:!1,preferVP9:!0,audioNack:!0,consumerScreenTrack:!0,producerScreenTrack:!0,videoTracksCount:0,movieShare:!1,filteredMessages:!0,useParticipantListChunk:!1,participantListChunkInitIndex:0,participantListChunkInitCount:null,serverAudioRed:!1,p2pAudioRed:!1,h264spsPpsIdrInKeyframe:!1,breakVideoPayloadTypes:!1,batchParticipantsOnStart:!0,joinFromMultipleDevices:!0,filterObservers:!1,muteMode:!1,preserveAudioTracks:!1};var J=(l=>(l.WAITING_HALL="WAITING_HALL",l.WAITING="WAITING",l.CONNECTING="CONNECTING",l.CONNECTED="CONNECTED",l.RECONNECT="RECONNECT",l.ERROR="ERROR",l.HANGUP="HANGUP",l.PERMISSIONS="PERMISSIONS",l))(J||{});function j(a,...e){let t=d.get(a);t&&setTimeout(t,0,...e)}function Se(a,e,...t){if(d.filterObservers){if(Array.isArray(e)){if(e=e.filter(i=>!i.observer),!e.length)return}else if(e.observer)return}j(a,e,...t)}function Ve(a){return Object.assign({},a)}function et(a){return a.slice()}var Gi;(ce=>{function a(_,y){j("onLocalStream",_,Ve(y))}ce.onLocalStream=a;function e(_,y){j("onScreenStream",_,Ve(y))}ce.onScreenStream=e;function t(_,y){j("onLocalStreamUpdate",Ve(_),y)}ce.onLocalStreamUpdate=t;function i(_){j("onLocalStatus",_)}ce.onLocalStatus=i;function r(_,y){Se("onRemoteStream",_,y)}ce.onRemoteStream=r;function n(_,y,O){Se("onRemoteLive",_,y,O)}ce.onRemoteLive=n;function s(_,y){Se("onRemoteScreenStream",_,y)}ce.onRemoteScreenStream=s;function p(_,y,O,Y){Se("onConversation",_,Ve(y),Ve(O),Y)}ce.onConversation=p;function l(_){_&&j("onConversationParticipantListChunk",_)}ce.onConversationParticipantListChunk=l;function u(_,y,O){Se("onRemoteMediaSettings",_,Ve(y),O)}ce.onRemoteMediaSettings=u;function R(_,y){Se("onParticipantAdded",_,y)}ce.onParticipantAdded=R;function D(_,y){Se("onParticipantJoined",_,y)}ce.onParticipantJoined=D;function x(_,y,O){Se("onRemoteParticipantState",_,Ve(y),O)}ce.onRemoteParticipantState=x;function L(_,y,O=null){Se("onRemoteStatus",_,y,O)}ce.onRemoteStatus=L;function q(_,y,O=null){Se("onParticipantStatus",_,y,O)}ce.onParticipantStatus=q;function ue(){j("onPermissionsRequested")}ce.onPermissionsRequested=ue;function Ne(_){j("onPermissionsError",_)}ce.onPermissionsError=Ne;function pe(_,y){Se("onRemoteRemoved",_,y)}ce.onRemoteRemoved=pe;function Ye(_,y,O){j("onCallState",_,y,Ve(O))}ce.onCallState=Ye;function oe(_,y){j("onDeviceSwitched",_,y)}ce.onDeviceSwitched=oe;function Pe(_,y,O,Y=!1,Te=!1,gi=null,ya=null,Pa,nr){let Ra=nr?et(nr):void 0;j("onMuteStates",Ve(_),et(y),et(O),Y,Te,gi,ya,Pa,Ra)}ce.onMuteStates=Pe;function Re(_,y){Se("onRolesChanged",_,et(y))}ce.onRolesChanged=Re;function Tt(_){j("onLocalRolesChanged",et(_))}ce.onLocalRolesChanged=Tt;function tr(_,y,O){Se("onPinnedParticipant",_,y,O)}ce.onPinnedParticipant=tr;function z(_){j("onLocalPin",_)}ce.onLocalPin=z;function ir(_){j("onOptionsChanged",et(_))}ce.onOptionsChanged=ir;function rr(){j("onCallAccepted")}ce.onCallAccepted=rr;function ar(){j("onRateNeeded")}ce.onRateNeeded=ar;function $(_){Se("onSpeakerChanged",_)}ce.onSpeakerChanged=$;function hi(_){j("onVolumesDetected",et(_))}ce.onVolumesDetected=hi;function _i(_,y){j("onLocalVolume",_,y)}ce.onLocalVolume=_i;function h(_,y){j("onJoinStatus",_,y)}ce.onJoinStatus=h;function I(_,y){j("onHangup",_,y)}ce.onHangup=I;function C(_){j("onMultipartyChatCreated",Ve(_))}ce.onMultipartyChatCreated=C;function f(){j("onDeviceChange")}ce.onDeviceChange=f;function P(_){j("onFingerprintChange",_)}ce.onFingerprintChange=P;function U(){j("onTokenExpired")}ce.onTokenExpired=U;function M(_,y,O=!1){j("onChatMessage",_,y,O)}ce.onChatMessage=M;function k(_,y,O=!1){j("onCustomData",_,y,O)}ce.onCustomData=k;function ie(_,y,O,Y,Te,gi){j("onRecordStarted",_,y,O,Y,Te,gi)}ce.onRecordStarted=ie;function be(){j("onRecordStopped")}ce.onRecordStopped=be;function He(_){j("onLocalNetworkStatusChanged",_)}ce.onLocalNetworkStatusChanged=He;function Me(_){j("onNetworkStatusChanged",_)}ce.onNetworkStatusChanged=Me;function De(_,...y){j("onDebugMessage",_,...y)}ce.onDebugMessage=De;function Ae(_,y){let O=Object.assign({},_,{memory:y});j("onStatistics",O)}ce.onStatistics=Ae;function Ue(){j("onAutoplayError")}ce.onAutoplayError=Ue;function ke(_,y,O){j("onChatRoomUpdated",_,y,O)}ce.onChatRoomUpdated=ke;function Ct(_){j("onRemoteMixedAudioStream",_)}ce.onRemoteMixedAudioStream=Ct;function nt(_){j("onJoinLinkChanged",_)}ce.onJoinLinkChanged=nt;function K(_){j("onFeedback",_)}ce.onFeedback=K})(Gi||(Gi={}));var E=Gi;var ra=(r=>(r.DEBUG="DEBUG",r.LOG="LOG",r.WARN="WARN",r.ERROR="ERROR",r))(ra||{}),Hi;(oe=>{let a="📞",e=(Pe,...Re)=>{E.onDebugMessage(Pe,...Re)},t=!1,i=(Pe,Re)=>(...Tt)=>{Pe(...Tt),Ur(Re,Tt)},r=console.debug.bind(console,a),n=console.log.bind(console,a),s=console.warn.bind(console,a),p=console.error.bind(console,a),l=e.bind(null,"DEBUG"),u=e.bind(null,"LOG"),R=e.bind(null,"WARN"),D=e.bind(null,"ERROR");oe.debug=l,oe.log=u,oe.warn=R,oe.error=D;function Ne(){return t}oe.enabled=Ne;function pe(Pe){t=Pe,d.debugLog&&Ci(),Pe?(oe.debug=d.debugLog?i(r,"DEBUG"):r,oe.log=d.debugLog?i(n,"LOG"):n,oe.warn=d.debugLog?i(s,"WARN"):s,oe.error=d.debugLog?i(p,"ERROR"):p):(oe.debug=d.debugLog?i(l,"DEBUG"):l,oe.log=d.debugLog?i(u,"LOG"):u,oe.warn=d.debugLog?i(R,"WARN"):R,oe.error=d.debugLog?i(D,"ERROR"):D)}oe.toggle=pe;function Ye(Pe,...Re){switch(Pe){case"DEBUG":oe.debug(...Re);break;case"LOG":oe.log(...Re);break;case"WARN":oe.warn(...Re);break;case"ERROR":oe.error(...Re);break}}oe.send=Ye})(Hi||(Hi={}));var c=Hi;var ft=(i=>(i.USER="USER",i.ANONYM="ANONYM",i.GROUP="GROUP",i))(ft||{}),he;(p=>{function a(l){return l.length?typeof l[0]=="object"?l:l.map(u=>e(u)):[]}p.fromIds=a;function e(l,u="USER"){return{id:l,type:u}}p.fromId=e;function t(l){return{id:l.id,type:l.type==="ANONYM"?"ANONYM":"USER"}}p.fromSignaling=t;function i(l){return`{"id":"${l.id}","type":"${l.type}"}`}p.toString=i;function r(l,u="USER"){return i(e(l,u))}p.fromIdToString=r;function n(l){try{return JSON.parse(l)}catch(u){throw new Error(`Failed to parse ExternalId from string '${l}'`)}}p.fromString=n;function s(l,u){return l.id===u.id&&l.type===u.type}p.compare=s})(he||(he={}));var le;(r=>{function a(n,s="USER",p=0){return{id:n,type:s,deviceIdx:p}}r.fromId=a;function e(n){return`{"id":"${n.id}","type":"${n.type}","deviceIdx":"${n.deviceIdx}"}`}r.toString=e;function t(n,s){return Object.assign({deviceIdx:s},he.fromSignaling(n))}r.fromSignaling=t;function i(n){return n&&typeof n=="object"?n.deviceIdx:0}r.getDeviceIdx=i})(le||(le={}));var rn="kf";function Lt(a){return a.stopStream}function Wi(a){return a.keyFrameRequested}function aa(a){if(Lt(a))return"ss";if(Wi(a))return rn;let e="";return a.priority!==void 0&&(e+="p="+a.priority),a.width!==void 0&&a.height!==void 0&&(e!==""&&(e+=":"),e+="sz="+Math.round(a.width)+"x"+Math.round(a.height)),a.fit!==void 0&&(e!==""&&(e+=":"),e+="fit="+a.fit),e}var ve=(r=>(r.CAMERA="CAMERA",r.SCREEN="SCREEN",r.STREAM="STREAM",r.MOVIE="MOVIE",r))(ve||{}),na="s",sa="m";function Fe(a){return a.participantId+(a.mediaType?pt+na+a.mediaType:"")+(a.streamName?pt+sa+a.streamName:"")}function Nt(a){let e=a.split(pt),t=e.shift();if(!t)throw new Error("Illegal stream description: "+a);let i=null,r,n=0;for(let p of e)switch(p.charAt(0)){case na:i=an(p.slice(1));break;case sa:r=p.slice(1);break;case jt:n=Number.parseInt(p.slice(1),10);break;default:throw new Error("Unexpected parameter type "+p.charAt(0)+" in stream description "+a)}return{participantId:S.compose(t,n),mediaType:i,streamName:r}}function an(a){for(let e of Object.keys(ve))if(e===a)return ve[e];return null}function ji(a,e){return a===null||e===null?a===null&&e===null:!(a.maxDimension!==e.maxDimension||a.maxBitrateK!==e.maxBitrateK||a.maxFramerate!==e.maxFramerate||a.degradationPreference!==e.degradationPreference)}function ii(a,e){return!(!ji(a.camera,e.camera)||!ji(a.screenSharing,e.screenSharing))}function Ki(a,e){return{camera:Object.assign({},a.camera,e.camera),screenSharing:Object.assign({},a.screenSharing,e.screenSharing)}}function oa(a){try{return btoa(JSON.stringify(a))}catch(e){c.warn("WaitingParticipant: failed convert to string",a,e)}return null}function ca(a){try{return JSON.parse(atob(a))}catch(e){c.warn("WaitingParticipant: failed convert from string",a,e)}return null}var St=(a,e)=>S.objectReduce(a,(t,i,r)=>(i===e&&t.push(r),t),[]);var Ut=class{constructor(e){this._fixNoPacketsApplied=!1;this._fixNoPacketsChecked=!1;this._fixTooManyPacketsApplied=!1;this._fixTooManyPacketsSucceeded=!1;this._fixTooManyPacketsFailed=!1;this._mediaSource=e}_fixAudioDeviceNoPackets(e){if(!(this._fixNoPacketsApplied&&this._fixNoPacketsChecked)){if(this._fixNoPacketsApplied&&!this._fixNoPacketsChecked){this._fixNoPacketsChecked=!0,m.log(v.ERROR,`audio_device_recover_${e.bandwidth?"success":"fail"}`);return}!this._fixNoPacketsApplied&&!e.bandwidth&&(this._fixNoPacketsApplied=!0,m.log(v.ERROR,"audio_device_recover"),this._mediaSource.toggleAudio(!0))}}_fixAudioDeviceTooManyPackets(e){if(this._fixTooManyPacketsSucceeded||this._fixTooManyPacketsFailed)return;let t=75,i=Date.now();if(!this._lastPacketsSentTime)e.packetsSent>0&&(this._lastPacketsSentTime=i,this._lastPacketsSent=e.packetsSent);else if(i-this._lastPacketsSentTime>500){let r=(e.packetsSent-this._lastPacketsSent)*1e3/(i-this._lastPacketsSentTime);this._lastPacketsSentTime=i,this._lastPacketsSent=e.packetsSent,this._fixTooManyPacketsApplied?r>t?(c.log("Failed to fix RV"),m.log(v.ERROR,"audio_device_recover_rv_fail"),this._fixTooManyPacketsFailed=!0):i-this._fixTooManyPacketsTime>6e4&&(c.log("Fixed RV"),m.log(v.ERROR,"audio_device_recover_rv_success"),this._fixTooManyPacketsSucceeded=!0):r>t&&(this._fixTooManyPacketsApplied=!0,c.log("Trying to fix RV"),this._mediaSource.toggleAudio(!0),this._fixTooManyPacketsTime=i)}}fix(e){if(!this._mediaSource)return;let t=e.find(i=>i.kind===ae.audio);!t||(this._fixAudioDeviceNoPackets(t),this._fixAudioDeviceTooManyPackets(t))}};var ri=class{constructor(){this._output=null;this._volume=1;this._features={setSinkId:!!Audio.prototype.setSinkId}}add(e){this.destroy(),this._output={},this._output.audioTrack=e,this._initAudioElement()}remove(e){!this._output||this._output.audioTrack!==e||this.destroy()}get volume(){return this._volume}set volume(e){this._volume=Math.max(0,Math.min(1,e)),this._output&&this._output.audioElement&&(this._output.audioElement.volume=this._volume)}_initAudioElement(){var s;if(d.muteMode||!((s=this._output)==null?void 0:s.audioTrack))return;let e=b.browserName()!=="Safari"||b.isMobile(),t=document.createElement(e?"audio":"video");t.muted=!1,t.volume=this._volume,t.preload="auto";let i=()=>{c.warn("Error on play audio"),E.onAutoplayError()},r=p=>{t.srcObject=new MediaStream([p]),t.load();let l=t.play();l?l.catch(i):i()},n=()=>{var l;c.debug("Recover audio playback");let p=(l=this._output)==null?void 0:l.audioTrack;p?r(p):c.warn("Broken audio track")};t.onpause=n,t.onstalled=n,t.onerror=n,r(this._output.audioTrack),this._output.audioElement=t}_stopAudioElement(){var e,t,i;((e=this._output)==null?void 0:e.audioElement)&&(this._output.audioElement.pause(),this._output.audioElement.srcObject=null),(i=(t=this._output)==null?void 0:t.audioTrack)==null||i.stop()}destroy(){!this._output||(this._stopAudioElement(),this._output=null)}changeOutput(){return o(this,null,function*(){var e,t,i;try{if(!this._features.setSinkId)throw new Error('Feature "setSinkId" is not supported');if(!((e=this._output)==null?void 0:e.audioElement))throw new Error("Audio Element is not initialized");let r=b.getSavedOutput();r&&(yield(i=(t=this._output.audioElement).setSinkId)==null?void 0:i.call(t,r.deviceId))}catch(r){throw m.log(v.ERROR,"change_output"),c.error("Output change failed",r),r}})}};var nn=90,sn=3,ai=class extends X{constructor(){super(...arguments);this._lastMemoryStat={percent:0,bytes:0}}onRemoteDataStats(e,t){this._calcMemory(),e.inbound.rtps.map(i=>{let r=typeof i.userId=="string"&&t[i.userId]||null;i.userId=r==null?void 0:r.externalId}),E.onStatistics(e,this._lastMemoryStat)}_calcMemory(){var r;let e=(r=window==null?void 0:window.performance)==null?void 0:r.memory;if(!e||!e.usedJSHeapSize||!e.jsHeapSizeLimit)return;let t=Number((100*e.usedJSHeapSize/e.jsHeapSizeLimit).toFixed(2)),i=Number((e.usedJSHeapSize/1024/1024).toFixed(1));t>nn?c.warn(`High memory usage: ${t}% (${i} MiB)`):(!this._lastMemoryStat.percent||Math.abs(t-this._lastMemoryStat.percent)>=sn)&&(c.debug(`Memory usage: ${t}% (${i} MiB)`),this._lastMemoryStat.percent=t,this._lastMemoryStat.bytes=e.usedJSHeapSize)}};var on=44100,Bt=class{constructor(e,t){this._analyser=null;this._gainNode=null;this._fftBins=null;this._mediaStreamSource=null;this._lastSmoothedLevel=0;this._trackId=e,this._stream=t;try{let i=b.getAudioContext();this._gainNode=i.createGain(),this._gainNode.gain.value=1e-5,this._gainNode.connect(i.destination),this._analyser=i.createAnalyser(),this._analyser.fftSize=1024,this._analyser.smoothingTimeConstant=0,this._analyser.connect(this._gainNode),this._fftBins=new Uint8Array(this._analyser.frequencyBinCount),this._mediaStreamSource=i.createMediaStreamSource(t),this._mediaStreamSource.connect(this._analyser)}catch(i){}}get stream(){return this._stream}get trackId(){return this._trackId}_getBins(){if(!this._fftBins||!this._analyser)return new Uint8Array;this._analyser.getByteFrequencyData(this._fftBins);let e=on/this._fftBins.length,t=Math.ceil(d.voiceParams.minFreq/e),i=Math.floor(d.voiceParams.maxFreq/e);return this._fftBins.subarray(t,i)}getLevel(){let e=this._getBins(),i=e.reduce((n,s)=>n+s,0)/e.length/255,r=this._lastSmoothedLevel*d.voiceParams.smoothing+i*(1-d.voiceParams.smoothing);return this._lastSmoothedLevel=r,{real:i,smoothed:r}}destroy(){this._mediaStreamSource&&(this._mediaStreamSource.disconnect(),this._mediaStreamSource=null),this._gainNode&&(this._gainNode.disconnect(),this._gainNode=null),this._analyser&&(this._analyser.disconnect(),this._analyser=null,this._fftBins=null,this._lastSmoothedLevel=0)}};var ni=class extends X{constructor(e){super();this._detector=null;this._track=null;this._interval=null;let t=()=>{this._detector&&E.onLocalVolume(this._detector.getLevel().real,e.getMediaSettings().isAudioEnabled),this._interval=window.setTimeout(t,d.voiceParams.interval)};this._interval=window.setTimeout(t,d.voiceParams.interval);let i=()=>{let r=e.getStream();r&&this.init(r)};this.subscribe(e,Ee.SOURCE_CHANGED,r=>{r.kind===ae.audio&&r.mediaSettings.isAudioEnabled&&i()}),i()}init(e){this._stopDetector();let t=e.getAudioTracks();t.length&&(this._track=t[0].clone(),this._detector=new Bt("local",new MediaStream([this._track])))}_stopDetector(){this._detector&&(this._detector.destroy(),this._detector=null),this._track&&(this._track.stop(),this._track=null)}destroy(){this.unsubscribe(),this._interval&&(window.clearTimeout(this._interval),this._interval=null),this._stopDetector()}};var da="videochat-epi",cn=5e3,dn=3e4,tt=class extends X{constructor(e,t,i=!1){super();this._previousTimestamp=0;this._previousCallStatReportTimestamp=0;this._previousCallStatReport={nack_sent:0,nack_received:0,pli_sent:0,pli_received:0,fir_sent:0,fir_received:0,frames_dropped:0,jitter_video:0,jitter_audio:0,interframe_delay_variance:0,total_audio_samples_received:0,concealed_audio_samples:0,inserted_audio_samples_for_deceleration:0,removed_audio_samples_for_acceleration:0,silent_concealed_audio_samples:0,audio_concealment_events:0,total_audio_energy:0};this._signaling=t,this._directTopology=i,this.subscribe(e,G.REMOTE_DATA_STATS,this._handleStats.bind(this))}destroy(){this.unsubscribe()}static getEstimatedPerformanceIndex(){try{let e=parseInt(localStorage.getItem(da)||"",10);return isNaN(e)?0:e}catch(e){return 0}}_handleStats(e){return o(this,null,function*(){if(!e.inbound||!e.inbound.rtps)return;let t=Date.now();!this._directTopology&&d.perfStatReportEnabled&&this._previousTimestamp+cn<=t&&(yield this.reportPerfStats(e),this._previousTimestamp=t),d.callStatReportEnabled&&this._previousCallStatReportTimestamp+dn<=t&&(this._reportCallStats(e),this._previousCallStatReportTimestamp=t)})}reportPerfStats(e){return o(this,null,function*(){let t=e.inbound.rtps.reduce((i,r)=>(r.kind==="video"&&(i.framesDecoded+=r.framesDecoded||0,i.framesReceived+=r.framesReceived||0),i),{framesDecoded:0,framesReceived:0});if(t.framesDecoded)try{let i=yield this._signaling.reportPerfStat(t);localStorage.setItem(da,i.estimatedPerformanceIndex)}catch(i){}})}_reportCallStats(e){let t={nack_received:0,pli_received:0,fir_received:0,frames_dropped:0,jitter_video:0,jitter_audio:0,interframe_delay_variance:0,nack_sent:0,pli_sent:0,fir_sent:0,total_audio_samples_received:0,concealed_audio_samples:0,silent_concealed_audio_samples:0,inserted_audio_samples_for_deceleration:0,removed_audio_samples_for_acceleration:0,audio_concealment_events:0,total_audio_energy:0,inbound_video_count:0,inbound_audio_count:0};e.inbound.rtps.reduce((r,n)=>(n.kind==="video"?(n.framesReceived&&(r.jitter_video=r.jitter_video*r.inbound_video_count/(r.inbound_video_count+1)+n.jitter*1e3/(r.inbound_video_count+1),r.interframe_delay_variance=r.interframe_delay_variance*r.inbound_video_count/(r.inbound_video_count+1)+n.interframeDelayVariance*1e6/(r.inbound_video_count+1),r.inbound_video_count++),r.frames_dropped+=n.framesDropped,r.nack_sent+=n.nackCount,r.pli_sent+=n.pliCount,r.fir_sent+=n.firCount):(n.totalSamplesReceived&&(r.jitter_audio=r.jitter_audio*r.inbound_audio_count/(r.inbound_audio_count+1)+n.jitter*1e3/(r.inbound_audio_count+1),r.total_audio_energy=r.total_audio_energy*r.inbound_audio_count/(r.inbound_audio_count+1)+n.totalAudioEnergy/(r.inbound_audio_count+1),r.inbound_audio_count++),r.total_audio_samples_received+=n.totalSamplesReceived,r.inserted_audio_samples_for_deceleration+=n.insertedSamplesForDeceleration,r.removed_audio_samples_for_acceleration+=n.removedSamplesForAcceleration,r.concealed_audio_samples+=n.concealedSamples,r.silent_concealed_audio_samples+=n.silentConcealedSamples,r.audio_concealment_events+=n.concealmentEvents),r),t),e.outbound.rtps.reduce((r,n)=>(n.kind==="video"&&(r.nack_received+=n.nackCount,r.pli_received+=n.pliCount,r.fir_received+=n.firCount),r),t);let i={call_topology:this._directTopology?"D":"S",nack_sent:t.nack_sent-this._previousCallStatReport.nack_sent,nack_received:t.nack_received-this._previousCallStatReport.nack_received,pli_sent:t.pli_sent-this._previousCallStatReport.pli_sent,pli_received:t.pli_received-this._previousCallStatReport.pli_received,fir_sent:t.fir_sent-this._previousCallStatReport.fir_sent,fir_received:t.fir_received-this._previousCallStatReport.fir_received,frames_dropped:t.frames_dropped-this._previousCallStatReport.frames_dropped};if(t.jitter_video&&(i.jitter_video=t.jitter_video),t.jitter_audio&&(i.jitter_audio=t.jitter_audio),t.interframe_delay_variance&&(i.interframe_delay_variance=t.interframe_delay_variance),t.total_audio_samples_received){let r=t.total_audio_samples_received-this._previousCallStatReport.total_audio_samples_received,n=t.inserted_audio_samples_for_deceleration-this._previousCallStatReport.inserted_audio_samples_for_deceleration,s=t.removed_audio_samples_for_acceleration-this._previousCallStatReport.removed_audio_samples_for_acceleration,p=t.concealed_audio_samples-this._previousCallStatReport.concealed_audio_samples,l=t.silent_concealed_audio_samples-this._previousCallStatReport.silent_concealed_audio_samples,u=t.audio_concealment_events-this._previousCallStatReport.audio_concealment_events;i.inserted_audio_samples_for_deceleration=n/r*1e3,i.removed_audio_samples_for_acceleration=s/r*1e3,i.concealed_audio_samples=p/r*1e3,i.concealed_silent_audio_samples=l/r*1e3,i.concealment_audio_avg_size=p/u,i.total_audio_energy=t.total_audio_energy}m.logCustom("callStat",i),c.log("Sent call stats",i),this._previousCallStatReport=t}};var pn=1e3;function ne(a,e,t=0){return e in a&&a[e]?a[e]:t}function pa(...a){return e=>{for(let t of a)if(t(e))return!0;return!1}}function Je(a,e){return t=>t[a]===e}function ln(a){return(e,t)=>e[a]-t[a]}function si(a,e){return e.reduce((t,i)=>(t[i[a]]=i,t),{})}function un(a){let e={},t=[];for(let i of a)e[i.id]||(e[i.id]=!0,t.push(i));return t}function mn(a){return a!==null&&typeof a=="object"&&!Array.isArray(a)}function qi(a){return Object.keys(a).filter(e=>a[e]!==void 0).map(e=>[e,a[e]]).reduce((e,t)=>(e[t[0]]=mn(t[1])?qi(t[1]):t[1],e),{})}function hn(a){let e=[];for(let t of a)t.forEach(i=>e.push(i));return e}function _n(a){return o(this,null,function*(){let e=[];return RTCRtpReceiver.prototype.getStats?(e.push(...a.getReceivers().map(t=>t.getStats())),e.push(...a.getSenders().map(t=>t.getStats()))):e.push(a.getStats()),Promise.all(e).then(hn).then(un)})}function gn(a){let e=a.filter(Je("type","candidate-pair")).sort(ln("priority")).find(pa(Je("nominated",!0),Je("selected",!0)));if(!e)return{totalRoundTripTime:0,currentRoundTripTime:0,bytesSent:0,bytesReceived:0};let t={totalRoundTripTime:e.totalRoundTripTime||0,currentRoundTripTime:e.currentRoundTripTime||0,bytesSent:e.bytesSent,bytesReceived:e.bytesReceived},i=a.find(Je("id",e.remoteCandidateId));i&&(t=Object.assign({},t,{remote:{type:i.candidateType,address:i.ip||i.address,port:i.port,protocol:i.protocol}}));let r=a.find(Je("id",e.localCandidateId));return r&&(t=Object.assign({},t,{local:{type:r.candidateType,address:r.ip||r.address,port:r.port,protocol:r.protocol,relayProtocol:r.relayProtocol,networkType:r.networkType}})),qi(t)}function fn(a,e){let t=si("id",a),i=a.filter(pa(Je("type","inbound-rtp"),Je("type","outbound-rtp")));b.browserName()==="Firefox"&&(i=Object.values(i.reduce((n,s)=>{if(!n[s.ssrc])n[s.ssrc]=s;else{let p=Object.assign({},n[s.ssrc],s),l=n[s.ssrc].isRemote?s:n[s.ssrc];p.id=l.id,p.type=l.type,delete p.isRemote,delete p.remoteId,n[p.ssrc]=p}return n},{})));let r={};if(b.browserName()==="Safari"){let n=a.filter(Je("type","track"));r=si("trackIdentifier",n)}return i.map(n=>{let s=Number(n.ssrc),p=n.mediaType||n.kind,l=n.trackId,u=n.type,R=n.codecId;if(b.browserName()==="Safari"){let x=/^.+_([\d]+)$/.exec(n.id);if(x&&(s=parseInt(x[1],10)),p=n.id.indexOf("Audio")>0?"audio":"video",e[s]){let L=p+"-"+e[s];r[L]&&(l=r[L].id)}}if(!u||!s||!p)return null;let D={ssrc:s,type:u,kind:p,bytesReceived:ne(n,"bytesReceived"),bytesSent:ne(n,"bytesSent"),jitter:ne(n,"jitter"),packetsLost:ne(n,"packetsLost"),packetsReceived:ne(n,"packetsReceived"),packetsSent:ne(n,"packetsSent"),fractionLost:ne(n,"fractionLost"),pliCount:ne(n,"pliCount"),firCount:ne(n,"firCount"),nackCount:ne(n,"nackCount"),userId:e[s]};if(p==="video"){let x=ne(n,"framesDecoded"),L=ne(n,"totalInterFrameDelay"),q=ne(n,"totalSquaredInterFrameDelay");D.interframeDelayVariance=(q-L*L/x)/x}if(p==="audio"&&(D.totalSamplesReceived=ne(n,"totalSamplesReceived"),D.concealedSamples=ne(n,"concealedSamples"),D.insertedSamplesForDeceleration=ne(n,"insertedSamplesForDeceleration"),D.removedSamplesForAcceleration=ne(n,"removedSamplesForAcceleration"),D.silentConcealedSamples=ne(n,"silentConcealedSamples"),D.concealmentEvents=ne(n,"concealmentEvents"),D.totalAudioEnergy=ne(n,"totalAudioEnergy")),R&&t[R]){let x=t[R];D.clockRate=x.clockRate,D.mimeType=x.mimeType}if(l&&t[l]){let x=t[l];D.frameHeight=x.frameHeight,D.frameWidth=x.frameWidth,D.framesDecoded=x.framesDecoded,D.framesReceived=x.framesReceived,D.framesDropped=x.framesDropped}return qi(D)}).filter(n=>!!n)}function Sn(a,e){if(!e||!e.rtps||!a.rtps)return a;let t=si("ssrc",a.rtps),i=si("ssrc",e.rtps),r=(a.timestamp-e.timestamp)/1e3;return!t||!i||Object.keys(t).forEach(n=>{let s=t[n],p=i[n];if(!(!s||!p)){if(s.bytesReceived&&s.bytesReceived>p.bytesReceived&&(s.bandwidth=Math.round((s.bytesReceived-p.bytesReceived)/r)),s.bytesSent&&s.bytesSent>p.bytesSent&&(s.bandwidth=Math.round((s.bytesSent-p.bytesSent)/r)),s.packetsReceived)if(s.packetsReceived>p.packetsReceived||s.packetsLost>p.packetsLost){let l=s.packetsLost-p.packetsLost,u=s.packetsReceived-p.packetsReceived;s.packetLoss=parseFloat((100*l/(l+u)).toFixed(2))}else s.packetLoss=0;s.framesDropped&&p.framesDropped&&s.framesDropped>p.framesDropped&&(s.framesDroppedDelta=parseFloat(((s.framesDropped-p.framesDropped)/r).toFixed(0)))}}),a}function Vt(i,r){return o(this,arguments,function*(a,e,t={}){let n=yield _n(a),s={timestamp:Date.now(),transport:gn(n),rtps:fn(n,t)};return e?Sn(s,e):(yield S.delay(pn),Vt(a,s,t))})}var oi=.8,it=class extends X{constructor(e,t,i,r,n){super();this._remoteSDP={};this._remoteCandidates={};this._state=F.IDLE;this._isOpen=!1;this._remotePeerId=null;this._statInterval=null;this._settingsInterval=null;this._failedOnCreate=null;this._remoteStream=null;this._iceRestartTimeout=null;this._reconnectionTimeout=null;this._reconnectionPrevented=!1;this._fingerprint=null;this._neverConnected=!0;this._prevConsumerSettings={};this._lastNetworkStat={rtt:0,loss:0,date:0};this._remoteNetworkStat={rtt:0,loss:0};this._networkLimits={badNet:{loss:3,rtt:1e3},goodNet:{loss:.5,rtt:600}};if(this._signaling=i,this._mediaSource=r,this._participantId=e,this._isMaster=t,this._serverSettings=n,this._perfStatReporter=new tt(this,i,!0),this.subscribe(this._signaling,_e.NOTIFICATION,this._onSignalingNotification.bind(this)),this.subscribe(this._mediaSource,Ee.TRACK_REPLACED,this._onReplacedTrack.bind(this)),this.subscribe(this._mediaSource,Ee.SOURCE_CHANGED,this._applySettings.bind(this)),this._pc=new RTCPeerConnection({iceServers:d.iceServers,iceTransportPolicy:d.forceRelayPolicy?"relay":"all"},{optional:[{googSuspendBelowMinBitrate:!1}]}),this._pc.onicecandidate=this._handleIceCandidate.bind(this),this._pc.ontrack=this._onAddTrack.bind(this),this._pc.oniceconnectionstatechange=this._onIceConnectionStateChange.bind(this),this._pc.onconnectionstatechange=this._onConnectionStateChange.bind(this),this._pc.onsignalingstatechange=this._onSignalingStateChange.bind(this),this._prevConsumerSettings={},this._isMaster){try{this._mediaSource.addTrackToPeerConnection(this._pc,!1,!0,d.p2pAudioRed),this._applySettings()}catch(s){m.log(v.ERROR,"addTrack-direct"),c.error("Unable to add media source tracks",s,{participantId:this._participantId}),this._failedOnCreate=s;return}this._createOffer(!1).catch(s=>{this._state===F.IDLE?this._failedOnCreate=s:this.close(s)})}this._startSettingsInterval(),this._startStatInterval()}getState(){return this._state}updateStatisticsInterval(){this._stopStatInterval();let e=this.getState();e!==F.IDLE&&e!==F.CLOSED&&e!==F.FAILED&&this._startStatInterval()}open(e=null){return o(this,null,function*(){if(this._isOpen){c.warn("DirectTransport: Already opened",{participantId:this._participantId});return}if(this._failedOnCreate){this.close(this._failedOnCreate);return}if(c.debug("DirectTransport: Open transport",{participantId:this._participantId}),this._isOpen=!0,this._remotePeerId=e,!this._isMaster)try{this._mediaSource.addTrackToPeerConnection(this._pc,!1,!0,d.p2pAudioRed),this._applySettings()}catch(i){m.log(v.ERROR,"addTrack-direct"),c.error("DirectTransport: Unable to add media source tracks",i,{participantId:this._participantId}),this.close(i);return}this._setState(F.OPENED);let t=e;if(!e){let i=Object.keys(this._remoteSDP);t=i[i.length-1]}if(t&&this._remoteSDP[t])try{yield this._setRemoteDescription(t,this._remoteSDP[t])}catch(i){this.close();return}this._remoteSDP={},this._remoteCandidates={}})}updateSettings(e){ii(e,this._serverSettings)||(this._serverSettings=e,this._applySettings())}preventRestart(){this._reconnectionPrevented=!0}allowRestart(){this._reconnectionPrevented=!1}close(e){this._isOpen=!1,this._stopReconnection(),this._remoteStream&&(this._remoteStream.getTracks().forEach(t=>{t.stop(),this._triggerEvent(G.REMOTE_TRACK_REMOVED,this._remoteStream,t)}),this._remoteStream=null),this._stopStatInterval(),this._stopSettingsInterval(),this._pc&&(this._pc.onicecandidate=null,this._pc.ontrack=null,this._pc.oniceconnectionstatechange=null,this._pc.onconnectionstatechange=null,this._pc.onsignalingstatechange=null,this._pc.close()),this.unsubscribe(),e?(c.error("DirectTransport: Closed",e,{participantId:this._participantId}),this._setState(F.FAILED)):(c.debug("DirectTransport: Closed",{participantId:this._participantId}),this._setState(F.CLOSED)),this._triggerEvent(G.PEER_CONNECTION_CLOSED)}_setState(e){this._state!==e&&(c.debug(`DirectTransport: State changed to ${e}`,{participantId:this._participantId}),this._state=e,this._triggerEvent(G.STATE_CHANGED,e))}_onSignalingNotification(e){var t,i,r,n;switch(e.notification){case w.TRANSMITTED_DATA:this._handleTransmittedData(e);break;case w.SETTINGS_UPDATE:Object.assign(this._networkLimits.badNet,((t=e.settings)==null?void 0:t.badNet)||{}),Object.assign(this._networkLimits.goodNet,((i=e.settings)==null?void 0:i.goodNet)||{});break;case w.CUSTOM_DATA:e.data.hasOwnProperty("sdk")&&(this._remoteNetworkStat.rtt=((r=e.data.sdk)==null?void 0:r.rtt)||0,this._remoteNetworkStat.loss=((n=e.data.sdk)==null?void 0:n.loss)||0);break}}_handleTransmittedData(e){let t=e.data,i=S.getPeerIdString(e.peerId);S.composeMessageId(e)===this._participantId&&(t.candidate&&t.candidate.candidate?this._addIceCandidate(i,t.candidate).catch(this.close.bind(this)):t.sdp&&this._setRemoteDescription(i,t.sdp).catch(this.close.bind(this)))}_addIceCandidate(e,t){return o(this,null,function*(){if(this._isOpen&&(!this._remotePeerId||this._remotePeerId===e)&&this._pc&&this._pc.remoteDescription){c.debug("Add remote ice candidate",{participantId:this._participantId,candidate:t});try{yield this._pc.addIceCandidate(new RTCIceCandidate(t))}catch(i){throw m.log(v.ERROR,"addIceCandidate-direct"),c.error("Unable to add remote ice candidate",i,{participantId:this._participantId,candidate:t}),i}}else c.debug("Cache remote ice candidate",{participantId:this._participantId,candidate:t}),this._remoteCandidates[e]=this._remoteCandidates[e]||[],this._remoteCandidates[e].push(t)})}_setRemoteCandidates(e){return o(this,null,function*(){if(!this._remoteCandidates[e]){c.log(`No cached candidates found for peer ${e}`);return}let t=this._remoteCandidates[e];this._remoteCandidates[e]=[];for(let i of t)try{yield this._addIceCandidate(e,i)}catch(r){}})}_setRemoteDescription(e,t){return o(this,null,function*(){if(this._isOpen&&(!this._remotePeerId||this._remotePeerId===e)&&this._pc){c.debug("Add remote description",{participantId:this._participantId,sdp:t}),this._calcFingerprint(t.sdp);try{yield this._pc.setRemoteDescription(new RTCSessionDescription(t)),yield this._setRemoteCandidates(e)}catch(i){throw m.log(v.ERROR,"setRemoteDescription-direct"),c.error("Unable to set remote description",i,{participantId:this._participantId,sdp:t}),i}}else this._remoteSDP[e]=t})}_onAddTrack(e){c.debug("Added remote track",{participantId:this._participantId,kind:e.track.kind}),this._remoteStream?this._remoteStream.addTrack(e.track):(this._remoteStream=new MediaStream([e.track]),this._remoteStream.onremovetrack=t=>{this._triggerEvent(G.REMOTE_TRACK_REMOVED,this._remoteStream,t.track)}),this._triggerEvent(G.REMOTE_TRACK_ADDED,this._remoteStream,e.track)}_handleIceCandidate(e){return o(this,null,function*(){e.candidate&&this._signaling.ready&&(c.debug("Local ice candidate",{participantId:this._participantId,candidate:e.candidate}),yield this._signaling.sendCandidate(this._participantId,e.candidate))})}_onSignalingStateChange(){switch(c.debug(`DirectTransport: Signaling state changed to ${this._pc.signalingState}`,{participantId:this._participantId}),this._pc.signalingState){case"have-local-offer":let e=this._pc.localDescription;e?this._signaling.sendSdp(this._participantId,e).catch(this.close.bind(this)):this.close(new Error);break;case"have-remote-offer":this._createAnswer().catch(this.close.bind(this)).then(t=>o(this,null,function*(){return this._signaling.sendSdp(this._participantId,t)})).catch(this.close.bind(this));break}}_onIceConnectionStateChange(){switch(c.debug(`DirectTransport: Ice Connection state changed to ${this._pc.iceConnectionState}`,{participantId:this._participantId}),this._pc.iceConnectionState){case"checking":let e=this.getState();e===F.IDLE||e===F.OPENED?this._setState(F.CONNECTING):this._setState(F.RECONNECTING);break}}_onConnectionStateChange(){switch(c.debug(`DirectTransport: Connection state changed to ${this._pc.connectionState}`,{participantId:this._participantId}),m.log(v.ICE_CONNECTION_STATE,this._pc.connectionState),this._pc.connectionState){case"connected":this._neverConnected=!1,this._setState(F.CONNECTED),this._stopReconnection(),S.getPeerConnectionHostInfo(this._pc).then(e=>{e&&m.log(v.ICE_CONNECTION_TYPE,e.type)});break;case"failed":case"disconnected":this._reconnectionPrevented?this.close(new Error(`Ice connection ${this._pc.connectionState}`)):(this._setState(F.RECONNECTING),this._startReconnection());break;case"closed":this.close(new Error("Ice connection closed"));break}}_startReconnection(){this._reconnectionTimeout||this._iceRestartTimeout||(c.log("Waiting for reconnection...",{participantId:this._participantId}),this._reconnectionTimeout=window.setTimeout(()=>{this._reconnectionTimeout=null,this._neverConnected?this._requestTopologySwitch():this._startIceRestart()},d.transportConnectionWaitTime))}_requestTopologySwitch(){this._isMaster&&this._signaling.ready&&(c.log("Switch topology DIRECT to SERVER",{participantId:this._participantId}),this._signaling.switchTopology(se.SERVER))}_stopReconnection(){this._reconnectionTimeout&&(clearTimeout(this._reconnectionTimeout),this._reconnectionTimeout=null),this._iceRestartTimeout&&(clearTimeout(this._iceRestartTimeout),this._iceRestartTimeout=null)}_startIceRestart(){this._isMaster?(m.log(v.ICE_RESTART),c.log("Ice restart",{participantId:this._participantId}),this._createOffer(!0).catch(this.close.bind(this))):c.debug("Waiting for ice restart...",{participantId:this._participantId}),this._iceRestartTimeout=window.setTimeout(()=>{this._iceRestartTimeout=null,c.error("Ice restart failed",{participantId:this._participantId}),m.log(v.ERROR,"iceRestart-direct"),this._requestTopologySwitch()},d.iceRestartWaitTime)}_createOffer(e){return o(this,null,function*(){let t={iceRestart:e,offerToReceiveAudio:!0,offerToReceiveVideo:!0};return c.debug("Create offer",{participantId:this._participantId,options:t}),this._pc.createOffer(t).catch(i=>{throw c.error("Unable to create offer",i,{participantId:this._participantId}),m.log(v.ERROR,"createOffer-direct"),i}).then(i=>o(this,null,function*(){return c.debug("Created offer",{participantId:this._participantId,offer:i}),i=it._patchDescription(i),c.debug("Set local description",{participantId:this._participantId,offer:i}),this._calcFingerprint(i.sdp),this._pc.setLocalDescription(i).then(()=>this._pc.localDescription)})).catch(i=>{throw c.error("Unable to set local description",i,{participantId:this._participantId}),m.log(v.ERROR,"setLocalDescription-direct"),i})})}_createAnswer(){return o(this,null,function*(){return c.debug("Create answer",{participantId:this._participantId}),this._pc.createAnswer().catch(e=>{throw c.error("Unable to create answer",e,{participantId:this._participantId}),m.log(v.ERROR,"createAnswer-direct"),e}).then(e=>o(this,null,function*(){return c.debug("Created answer",{participantId:this._participantId,answer:e}),e=it._patchDescription(e),c.debug("Set local description",{participantId:this._participantId,answer:e}),this._calcFingerprint(e.sdp),this._pc.setLocalDescription(e)})).then(()=>this._pc.localDescription).catch(e=>{throw c.error("Unable to set local description",e,{participantId:this._participantId}),m.log(v.ERROR,"setLocalDescription-direct"),e})})}static _patchDescription(e){let t=!!b.baseChromeVersion();return e.sdp=S.patchSDP(e.sdp,d.preferH264&&b.canPreferH264(),b.isBrokenH264(),d.preferVP9,d.h264spsPpsIdrInKeyframe,t&&d.audioNack,d.p2pAudioRed),e}_onReplacedTrack(e){this._pc&&(this._pc.getSenders().forEach(t=>{t.track&&t.track.kind===e.kind&&(t.track.enabled=e.enabled,t.replaceTrack(e).catch(i=>{c.error("DirectTransport: Unable to replace track",i,{participantId:this._participantId}),m.log(v.ERROR,"replaceTrack-direct")}))}),this._applySettings())}_startStatInterval(){if(this._statInterval)return;let e=()=>{if(!this._pc){this._stopStatInterval();return}Vt(this._pc,this._lastStat).then(t=>{this._lastStat=t;let i={inbound:{topology:se.DIRECT,transport:t.transport,rtps:t.rtps.filter(r=>r.type==="inbound-rtp"?(r.userId=this._participantId,!0):!1)},outbound:{topology:se.DIRECT,transport:t.transport,rtps:t.rtps.filter(r=>r.type==="outbound-rtp")}};this._checkBadNetwork(i),this._triggerEvent(G.REMOTE_DATA_STATS,i),this._statInterval=window.setTimeout(e,d.statisticsInterval)})};this._statInterval=window.setTimeout(e,d.statisticsInterval)}_stopStatInterval(){this._statInterval&&(window.clearTimeout(this._statInterval),this._statInterval=null)}_checkBadNetwork(e){if(!this._signaling.ready)return;let t=pe=>pe.rtt<=this._networkLimits.goodNet.rtt&&pe.loss<=this._networkLimits.goodNet.loss,i=pe=>pe.rtt>=this._networkLimits.badNet.rtt||pe.loss>=this._networkLimits.badNet.loss,r=Math.round(e.outbound.transport.currentRoundTripTime*1e3)||0,n=e.inbound.rtps.reduce((pe,Ye)=>Math.max(pe,Ye.packetLoss||0),0),s={rtt:this._lastNetworkStat.rtt*(1-oi)+r*oi,loss:this._lastNetworkStat.loss*(1-oi)+n*oi},p=i(s),l=t(s),u=i(this._remoteNetworkStat),R=t(this._remoteNetworkStat),D=i(this._lastNetworkStat),x=t(this._lastNetworkStat),ue=p||u?.2:l&&R?1:0,Ne=Date.now();if((D!==p||x!==l||Ne-this._lastNetworkStat.date>d.networkStatisticsInterval)&&(this._lastNetworkStat.date=Date.now(),this._signaling.customData({sdk:Object.assign({type:"bad-net"},s)},null).catch(pe=>{c.warn("Unable to send [bad-net]",pe)})),ue){let pe={};pe[this._participantId]=pe[""]=ue,this._triggerEvent(G.NETWORK_STATUS,pe)}this._lastNetworkStat.rtt=s.rtt,this._lastNetworkStat.loss=s.loss}_startSettingsInterval(){let e=2e3;if(this._settingsInterval)return;let t=()=>{if(!this._pc){this._stopSettingsInterval();return}this._applySettings(),this._settingsInterval=window.setTimeout(t,e)};this._settingsInterval=window.setTimeout(t,e)}_stopSettingsInterval(){this._settingsInterval&&(window.clearTimeout(this._settingsInterval),this._settingsInterval=null)}_calcFingerprint(e){let t=S.sdpFingerprint(e);if(t===null){c.warn("Fingerprint calculation is unsupported");return}this._fingerprint===null?this._fingerprint=t:(E.onFingerprintChange((this._fingerprint^t).toString()),this._fingerprint=null)}_applySettings(){var t;let e=this._mediaSource.getMediaSettings().isScreenSharingEnabled?this._serverSettings.screenSharing:this._serverSettings.camera;e&&((t=this._pc)==null?void 0:t.connectionState)==="connected"&&(this._prevConsumerSettings=S.applySettings(this._pc,e,this._prevConsumerSettings))}};var la=(r=>(r.producerNotification="producerNotification",r.producerCommand="producerCommand",r.consumerScreenShare="consumerScreenShare",r.producerScreenShare="producerScreenShare",r))(la||{}),Ft=la;import{decode as vt}from"messagepack";var $i=class{constructor(){this.streamDescriptionByCompactId=new Map;this.compactIdByStreamDescription=new Map}getStreamDescription(e){return this.streamDescriptionByCompactId.get(e)}getCompactId(e){return this.compactIdByStreamDescription.get(e)}handleMessage(e){var n,s;let t=new Uint8Array(e),i=t[0],r=t.subarray(1);switch(i){case 1:let p=vt(r);return Object.entries(p).forEach(([q,ue])=>{let Ne=Nt(q);this.streamDescriptionByCompactId.set(ue,Ne),this.compactIdByStreamDescription.set(q,ue)}),null;case 2:case 4:let l=vt(r),u=[];for(let q of l){let ue=this.getStreamDescription(q);ue&&u.push(ue.participantId)}return i===2?{type:"notification",notification:w.AUDIO_ACTIVITY,activeParticipants:u}:{type:"notification",notification:w.STALLED_ACTIVITY,stalledParticipants:u};case 3:let R=vt(r);return{type:"notification",notification:w.SPEAKER_CHANGED,speaker:(n=this.getStreamDescription(R))==null?void 0:n.participantId};case 5:let D=vt(r);return{type:"notification",notification:w.VIDEO_QUALITY_UPDATE,quality:{maxBitrate:D[0],maxDimension:D[1]}};case 6:let x=vt(r),L={};for(let[q,ue]of Object.entries(x)){let Ne=(s=this.getStreamDescription(Number(q)))==null?void 0:s.participantId;Ne&&(L[Ne]=ue/100)}return{type:"notification",notification:w.NETWORK_STATUS,statuses:L};case 7:return this._createParticipantSourcesUpdateNotification(r);default:return c.debug("unsupported message type: "+i),null}}_createParticipantSourcesUpdateNotification(e){let t=vt(e),i=[];for(let[r,n]of Object.entries(t)){let s=n[0],p=n[1],l=n[2],u;if(s!==null){if(u=this.getStreamDescription(s),!u){c.error(`could not uncompress participant ID ${s}`);continue}}else u=null;if(l===null){c.error("unexpected null sequenceNumber",r,n);continue}let R=xe.PARTICIPANT_AGNOSTIC_TRACK_PREFIX+"-"+r,D=p?p>>>0:null;i.push({participantStreamDescription:u,streamId:R,rtpTimestamp:D,sequenceNumber:l})}return{type:"notification",notification:w.PARTICIPANT_SOURCES_UPDATE,participantUpdateInfos:i}}};var vn=90,En=4294967295,Ce=class extends X{constructor(e,t,i){super();this._pc=null;this._producerNotification=null;this._producerCommand=null;this._producerScreen=null;this._consumerScreen=null;this._isOpen=!1;this._observer=!1;this._reconnectionPrevented=!1;this._state=F.IDLE;this._statInterval=null;this._settingsInterval=null;this._statBytes={};this._ssrcMap={};this._producerOfferIsProcessing=!1;this._producerNextOffer=null;this._prevConsumerSettings={};this._captureSender=null;this._captureReceiver=null;this._participantIdRegistry=null;this._disabledSenders=new Set;this._rtpReceiversByStreamId={};this._producerSessionId="";this._signaling=e,this._mediaSource=t,this.subscribe(this._signaling,_e.NOTIFICATION,this._onSignalingNotification.bind(this)),this.subscribe(this._mediaSource,Ee.TRACK_REPLACED,this._onReplacedTrack.bind(this)),this.subscribe(this._mediaSource,Ee.SOURCE_CHANGED,this._applyConsumerSettings.bind(this)),this.subscribe(this._mediaSource,Ee.SCREEN_STATUS,this._onScreenSharingStatus.bind(this)),this._perfStatReporter=new tt(this,e),this._serverSettings=i,c.debug("ServerTransport: Created")}getState(){return this._state||F.IDLE}updateStatisticsInterval(){this._stopStatInterval();let e=this.getState();e!==F.IDLE&&e!==F.CLOSED&&e!==F.FAILED&&this._startStatInterval()}open(e=!1){if(this._isOpen){c.log("ServerTransport: Already opened connections");return}this._isOpen=!0,this._observer=e,this._openConnection()}close(e){this._isOpen=!1,this._closeConnection(),this.unsubscribe(),e?(c.error("ServerTransport: Closed",e),this._setState(F.FAILED)):(c.debug("ServerTransport: Closed"),this._setState(F.CLOSED))}removeParticipant(e){var t;(t=this._captureReceiver)==null||t.close(e)}preventRestart(){this._reconnectionPrevented=!0}allowRestart(){this._reconnectionPrevented=!1}updateSettings(e){ii(e,this._serverSettings)||(this._serverSettings=e,this._applyConsumerSettings())}_closeConnection(){this._stopStatInterval(),this._stopSettingsInterval(),this._removeCaptureSender(),this._removeCaptureReceiver(),this._pc&&(this._rtpReceiversByStreamId={},this._disabledSenders.forEach(e=>{var t;return(t=e.track)==null?void 0:t.stop()}),this._disabledSenders.clear(),this._pc.ontrack=null,this._pc.onconnectionstatechange=null,this._pc.onsignalingstatechange=null,this._participantIdRegistry=null,Ce._closeDataChannel(this._producerNotification),Ce._closeDataChannel(this._producerCommand),Ce._closeDataChannel(this._producerScreen),Ce._closeDataChannel(this._consumerScreen),this._pc.close(),this._pc=null,this._producerOfferIsProcessing=!1,this._producerNextOffer=null),this._triggerEvent(G.PEER_CONNECTION_CLOSED)}static _closeDataChannel(e){e&&(e.onopen=null,e.onmessage=null,e.onerror=null,e.close())}_createDataChannel(e,t,i){c.debug(`[${t}] data channel opening`);let r=e.createDataChannel(t,{ordered:!0});r.onopen=()=>{let n=r.readyState;n==="open"?(c.debug(`[${t}] data channel opened`),r.onerror=s=>{c.error(`[${t}] data channel error`,s)},i(r)):c.error(`[${t}] data channel open failed, state [${n}]`)}}_openConnection(e=!1){c.debug("ServerTransport: Open single connection");let t={};b.baseChromeVersion()&&(t.sdpSemantics=Ce._isUnifiedPlanSupported()?"unified-plan":"plan-b"),this._pc=new RTCPeerConnection(t,{optional:[{googSuspendBelowMinBitrate:!1}]}),this._pc.ontrack=this._onAddTrack.bind(this,this._pc),this._pc.onconnectionstatechange=S.throttle(i=>{this._pc&&this._onConnectionStateChange(this._pc,i)},500),this._pc.onsignalingstatechange=Ce._onSignalingStateChange.bind(this,this._pc),d.producerNotificationDataChannel&&this._createDataChannel(this._pc,Ft.producerNotification,i=>{this._producerNotification=i,this._producerNotification.binaryType="arraybuffer",this._participantIdRegistry=new $i,this._signaling.setParticipantIdRegistry(this._participantIdRegistry),this._signaling.setProducerNotificationDataChannel(i)}),d.producerCommandDataChannel&&(this._signaling.useCommandDataChannel(!0),this._createDataChannel(this._pc,Ft.producerCommand,i=>{this._producerCommand=i,this._signaling.setProducerCommandDataChannel(i)})),d.producerScreenDataChannel&&this._createDataChannel(this._pc,Ft.producerScreenShare,i=>{this._producerScreen=i,this._producerScreen.binaryType="arraybuffer",this._createCaptureReceiver()});try{this._mediaSource.addTrackToPeerConnection(this._pc,this._observer,!1,d.serverAudioRed),this._prevConsumerSettings={},this._applyConsumerSettings()}catch(i){c.error("ServerTransport: Unable to add media source tracks",i),m.log(v.ERROR,"addTrack-single"),this.close(i);return}d.consumerScreenDataChannel&&this._createDataChannel(this._pc,Ft.consumerScreenShare,i=>{this._consumerScreen=i,this._consumerScreen.binaryType="arraybuffer";let r=this._mediaSource.getScreenTrack();r&&this._createCaptureSender(r)}),e||this._allocateConsumer(),this._setState(F.OPENED),this._startStatInterval(),this._startSettingsInterval()}_reconnect(){this.getState()!==F.OPENED&&(this._setState(F.RECONNECTING),this._closeConnection(),this._openConnection(!0))}_signalActiveParticipants(e){this._triggerEvent(G.SIGNALLED_ACTIVE_PARTICIPANTS,e)}_signalStalledParticipants(e){this._triggerEvent(G.SIGNALLED_STALLED_PARTICIPANTS,e)}_signalSpeakerChanged(e){this._triggerEvent(G.SIGNALLED_SPEAKER_CHANGED,e)}_signalNetworkStatus(e){this._triggerEvent(G.NETWORK_STATUS,e)}_updateSSRCMap(e){e&&e.sdp.split(`
12
- `).forEach(t=>{let i=`a=ssrc:([0-9]+) label:(audio|video)-((?:[ug]?[\\d]+)|(?:mix)|(?:${xe.PARTICIPANT_AGNOSTIC_TRACK_PREFIX}-[0-9]+))`,r=new RegExp(i).exec(t);r&&(this._ssrcMap[r[1]]=r[3])})}_createCaptureSender(e){!e||!d.consumerScreenDataChannel||!this._consumerScreen||!this._mediaSource.getMediaSettings().isScreenSharingEnabled||(this._captureSender&&this._removeCaptureSender(),this._captureSender=new gt(e,this._consumerScreen))}_removeCaptureSender(){var e;(e=this._captureSender)==null||e.destroy(),this._captureSender=null}_createCaptureReceiver(){!d.producerScreenDataChannel||!this._producerScreen||!this._participantIdRegistry||(this._captureReceiver&&this._removeCaptureReceiver(),this._captureReceiver=new ht(this._producerScreen,this._participantIdRegistry,(e,t)=>{this._triggerEvent(G.REMOTE_STREAM_SECOND,e,t)},e=>{this._triggerEvent(G.REMOTE_STREAM_SECOND,e,null)}))}_removeCaptureReceiver(){var e;(e=this._captureReceiver)==null||e.destroy(),this._captureReceiver=null}_applyConsumerSettings(){let e=this._mediaSource.getMediaSettings().isScreenSharingEnabled&&!d.consumerScreenDataChannel?this._serverSettings.screenSharing:this._serverSettings.camera;if(e&&this._pc){let t=[];this._pc.getSenders().forEach(i=>{if(!i.track||i.track.kind!==ae.video)return;let r=!this._disabledSenders.has(i),n=e.maxDimension!==0;if(r&&!n){c.log("Disabling video upload"),this._disabledSenders.add(i),i.replaceTrack(b.getBlackMediaTrack()).catch(p=>{c.error("Could not disable video upload",p)});return}let s=this._mediaSource.getSendVideoTrack();if(!r&&n&&s){c.log("Enabling video upload"),this._disabledSenders.delete(i);let p=i.track;p.enabled=s.enabled,i.replaceTrack(s).then(()=>p.stop()).catch(l=>{c.error("Could not enable video upload",l)})}S.applyVideoTrackSettings(e,i,s!=null?s:i.track,this._prevConsumerSettings,t)}),this._prevConsumerSettings=t}}_onScreenSharingStatus(e){e.track?this._createCaptureSender(e.track):this._removeCaptureSender()}_setState(e){this._state!==e&&(this._state=e,this._triggerEvent(G.STATE_CHANGED,e))}_startStatInterval(){if(this._statInterval)return;let e=()=>{if(!this._pc){this._stopStatInterval();return}this._collectStat().then(t=>{this._reportStats(t),this._detectStaleTracks(t)}).catch(()=>{}),this._statInterval=window.setTimeout(e,d.statisticsInterval)};this._statInterval=window.setTimeout(e,d.statisticsInterval)}_stopStatInterval(){this._statInterval&&(window.clearTimeout(this._statInterval),this._statInterval=null),this._statBytes={}}_startSettingsInterval(){let e=2e3;if(this._settingsInterval)return;let t=()=>{if(!this._pc){this._stopSettingsInterval();return}this._applyConsumerSettings(),this._settingsInterval=window.setTimeout(t,e)};this._settingsInterval=window.setTimeout(t,e)}_stopSettingsInterval(){this._settingsInterval&&(window.clearTimeout(this._settingsInterval),this._settingsInterval=null)}_collectStat(){return o(this,null,function*(){if(!this._pc)return Promise.reject();let e=yield Vt(this._pc,this._lastStat,this._ssrcMap);return this._lastStat=e,e})}_reportStats(e){this._triggerEvent(G.REMOTE_DATA_STATS,{inbound:{topology:se.SERVER,transport:e.transport,rtps:e.rtps.filter(t=>t.type==="inbound-rtp")},outbound:{topology:se.SERVER,transport:e.transport,rtps:e.rtps.filter(t=>t.type==="outbound-rtp")}})}_detectStaleTracks(e){let t=e.rtps.find(s=>s.type==="inbound-rtp"&&s.kind==="audio"&&this._ssrcMap[s.ssrc]==="mix");if(!t)return;let i=xe.AUDIO_MIX,r=this._statBytes[i],n=!1;if(r){let s=t.bytesReceived-r.bytesReceived;s>=0&&s<=5&&(n=!0),r.stalled!==n&&this._triggerEvent(G.REMOTE_ALL_STALL,n)}this._statBytes[i]={bytesReceived:t.bytesReceived,stalled:n}}_allocateConsumer(){if(!this._signaling.ready)return;let e={estimatedPerformanceIndex:tt.getEstimatedPerformanceIndex(),audioMix:!0,consumerUpdate:!0,producerNotificationDataChannelVersion:d.producerNotificationDataChannel?6:0,producerCommandDataChannelVersion:d.producerCommandDataChannel?3:0,consumerScreenDataChannelVersion:d.consumerScreenDataChannel?1:0,producerScreenDataChannelVersion:d.producerScreenDataChannel?1:0,onDemandTracks:!0,unifiedPlan:Ce._isUnifiedPlanSupported(),singleSession:!0,videoTracksCount:d.videoTracksCount,red:d.serverAudioRed};this._signaling.allocateConsumer(null,e)}_acceptProducer(e){return o(this,null,function*(){if(this._producerOfferIsProcessing){this._producerNextOffer=e,c.debug("[single] wait until other remote offer is processed");return}this._producerOfferIsProcessing=!0;let t=new RTCSessionDescription({type:"offer",sdp:e});if(c.debug("[single] set remote offer",{offer:t}),!this._pc)throw new Error("Interrupt allocation");this._pc.setRemoteDescription(t).catch(i=>{throw c.error("[single] unable to set remote offer",i),m.log(v.ERROR,"setRemoteDescription-single"),i}).then(()=>o(this,null,function*(){if(c.debug("[single] create local answer"),!this._pc)throw new Error("Interrupt allocation");return this._pc.createAnswer()})).catch(i=>{throw c.error("[single] unable to create answer",i),m.log(v.ERROR,"createAnswer-single"),i}).then(i=>(i.sdp=S.patchSDP(i.sdp,!1,b.isBrokenH264(),!1,d.h264spsPpsIdrInKeyframe),i)).then(i=>o(this,null,function*(){if(c.debug("[single] set local answer",{answer:i}),!this._pc)throw new Error("Interrupt allocation");return yield this._pc.setLocalDescription(i),i})).catch(i=>{throw c.error("[single] unable to set local answer",i),m.log(v.ERROR,"setLocalDescription-single"),i}).then(i=>o(this,null,function*(){c.debug("[single] transmit local answer",{answer:i}),this._updateSSRCMap(t),yield this._signaling.acceptProducer(i,Object.keys(this._ssrcMap)),c.debug("[single] remote offer has been processed")})).catch(i=>{c.warn("[single] unable to send local answer",i),m.log(v.ERROR,"acceptProducer")}).then(()=>o(this,null,function*(){if(this._producerOfferIsProcessing=!1,this._producerNextOffer){c.debug("[single] there is other unprocessed remote offer, process it");let i=this._producerNextOffer;return this._producerNextOffer=null,this._acceptProducer(i)}})).catch(i=>this.close(i))})}_onSignalingNotification(e){return o(this,null,function*(){if(!!this._isOpen)switch(e.notification){case w.PRODUCER_UPDATED:yield this._onProducerUpdated(e);break;case w.REALLOC_CON:this._reconnect();break;case w.AUDIO_ACTIVITY:this._signalActiveParticipants(e.activeParticipants);break;case w.SPEAKER_CHANGED:this._signalSpeakerChanged(e.speaker);break;case w.STALLED_ACTIVITY:this._signalStalledParticipants(e.stalledParticipants);break;case w.NETWORK_STATUS:this._signalNetworkStatus(e.statuses);break}})}_onProducerUpdated(e){return o(this,null,function*(){this._producerSessionId&&this._producerSessionId!==e.sessionId&&this._reconnect(),d.breakVideoPayloadTypes&&(c.log("test mode enabled, video switched off"),this._signaling.requestTestMode("breakVideoPayloadTypes",null)),this._producerSessionId=e.sessionId,yield this._acceptProducer(e.description)})}_onAddTrack(e,t){c.debug("[single] remote track (added)",{track:t.track});let i=t.streams[0];i?(i.onremovetrack||(i.onremovetrack=n=>{this._triggerEvent(G.REMOTE_TRACK_REMOVED,i.id,i,n.track)}),i.getTracks().find(n=>n.id===t.track.id)||i.addTrack(t.track),this._rtpReceiversByStreamId[i.id]=t.receiver,this._triggerEvent(G.REMOTE_TRACK_ADDED,i.id,i,t.track)):c.error("[single] unable to get media stream from track event")}static _onSignalingStateChange(e,t){c.debug("[single] signaling state changed",{state:e.signalingState},t)}_onConnectionStateChange(e,t){switch(c.debug("[single] connection state changed",{state:e.connectionState},t),m.log(v.ICE_CONNECTION_STATE,e.connectionState),e.connectionState){case"failed":this._reconnectionPrevented?this.close(new Error("Ice connection failed")):this._reconnect();break;case"connecting":let i=this.getState();i===F.IDLE||i===F.OPENED?this._setState(F.CONNECTING):e.iceConnectionState==="checking"&&this._setState(F.RECONNECTING);break;case"disconnected":this._reconnectionPrevented?this.close(new Error("Ice connection disconnected")):this._setState(F.RECONNECTING);break;case"connected":this._setState(F.CONNECTED),S.getPeerConnectionHostInfo(e).then(r=>{r&&m.log(v.ICE_CONNECTION_TYPE,r.type)});break}}_onReplacedTrack(e,t){this._pc&&(d.consumerScreenDataChannel&&t&&(e=t),this._pc.getSenders().forEach(i=>{i.track&&i.track.kind===e.kind&&!this._disabledSenders.has(i)&&(i.track.enabled=e.enabled,i.replaceTrack(e).catch(r=>{c.error("ServerTransport: Unable to replace track",r),m.log(v.ERROR,"replaceTrack-single")}))})),this._applyConsumerSettings()}static _isUnifiedPlanSupported(){let e=b.baseChromeVersion();return e?d.isUnifiedPlanSupported("Chrome",e):d.isUnifiedPlanSupported(b.browserName(),Number(b.browserVersion()))}getStreamWaitingTimeMs(e,t){if(!this._pc)return m.log(v.PAT_WAITING_TIME_ERROR,"noConnection"),c.error("Cannot get stream waiting time, peer connection is not initialized"),0;let i=this._rtpReceiversByStreamId[e];if(!i)return m.log(v.PAT_WAITING_TIME_ERROR,"noReceiver"),c.error(`Cannot get stream waiting time, cannot find RTP receiver by stream ID: ${e}`),0;let r=i.getSynchronizationSources();if(!r||!r.length)return c.log(`Cannot get stream waiting time, ${e} receiver has no synchronization sources`),0;let s=r[0].rtpTimestamp;if(!Number.isInteger(s))return m.log(v.PAT_WAITING_TIME_ERROR,"timestampNotInteger"),c.error(`Cannot get stream waiting time, ${e} receiver's RTP timestamp is not an integer: ${s}`),0;let p=t-s&En,l=Math.ceil(p/vn);return Math.min(100,Math.max(0,l))}};var G=(L=>(L.REMOTE_TRACK_ADDED="REMOTE_TRACK_ADDED",L.REMOTE_TRACK_REMOVED="REMOTE_TRACK_REMOVED",L.REMOTE_STREAM_SECOND="REMOTE_STREAM_SECOND",L.REMOTE_ALL_STALL="REMOTE_ALL_STALL",L.REMOTE_DATA_STATS="REMOTE_DATA_STATS",L.STATE_CHANGED="STATE_CHANGED",L.LOCAL_STATE_CHANGED="LOCAL_STATE_CHANGED",L.SIGNALLED_ACTIVE_PARTICIPANTS="SIGNALLED_ACTIVE_PARTICIPANTS",L.SIGNALLED_SPEAKER_CHANGED="SIGNALLED_SPEAKER_CHANGED",L.SIGNALLED_STALLED_PARTICIPANTS="SIGNALLED_STALLED_PARTICIPANTS",L.TOPOLOGY_CHANGED="TOPOLOGY_CHANGED",L.NETWORK_STATUS="NETWORK_STATUS",L.PEER_CONNECTION_CLOSED="PEER_CONNECTION_CLOSED",L))(G||{}),F=(p=>(p.IDLE="IDLE",p.OPENED="OPENED",p.CONNECTING="CONNECTING",p.RECONNECTING="RECONNECTING",p.CONNECTED="CONNECTED",p.CLOSED="CLOSED",p.FAILED="FAILED",p))(F||{}),se=(t=>(t.DIRECT="DIRECT",t.SERVER="SERVER",t))(se||{}),Ji=class extends X{constructor(e,t,i,r){super();this._allocated=[];this._opened=[];this._directTransport=null;this._serverTransport=null;this._dtListeners=[];this._stListeners=[];this._states={};this._localState="IDLE";this._signaling=t,this._mediaSource=i,this._topology=e,this._serverSettings=r,this.subscribe(this._signaling,_e.NOTIFICATION,this._onSignalingNotification.bind(this)),e==="SERVER"&&(this._serverTransport=this._createServerTransport())}updateSettings(e){c.log("Update transport settings",e),this._serverSettings=e,this._directTransport&&this._directTransport.updateSettings(e),this._serverTransport&&this._serverTransport.updateSettings(e)}updateStatisticsInterval(){this._directTransport&&this._directTransport.updateStatisticsInterval(),this._serverTransport&&this._serverTransport.updateStatisticsInterval()}allocate(e,t=!1){if(this._allocated.indexOf(e)!==-1){c.warn(`The participant [${e}] has already had allocated transport`);return}this._allocated.push(e),this._topology==="DIRECT"&&!this._directTransport&&(this._directTransport=this._createDirectTransport(e,t)),this._topology==="SERVER"&&!this._serverTransport&&(this._serverTransport=this._createServerTransport())}open(e,t=null,i=!1,r=!1){let n=r;for(let s of e){if(this._opened.indexOf(s)!==-1){c.warn(`The participant [${s}] has already had opened transport`);continue}if(this._allocated.indexOf(s)===-1){c.warn(`The participant [${s}] has no allocated transport`);continue}this._opened.push(s),n=!0}!n||(this._topology==="DIRECT"&&this._directTransport&&this._directTransport.open(t),this._topology==="SERVER"&&this._serverTransport&&(this._serverTransport.open(i),this._setStates(e,this._serverTransport.getState()),this._setLocalState(this._serverTransport.getState())),c.debug("The transport has been opened",e))}close(e){var r;let t=this._allocated.indexOf(e),i=this._opened.indexOf(e);t<0&&c.warn(`The participant [${e}] transport has already deallocated`),this._topology==="DIRECT"&&this._directTransport&&(this._directTransport.close(),this._directTransport=null),this._topology==="SERVER"&&((r=this._serverTransport)==null||r.removeParticipant(e),this._setState(e,"CLOSED")),i>=0&&this._opened.splice(i,1),t>=0&&this._allocated.splice(t,1)}destroy(){this.unsubscribe(),this._dtListeners&&this._dtListeners.forEach(e=>{e.dispose()}),this._stListeners&&this._stListeners.forEach(e=>{e.dispose()}),this._directTransport&&(this._directTransport.close(),this._directTransport=null),this._serverTransport&&(this._serverTransport.close(),this._serverTransport=null),this._allocated=[],this._opened=[]}getTopology(){return this._topology}isAllocated(e){return this._allocated.indexOf(e)>=0}allocated(){return this._allocated.slice()}opened(){return this._opened.slice()}getState(){var e,t;return this._topology==="SERVER"?(e=this._serverTransport)==null?void 0:e.getState():(t=this._directTransport)==null?void 0:t.getState()}_setStates(e,t){let i=e.filter(r=>this._states[r]!==t?(this._states[r]=t,!0):!1);i.length&&this._triggerEvent("STATE_CHANGED",i,t)}_setState(e,t){this._states[e]!==t&&(this._states[e]=t,this._triggerEvent("STATE_CHANGED",[e],t))}_setLocalState(e){this._localState!==e&&(this._localState=e,this._triggerEvent("LOCAL_STATE_CHANGED",e))}_onSignalingNotification(e){if(e.notification===w.TOPOLOGY_CHANGED)return this._onTopologyChanged(e)}_onTopologyChanged(e){var t;if(e.topology!==this._topology){if(c.log(`Topology changed ${this._topology} -> ${e.topology}`),m.log(v.TOPOLOGY_CHANGE_REQUESTED,e.topology),this._topology=e.topology,this._topology==="SERVER"&&(this._serverTransport?this._serverTransport.allowRestart():(this._serverTransport=this._createServerTransport(),this._opened.length>0&&((t=this._directTransport)==null||t.preventRestart(),this._serverTransport.open()))),this._topology==="DIRECT"){let i=e.offerTo||[],r=e.offerToTypes||[],n=e.offerToDeviceIdxs||[],s=i.length&&r.length?S.composeParticipantId(i[0],r[0],n[0]):null;if(this._serverTransport&&this._serverTransport.preventRestart(),!this._allocated||this._allocated.length===0){c.error("Topology changed to DIRECT, but the list of allocated participants is empty");return}this._allocated.length>1&&c.warn("Topology changed to DIRECT, but the allocated participants count more then one");let p=this._allocated[0];if(this._directTransport)this._directTransport.allowRestart();else{let l=s===p;this._directTransport=this._createDirectTransport(p,l)}this._opened.indexOf(p)>=0&&this._directTransport.open()}this._triggerEvent("TOPOLOGY_CHANGED",this._topology)}}_createDirectTransport(e,t=!1){let i=new it(e,t,this._signaling,this._mediaSource,this._serverSettings);return this._dtListeners&&this._dtListeners.length>0&&c.warn(`The list of direct listeners for the participant [${e}] is not empty`),this._dtListeners=[],this._dtListeners.push(i.addEventListener("REMOTE_TRACK_ADDED",this._onDirectRemoteTrackAdded.bind(this,e)),i.addEventListener("REMOTE_TRACK_REMOVED",this._onDirectRemoteTrackRemoved.bind(this,e)),i.addEventListener("REMOTE_DATA_STATS",this._onDirectRemoteDataStats.bind(this)),i.addEventListener("STATE_CHANGED",this._onDirectTransportChanged.bind(this,e)),i.addEventListener("NETWORK_STATUS",this._onTransportNetworkStatus.bind(this)),i.addEventListener("PEER_CONNECTION_CLOSED",this._onPeerConnectionClosed.bind(this,"DIRECT"))),i}_createServerTransport(){let e=new Ce(this._signaling,this._mediaSource,this._serverSettings);return this._stListeners&&this._stListeners.length>0&&c.warn("The list of server transport listeners is not empty"),this._stListeners=[],this._stListeners.push(e.addEventListener("REMOTE_TRACK_ADDED",this._onServerRemoteTrackAdded.bind(this)),e.addEventListener("REMOTE_TRACK_REMOVED",this._onServerRemoteTrackRemoved.bind(this)),e.addEventListener("REMOTE_ALL_STALL",this._onServerRemoteAllStall.bind(this)),e.addEventListener("REMOTE_DATA_STATS",this._onServerRemoteDataStats.bind(this)),e.addEventListener("STATE_CHANGED",this._onServerTransportChanged.bind(this)),e.addEventListener("SIGNALLED_ACTIVE_PARTICIPANTS",this._onTransportActiveParticipants.bind(this)),e.addEventListener("SIGNALLED_SPEAKER_CHANGED",this._onTransportSpeakerChanged.bind(this)),e.addEventListener("SIGNALLED_STALLED_PARTICIPANTS",this._onTransportStalledParticipants.bind(this)),e.addEventListener("NETWORK_STATUS",this._onTransportNetworkStatus.bind(this)),e.addEventListener("REMOTE_STREAM_SECOND",this._onRemoteStreamSecond.bind(this)),e.addEventListener("PEER_CONNECTION_CLOSED",this._onPeerConnectionClosed.bind(this,"SERVER"))),e}_releaseDirectTransport(e){this._directTransport&&(e&&this._directTransport.close(),this._directTransport=null),this._dtListeners&&(this._dtListeners.forEach(t=>{t.dispose()}),this._dtListeners=[])}_releaseServerTransport(e){this._serverTransport&&(e&&this._serverTransport.close(),this._serverTransport=null),this._stListeners&&(this._stListeners.forEach(t=>{t.dispose()}),this._stListeners=[])}_setLocalNoiseSuppression(e){var t;d.noiseSuppression!==e&&(d.noiseSuppression=e,(t=this._mediaSource)==null||t.updateNoiseSuppression())}_onDirectTransportChanged(e,t){if(t==="CONNECTED"&&this._topology==="DIRECT"&&this._releaseServerTransport(!0),(t==="CLOSED"||t==="FAILED")&&(this._releaseDirectTransport(!1),this._topology==="DIRECT")){let i=this._opened.indexOf(e);i>=0&&this._opened.splice(i,1);let r=this._allocated.indexOf(e);r>=0&&this._allocated.splice(r,1)}this._topology==="DIRECT"&&(this._setState(e,t),this._setLocalState(t))}_onServerTransportChanged(e){let t=this._opened.slice();e==="CONNECTED"&&this._topology==="SERVER"&&this._releaseDirectTransport(!0),(e==="CLOSED"||e==="FAILED")&&(this._releaseServerTransport(!1),this._topology==="SERVER"&&(this._allocated=[],this._opened=[])),this._topology==="SERVER"&&(this._setStates(t,e),this._setLocalState(e))}_onTransportActiveParticipants(e){this._topology==="SERVER"&&this._triggerEvent("SIGNALLED_ACTIVE_PARTICIPANTS",e)}_onTransportStalledParticipants(e){this._topology==="SERVER"&&this._triggerEvent("SIGNALLED_STALLED_PARTICIPANTS",e)}_onTransportSpeakerChanged(e){this._topology==="SERVER"&&this._triggerEvent("SIGNALLED_SPEAKER_CHANGED",e)}_onTransportNetworkStatus(e){this._triggerEvent("NETWORK_STATUS",e)}_onRemoteStreamSecond(e,t){this._triggerEvent("REMOTE_STREAM_SECOND",e,t)}_onPeerConnectionClosed(e){this._triggerEvent("PEER_CONNECTION_CLOSED",e)}_onServerRemoteAllStall(e){this._topology==="SERVER"&&this._triggerEvent("REMOTE_ALL_STALL",e)}_onServerRemoteDataStats(e){this._triggerEvent("REMOTE_DATA_STATS",e)}_onDirectRemoteTrackAdded(e,t,i){this._triggerEvent("REMOTE_TRACK_ADDED",e,t,i)}_onDirectRemoteTrackRemoved(e,t,i){this._triggerEvent("REMOTE_TRACK_REMOVED",e,t,i)}_onDirectRemoteDataStats(e){this._triggerEvent("REMOTE_DATA_STATS",e)}_onServerRemoteTrackAdded(e,t,i){this._triggerEvent("REMOTE_TRACK_ADDED",e,t,i)}_onServerRemoteTrackRemoved(e,t,i){this._triggerEvent("REMOTE_TRACK_REMOVED",e,t,i)}getStreamWaitingTimeMs(e,t){return this._topology!=="SERVER"?(m.log(v.PAT_WAITING_TIME_ERROR,"wrongTopology"),c.error(`Cannot get stream waiting time, incorrect topology: ${this._topology}`),0):this._serverTransport?this._serverTransport.getStreamWaitingTimeMs(e,t):(m.log(v.PAT_WAITING_TIME_ERROR,"noTransport"),c.error("Cannot get stream waiting time, server transport is not initialized"),0)}};var rt=(e=>(e.VOLUMES_DETECTED="VOLUMES_DETECTED",e))(rt||{}),Yi=class extends X{constructor(e){super();this._detector=null;this._interval=null;this.subscribe(e,G.REMOTE_TRACK_ADDED,this._onRemoteTrackAdded.bind(this)),this.subscribe(e,G.REMOTE_TRACK_REMOVED,this._onRemoteTrackRemoved.bind(this)),this.subscribe(e,G.SIGNALLED_ACTIVE_PARTICIPANTS,this._onSignalledActiveParticipants.bind(this)),this.subscribe(e,G.TOPOLOGY_CHANGED,this._onTopologyChanged.bind(this))}destroy(){var e;this._interval&&(window.clearTimeout(this._interval),this._interval=null),this.unsubscribe(),(e=this._detector)==null||e.destroy(),this._detector=null}_onRemoteTrackAdded(e,t,i){var r;if(i.kind===ae.audio&&((r=this._detector)==null||r.destroy(),this._detector=new Bt(e,t),!this._interval)){let n=()=>{this._collectVolumes(),this._interval=window.setTimeout(n,d.voiceParams.interval)};this._interval=window.setTimeout(n,d.voiceParams.interval)}}_onRemoteTrackRemoved(e,t,i){i.kind===ae.audio&&(!this._detector||this._detector.stream!==t||(this._detector.destroy(),this._detector=null))}_collectVolumes(){if(!this._detector)return;let e={},t=this._detector.trackId,i=this._detector.getLevel();if(t===xe.AUDIO_MIX){if(this._activeParticipants)for(let r of this._activeParticipants)e[r]=i}else e[t]=i;this._triggerEvent("VOLUMES_DETECTED",e)}_onSignalledActiveParticipants(e){this._activeParticipants=e}_onTopologyChanged(e){e===se.DIRECT&&(this._activeParticipants=null)}};var zi=(e=>(e.SPEAKER_CHANGED="SPEAKER_CHANGED",e))(zi||{}),Qi=class extends X{constructor(e,t,i){super();this._speakerId=null;this._serverSideSpeakerDetection=!1;this._serverSideSpeakerDetection=i===se.SERVER,this.subscribe(e,rt.VOLUMES_DETECTED,this._onVolumesDetected.bind(this)),this.subscribe(t,G.SIGNALLED_SPEAKER_CHANGED,this._onServerSpeakerChanged.bind(this)),this.subscribe(t,G.TOPOLOGY_CHANGED,this._onTopologyChanged.bind(this))}destroy(){this.unsubscribe()}_onVolumesDetected(e){if(this._serverSideSpeakerDetection)return;let t=0,i=null;if(Object.keys(e).forEach(r=>{let n=e[r].smoothed;n>t&&n>d.voiceParams.threshold&&(t=n,i=r)}),i&&i!==this._speakerId){let r=this._speakerId&&e.hasOwnProperty(this._speakerId)?e[this._speakerId].smoothed:0;t>r*d.voiceParams.speakerLevelMultiplier&&(this._speakerId=i,this._triggerEvent("SPEAKER_CHANGED",i))}}_onServerSpeakerChanged(e){this._serverSideSpeakerDetection&&this._triggerEvent("SPEAKER_CHANGED",e)}_onTopologyChanged(e){this._serverSideSpeakerDetection=e===se.SERVER}};var ci=class extends X{constructor(e,t,i){super();this._states={};this._volumes={};this._participants={};this._connectionTimeout=0;this._volumeTimeout=0;this._transport=e,this._participants=i,this.subscribe(e,G.STATE_CHANGED,this._onTransportStateChanged.bind(this)),this.subscribe(t,rt.VOLUMES_DETECTED,this._onVolumesDetected.bind(this))}destroy(){this.unsubscribe(),this._connectionTimeout&&window.clearTimeout(this._connectionTimeout),this._volumeTimeout&&window.clearTimeout(this._volumeTimeout)}onChangeRemoteMediaSettings(e,t){t.isAudioEnabled||(this._volumes[e]=1),t.isAudioEnabled&&(this._volumes[e]=0)}_onTransportStateChanged(e,t){e.forEach(i=>this._states[i]=t),t===F.OPENED&&(this._connectionTimeout||(this._connectionTimeout=window.setTimeout(this._onConnectionTimeout.bind(this),d.specListenerParams.connectionTimeout)),this._volumeTimeout||(this._volumeTimeout=window.setTimeout(this._onVolumeTimeout.bind(this),d.specListenerParams.volumeTimeout))),t===F.FAILED&&this._connectionTimeout&&(c.warn("Transport failed, send callSpecError"),m.log(v.CALL_SPEC_ERROR,`${this._transport.getTopology()}_CONNECTION_TIMEOUT`))}_onVolumesDetected(e){Object.keys(e).forEach(t=>{this._volumes[t]=Math.max(e[t].real,this._volumes[t]||0)})}_onConnectionTimeout(){let e=i=>i!==F.CONNECTED;(()=>Object.values(this._states).filter(e).length>0)()&&(c.warn("There is not connected transport, send callSpecError"),m.log(v.CALL_SPEC_ERROR,`${this._transport.getTopology()}_CONNECTION_TIMEOUT`)),this._connectionTimeout=0}_onVolumeTimeout(){let e=[];Object.keys(this._volumes).forEach(t=>{if(this._volumes[t]>0)return;let i="UNKNOWN",r=this._participants[t];r&&r.platform&&(i=r.platform),e.indexOf(i)<0&&(e.push(i),m.log(v.CALL_SPEC_ERROR,`${this._transport.getTopology()}_VOLUME_TIMEOUT_${i}`))}),e.length&&c.warn("There is silent participant, send callSpecError"),this._volumeTimeout=0}};var In=1e3,Tn=1e4;var Cn=15,H=class extends X{constructor(e,t,i){super();this._mediaSource=null;this._conversation=null;this._state="IDLE";this._participantState=W.CALLED;this._participants={};this._transport=null;this._debugInfo=null;this._volumesDetector=null;this._speakerDetector=null;this._localVolumeDetector=null;this._specListener=null;this._activeSpeakerId=null;this._lastSignalledActiveSpeakerId=null;this._serverSettings={camera:null,screenSharing:null};this._lastStalled={};this._remoteAllStalled=!1;this._audioFix=null;this._streamByStreamId=new Map;this._streamIdByStreamDescription=new Map;this._streamWaitTimerByStreamDescription=new Map;this._sequenceNumberByStreamDescription=new Map;this._cooldownTimestampByStreamDescription=new Map;this._cooldownQueueCleanupTimer=null;m.create(e,i),this._api=e,this._signaling=t,this._onUnload=()=>{this._conversation&&this._api&&this._api.hangupConversation(this._conversation.id),m.destroy()},window.addEventListener("unload",this._onUnload),this._audioOutput=new ri,d.videoTracksCount>0&&(this._cooldownQueueCleanupTimer=window.setInterval(this._cleanupCooldownQueue.bind(this),In))}static current(){return H._current}static hangupAfterInit(){H._activationMutex&&!H._current&&(H._delayedHangup=!0)}static id(){var e,t;return((t=(e=H._current)==null?void 0:e._conversation)==null?void 0:t.id)||null}onStart(e,t,i,r="",n=!1,s=!1){return o(this,null,function*(){if(H._activationMutex)throw m.log(v.ERROR,"startCall"),c.warn("Conversation: there is already running activation"),new N(A.FAILED);H._activationMutex=!0;try{this._mediaSource=this._createMediaSource(),yield this._mediaSource.request(i);let p=this._mediaSource.getMediaSettings();t===We.CHAT||e.length>1?this._logWithMediaSettings(v.OUTGOING_MULTIPARTY_CALL,p):this._logWithMediaSettings(v.OUTGOING_CALL,p);let l=yield this._startConversation(e,t,qe.OUTGOING,i,r,n,s);if(!this._conversation)throw new N(A.UNKNOWN_ERROR);if(this._participantState=W.ACCEPTED,this._signaling.changeMediaSettings(p),yield this._processConnection(l),this._allocateTransport(),this._createSpeakerDetector(),this._createSpecListener(),this._signaling.readyToSend(),H._delayedHangup)throw new N(A.CANCELED);c.debug("Outgoing call",{opponentIds:e,opponentType:t,mediaOptions:i});let u=Object.values(this._participants),R;return d.batchParticipantsOnStart&&(R=S.mapSharedParticipants(u)),E.onLocalStream(this._mediaSource.getStream(),this._mediaSource.getMediaSettings()),E.onConversation(this._conversation.externalId,this._conversation.mediaModifiers,this._conversation.muteStates,R),this._onConversationParticipantListChunk(l),E.onLocalStatus(J.WAITING),this._toggleJoinAvailability(),this._changeFeatureSet(),this._changeNeedRate(),H._current=this,this._conversation.concurrent?yield this._acceptConcurrent():d.batchParticipantsOnStart||this._setParticipantsStatus(u,J.WAITING),this._conversation}catch(p){throw this._close(p,"Unable to start conversation"),p}finally{H._activationMutex=!1}})}onJoin(e){return o(this,null,function*(){var t;if(H._activationMutex)throw m.log(v.ERROR,"joinCall"),c.warn("Conversation: there is already running activation"),new N(A.FAILED);H._activationMutex=!0,this._state="PROCESSING";try{let i=!!((t=e.observedIds)==null?void 0:t.length);this._mediaSource=this._createMediaSource(),yield this._mediaSource.request(e.mediaOptions,!i);let r=this._mediaSource.getMediaSettings();this._logWithMediaSettings(v.JOIN_CONVERSATION,r);let n=yield this._joinConversation(e);if(!this._conversation)throw new N(A.UNKNOWN_ERROR);return this._conversation.observer=i,E.onLocalStream(this._mediaSource.getStream(),r),this._conversation.waitingHall?(c.log("In waiting hall"),H._current=this,H._activationMutex=!1,this._signaling.readyToSend(),E.onLocalStatus(J.WAITING_HALL),this._conversation):this._onJoinPart2(n)}catch(i){throw H._activationMutex=!1,this._close(i,"Unable to join conversation"),i}})}_onJoinPart2(e){return o(this,null,function*(){c.debug("Join conversation part 2"),H._activationMutex=!0;try{if(this._participantState=W.ACCEPTED,!this._conversation||!this._mediaSource)throw new N(A.UNKNOWN_ERROR);if(this._conversation.observer||this._signaling.changeMediaSettings(this._mediaSource.getMediaSettings()),yield this._processConnection(e),this._allocateTransport(),this._createSpeakerDetector(),this._createSpecListener(),this._signaling.readyToSend(),H._delayedHangup)throw new N(A.CANCELED);let t=Object.values(this._participants),i;return d.batchParticipantsOnStart&&(i=S.mapSharedParticipants(t)),E.onConversation(this._conversation.externalId,this._conversation.mediaModifiers,this._conversation.muteStates,i),this._onConversationParticipantListChunk(e),E.onLocalStatus(J.WAITING),this._toggleJoinAvailability(),this._changeNeedRate(),this._state="ACTIVE",this._changeFeatureSet(),H._current=this,d.batchParticipantsOnStart||this._setParticipantsStatus(t,J.WAITING),this._openTransport(t,!1),this._conversation}catch(t){throw this._close(t,"Unable to join conversation"),t}finally{H._activationMutex=!1}})}onPush(r){return o(this,arguments,function*(e,t=Q.USER,i){if(H._activationMutex)throw c.warn("Conversation: there is already running activation"),new N(A.REJECTED);H._activationMutex=!0;try{let n=yield this._prepareConversation(e,t,i);if(this._mediaSource=this._createMediaSource(),!this._conversation)throw new N(A.UNKNOWN_ERROR);if(!n.conversation.participants.find(p=>{var l;return p.state===W.CALLED&&p.id===((l=this._conversation)==null?void 0:l.userId)}))throw c.log("Push rejected (there is an active call)"),m.log(v.PUSH,"rejected"),new N(A.REJECTED);if(yield this._processConnection(n),this._allocateTransport(),this._createSpeakerDetector(),this._createSpecListener(),this._signaling.readyToSend(),m.log(v.PUSH,"accepted"),H._current=this,H._delayedHangup)throw new N(A.CANCELED);H._activationMutex=!1}catch(n){throw H._activationMutex=!1,this._close(n,"Unable to handle inbound call push"),n}})}_isInWaitingHall(e){if(!e.conversation||(e.conversation.options||[]).indexOf(Si.WAITING_HALL)<0)return!1;let t=(e.conversation.participants||[]).find(i=>S.comparePeerId(i.peerId,e.peerId));return t&&t.restricted||!1}_acceptConcurrent(){return o(this,null,function*(){if(!this._mediaSource||!this._conversation)throw new N(A.UNKNOWN_ERROR);this._state="PROCESSING";let e=this._mediaSource.getMediaSettings();this._logWithMediaSettings(v.ACCEPT_CONCURRENT,e),c.debug("Concurrent call",{conversationId:this._conversation.id});try{yield this._signaling.acceptCall(this._mediaSource.getMediaSettings()),E.onCallAccepted(),this._state="ACTIVE",this._participantState=W.ACCEPTED,this._changeFeatureSet(),this._openTransport(Object.values(this._participants),!0)}catch(t){this._close(t,"Unable to accept concurrent call")}})}accept(e){return o(this,null,function*(){if(this._state!=="IDLE")throw m.log(v.ERROR,"acceptIncoming"),c.error("Unable to accept a call - invalid state"),new Error("Unable to accept a call - invalid state");if(!this._mediaSource||!this._conversation)throw new N(A.UNKNOWN_ERROR);this._state="PROCESSING",c.debug("Accept incoming call",e);try{yield this._mediaSource.request(e);let t=this._mediaSource.getMediaSettings();this._logWithMediaSettings(v.ACCEPT_INCOMING,t),this._signaling.changeMediaSettings(t),yield this._signaling.acceptCall(t),this._participantState=W.ACCEPTED;let i=Object.values(this._participants),r;if(d.batchParticipantsOnStart&&(r=S.mapSharedParticipants(i)),E.onCallAccepted(),E.onLocalStream(this._mediaSource.getStream(),t),E.onConversation(this._conversation.externalId,this._conversation.mediaModifiers,this._conversation.muteStates,r),d.useParticipantListChunk){let p=yield this._getInitialParticiapntListChunk();this._onConversationParticipantListChunk({participants:p})}E.onLocalStatus(J.WAITING),this._toggleJoinAvailability(),this._changeNeedRate();let n=St(this._conversation.muteStates,we.MUTE),s=St(this._conversation.muteStates,we.MUTE_PERMANENT);for(let p of[n,s])p.length&&(yield this._processMuteState({mediaOptions:p,stateUpdated:!0}));return this._state="ACTIVE",this._changeFeatureSet(),d.batchParticipantsOnStart||this._setParticipantsStatus(i,J.WAITING),this._openTransport(i,!0),this._conversation}catch(t){throw this._close(t,"Unable to accept call"),t}})}decline(){return o(this,null,function*(){var e;if(this._state!=="IDLE")throw m.log(v.ERROR,"declineIncoming"),c.error("Unable to decline a call - invalid state"),new Error("Unable to decline a call - invalid state");this._state="PROCESSING",c.debug("Decline incoming call"),this._logWithMediaSettings(v.DECLINE_INCOMING,(e=this._mediaSource)==null?void 0:e.getMediaSettings()),this._participantState=W.HUNGUP,this._signaling.ready&&(yield this._signaling.hangup(A.REJECTED)),this._close(new N(A.REJECTED))})}hangup(){return o(this,null,function*(){c.debug("Hangup");let e=this._state==="ACTIVE"?A.HUNGUP:A.CANCELED;m.log(v.HANGUP,e),this._signaling.ready?(yield this._signaling.hangup(e),this._close(new N(e))):E.onHangup(new N(A.HUNGUP),this._conversation&&this._conversation.id)})}addParticipant(e,t){return o(this,null,function*(){if(!this._signaling.ready){this._close(new N(A.UNKNOWN_ERROR),"Unable to add participant");return}let i=yield this._signaling.addParticipant(e,t),r=null;i.type==="error"&&(i.error==="call-unfeasible"?r=i.status:r=A.UNKNOWN_ERROR);let n=i.participant;yield this._onAddParticipant(S.composeId(n),n,r)})}removeParticipant(e,t=!1){return o(this,null,function*(){this._signaling.ready&&(yield this._signaling.removeParticipant(e,t),this._onRemoveParticipant(e))})}setVolume(e){this._audioOutput.volume=e}updateStatisticsInterval(){this._transport&&this._transport.updateStatisticsInterval()}_openTransport(e,t){var r;if(!this._transport)return;let i=[];for(let n of e)(n.state===W.CALLED||n.state===W.ACCEPTED)&&(this._transport.isAllocated(n.id)||this._transport.allocate(n.id,t)),n.state===W.ACCEPTED&&i.push(n.id);i.length&&this._transport.open(i,null,!!((r=this._conversation)==null?void 0:r.observer))}_close(e,t){t&&c.error(t,e),c.debug("Close conversation",e),e.error?this._signaling.ready&&this._signaling.hangup(A.FAILED):m.log(v.ERROR,e.hangup),H._activationMutex=!1;let i=this._conversation&&this._conversation.id;if([A.CANCELED,A.NOT_FRIENDS,A.CALLEE_IS_OFFLINE,A.CALLER_IS_BLOCKED,A.CALLER_IS_REJECTED].indexOf(e.hangup)!==-1||e.hangup===A.REJECTED&&!e.remote){E.onHangup(e,i),this.destroy();return}if(e.hangup===A.HUNGUP&&(!e.remote||this._participantState===W.CALLED)){E.onHangup(e,i),this.destroy();return}if(e.hangup===A.MISSED&&!e.remote){E.onHangup(e,i),this.destroy();return}if(e.hangup===A.SOCKET_CLOSED&&H._current&&!this._conversation){this._cleanupSignaling(),this._cleanupMediaSource();return}if(e.hangup===A.BUSY&&!e.remote){this._cleanupSignaling(),this._cleanupMediaSource();return}this._state="CLOSE",this._participantState=W.HUNGUP,this._changeFeatureSet(),this._cleanupMediaSource(),this._cleanupParticipants(),this._cleanupParticipantAgnosticStreams(),this._cleanupTransport(),this._cleanupSpeakerDetector(),this._cleanupSpecListener(),this._cleanupSignaling(),this._api.cleanup(),m.destroy(),this._conversation=null,H._current=null,H._delayedHangup=!1,E.onHangup(e||new N(A.UNKNOWN_ERROR),i),this._cooldownQueueCleanupTimer!==null&&(window.clearInterval(this._cooldownQueueCleanupTimer),this._cooldownQueueCleanupTimer=null)}destroy(){let e=this._conversation&&this._conversation.id;c.debug("Destroy conversation",{conversationId:e}),this._cleanupMediaSource(),this._cleanupParticipants(),this._cleanupParticipantAgnosticStreams(),this._cleanupTransport(),this._cleanupSpeakerDetector(),this._cleanupSpecListener(),this._cleanupSignaling(),this._api.cleanup(),this._cleanupListeners(),m.destroy(),this._conversation=null,H._current=null,H._delayedHangup=!1,this._cooldownQueueCleanupTimer!==null&&(window.clearInterval(this._cooldownQueueCleanupTimer),this._cooldownQueueCleanupTimer=null)}_getConversationParams(e){return o(this,null,function*(){let t=yield this._api.getConversationParams(e);c.debug("Api.getConversationParams",t);let i=[],{turn_server:r,stun_server:n}=t;if(n&&i.push(n),r){let s=r.urls.filter((p,l,u)=>u.indexOf(p)===l);s.push(`${s[s.length-1]}?transport=tcp`),i.push({urls:s,username:r.username,credential:r.credential})}return d.iceServers=i,d.wssBase=t.endpoint,d.wssToken=t.token,t.client_type&&(d.clientType=t.client_type),t})}_addGeoParamsToEndpoint(e,t){return t.isp_as_no&&(e+=`&ispAsNo=${t.isp_as_no}`),t.isp_as_org&&(e+=`&ispAsOrg=${t.isp_as_org}`),t.loc_cc&&(e+=`&locCc=${t.loc_cc}`),t.loc_reg&&(e+=`&locReg=${t.loc_reg}`),e}_startConversation(e,t,i,r,n="",s=!1,p=!1){return o(this,null,function*(){let l=S.uuid();c.debug("Conversation: start",{conversationId:l,opponentIds:e,opponentType:t,direction:i});let u=r.includes(de.VIDEO),R=yield this._api.startConversation(l,e,t,u,n,s,p);c.debug("Api.startConversation",R);let D=yield this._getConversationParams(R.id);R.endpoint=this._addGeoParamsToEndpoint(R.endpoint,D);let x=yield this._connectSignaling(je.START,R);return yield this._setConversation(R,x,i),x})}_joinConversation(e){return o(this,null,function*(){let{conversationId:t,mediaOptions:i,chatId:r,joinLink:n,observedIds:s}=e;c.debug("Conversation: join",{conversationId:t,joinLink:n,observedIds:s});let p=i.includes(de.VIDEO),l;if(t)l=yield this._api.joinConversation(t,p,r);else if(n)l=yield this._api.joinConversationByLink(n,p,s);else throw new N(A.UNKNOWN_ERROR);c.debug("Api.joinConversation",l),yield this._getConversationParams(l.id);let u=yield this._connectSignaling(je.JOIN,l);return yield this._setConversation(l,u,qe.JOINING),u})}_prepareConversation(r){return o(this,arguments,function*(e,t=Q.USER,i){c.debug("Conversation: push",{conversationId:e,type:t,peerId:i});let n=this._api.getUserId();if(!n)throw new N(A.UNKNOWN_ERROR);let s=yield this._getConversationParams(e),p=s.device_idx||0,l=`${d.wssBase}?userId=${n}&entityType=${t}&deviceIdx=${p}&conversationId=${e}&token=${d.wssToken}`;l=this._addGeoParamsToEndpoint(l,s);let u={id:e,peerId:i,endpoint:l,is_concurrent:!1,p2p_forbidden:!1,device_idx:p},R=yield this._connectSignaling(je.ACCEPT,u);return H._current&&(H._current._participantState===W.ACCEPTED||H._current._participantState===W.CALLED)?(c.log("Push rejected (busy)"),m.log(v.PUSH,"busy"),this._signaling.ready&&this._signaling.hangup(A.BUSY),Promise.reject({hangup:A.BUSY})):(H._current&&(H._current.destroy(),H._current=null),yield this._setConversation(u,R,qe.INCOMING,t),R)})}_createParticipant(e){return o(this,null,function*(){var i;let t=Object.assign({id:null,externalId:null,mediaSettings:me(),participantState:{},state:W.CALLED,status:null,remoteStream:null,mediaSource:null,platform:null,clientType:null,roles:[],networkRating:1,lastRequestedLayouts:{},muteStates:{},unmuteOptions:[],observedIds:[]},e);if(e.externalId){let r=S.decomposeParticipantId(t.id).compositeUserId;this._api.cacheExternalId(r,e.externalId)}else t.externalId=yield this._getParticipantId(t.id);return((i=t.observedIds)==null?void 0:i.length)&&(t.externalId.observer=!0),this._setParticipantMarkers(t,t.markers),t})}_getParticipantId(e){return o(this,null,function*(){try{let t=S.decomposeParticipantId(e),i=yield this._api.userId(t.compositeUserId);return Object.assign({deviceIdx:t.deviceIdx},i)}catch(t){throw this._close(new N(A.NETWORK_ERROR),t),t}})}_setConversation(n,s,p){return o(this,arguments,function*(e,t,i,r=Q.USER){yield this._prepareParticipants(t.conversation.participants);let l=this._api.getUserId(),u=e.device_idx||0;if(!l){let x=(t.conversation.participants||[]).find(L=>S.comparePeerId(L.peerId,t.peerId));if(!x)throw new N(A.UNKNOWN_ERROR);l=Number(x.id),x.idType&&(r=x.idType),x.deviceIdx&&(u=x.deviceIdx),this._api.setUserId(l)}let R=S.composeParticipantId(l,r,u),D=yield this._getParticipantId(R);this._conversation={userId:l,compositeUserId:R,externalId:D,acceptTime:t.conversation.acceptTime,features:t.conversation.features||[],id:t.conversation.id||e.id,participantsLimit:t.conversation.participantsLimit||30,topology:t.conversation.topology||se.DIRECT,direction:i,concurrent:t.isConcurrent||e.is_concurrent||!1,needRate:!1,chatId:t.conversation.multichatId,roles:[],recordInfo:null,joinLink:e.join_link,pinnedParticipantId:null,mediaModifiers:t.mediaModifiers,options:[],muteStates:{},unmuteOptions:[],networkRating:1,waitingHall:this._isInWaitingHall(t),observer:!1},this._signaling.setConversationId(e.id),e.p2p_forbidden&&(d.forceRelayPolicy=e.p2p_forbidden),m.log(v.RELAY_POLICY,d.forceRelayPolicy?"1":"0"),this._changeFeatureSet(),this._logDevices()})}_updateConversation(e){if(!this._conversation)throw new N(A.UNKNOWN_ERROR);this._conversation.acceptTime=e.conversation.acceptTime,this._conversation.features=e.conversation.features||[],this._conversation.participantsLimit=e.conversation.participantsLimit||30,this._conversation.topology=e.conversation.topology||se.DIRECT,this._conversation.concurrent=e.isConcurrent||!1,this._conversation.chatId=e.conversation.multichatId,this._conversation.mediaModifiers=e.mediaModifiers,this._conversation.waitingHall=!1}_createMediaSource(){let e=new Mi;return this.subscribe(e,Ee.SOURCE_CHANGED,this._onLocalMediaStreamChanged.bind(this)),this.subscribe(e,Ee.SCREEN_STATUS,this._onScreenSharingStatus.bind(this)),this._audioFix=new Ut(e),e}_connectSignaling(e,t){return o(this,null,function*(){return this._signaling.setEndpoint(t.endpoint),this.subscribe(this._signaling,_e.NOTIFICATION,this._onSignalingNotification.bind(this)),this.subscribe(this._signaling,_e.FAILED,this._onSignalingFailed.bind(this)),this.subscribe(this._signaling,_e.RECONNECT,this._onSignalingReconnect.bind(this)),this._signaling.connect(e,t)})}_processConnection(e){return o(this,null,function*(){yield this._registerConnectionParticipants(e),this._processConnectionData(e)})}_prepareParticipants(e){return o(this,null,function*(){let t=e.map(i=>i.id);t.length&&(yield this._api.prepareUserIds(t))})}_onConversationParticipantListChunk(e){let t=e.participants;t&&E.onConversationParticipantListChunk(this._participantListChunkToExternalChunk(this._createParticipantListChunk(t)))}_createParticipantListChunk(e){return Oe(Oe({},{participants:[],countBefore:0,countAfter:0,markerFound:!1}),e)}_participantListChunkToExternalChunk(e){let t=S.mapSharedParticipants(e.participants.map(i=>{let r=S.composeId(i);return this._participants[r]}));return st(Oe({},e),{participants:t})}_registerConnectionParticipants(e){return o(this,null,function*(){var t,i;yield this._registerParticipants(e.conversation.participants),((t=e.participants)==null?void 0:t.participants)&&(yield this._registerParticipants((i=e.participants)==null?void 0:i.participants))})}_registerParticipants(e){return o(this,null,function*(){if(!!this._conversation)for(let t of e){let i=S.composeId(t);if(i===this._conversation.compositeUserId){this._conversation.roles=t.roles||[],this._conversation.roles.length&&(c.debug(`Local roles changed: ${t.roles}`),E.onLocalRolesChanged(this._conversation.roles)),yield this._registerParticipantLocalMuteState(t);continue}if(t.state===W.HUNGUP||t.state===W.REJECTED){this._participants[t.id]&&this._removeParticipant(this._participants[t.id],A.HUNGUP);continue}this._registerParticipantInCache(yield this._createParticipant({id:i,externalId:t.externalId&&le.fromSignaling(t.externalId,t.deviceIdx||0),mediaSettings:me(t.mediaSettings),participantState:S.mapParticipantState(t),state:t.state,roles:t.roles||[],status:d.batchParticipantsOnStart?J.WAITING:null,muteStates:t.muteStates||{},unmuteOptions:t.unmuteOptions||[],observedIds:t.observedIds||[],markers:this._denormalizeMarkers(i,t.markers)})),t.roles&&t.roles.length&&(c.debug(`Roles for participant [${i}] changed: ${t.roles}`),E.onRolesChanged(this._participants[i].externalId,t.roles))}})}_registerParticipantLocalMuteState(e){return o(this,null,function*(){if(!e.muteStates)return Promise.resolve();let t=St(e.muteStates,we.MUTE),i=St(e.muteStates,we.MUTE_PERMANENT);for(let r of[t,i])!r.length||(yield this._onMuteParticipant({muteStates:e.muteStates,unmuteOptions:e.unmuteOptions,mediaOptions:r,stateUpdated:!0}))})}_getClientType(){return d.clientType}_getStatusByTransportState(e){let t;return e===F.CONNECTED?t=J.CONNECTED:e===F.CONNECTING||e===F.OPENED?t=J.CONNECTING:e===F.RECONNECTING&&(t=J.RECONNECT),t}_registerParticipantInCache(e){return this._participants[e.id]=e}_getExistedParticipantByIdOrCreate(e){return o(this,null,function*(){return this._participants[e]||this._createParticipant({id:e})})}_getExternalIdByParticipantId(e){return o(this,null,function*(){var t;return d.useParticipantListChunk?(yield this._getExistedParticipantByIdOrCreate(e)).externalId:(t=this._participants[e])==null?void 0:t.externalId})}_registerParticipantAndSetMarkersIfChunkEnabled(e,t){return o(this,null,function*(){if(d.useParticipantListChunk){let i=this._registerParticipantInCache(yield this._getExistedParticipantByIdOrCreate(e));return this._setParticipantMarkers(i,t),i}return this._participants[e]})}_warnParticipantNotInConversation(e){c.warn(`Participant [${e}] isn't in conversation`)}_setParticipantMarkers(e,t){return e.markers=this._denormalizeMarkers(e.id,t),e}_denormalizeMarkers(e,t){if(!t)return null;let i=Object.values(t).find(r=>"ts"in r&&"rank"in r);return Object.entries(t).reduce((r,[n,s])=>(r[n]=st(Oe(Oe({},i),s),{id:e}),r),{})}_processConnectionData(e){return o(this,null,function*(){S.isEmptyObject(this._conversation.muteStates)&&e.conversation.muteStates&&this._onMuteParticipant({muteStates:e.conversation.muteStates,unmuteOptions:e.unmuteOptions,mediaOptions:Object.keys(e.conversation.muteStates),muteAll:!0,stateUpdated:!0}),e.conversation.pinnedParticipantId&&(yield this._onPinParticipant(e.conversation.pinnedParticipantId)),this._onRecordInfo(e.conversation.recordInfo),this._onOptionsChanged(e.conversation.options),e.chatRoom&&e.chatRoom.totalCount&&this._onChatRoomUpdated(fi.ATTENDEE,e.chatRoom.totalCount,e.chatRoom.firstParticipants)})}_allocateTransport(){if(!this._conversation||!this._mediaSource)return;this._transport=new Ji(this._conversation.topology,this._signaling,this._mediaSource,this._serverSettings),this._debugInfo=new ai,this.subscribe(this._transport,G.STATE_CHANGED,this._onTransportStateChanged.bind(this)),this.subscribe(this._transport,G.LOCAL_STATE_CHANGED,this._onTransportLocalStateChanged.bind(this)),this.subscribe(this._transport,G.REMOTE_TRACK_ADDED,this._onRemoteTrackAdded.bind(this)),this.subscribe(this._transport,G.REMOTE_TRACK_REMOVED,this._onRemoteTrackRemoved.bind(this)),this.subscribe(this._transport,G.REMOTE_ALL_STALL,this._onRemoteAllStall.bind(this)),this.subscribe(this._transport,G.REMOTE_DATA_STATS,this._onRemoteDataStats.bind(this)),this.subscribe(this._transport,G.SIGNALLED_STALLED_PARTICIPANTS,this._onRemoteSignalledStall.bind(this)),this.subscribe(this._transport,G.TOPOLOGY_CHANGED,this._onTopologyChanged.bind(this)),this.subscribe(this._transport,G.NETWORK_STATUS,this._onNetworkStatus.bind(this)),this.subscribe(this._transport,G.REMOTE_STREAM_SECOND,this._onRemoteStreamSecond.bind(this)),this.subscribe(this._transport,G.PEER_CONNECTION_CLOSED,this._onPeerConnectionClosed.bind(this));let e=this._conversation.direction===qe.OUTGOING&&!this._conversation.concurrent;for(let t of Object.values(this._participants))(t.state===W.ACCEPTED||t.state===W.CALLED)&&this._transport.allocate(t.id,e)}_createSpeakerDetector(){this._transport&&(this._volumesDetector=new Yi(this._transport),this.subscribe(this._volumesDetector,rt.VOLUMES_DETECTED,this._onVolumesDetected.bind(this)),this._speakerDetector=new Qi(this._volumesDetector,this._transport,this._conversation.topology),this.subscribe(this._speakerDetector,zi.SPEAKER_CHANGED,this._onSpeakerChanged.bind(this)),this._localVolumeDetector=new ni(this._mediaSource))}_createSpecListener(){this._transport&&this._volumesDetector&&(this._specListener=new ci(this._transport,this._volumesDetector,this._participants))}_logDevices(){let e=b.getCameras().length,t=b.getMicrophones().length;c.debug("Cameras: "+e+(b.hasCameraPermission()?"✔":"✖")+", Microphones: "+t+(b.hasMicrophonePermission()?"✔":"✖")),m.log(v.DEVICES,`${e}_${t}`)}_logWithMediaSettings(e,t){m.log(e,[(t==null?void 0:t.isAudioEnabled)&&"audio",(t==null?void 0:t.isVideoEnabled)&&"video"].filter(Boolean).join("_"))}_removeParticipant(e,t){var i;e.state===W.CALLED||e.state===W.ACCEPTED||this._state==="CLOSE"||(e.id===this._lastSignalledActiveSpeakerId&&(this._lastSignalledActiveSpeakerId=null),!!this._participants[e.id]&&(t===A.HUNGUP?this._setParticipantsStatus([e],J.HANGUP):this._setParticipantsStatus([e],J.ERROR,t),(i=e.mediaSource)==null||i.disconnect(),this._conversation&&this._conversation.pinnedParticipantId===e.id&&(this._conversation.pinnedParticipantId=null),this.updateDisplayLayout([{uid:e.externalId,mediaType:ve.CAMERA,stopStream:!0}]),delete this._participants[e.id],E.onRemoteRemoved(e.externalId,e.markers)))}_cleanupListeners(){this.unsubscribe(),window.removeEventListener("unload",this._onUnload)}_cleanupMediaSource(){this._mediaSource&&(this._mediaSource.destroy(),this._mediaSource=null)}_cleanupParticipants(){Object.values(this._participants).forEach(e=>{var t,i,r;(t=e.remoteStream)==null||t.getTracks().forEach(n=>n.stop()),(i=e.secondStream)==null||i.getTracks().forEach(n=>n.stop()),(r=e.mediaSource)==null||r.disconnect()}),this._participants={},this._audioOutput&&this._audioOutput.destroy()}_cleanupParticipantAgnosticStreams(){c.debug("cleaning up participant-agnostic streams"),this._streamByStreamId.forEach(e=>{e.getTracks().forEach(t=>{t.stop()})}),this._streamByStreamId=new Map,this._streamWaitTimerByStreamDescription.forEach(e=>{window.clearTimeout(e)}),this._streamWaitTimerByStreamDescription=new Map,this._streamIdByStreamDescription=new Map,this._sequenceNumberByStreamDescription=new Map,this._cooldownTimestampByStreamDescription=new Map}_cleanupTransport(){this._transport&&(this._transport.destroy(),this._transport=null),this._debugInfo&&(this._debugInfo=null)}_cleanupSpeakerDetector(){this._speakerDetector&&(this._speakerDetector.destroy(),this._speakerDetector=null),this._volumesDetector&&(this._volumesDetector.destroy(),this._volumesDetector=null),this._localVolumeDetector&&(this._localVolumeDetector.destroy(),this._localVolumeDetector=null)}_cleanupSpecListener(){this._specListener&&(this._specListener.destroy(),this._specListener=null)}_cleanupSignaling(){this._signaling.close(),this._signaling.cleanup()}_onAddParticipant(e,t,i){return o(this,null,function*(){c.debug(`Add new participant [${e}]`);let r=this._participants[e];if(r&&(r.state===W.ACCEPTED||r.state===W.CALLED)){c.warn(`Participant [${r.id}:${r.state}] is already in conversation`);return}r||(r=this._registerParticipantInCache(yield this._createParticipant({id:e,externalId:t.externalId&&le.fromSignaling(t.externalId,t.deviceIdx||0),mediaSettings:me(t.mediaSettings),state:t.state,roles:t.roles||[],muteStates:t.muteStates||{},unmuteOptions:t.unmuteOptions||[],observedIds:t.observedIds||[]}))),this._setParticipantsStatus([r],J.WAITING),i?(r.state=W.HUNGUP,this._removeParticipant(r,i)):this._transport&&(r.state=W.CALLED,this._transport.allocate(r.id,!0),m.log(v.ADD_PARTICIPANT),this._invokeRolesChangedCallbackIfNeeded(r))})}_onRemoveParticipant(e){c.debug(`Remove participant [${e}]`);let t=[];for(let i=0;i<=Cn;i++){let r=S.compose(e,i),n=this._participants[r];n&&t.push(n)}if(!t.length){this._warnParticipantNotInConversation(e);return}if(this._transport)for(let i of t)this._transport.close(i.id);m.log(v.REMOVE_PARTICIPANT)}changeDevice(e){return o(this,null,function*(){return e==="audiooutput"?this._audioOutput.changeOutput():this._mediaSource?(e==="audioinput"&&(this._audioFix=new Ut(this._mediaSource)),this._mediaSource.changeDevice(e)):Promise.reject(te.UNKNOWN)})}toggleScreenCapturing(e){return o(this,null,function*(){return this._mediaSource?this._mediaSource.toggleScreenCapturing(e):Promise.reject(te.UNKNOWN)})}setVideoStream(e,t=!1){return o(this,null,function*(){if(this._mediaSource)return this._mediaSource.setVideoStream(e,t)})}setAudioStream(e){return o(this,null,function*(){if(this._mediaSource)return this._mediaSource.setAudioStream(e)})}toggleLocalVideo(e){return o(this,null,function*(){if(this._mediaSource)return m.log(v.MEDIA_STATUS,e?"video_1":"video_0"),this._mediaSource.toggleVideo(e)})}toggleLocalAudio(e){return o(this,null,function*(){if(this._mediaSource)return m.log(v.MEDIA_STATUS,e?"audio_1":"audio_0"),this._mediaSource.toggleAudio(e)})}changePriorities(e){return o(this,null,function*(){if(e.length<2||!this._signaling.ready)return;let t={},i={};for(let r of e){let n=typeof r.uid=="object"?r.uid:le.fromId(r.uid),s=le.toString(n);i[s]=r.priority}for(let r of Object.values(this._participants)){let n=le.toString(r.externalId);i.hasOwnProperty(n)&&(t[r.id]=i[n])}yield this._signaling.changePriorities(t)})}changeParticipantState(e){return o(this,null,function*(){for(let[t,i]of Object.entries(e))if(t.length>5||i.length>5)throw new Error("key/value max length is 5 chars, mappings with empty values (null or empty string) are discarded");yield this._signaling.changeParticipantState(e)})}requestKeyFrame(e){return o(this,null,function*(){let t={};return t[Fe(e)]={keyFrameRequested:!0},this._signaling.updateDisplayLayout(t)})}requestTestMode(e,t){return o(this,null,function*(){return this._signaling.requestTestMode(e,t)})}updateDisplayLayout(e){return o(this,null,function*(){if(e.length<1||!this._signaling.ready)return;c.log(`Update display layout [${this._signaling.getNextCommandSequenceNumber()}]`,e);let t={};for(let r of e){let n=typeof r.uid=="object"?r.uid:le.fromId(r.uid),s=this._api.getCachedOkIdByExternalId(n);if(!s){let R=le.toString(n);c.log(`Unknown participant external ID ${R}`);continue}let p=S.compose(s,n.deviceIdx),l=Fe({participantId:p,mediaType:r.mediaType,streamName:r.streamName}),u=this._participants[p];u&&(u.lastRequestedLayouts[l]=r),Lt(r)?this._streamIdByStreamDescription.has(l)&&!this._cooldownTimestampByStreamDescription.has(l)&&this._cooldownTimestampByStreamDescription.set(l,Date.now()):(this._cooldownTimestampByStreamDescription.delete(l),!this._streamIdByStreamDescription.has(l)&&d.videoTracksCount>0&&this._streamIdByStreamDescription.set(l,null),t[l]=r)}let i=this._cooldownTimestampByStreamDescription.keys();for(;this._streamIdByStreamDescription.size>d.videoTracksCount;){let r=i.next();if(r.done){c.error("Cannot accommodate all streaming requests: tracks available "+d.videoTracksCount+"; requested streams: "+Array.from(this._streamIdByStreamDescription.keys()));break}this._stopStreaming(r.value),t[r.value]={stopStream:!0}}yield this._sendUpdateDisplayLayout(t)})}feedback(e){return o(this,null,function*(){return this._signaling.feedback(e)})}_stopStreaming(e){if(this._cooldownTimestampByStreamDescription.delete(e),this._sequenceNumberByStreamDescription.set(e,this._signaling.getNextCommandSequenceNumber()),this._streamWaitTimerByStreamDescription.has(e)&&(c.log("Client asked to stop streaming before stream became available",e),window.clearTimeout(this._streamWaitTimerByStreamDescription.get(e)),this._streamWaitTimerByStreamDescription.delete(e)),this._streamIdByStreamDescription.get(e)){let i=Nt(e),r=this._participants[i.participantId];r?(i.streamName&&(i.mediaType===ve.STREAM||i.mediaType===ve.SCREEN)?E.onRemoteLive(r.externalId,i.streamName,null):E.onRemoteStream(r.externalId,null),m.log(v.PAT_DEALLOCATED)):c.log(`Cannot find participant to stop streaming: ${i.participantId}`)}this._streamIdByStreamDescription.delete(e)}_sendUpdateDisplayLayout(e){return o(this,null,function*(){if(Object.keys(e).length===0)return;let t=yield this._signaling.updateDisplayLayout(e);if(!t)return;let i=[];for(let[r,n]of Object.entries(t.errorCodeByParticipantId||{})){let s=Nt(r),p=this._participants[s.participantId];if(p){let l;typeof n!="number"?(c.warn(`Unexpected error code ${n} received for participant ${s.participantId}`),l=Mr.UNKNOWN_ERROR):l=Dr(n),i.push({externalId:p.externalId,errorReason:l})}}if(i&&i.length)throw new di("Could not allocate one or more participants",i)})}_cleanupCooldownQueue(){let e={},t=this._cooldownTimestampByStreamDescription.entries();do{let i=t.next();if(i.done)break;let r=i.value;if(r[1]+Tn>Date.now())break;let s=r[0];this._stopStreaming(s),e[s]={stopStream:!0}}while(!0);this._sendUpdateDisplayLayout(e)}_onParticipantSourcesUpdate(e){if(this._conversation){c.log("Received participant sources update notification",e);for(let t of e)this._waitForStreamIfNeeded(t)}}_onParticipantPromoted(e){return o(this,null,function*(){c.log("Promoted in waiting hall",!e.demote),e.demote?(c.log("Kicked from waiting hall"),this._close(new N(A.REMOVED))):(this._updateConversation(e),yield this._onJoinPart2(e))})}_onChatRoomUpdated(r){return o(this,arguments,function*(e,t=0,i=[]){c.log(`Chat room updated: ${e}`);let n=[],s=[];i.length&&(i.forEach(p=>{if(p.externalId){let l=he.fromSignaling(p.externalId);n.push(l),this._api.cacheExternalId(p.id.id,l)}else s.push(S.decomposeId(p.id.id).id)}),s.length&&!n.length&&(n=yield this._api.getExternalIdsByOkIds(s))),E.onChatRoomUpdated(e,t,n)})}_waitForStreamIfNeeded(e){var p,l;let t=this._matchStreamDescription(e.participantStreamDescription);if(!t||d.producerScreenDataChannel&&t.mediaType===ve.SCREEN)return;let i=Fe(t),r=this._sequenceNumberByStreamDescription.get(i);if(r&&r>e.sequenceNumber){c.warn(`Participant ${t.participantId} received outdated PAT response: sequence number ${e.sequenceNumber}; last sent sequence number for given participant is ${r}`),m.log(v.PAT_OUTDATED_RESPONSE);return}let n=e.streamId,s=e.rtpTimestamp?this._getWaitingTime(n,e.rtpTimestamp):0;if(s<=0){this._streamWaitTimerByStreamDescription.delete(i);let u=t.participantId,R=this._participants[u];if(!R){m.log(v.PAT_ERROR,"participantMissing"),c.error(`Could not find participant by ID: ${u}`);return}let D=this._streamByStreamId.get(n);if(!D){m.log(v.PAT_ERROR,"streamNotFound"),c.error(`Could not find stream by ID: ${n}`);return}m.log(v.PAT_ALLOCATED),this._streamIdByStreamDescription.set(i,n);let x=(p=e.participantStreamDescription)==null?void 0:p.mediaType;if(x===ve.STREAM||x===ve.MOVIE)((l=e.participantStreamDescription)==null?void 0:l.streamName)&&E.onRemoteLive(R.externalId,e.participantStreamDescription.streamName,D);else if(d.producerScreenTrack&&x===ve.SCREEN)E.onRemoteScreenStream(R.externalId,D);else{let L=(d.producerScreenTrack?null:R.secondStream)||D;E.onRemoteStream(R.externalId,L)}}else{c.debug(`Waiting for ${s} until stream ${n} for ${i} is switched`);let u=window.setTimeout(this._waitForStreamIfNeeded.bind(this,e),s);this._streamWaitTimerByStreamDescription.set(i,u)}}_matchStreamDescription(e){if(!e)return null;if(this._streamIdByStreamDescription.has(Fe(e)))return e;let t=e.participantId;if(e.mediaType){let i={participantId:t,mediaType:null};if(this._streamIdByStreamDescription.has(Fe(i)))return i}else{let i={participantId:t,mediaType:ve.CAMERA};if(this._streamIdByStreamDescription.has(Fe(i)))return i;let r={participantId:t,mediaType:ve.SCREEN};if(this._streamIdByStreamDescription.has(Fe(r)))return r}return c.error("Received unrequested allocation",e),null}_getWaitingTime(e,t){if(this._transport)return this._transport.getStreamWaitingTimeMs(e,t);throw new Error("transport is not initialized")}_isCallAdmin(){return this._conversation?S.includesOneOf(this._conversation.roles,[ot.ADMIN,ot.CREATOR]):!1}_checkAdminRole(){if(!!this._conversation&&!S.includesOneOf(this._conversation.roles,[ot.ADMIN,ot.CREATOR]))throw new Error("You don't have the required permission")}grantRoles(e,t,i){return o(this,null,function*(){this._checkAdminRole(),yield this._signaling.grantRoles(e,t,i)})}muteParticipant(){return o(this,arguments,function*(e=null,t,i=[]){this._checkAdminRole(),yield this._signaling.muteParticipant(e,t,i)})}pinParticipant(e,t){return o(this,null,function*(){this._checkAdminRole(),yield this._signaling.pinParticipant(e,t)})}updateMediaModifiers(e){return o(this,null,function*(){this._signaling.ready&&this._conversation&&(this._conversation.mediaModifiers=e,yield this._signaling.updateMediaModifiers(e))})}changeOptions(e){return o(this,null,function*(){if(this._signaling.ready&&this._conversation){this._checkAdminRole(),yield this._signaling.changeOptions(e);let t=gr(this._conversation.options,e);this._onOptionsChanged(t)}})}getWaitingHall(e,t,i){return o(this,null,function*(){if(!this._signaling)return Promise.reject();let r=null;e&&(r=ca(e));let n=yield this._signaling.getWaitingHall(r,t,i);if(n.error)return Promise.reject(n.message);let s=n.participants||[],p=[],l=[],u=null;return s.length&&(s.forEach(R=>{if(R.externalId){let D=he.fromSignaling(R.externalId);p.push(D),this._api.cacheExternalId(R.id.id,D)}else l.push(S.decomposeId(R.id.id).id)}),l.length&&!p.length&&(p=yield this._api.getExternalIdsByOkIds(l)),n.hasMore&&(u=oa(s[s.length-1].id))),{participants:p,pageMarker:u,totalCount:n.totalCount||0}})}promoteParticipant(e,t){return o(this,null,function*(){this._signaling&&(yield this._signaling.promoteParticipant(e,t))})}chatMessage(e,t=null){return o(this,null,function*(){this._signaling.ready&&(yield this._signaling.chatMessage(e,t))})}chatHistory(e){return o(this,null,function*(){if(this._signaling.ready){let t=yield this._signaling.chatHistory(e);for(let i=t.messages.length-1;i>=0;i--){let r=t.messages[i];yield this._onChatMessage(r)}}})}customData(e,t=null){return o(this,null,function*(){this._signaling.ready&&(yield this._signaling.customData(e,t))})}createJoinLink(){return o(this,null,function*(){if(this._conversation){let t=(yield this._api.createJoinLink(this._conversation.id)).join_link;if(t)return this._conversation.joinLink=t,t}return Promise.reject()})}removeJoinLink(){return o(this,null,function*(){if(this._conversation&&(yield this._api.removeJoinLink(this._conversation.id)).success){delete this._conversation.joinLink;return}return Promise.reject()})}addMovie(e){return o(this,null,function*(){var r;let t={movieId:e,participantId:(r=this._conversation)==null?void 0:r.compositeUserId},i=yield this._signaling.addMovie(t);if(i.error)throw new Error(i.error);return{movieId:i.movieId,streamType:i.streamType}})}updateMovie(e,t,i,r){return o(this,null,function*(){var p;let n={movieId:e,participantId:(p=this._conversation)==null?void 0:p.compositeUserId};(t||t===0)&&(n.gain=t),i&&(n.offset=i),typeof r!==void 0&&(n.pause=r);let s=yield this._signaling.updateMovie(n);if(s.error)throw new Error(s.error)})}removeMovie(e){return o(this,null,function*(){var r;let t={movieId:e,participantId:(r=this._conversation)==null?void 0:r.compositeUserId},i=yield this._signaling.removeMovie(t);if(i.error)throw new Error(i.error)})}startStream(e=!1,t=null,i=null,r="DIRECT_LINK",n=null){return o(this,null,function*(){let s={movieId:i,name:t,privacy:r,groupId:n,streamMovie:!e},p=yield this._signaling.startStream(s);return p.error?Promise.reject(p.message):p})}stopStream(){return o(this,null,function*(){let e=yield this._signaling.stopStream();return e.error?Promise.reject():e})}recordSetRole(e,t){return o(this,null,function*(){let i=yield this._signaling.recordSetRole(e,t);if(i.error)throw new Error(i.error)})}getStreamInfo(){return o(this,null,function*(){let e=yield this._signaling.getRecordStatus();return{movieId:e.recordMovieId,preview:e.recordMoviePreviewUrl}})}setLocalResolution(e,t,i){return o(this,null,function*(){var r;if(e<d.videoMinWidth||t<d.videoMinHeight)throw new Error("Sizes received are less than the `videoMinWidth` or `videoMinHeight`");if(i==null?void 0:i.effect){if(i.effect.width<d.videoMinWidth||i.effect.height<d.videoMinHeight)throw new Error("Sizes of effect received are less than the `videoMinWidth` or `videoMinHeight`");d.videoEffectMaxHeight=i.effect.height,d.videoEffectMaxWidth=i.effect.width}return d.videoMaxWidth=e,d.videoMaxHeight=t,(r=this._mediaSource)==null?void 0:r.setResolution(e,t)})}videoEffect(e){return o(this,null,function*(){var t;return(t=this._mediaSource)==null?void 0:t.videoEffect(e)})}getParticipants(e){return o(this,null,function*(){let t=e.externalIds.map(s=>({id:s.id,type:this._getClientType()})),i=yield this._signaling.getParticipants(t);if(i.error)throw new Error(i.error);let r=i.participants,n=this._transport.getState();return Promise.all(r.map(s=>o(this,null,function*(){var l;let p=S.composeId(s);return this._createParticipant({id:p,externalId:s.externalId&&le.fromSignaling(s.externalId,s.deviceIdx||0),mediaSettings:me(s.mediaSettings),participantState:S.mapParticipantState(s),state:s.state,roles:s.roles||[],status:(l=this._getStatusByTransportState(n))!=null?l:J.WAITING,muteStates:s.muteStates||{},unmuteOptions:s.unmuteOptions||[],observedIds:s.observedIds||[],markers:this._denormalizeMarkers(p,s.markers)})}))).then(S.mapSharedParticipants)})}getParticipantListChunk(e){return o(this,null,function*(){var p;c.log("Request participant list chunk",e);let t=yield this._signaling.getParticipantListChunk(e);if(t.error)throw new Error(t.error);let i=this._createParticipantListChunk(t.chunk),r=i.participants.filter(l=>{let u=S.composeId(l);return!this._participants[u]});yield this._registerParticipants(r);let n=(p=this._transport)==null?void 0:p.getState();return i.participants.forEach(l=>{var D;let u=S.composeId(l),R=this._participants[u];R.status=(D=this._getStatusByTransportState(n))!=null?D:J.WAITING,Object.assign(R.muteStates,l.muteStates),Object.assign(R.unmuteOptions,l.unmuteOptions)}),this._participantListChunkToExternalChunk(i)})}_getInitialParticiapntListChunk(){return o(this,null,function*(){let e=d.participantListChunkInitIndex,t=d.participantListChunkInitCount,i="GRID";return(yield this._signaling.getParticipantListChunk({listType:i,fromIdx:e,count:t})).chunk})}_onLocalMediaStreamChanged(e){return o(this,null,function*(){var t,i;!this._conversation||(c.debug("Local media stream changed",e.mediaSettings),E.onLocalStreamUpdate(e.mediaSettings,e.kind),this._signaling.ready&&!((t=this._conversation)==null?void 0:t.waitingHall)&&!((i=this._conversation)==null?void 0:i.observer)&&(yield this._signaling.changeMediaSettings(e.mediaSettings)))})}_onScreenSharingStatus(e){return o(this,null,function*(){var t,i;if(c.log("Screen sharing changed",e.track,e.mediaSettings),d.consumerScreenTrack){let r=e.track?new MediaStream([e.track]):null;E.onScreenStream(r,e.mediaSettings),this._signaling.ready&&!((t=this._conversation)==null?void 0:t.waitingHall)&&!((i=this._conversation)==null?void 0:i.observer)&&(yield this._signaling.changeMediaSettings(e.mediaSettings))}})}_changeRemoteMediaSettings(e,t){c.debug(`Remote media settings changed [${e}]`,t);let i=this._participants[e];if(!i){this._warnParticipantNotInConversation(e);return}i.mediaSettings=t,this._state==="ACTIVE"&&E.onRemoteMediaSettings(i.externalId,t,i.markers),this._specListener&&this._specListener.onChangeRemoteMediaSettings(e,t)}_changeRemoteParticipantState(e,t){c.debug(`Remote participant state changed [${e}]`,t);let i=this._participants[e];if(!i){this._warnParticipantNotInConversation(e);return}i.participantState=t||{},this._state==="ACTIVE"&&E.onRemoteParticipantState(i.externalId,i.participantState,i.markers)}_invokeRolesChangedCallbackIfNeeded(e){this._state==="ACTIVE"&&e.roles&&e.roles.length&&(c.debug(`Roles for participant [${e.id}] changed: ${e.roles}`),E.onRolesChanged(e.externalId,e.roles))}_onSignalingNotification(e){switch(e.notification){case w.ACCEPTED_CALL:return this._onAcceptedCall(e);case w.HUNGUP:return this._onHungup(e);case w.PARTICIPANT_ADDED:return this._onAddedParticipant(e);case w.PARTICIPANT_JOINED:return this._onJoinedParticipant(e);case w.CLOSED_CONVERSATION:return this._onClosedConversation(e);case w.MEDIA_SETTINGS_CHANGED:return this._onMediaSettingsChanged(e);case w.PARTICIPANT_STATE_CHANGED:return this._onParticipantStateChanged(e);case w.RATE_CALL_DATA:return this._onNeedRate();case w.FEATURE_SET_CHANGED:return this._onFeatureSetChanged(e);case w.MULTIPARTY_CHAT_CREATED:return this._onMultipartyChatCreated(e);case w.FORCE_MEDIA_SETTINGS_CHANGE:return this._onForceMediaSettingsChange(e);case w.SETTINGS_UPDATE:return this._onSettingsUpdate(e);case w.VIDEO_QUALITY_UPDATE:return this._onVideoQualityUpdate(e);case w.REGISTERED_PEER:return this._onPeerRegistered(e);case w.SWITCH_MICRO:return this._onMicSwitched(e);case w.CHAT_MESSAGE:return this._onChatMessage(e);case w.CUSTOM_DATA:return this._onCustomData(e);case w.RECORD_STARTED:return this._onRecordInfo(e.recordInfo);case w.RECORD_STOPPED:return this._onRecordInfo(null);case w.ROLES_CHANGED:return this._onRolesChanged(e.participantId,e.roles||[]);case w.MUTE_PARTICIPANT:return this._onMuteParticipant(e);case w.PIN_PARTICIPANT:return this._onPinParticipant(e.participantId,e.unpin,e.markers);case w.OPTIONS_CHANGED:return this._onOptionsChanged(e.options||[]);case w.PARTICIPANT_SOURCES_UPDATE:return this._onParticipantSourcesUpdate(e.participantUpdateInfos);case w.PROMOTE_PARTICIPANT:return this._onParticipantPromoted(e);case w.CHAT_ROOM_UPDATED:return this._onChatRoomUpdated(e.eventType,e.totalCount,e.firstParticipants);case w.JOIN_LINK_CHANGED:return this._onJoinLinkChanged(e);case w.FEEDBACK:return this._onFeedback(e)}}_onSignalingReconnect(e){return o(this,null,function*(){if(!this._conversation)return;e.conversation.acceptTime&&(this._conversation.acceptTime=e.conversation.acceptTime),e.conversation.participantsLimit&&(this._conversation.participantsLimit=e.conversation.participantsLimit),e.conversation.features&&(this._conversation.features=e.conversation.features,this._changeFeatureSet()),e.conversation.pinnedParticipantId!==this._conversation.pinnedParticipantId&&(e.conversation.pinnedParticipantId?yield this._onPinParticipant(e.conversation.pinnedParticipantId,!1):this._conversation.pinnedParticipantId&&(yield this._onPinParticipant(this._conversation.pinnedParticipantId,!0))),e.conversation.state;let t=null;if(e.conversation.participants){let i=Object.keys(this._participants),r=[];for(let n of e.conversation.participants){let s=S.composeId(n),p=n.roles||[];if(s===this._conversation.compositeUserId){t=me(n.mediaSettings),bt(this._conversation.roles,p)||this._onRolesChanged(s,p);continue}r.push(s);let l=this._participants[s];if(!l)yield this._onJoinedParticipant({participantId:n.id,participant:n,mediaSettings:n.mediaSettings});else{let u=me(n.mediaSettings);Vr(u,l.mediaSettings)||this._changeRemoteMediaSettings(s,u);let R=S.mapParticipantState(n),D=l.participantState;S.isEqualParticipantState(R,D)||this._changeRemoteParticipantState(s,R),bt(p,l.roles)||this._onRolesChanged(l.id,p)}}for(let n of i)r.indexOf(n)<0&&this._removeParticipant(this._participants[n],A.HUNGUP)}this._onMuteParticipant({muteStates:e.conversation.muteStates,unmuteOptions:e.unmuteOptions,mediaOptions:[]},t),this._onRecordInfo(e.conversation.recordInfo),this._onOptionsChanged(e.conversation.options)})}_onSignalingFailed(e){c.error("Signaling failed",e),this._close(e)}_onAcceptedCall(e){return o(this,null,function*(){let t=S.composeMessageId(e),i=S.getPeerIdString(e.peerId);if(c.debug(`Participant accepted call [${t}]`),this._conversation&&t===this._conversation.compositeUserId){this._close(new N(A.MISSED),"Call accepted on other device");return}let r=this._participants[t];r||(r=this._registerParticipantInCache(yield this._createParticipant({id:t,mediaSettings:me(e.mediaSettings)}))),r.state=W.ACCEPTED,r.mediaSettings=me(e.mediaSettings),this._logWithMediaSettings(v.ACCEPTED_OUTGOING,r.mediaSettings),this._conversation&&this._conversation.direction===qe.OUTGOING&&(this._state==="IDLE"||this._state==="PROCESSING")&&(this._state="ACTIVE",this._changeFeatureSet()),this._state==="ACTIVE"&&this._transport&&this._transport.open([r.id],i),this._changeRemoteMediaSettings(t,r.mediaSettings),this._changeRemoteParticipantState(t)})}_onHungup(e){return o(this,null,function*(){c.debug(`Participant hungup [${e.participantId}]`,{reason:e.reason});let t=S.composeMessageId(e);if(this._conversation&&this._conversation.compositeUserId===t){this._close(new N(e.reason,{remote:!0}));return}yield this._registerParticipantAndSetMarkersIfChunkEnabled(t,e.markers);let i=this._participants[t];if(!i){this._warnParticipantNotInConversation(t);return}this._transport&&this._transport.close(t),i.state=e.reason===A.REJECTED?W.REJECTED:W.HUNGUP,this._state!=="CLOSE"&&this._removeParticipant(i,A.HUNGUP)})}_onAddedParticipant(e){return o(this,null,function*(){var r,n;c.debug(`Participant added [${e.participantId}]`);let t=S.composeMessageId(e),i=this._participants[t];if(i&&i.state!==W.HUNGUP&&i.state!==W.REJECTED){c.debug(`Participant [${t}] is already in conversation and is active`);return}i||(i=this._registerParticipantInCache(yield this._createParticipant({id:t,externalId:e.participant.externalId&&le.fromSignaling(e.participant.externalId,e.participant.deviceIdx||0),mediaSettings:me(e.participant.mediaSettings),state:e.participant.state,participantState:S.mapParticipantState(e.participant),roles:e.participant.roles||[],muteStates:e.participant.muteStates||{},unmuteOptions:e.participant.unmuteOptions||[],observedIds:e.participant.observedIds||[]}))),i.state=W.CALLED,i.mediaSettings=me((r=e.participant)==null?void 0:r.mediaSettings),i.participantState=S.mapParticipantState(e.participant),i.roles=((n=e.participant)==null?void 0:n.roles)||[],this._setParticipantsStatus([i],J.WAITING),this._state==="ACTIVE"&&this._transport&&this._transport.allocate(i.id,!0),E.onParticipantAdded(i.externalId,i.markers),this._changeRemoteMediaSettings(t,i.mediaSettings),this._changeRemoteParticipantState(t,i.participantState),this._invokeRolesChangedCallbackIfNeeded(i)})}_onJoinedParticipant(e){return o(this,null,function*(){var r,n;c.debug(`Participant joined [${e.participantId}]`);let t=S.composeMessageId(e),i=this._participants[t];if(i&&i.state===W.ACCEPTED){c.warn(`Participant [${t}] is already in conversation and is active`);return}i||(i=this._registerParticipantInCache(yield this._createParticipant({id:t,externalId:e.participant.externalId&&le.fromSignaling(e.participant.externalId,e.participant.deviceIdx||0),mediaSettings:me(e.participant.mediaSettings),state:e.participant.state,participantState:S.mapParticipantState(e.participant),roles:e.participant.roles||[],muteStates:e.participant.muteStates||{},unmuteOptions:e.participant.unmuteOptions||[],observedIds:e.participant.observedIds||[],markers:this._denormalizeMarkers(t,e.participant.markers)}))),this._conversation&&this._conversation.direction===qe.OUTGOING&&(this._state==="IDLE"||this._state==="PROCESSING")&&(this._state="ACTIVE",this._changeFeatureSet()),i.state=W.ACCEPTED,i.mediaSettings=me(e.mediaSettings),i.participantState=S.mapParticipantState(e.participant),i.roles=e.participant.roles||[],((r=this._transport)==null?void 0:r.isAllocated(i.id))?this._setParticipantsStatus([i],J.CONNECTED):this._setParticipantsStatus([i],J.WAITING),this._state==="ACTIVE"&&this._transport&&(this._transport.isAllocated(i.id)||this._transport.allocate(i.id,!0),this._transport.open([i.id],null,!!((n=this._conversation)==null?void 0:n.observer))),E.onParticipantJoined(i.externalId,i.markers),this._changeRemoteMediaSettings(t,i.mediaSettings),this._changeRemoteParticipantState(t,i.participantState),this._invokeRolesChangedCallbackIfNeeded(i),E.onMuteStates(i.muteStates,i.unmuteOptions,Object.keys(i.muteStates),!1,!1,i.externalId,void 0,!0)})}_onClosedConversation(e){this._toggleJoinAvailability(),this._close(new N(e.reason,{remote:!0}))}_onMediaSettingsChanged(e){return o(this,null,function*(){let t=S.composeMessageId(e);yield this._registerParticipantAndSetMarkersIfChunkEnabled(t,e.markers),this._changeRemoteMediaSettings(t,me(e.mediaSettings))})}_onParticipantStateChanged(e){return o(this,null,function*(){let t=S.composeMessageId(e);yield this._registerParticipantAndSetMarkersIfChunkEnabled(t,e.markers),this._changeRemoteParticipantState(t,S.mapParticipantState(e))})}_onNeedRate(){this._conversation&&(this._conversation.needRate=!0,this._changeNeedRate())}_onFeatureSetChanged(e){this._conversation&&(this._conversation.features=e.features,this._changeFeatureSet())}_onMultipartyChatCreated(e){this._conversation&&(this._conversation.chatId=e.chatId,this._toggleJoinAvailability(),E.onMultipartyChatCreated(this._conversation))}_onForceMediaSettingsChange(e){return o(this,null,function*(){if(!this._mediaSource)return;let t=this._mediaSource.getMediaSettings(),i=me(e.mediaSettings);t.isAudioEnabled!==i.isAudioEnabled&&(yield this._mediaSource.toggleAudio(i.isAudioEnabled)),t.isVideoEnabled!==i.isVideoEnabled&&(yield this._mediaSource.toggleVideo(i.isVideoEnabled)),d.consumerScreenTrack&&t.isScreenSharingEnabled!==i.isScreenSharingEnabled&&(yield this._mediaSource.toggleScreenCapturing(i.isScreenSharingEnabled))})}_onSettingsUpdate(e){c.debug("Got settings update notification",e);let t={camera:e.camera,screenSharing:e.screenSharing};this._serverSettings=Ki(this._serverSettings,t),this._transport&&this._transport.updateSettings(this._serverSettings)}_onVideoQualityUpdate(e){c.debug("Got video quality update notification",e);let t=Math.round(e.quality.maxBitrate/1024),i=e.quality.maxDimension,r={camera:Object.assign({},this._serverSettings.camera,{maxBitrateK:t,maxDimension:i}),screenSharing:null};this._serverSettings=Ki(this._serverSettings,r),this._transport&&this._transport.updateSettings(this._serverSettings)}_onPeerRegistered(e){let t=S.composeMessageId(e);this._participants[t]&&(this._participants[t].clientType=e.clientType,this._participants[t].platform=e.platform)}_onMicSwitched(e){return o(this,null,function*(){E.onDeviceSwitched(de.AUDIO,!e.mute),yield this.toggleLocalAudio(!e.mute)})}_onChatMessage(e){return o(this,null,function*(){let t=S.composeMessageId(e),i;this._participants[t]?i=this._participants[t].externalId:i=yield this._getParticipantId(t),E.onChatMessage(e.message,i,e.direct)})}_onCustomData(e){return o(this,null,function*(){if(e.data.hasOwnProperty("sdk"))return;let t=S.composeMessageId(e),i;this._participants[t]?i=this._participants[t].externalId:i=yield this._getParticipantId(t),E.onCustomData(e.data,i,e.direct)})}_onRecordInfo(e){return o(this,null,function*(){var i;if(!this._conversation)return;let t=!1;if(!this._conversation.recordInfo!=!e?t=!0:this._conversation.recordInfo&&e&&(t=this._conversation.recordInfo.recordMovieId!==e.recordMovieId),t)if(e){let r=yield this._getParticipantId(e.initiator);E.onRecordStarted(r,e.recordMovieId,e.recordStartTime,e.recordType,e.recordExternalMovieId,e.recordExternalOwnerId)}else E.onRecordStopped();this._conversation.recordInfo=e,e&&this._transport.getTopology()===se.SERVER&&this._participantState!==W.CALLED&&this._transport.open(this._transport.allocated(),null,!!((i=this._conversation)==null?void 0:i.observer),!0)})}_onRolesChanged(e,t){if(this._conversation&&e===this._conversation.compositeUserId&&!bt(this._conversation.roles,t)){c.debug(`Local roles changed: ${t}`),this._conversation.roles=t,E.onLocalRolesChanged(t),this._processMuteState({mediaOptions:St(this._conversation.muteStates,we.MUTE_PERMANENT),stateUpdated:!0});return}let i=this._participants[e];i&&!bt(i.roles,t)&&(c.debug(`Roles for participant [${e}] changed: ${t}`),i.roles=t,E.onRolesChanged(i.externalId,t))}_onMuteParticipant(e,t=null){return o(this,null,function*(){if(!this._conversation)return;let i=e.muteStates||{},r=e.unmuteOptions||[],n=e.mediaOptions||[],s=e.adminId?this._participants[e.adminId]:null;if(e.participantId&&e.participantId!==this._conversation.compositeUserId){if(!this._isCallAdmin()){c.warn(`Not admin got mute states for participant [${e.participantId}]`);return}let p=this._participants[e.participantId];p&&(c.debug(`Mute states for participant [${e.participantId}] changed`,i),E.onMuteStates(i,r,n,e.muteAll,e.unmute,p.externalId,s==null?void 0:s.externalId,e.stateUpdated,e.requestedMedia));return}if(!(S.isObjectsEquals(this._conversation.muteStates,i)&&S.isArraysEquals(this._conversation.unmuteOptions,r)&&!n.length)){if(this._conversation.muteStates=i,this._conversation.unmuteOptions=r,e.adminId===this._conversation.compositeUserId){e.muteAll&&E.onMuteStates(i,r,n,e.muteAll,e.unmute,null,this._conversation.externalId,e.stateUpdated,e.requestedMedia);return}yield this._processMuteState({mediaOptions:n,muteAll:e.muteAll,unmute:e.unmute,serverSettings:t,admin:s,stateUpdated:e.stateUpdated,requestedMedia:e.requestedMedia})}})}_processMuteState(l){return o(this,arguments,function*({mediaOptions:e=[],muteAll:t=!1,unmute:i=!1,serverSettings:r=null,admin:n=null,stateUpdated:s,requestedMedia:p}){if(!this._conversation||!this._mediaSource||this._participantState!==W.ACCEPTED)return;let u=Object.assign({},this._conversation.muteStates),R=this._conversation.unmuteOptions,D=this._mediaSource.getMediaSettings(),x=Object.entries(u);for(let[L,q]of x)if(!(q!==we.MUTE&&q!==we.MUTE_PERMANENT)&&(this._isCallAdmin()&&q===we.MUTE_PERMANENT&&!t&&(u[L]=we.MUTE),!(!e.includes(L)||i)))switch(L){case de.VIDEO:D.isVideoEnabled&&!(r==null?void 0:r.isVideoEnabled)&&(E.onDeviceSwitched(de.VIDEO,!1),yield this.toggleLocalVideo(!1));break;case de.AUDIO:D.isAudioEnabled&&!(r==null?void 0:r.isAudioEnabled)&&(E.onDeviceSwitched(de.AUDIO,!1),yield this.toggleLocalAudio(!1));break;case de.SCREEN_SHARING:D.isScreenSharingEnabled&&!(r==null?void 0:r.isScreenSharingEnabled)&&(E.onDeviceSwitched(de.SCREEN_SHARING,!1),yield this.toggleScreenCapturing(!1));break}E.onMuteStates(u,R,e,t,i,null,n==null?void 0:n.externalId,s,p)})}_onPinParticipant(e,t=!1,i){return o(this,null,function*(){if(!this._conversation)return;let r=this._conversation.pinnedParticipantId;if(r&&r!==e)if(this._conversation.compositeUserId===r)E.onLocalPin(!0);else{let n=yield this._getExternalIdByParticipantId(r);n&&E.onPinnedParticipant(n,!0,this._denormalizeMarkers(e,i))}if(this._conversation.compositeUserId===e)E.onLocalPin(t);else{let n=yield this._getExternalIdByParticipantId(e);n&&E.onPinnedParticipant(n,t,this._denormalizeMarkers(e,i))}this._conversation.pinnedParticipantId=t?null:e})}_onOptionsChanged(e){this._conversation&&!_r(this._conversation.options,e)&&(this._conversation.options=e,E.onOptionsChanged(e))}_onNetworkStatus(e){if(this._conversation){let t=[];for(let[i,r]of Object.entries(e)){let n;if(i===this._conversation.compositeUserId||i==="")n=this._conversation.networkRating;else if(this._participants[i])n=this._participants[i].networkRating;else continue;if(n!==r)if(i===this._conversation.compositeUserId||i==="")this._conversation.networkRating=r,E.onLocalNetworkStatusChanged(r);else{let s=this._participants[i];s.networkRating=r,t.push({uid:s.externalId,rating:r})}}if(t.length===0)return;c.log("Received network status update: ",e),E.onNetworkStatusChanged(t)}}_onRemoteStreamSecond(e,t){let i=this._participants[e];if(!!i){if(d.producerScreenTrack){E.onRemoteScreenStream(i.externalId,t);return}if(i.secondStream=t,d.videoTracksCount>0){let r=e;if(!this._streamIdByStreamDescription.has(r)){c.error("Received remote stream notification for a participant that has no track associated with it",r);return}let n=this._streamIdByStreamDescription.get(r);if(!n||this._streamWaitTimerByStreamDescription.has(r)){c.log("Delaying secondary stream start/stop until main stream becomes available",r);return}let s=this._streamByStreamId.get(n);if(!s){m.log(v.PAT_ERROR,"streamNotFound"),c.error(`Could not find stream by ID: ${n}`);return}E.onRemoteStream(i.externalId,i.secondStream||s)}else{let r=t||i.remoteStream;r&&E.onRemoteStream(i.externalId,r)}}}_onPeerConnectionClosed(e){e===se.SERVER&&this._cleanupParticipantAgnosticStreams()}_changeFeatureSet(){if(this._conversation){let e=this._state==="ACTIVE",t=this._conversation.features.includes(mr.ADD_PARTICIPANT);E.onCallState(e,t,this._conversation)}}_changeNeedRate(){this._conversation&&this._conversation.needRate&&E.onRateNeeded()}_onVolumesDetected(e){let t=[];for(let[i,r]of Object.entries(e)){let n=this._participants[i];n&&n.externalId&&t.push({uid:n.externalId,volume:r.real})}E.onVolumesDetected(t)}_onSpeakerChanged(e){this._activeSpeakerId=e,this._participants[e]&&this._lastSignalledActiveSpeakerId!==e&&(E.onSpeakerChanged(this._participants[e].externalId),this._lastSignalledActiveSpeakerId=e)}_onTransportStateChanged(e,t){return o(this,null,function*(){c.debug(`Transport state has changed: ${t}`,e);let i=this._getStatusByTransportState(t);if(!i)return;let r=e.reduce((n,s)=>{if(s in this._participants){let p=this._participants[s];n.push(p),t===F.CONNECTED&&(p.remoteStream||(p.mediaSettings&&this._changeRemoteMediaSettings(s,p.mediaSettings),this._changeRemoteParticipantState(s,p.participantState)),this._updateDisplayLayoutFromCache(s))}else this._warnParticipantNotInConversation(s);return n},[]);!r.length||this._setParticipantsStatus(r,i)})}_onTransportLocalStateChanged(e){return o(this,null,function*(){c.debug(`Local transport state has changed: ${e}`),e===F.CONNECTED&&E.onLocalStatus(J.CONNECTED),e===F.CONNECTING&&E.onLocalStatus(J.CONNECTING),e===F.RECONNECTING&&E.onLocalStatus(J.RECONNECT),e===F.FAILED&&this._transport&&this._transport.allocated().length===0&&(this._signaling.ready&&(yield this._signaling.hangup(A.FAILED)),this._close(new N(A.FAILED),"Transport failed"))})}_onRemoteTrackAdded(e,t,i){return o(this,null,function*(){if(e.endsWith(xe.AUDIO_MIX))c.debug("Remote audio mix track added"),this._audioOutput.add(i),E.onRemoteMixedAudioStream(t);else if(e.startsWith(xe.PARTICIPANT_AGNOSTIC_TRACK_PREFIX))c.debug(`Participant-agnostic track added: ${e}`),this._streamByStreamId.set(e,t);else{c.debug(`Remote track added on the participant [${e}]`,{kind:i.kind});let r=this._participants[e];if(r||(c.warn(`Conversation: track added before participant [${e}]`),r=this._registerParticipantInCache(yield this._createParticipant({id:e})),this._setParticipantsStatus([r],J.WAITING),this._activeSpeakerId===e&&this._lastSignalledActiveSpeakerId!==e&&(E.onSpeakerChanged(r.externalId),this._lastSignalledActiveSpeakerId=e)),this._transport&&!this._transport.isAllocated(r.id)&&this._transport.allocate(r.id,!1),i.kind===ae.audio&&(this._audioOutput.add(i),d.preserveAudioTracks||t.removeTrack(i)),r.remoteStream!==t){if(r.remoteStream=t,r.secondStream)return;E.onRemoteStream(r.externalId,t)}r.mediaSettings&&this._changeRemoteMediaSettings(e,r.mediaSettings),d.batchParticipantsOnStart||this._changeRemoteParticipantState(e,r.participantState)}})}_onRemoteTrackRemoved(e,t,i){switch(c.debug(`[${e}] remote track (removed)`,{track:i}),i.kind){case ae.audio:this._removeAudioTrack(e,t,i);break;case ae.video:case ae.screen:this._removeVideoTrack(e,t,i);break}}_removeAudioTrack(e,t,i){if(e!==xe.AUDIO_MIX){let r=this._participants[e];if(!r||r.remoteStream&&r.remoteStream!==t)return}this._audioOutput.remove(i)}_removeVideoTrack(e,t,i){}_onTopologyChanged(e){e===se.DIRECT&&(this._onRemoteSignalledStall([]),this._onRemoteAllStall(!1)),this._conversation&&(this._conversation.topology=e,this._changeFeatureSet())}_onRemoteAllStall(e){if(this._remoteAllStalled===e)return;this._remoteAllStalled=e;let t=[],i=[];for(let r in this._participants)if(this._participants.hasOwnProperty(r)){let n=this._participants[r];e||this._lastStalled[r]?t.push(n):i.push(n)}t.length&&this._setParticipantsStatus(t,J.RECONNECT),i.length&&this._setParticipantsStatus(i,J.CONNECTED)}_onRemoteSignalledStall(e){let t={},i=[],r=[];e.forEach(n=>{if(t[n]=!0,!this._lastStalled[n]){let s=this._participants[n];s&&!this._remoteAllStalled&&i.push(s)}delete this._lastStalled[n]}),Object.keys(this._lastStalled).forEach(n=>{let s=this._participants[n];s&&!this._remoteAllStalled&&r.push(s)}),i.length&&this._setParticipantsStatus(i,J.RECONNECT),r.length&&this._setParticipantsStatus(r,J.CONNECTED),this._lastStalled=t}_onRemoteDataStats(e){this._debugInfo&&this._debugInfo.onRemoteDataStats(e,this._participants),this._fixAudioDevice(e.outbound.rtps)}_fixAudioDevice(e){var t;!b.hasMicrophone()||!this._audioFix||!((t=this._mediaSource)==null?void 0:t.getMediaSettings().isAudioEnabled)||this._audioFix.fix(e)}_toggleJoinAvailability(){let e=this._conversation&&this._conversation.chatId,t=e&&this._state!=="CLOSE"||!1;e&&(c.debug("Toggle join availability",{available:t,chatId:e}),E.onJoinStatus(t,e))}_updateDisplayLayoutFromCache(e){return o(this,null,function*(){var i;if(((i=this._transport)==null?void 0:i.getTopology())!==se.SERVER)return;let t=this._participants[e];t&&t.lastRequestedLayouts&&Object.keys(t.lastRequestedLayouts).length&&(yield this.updateDisplayLayout(Object.values(t.lastRequestedLayouts)))})}_setParticipantsStatus(e,t,i=null){if(!e.length)return;let r=e.reduce((n,s)=>(s.status!==t&&(s.status=t,d.batchParticipantsOnStart?n.push(s.externalId):E.onParticipantStatus(s.externalId,t,i)),n),[]);!r.length||d.batchParticipantsOnStart&&E.onRemoteStatus(r,t,i)}_onJoinLinkChanged(e){E.onJoinLinkChanged(e.joinLink)}_onFeedback(e){return o(this,null,function*(){let t=n=>o(this,null,function*(){return(yield this._registerParticipantAndSetMarkersIfChunkEnabled(n)).externalId}),i=e.feedback.map(n=>o(this,null,function*(){let s=n.items.map(l=>o(this,null,function*(){if(l.participantId===this._conversation.compositeUserId)return Promise.resolve(st(Oe({},l),{participantId:this._conversation.externalId}));let u=yield t(l.participantId);return st(Oe({},l),{participantId:u})})),p=yield Promise.all(s);return st(Oe({},n),{items:p})})),r=yield Promise.all(i);E.onFeedback(r)})}},B=H;B._delayedHangup=!1;var di=class extends Error{constructor(e,t){super(e);Object.setPrototypeOf(this,di.prototype),this.participantErrors=t}};var Gt,pi=null;function yn(){return o(this,null,function*(){var a;if(d.apiEnv!=="AUTO")return d.apiEndpoint;try{let e=atob("aHR0cHM6Ly9kbnMuZ29vZ2xlL3Jlc29sdmU/bmFtZT12aWRlby5fZW5kcG9pbnQub2sucnUmdHlwZT1UWFQ="),i=yield(yield fetch(e,{method:"GET",mode:"cors",cache:"no-cache"})).json(),r=(a=i==null?void 0:i.Answer[0])==null?void 0:a.data;if(!r)throw new Error("Wrong DNS response");return c.debug("Resolved API endpoint",r),r}catch(e){return c.warn("Failed to resolve API endpoint using DNS, default is used",e),d.apiEndpoint}})}function ua(){return Gt?Promise.resolve(Gt):pi||(pi=yn().then(a=>Gt=a).finally(()=>pi=null))}function ma(){if(!d.apiKey)throw new N(te.API,{message:"Required argument apiAppKey not passed"})}function Xi(i){return o(this,arguments,function*(a,e={},t=!1){if(!window.Blob||!window.navigator.sendBeacon)return;yield ua();let r=_a(a,e,t),n=new window.Blob([r],{type:"application/x-www-form-urlencoded"});window.navigator.sendBeacon(`${Gt}/fb.do`,n)})}function ha(i){return o(this,arguments,function*(a,e={},t=!1){yield ua();let r=_a(a,e,t);return Pn(r)})}function Pn(a){return o(this,null,function*(){return new Promise((e,t)=>{let i=new XMLHttpRequest;i.open("POST",`${Gt}/fb.do`,!0),i.setRequestHeader("Content-type","application/x-www-form-urlencoded"),i.onreadystatechange=()=>{if(i.readyState!==XMLHttpRequest.DONE)return;let r;try{r=JSON.parse(i.responseText)}catch(n){r={result:i.responseText}}i.status!==200||r.hasOwnProperty("error_msg")?t(r):e(r)},i.send(a)})})}function _a(a,e={},t=!1){e.method=a,e.format="JSON",e.application_key||(e.application_key=d.apiKey),t||(Z.sessionKey?e.session_key=Z.sessionKey:Z.accessToken&&(e.access_token=Z.accessToken));for(let[r,n]of Object.entries(e))typeof n=="object"&&(e[r]=JSON.stringify(n));let i="";for(let[r,n]of Object.entries(e))i&&(i+="&"),i+=`${r}=${encodeURIComponent(n)}`;return i}var bn=10,Mn=700,Dn=3e3,li=class extends yt{constructor(){super(...arguments);this._userId=null;this._externalUidsCache={}}_callUnsafe(r){return o(this,arguments,function*(e,t={},i=!1){let n=s=>o(this,null,function*(){try{return yield ha(e,t,i)}catch(p){if(!p.hasOwnProperty("error_msg")&&(s++,c.debug(`${e} network error, attempt ${s}...`),s<bn))return yield S.delay(Math.min(s*Mn,Dn)),n(s);throw c.warn(e,"error",p),p}});return n(0)})}_call(r){return o(this,arguments,function*(e,t={},i=!1){try{return yield this._callUnsafe(e,t,i)}catch(n){c.warn("Api call error",n);let s=te.API;switch(n.error_code){case 102:case 103:case 104:return yield this.authorize(),this._callUnsafe(e,t,i);case 1101:s=A.SERVICE_DISABLED;break;case 1102:s=A.CALLEE_IS_OFFLINE;break;case 1103:s=A.NOT_FRIENDS;break;case 1104:case 1106:s=A.EXTERNAL_API_ERROR;break;case 1113:s=A.CALLER_IS_REJECTED;break}throw new N(s,{message:n.error_msg,code:n.error_code})}})}userId(e){return o(this,null,function*(){let t=S.decomposeId(e).id;return Z.isEmpty()?he.fromId(String(t)):(this._externalUidsCache.hasOwnProperty(t)||Object.assign(this._externalUidsCache,yield this._getExternalIdsByOkIds([t])),he.fromString(this._externalUidsCache[t]))})}prepareUserIds(e){return o(this,null,function*(){Z.isEmpty()||Object.assign(this._externalUidsCache,yield this._getExternalIdsByOkIds(e))})}authorize(){return o(this,null,function*(){if(!this._uuid){let t=$e.get("uuid");t||(t=S.uuid(),$e.set("uuid",t)),this._uuid=String(t)}let e={session_data:{version:2,device_id:this._uuid,client_version:d.appVersion,client_type:"SDK_JS"}};return d.authToken&&(e.session_data.auth_token=d.authToken,e.session_data.version=3),this._callUnsafe("auth.anonymLogin",e,!0).then(t=>{t.uid&&(this._userId=Number(t.uid)),Z.sessionKey=t.session_key,Z.sessionSecretKey=t.session_secret_key}).catch(t=>{throw t.error_code===401&&E.onTokenExpired(),new N(te.AUTH,{message:t.error_msg,code:t.error_code})})})}log(e){let t={collector:"ok.mobile.apps.video",data:JSON.stringify({application:`${d.appName}:${d.sdkVersion}`,platform:d.platform,items:e})};Xi("log.externalLog",t)}init(){ma()}joinConversation(e,t=!1,i){return o(this,null,function*(){let r={conversationId:e,isVideo:t,protocolVersion:d.protocolVersion};return i&&(r.chatId=i),this._call("vchat.joinConversation",r)})}createConversation(e,t="",i=!1){return o(this,null,function*(){let r=this._preareStartConversationData({conversationId:e,isVideo:!1,joiningAllowed:!0,payload:t,requireAuthToJoin:i});return this._startConversation(r)})}startConversation(e,t,i,r=!1,n="",s=!1,p=!1){return o(this,null,function*(){let l=this._preareStartConversationData({conversationId:e,isVideo:r,joiningAllowed:s,payload:n,requireAuthToJoin:p});if(t&&t.length)switch(i){case We.USER:l.uids=t.join(",");break;case We.GROUP:l.gid=t[0];break;case We.CHAT:l.chatId=t[0];break}return this._startConversation(l)})}_preareStartConversationData({conversationId:e,isVideo:t,payload:i="",joiningAllowed:r=!1,requireAuthToJoin:n=!1}){let s={conversationId:e,isVideo:t,protocolVersion:d.protocolVersion};return r&&(s.createJoinLink=!0),i&&(s.payload=i),d.domain&&(s.domainId=d.domain),d.externalDomain&&(s.externalDomain=d.externalDomain),n&&(s.requireAuthToJoin=!0),s}_startConversation(e){return o(this,null,function*(){return this._call("vchat.startConversation",e)})}createJoinLink(e){return o(this,null,function*(){return this._call("vchat.createJoinLink",{conversationId:e})})}removeJoinLink(e){return o(this,null,function*(){return this._call("vchat.removeJoinLink",{conversationId:e})})}getAnonymTokenByLink(e,t){return o(this,null,function*(){let i={joinLink:e};t&&(i.anonymName=t);let r=yield this._call("vchat.getAnonymTokenByLink",i);return this._userId=Number(r.uid),r.token})}joinConversationByLink(e,t=!1,i){return o(this,null,function*(){let r={joinLink:e,isVideo:t,protocolVersion:d.protocolVersion};return(i==null?void 0:i.length)&&(r.observedIds=i.join(",")),d.anonymToken&&(r.anonymToken=d.anonymToken),this._call("vchat.joinConversationByLink",r)})}getOkIdsByExternalIds(e){return o(this,null,function*(){let t=he.fromIds(e),i=[],r={methods:[]},n=[],s=Object.keys(this._externalUidsCache),p=Object.values(this._externalUidsCache);for(let u of t){let R=he.toString(u),D=p.indexOf(R);D>-1?i.push(Number(s[D])):(n.push(R),r.methods.push({"vchat.getOkIdByExternalId":{params:{externalId:u.id,anonym:u.type===ft.ANONYM},onError:"SKIP"}}))}return r.methods.length&&(yield this._call("batch.executeV2",r)).forEach((u,R)=>{if(u.ok){let D=Number(u.ok.ok_id);this._externalUidsCache[D]=n[R],i.push(D)}}),i})}getExternalIdsByOkIds(e){return o(this,null,function*(){let t=[],i=[];for(let n of e)this._externalUidsCache.hasOwnProperty(n)?t.push(he.fromString(this._externalUidsCache[n])):i.push(n);if(!i.length)return t;let r=yield this._getExternalIdsByOkIds(i);Object.assign(this._externalUidsCache,r);for(let n of i)r.hasOwnProperty(n)&&t.push(he.fromString(r[n]));return t})}getCachedOkIdByExternalId(e){let t=Object.keys(this._externalUidsCache),i=Object.values(this._externalUidsCache),r=he.toString(e),n=i.indexOf(r);return n>-1?S.composeUserId(t[n],Q.USER):null}cacheExternalId(e,t){let i=S.decomposeId(e).id;this._externalUidsCache[i]=he.toString(t)}getConversationParams(e){return o(this,null,function*(){let t={};return d.anonymToken&&(t.anonymToken=d.anonymToken),e&&(t.conversationId=e),this._call("vchat.getConversationParams",t)})}getUserId(){return this._userId}setUserId(e){this._userId=e}hangupConversation(e){let t={conversationId:e,reason:A.HUNGUP};d.anonymToken&&(t.anonymToken=d.anonymToken),Xi("vchat.hangupConversation",t)}removeHistoryRecords(e){return o(this,null,function*(){yield this._call("vchat.removeHistoryRecords",{recordIds:e.join(",")})})}cleanup(){}_getExternalIdsByOkIds(e){return o(this,null,function*(){let t={};try{let i=yield this._call("vchat.getExternalIdsByOkIds",{uids:e.join(",")});if(i.external_ids)for(let[r,n]of Object.entries(i.external_ids))t[r]=he.fromIdToString(n,ft.USER);if(i.anonym_ids)for(let[r,n]of Object.entries(i.anonym_ids))t[r]=he.fromIdToString(n,ft.ANONYM);return t}catch(i){return t}})}};import{Any as kn,Arr as fa,Int as ee,Nil as at,Str as On}from"messagepack";var ga=(M=>(M.RECOVER="recover",M.ACCEPT_CALL="accept-call",M.ADD_PARTICIPANT="add-participant",M.REMOVE_PARTICIPANT="remove-participant",M.HANGUP="hangup",M.TRANSMIT_DATA="transmit-data",M.ACCEPT_PRODUCER="accept-producer",M.ALLOCATE_CONSUMER="allocate-consumer",M.CHANGE_MEDIA_SETTINGS="change-media-settings",M.CHANGE_PARTICIPANT_STATE="change-participant-state",M.CHANGE_STREAM_PRIORITIES="change-streams-priorities",M.UPDATE_DISPLAY_LAYOUT="update-display-layout",M.REPORT_PERF_STAT="report-perf-stat",M.RECORD_START="record-start",M.RECORD_STOP="record-stop",M.RECORD_SET_ROLE="record-set-role",M.RECORD_GET_STATUS="record-get-status",M.SWITCH_MICRO="switch-micro",M.SWITCH_TOPOLOGY="switch-topology",M.REQUEST_REALLOC="request-realloc",M.CHAT_MESSAGE="chat-message",M.CHAT_HISTORY="chat-history",M.CUSTOM_DATA="custom-data",M.GRANT_ROLES="grant-roles",M.MUTE_PARTICIPANT="mute-participant",M.PIN_PARTICIPANT="pin-participant",M.UPDATE_MEDIA_MODIFIERS="update-media-modifiers",M.CHANGE_OPTIONS="change-options",M.GET_WAITING_HALL="get-waiting-hall",M.GET_PARTICIPANT_LIST_CHUNK="get-participant-list-chunk",M.GET_PARTICIPANTS="get-participants",M.PROMOTE_PARTICIPANT="promote-participant",M.REQUEST_TEST_MODE="request-test-mode",M.ADD_MOVIE="add-movie",M.UPDATE_MOVIE="update-movie",M.REMOVE_MOVIE="remove-movie",M.FEEDBACK="feedback",M))(ga||{}),V=ga;function ui(){let a=new DataView(new ArrayBuffer(64)),e=0;function t(i){if(e+i>a.byteLength){let r=new Uint8Array(Math.max(e+i,a.byteLength+64));r.set(new Uint8Array(a.buffer.slice(0,e))),a=new DataView(r.buffer)}}return{put(i){if(t(i.byteLength),An(i)){let r=i.buffer;new Uint8Array(a.buffer).set(new Uint8Array(r),e)}else new Uint8Array(a.buffer).set(new Uint8Array(i),e);e+=i.byteLength},putI8(i){t(1),a.setInt8(e,i),++e},putI16(i){t(2),a.setInt16(e,i),e+=2},putI32(i){t(4),a.setInt32(e,i),e+=4},putI64(i){t(8);let r=i<0;r&&(i=-i);let n=i/4294967296|0,s=i%4294967296|0;r&&(s=~s+1|0,n=s===0?~n+1|0:~n),a.setUint32(e,n),a.setUint32(e+4,s),e+=8},putUi8(i){t(1),a.setUint8(e,i),++e},putUi16(i){t(2),a.setUint16(e,i),e+=2},putUi32(i){t(4),a.setUint32(e,i),e+=4},putUi64(i){t(8),a.setUint32(e,i/4294967296|0),a.setUint32(e+4,i%4294967296),e+=8},putF(i){t(8),a.setFloat64(e,i),e+=8},ui8array(){return new Uint8Array(a.buffer.slice(0,e))}}}function An(a){return a.buffer!==void 0}function mi(a){let e=ArrayBuffer.isView(a)?new DataView(a.buffer,a.byteOffset,a.byteLength):new DataView(a),t=0;return{peek(){return e.getUint8(t)},get(i){t+=i;let r=e.byteOffset;return e.buffer.slice(r+t-i,r+t)},getI8(){return e.getInt8(t++)},getI16(){return t+=2,e.getInt16(t-2)},getI32(){return t+=4,e.getInt32(t-4)},getI64(){t+=8;let i=e.getInt32(t-8),r=e.getUint32(t-4);return i*4294967296+r},getUi8(){return e.getUint8(t++)},getUi16(){return t+=2,e.getUint16(t-2)},getUi32(){return t+=4,e.getUint32(t-4)},getUi64(){t+=8;let i=e.getUint32(t-8),r=e.getUint32(t-4);return i*4294967296+r},getF32(){return t+=4,e.getFloat32(t-4)},getF64(){return t+=8,e.getFloat64(t-8)}}}var Sa=0,va=1,wn=0,xn=1,Ln=2,Zi=0,Nn=0,Un=0,Bn=1,er=class{constructor(){this.participantIdRegistry=null}setParticipantIdRegistry(e){this.participantIdRegistry=e}serializeUpdateDisplayLayout(e,t){let i=ui();ee.enc(i,Sa),ee.enc(i,Zi),ee.enc(i,e),at.enc(i,null);let r=[];for(let n in t)t.hasOwnProperty(n)&&this.writeLayout(t,n,r);return fa.enc(i,r),at.enc(i,null),i.ui8array()}writeLayout(e,t,i){let r=e[t],n=ui();if(this.writeStreamDesc(t,n),Lt(r))ee.enc(n,xn);else if(Wi(r))ee.enc(n,Ln);else if(ee.enc(n,wn),r.priority!==void 0?ee.enc(n,r.priority):at.enc(n,null),r.width!==void 0&&r.height!==void 0?(ee.enc(n,Math.round(r.width)),ee.enc(n,Math.round(r.height))):(at.enc(n,null),at.enc(n,null)),r.fit!==void 0)switch(r.fit){case"cv":ee.enc(n,Un);break;case"cn":ee.enc(n,Bn);break;default:at.enc(n,null)}else at.enc(n,null);i.push(n.ui8array())}writeStreamDesc(e,t){if(this.participantIdRegistry){let i=this.participantIdRegistry.getCompactId(e);if(i!==void 0){ee.enc(t,i);return}}On.enc(t,e)}serializePerfStatReport(e,t){let i=ui();return ee.enc(i,va),ee.enc(i,Zi),ee.enc(i,e),ee.enc(i,t.framesDecoded),ee.enc(i,t.framesReceived),i.ui8array()}deserializeCommandResponse(e){return o(this,null,function*(){let t;if(e instanceof Blob){let s=yield e.arrayBuffer();t=mi(s)}else t=mi(e);let i=ee.dec(t),r=ee.dec(t);if(r!==Zi){c.warn("Unsupported version for command type: "+i+", version "+r);return}if(ee.dec(t)!==Nn){c.warn("Error code: "+i+"received for command type: "+i+", version "+r);return}switch(i){case Sa:return this.deserializeUpdateDisplayLayoutResponse(t);case va:return this.deserializeReportPerfStatResponse(t);default:return c.warn("unsupported command response commandType: "+i),null}})}deserializeUpdateDisplayLayoutResponse(e){let t=ee.dec(e),i=fa.dec(e),r={};return i.forEach(n=>{let s=mi(n),p=kn.dec(s);if(typeof p=="string")r[p]=ee.dec(s);else{let l=p,u=Fe(this.participantIdRegistry.getStreamDescription(l));r[u]=ee.dec(s)}}),{type:"response",sequence:t,response:V.UPDATE_DISPLAY_LAYOUT.toString(),errorCodeByParticipantId:r}}deserializeReportPerfStatResponse(e){let t=ee.dec(e),i=ee.dec(e);return{type:"response",sequence:t,response:V.REPORT_PERF_STAT.toString(),estimatedPerformanceIndex:i}}};var Ea="open",Ia=[()=>d.producerScreenTrack,()=>d.videoTracksCount>0,()=>!0,()=>d.filteredMessages,()=>d.consumerScreenTrack,()=>!0,()=>d.movieShare,()=>d.useParticipantListChunk],Vn=10,ye=class extends Rt{constructor(){super(...arguments);this.socket=null;this.sequence=1;this.lastStamp=0;this.websocketCommandsQueue=[];this.datachannelCommandsQueue=[];this.incomingCache=[];this.responseHandlers={};this.reconnectCount=0;this.conversationResolve=null;this.conversationReject=null;this.connected=!1;this.listenersReady=!1;this.postfix="&platform="+d.platform+"&appVersion="+d.appVersion+"&version="+d.protocolVersion+"&device="+d.device+"&capabilities="+ye._getCapabilityFlags();this.peerId=null;this.conversationId=null;this.reconnectTimer=0;this.connectionMessageWaitTimer=0;this.doctorTimer=0;this.participantIdRegistry=null;this.producerNotificationDataChannel=null;this.producerCommandDataChannel=null;this.producerCommandDataChannelEnabled=!1;this.producerCommandSerializationService=new er}static _getCapabilityFlags(){let e=0;for(let t=0;t<Ia.length;t++)Ia[t]()&&(e|=1<<t);return e.toString(16).toUpperCase()}get ready(){return this.socket!==null}setEndpoint(e){this.endpoint=e}setConversationId(e){this.conversationId=e}setParticipantIdRegistry(e){this.participantIdRegistry=e,this.producerCommandSerializationService.setParticipantIdRegistry(e)}setProducerNotificationDataChannel(e){this.producerNotificationDataChannel=e,this.producerNotificationDataChannel.onmessage=t=>{var r;let i=(r=this.participantIdRegistry)==null?void 0:r.handleMessage(t.data);i&&this._handleMessage(i)}}setProducerCommandDataChannel(e){this.producerCommandDataChannel=e,this.producerCommandDataChannel.onmessage=t=>{this.producerCommandSerializationService.deserializeCommandResponse(t.data).then(i=>{i&&this._handleMessage(i)}).catch(i=>{c.warn("Cannot parse message at producerCommandDataChannel",i)})},this._handleCommandsQueue(this.datachannelCommandsQueue)}useCommandDataChannel(e){this.producerCommandDataChannelEnabled=e}cleanup(){this.datachannelCommandsQueue=[]}connect(e){return o(this,null,function*(){return this.postfix+=`&clientType=${d.clientType}`,new Promise((t,i)=>{if(this.socket&&this.socket.readyState<WebSocket.CLOSING){m.log(v.SOCKET_ACTION,"already_opened"),i(Error("Socket already opened"));return}this.conversationResolve=r=>{t(r),this.conversationResolve=null,this.conversationReject=null},this.conversationReject=r=>{i(r),this.conversationResolve=null,this.conversationReject=null},this._connect(e)})})}_send(r){return o(this,arguments,function*(e,t={},i=0){if(t.participantId){let n=S.decomposeParticipantId(t.participantId),s=S.decomposeId(n.compositeUserId);t=Object.assign({},t,{participantId:s.id,participantType:s.type}),n.deviceIdx&&(t.deviceIdx=n.deviceIdx)}return this._sendRaw(e,t,i)})}_sendRaw(r){return o(this,arguments,function*(e,t={},i=0){let n=s=>{var l;if(this._isDataChannelCommand(e))this.datachannelCommandsQueue.push(s),((l=this.producerCommandDataChannel)==null?void 0:l.readyState)===Ea&&this._handleCommandsQueue(this.datachannelCommandsQueue);else{if(!this.socket){m.log(v.SOCKET_ACTION,"not_opened"),c.warn("Socket not opened"),s.reject(new Error(`Socket not opened [${e}]`),!0);return}this.socket.readyState>WebSocket.OPEN&&(m.log(v.SOCKET_ACTION,"invalid_state"),c.warn(`Socket is not opened, state ${this.socket.readyState}`)),this.websocketCommandsQueue.push(s),this.socket&&this.socket.readyState===WebSocket.OPEN&&this._handleCommandsQueue(this.websocketCommandsQueue)}};return new Promise((s,p)=>{let l=(R,D=!1)=>{!i||D?p(R):(c.debug("Resending a signaling message",e,u.sequence),i--,n(u))},u={sequence:this.sequence++,name:e,params:t,responseTimer:0,resolve:s,reject:l};n(u)})})}_isDataChannelCommand(e){return this.producerCommandDataChannelEnabled?e===V.UPDATE_DISPLAY_LAYOUT||e===V.REPORT_PERF_STAT:!1}static _isDataChannelResponseRequired(e){return e===V.UPDATE_DISPLAY_LAYOUT||e===V.REPORT_PERF_STAT}getNextCommandSequenceNumber(){return this.sequence}hangup(e){return o(this,null,function*(){return this._send(V.HANGUP,{reason:e}).catch(()=>{})})}sendCandidate(e,t){return o(this,null,function*(){return this._send(V.TRANSMIT_DATA,{participantId:e,data:{candidate:t}})})}requestTestMode(e,t){return o(this,null,function*(){return this._send(V.REQUEST_TEST_MODE,{consumer:e,producer:t})})}sendSdp(e,t){return o(this,null,function*(){return this._send(V.TRANSMIT_DATA,{participantId:e,data:{sdp:t}})})}acceptCall(e){return o(this,null,function*(){return this._send(V.ACCEPT_CALL,{mediaSettings:e})})}changeMediaSettings(e){return o(this,null,function*(){return this._send(V.CHANGE_MEDIA_SETTINGS,{mediaSettings:e},Vn)})}changeParticipantState(e){return o(this,null,function*(){return this._send(V.CHANGE_PARTICIPANT_STATE,{participantState:{state:e}})})}addParticipant(e,t){return o(this,null,function*(){return this._send(V.ADD_PARTICIPANT,Oe({participantId:e},t))})}removeParticipant(e,t=!1){return o(this,null,function*(){return this._send(V.REMOVE_PARTICIPANT,{participantId:e,ban:t})})}allocateConsumer(e,t){return o(this,null,function*(){let i={capabilities:t};return e&&(i.description=e.sdp),this._send(V.ALLOCATE_CONSUMER,i)})}acceptProducer(e,t){return o(this,null,function*(){let i={description:e.sdp};return t&&(i.ssrcs=t),this._send(V.ACCEPT_PRODUCER,i)})}changePriorities(e){return o(this,null,function*(){return this._send(V.CHANGE_STREAM_PRIORITIES,{typedPriorities:e}).catch(()=>{})})}updateDisplayLayout(e){return o(this,null,function*(){return this._send(V.UPDATE_DISPLAY_LAYOUT,e)})}addMovie(e){return o(this,null,function*(){return this._send(V.ADD_MOVIE,e)})}updateMovie(e){return o(this,null,function*(){return this._send(V.UPDATE_MOVIE,e)})}removeMovie(e){return o(this,null,function*(){return this._send(V.REMOVE_MOVIE,e)})}startStream(e){return o(this,null,function*(){return this._send(V.RECORD_START,e)})}stopStream(){return o(this,null,function*(){return this._send(V.RECORD_STOP)})}recordSetRole(e,t){return o(this,null,function*(){return this._send(V.RECORD_SET_ROLE,{participantId:e,role:t})})}getRecordStatus(){return o(this,null,function*(){return this._send(V.RECORD_GET_STATUS)})}switchTopology(e,t=!1){return o(this,null,function*(){return this._send(V.SWITCH_TOPOLOGY,{topology:e,force:t})})}requestRealloc(){return o(this,null,function*(){return this._send(V.REQUEST_REALLOC)})}reportPerfStat(e){return o(this,null,function*(){return this._send(V.REPORT_PERF_STAT,e)})}chatMessage(e,t=null){return o(this,null,function*(){return this._send(V.CHAT_MESSAGE,{message:e,participantId:t})})}chatHistory(e){return o(this,null,function*(){return this._send(V.CHAT_HISTORY,{count:e})})}customData(e,t){return o(this,null,function*(){return this._send(V.CUSTOM_DATA,{data:e,participantId:t})})}grantRoles(e,t,i){return o(this,null,function*(){let r={participantId:e,roles:t};return i&&(r.revoke=!0),this._sendRaw(V.GRANT_ROLES,r)})}muteParticipant(e,t,i){return o(this,null,function*(){return this._sendRaw(V.MUTE_PARTICIPANT,{participantId:e,muteStates:t,requestedMedia:i})})}pinParticipant(e,t){return o(this,null,function*(){let i={participantId:e};return t&&(i.unpin=!0),this._sendRaw(V.PIN_PARTICIPANT,i)})}updateMediaModifiers(e){return o(this,null,function*(){return this._send(V.UPDATE_MEDIA_MODIFIERS,{mediaModifiers:e})})}changeOptions(e){return o(this,null,function*(){return this._send(V.CHANGE_OPTIONS,{options:e})})}getWaitingHall(e=null,t,i=!1){return o(this,null,function*(){let r={};return e&&(r.fromId=e),t&&(r.count=t),i&&(r.backward=i),this._send(V.GET_WAITING_HALL,r)})}promoteParticipant(e,t=!1){return o(this,null,function*(){let i={participantId:e};return t&&(i.demote=t),this._sendRaw(V.PROMOTE_PARTICIPANT,i)})}feedback(e){return o(this,null,function*(){return this._sendRaw(V.FEEDBACK,{key:e})})}close(){this.socket&&this.socket.readyState<WebSocket.CLOSING&&this._closeSocket(),this._stopWaitConnectionMessage(),this._stopDoctor(),clearTimeout(this.reconnectTimer)}readyToSend(){this.listenersReady=!0,this._handleCachedMessages()}getParticipantListChunk(e){return o(this,null,function*(){return this._send(V.GET_PARTICIPANT_LIST_CHUNK,e)})}getParticipants(e){return o(this,null,function*(){return this._send(V.GET_PARTICIPANTS,{externalIds:e})})}_connect(e){if(this.socket&&this.socket.readyState<WebSocket.CLOSING)return;let t="";e&&(t+=`&tgt=${e}`),e===je.RETRY&&this.lastStamp&&(t+=`&recoverTs=${this.lastStamp}`),t=i(t),c.debug("Connecting to "+this.endpoint+this.postfix+t),this.socket=new WebSocket(this.endpoint+this.postfix+t),this.socket.onopen=this._onOpen.bind(this),this.socket.onmessage=this._onMessage.bind(this),this.socket.onerror=this._onError.bind(this),this.socket.onclose=this._onClose.bind(this),this._startDoctor();function i(r){if(!d.useParticipantListChunk)return r;r+=`&partIdx=${d.participantListChunkInitIndex}`;let s=d.participantListChunkInitCount;return s!==null&&(r+=`&partCount=${s}`),r}}_disconnect(){this.socket&&this.socket.readyState<WebSocket.CLOSING&&(this.socket.onopen=null,this.socket.onmessage=null,this.socket.onerror=null,this.socket.onclose=null,this.socket.close(),this.socket=null),this._stopWaitConnectionMessage(),this._stopDoctor(),clearTimeout(this.reconnectTimer)}_onOpen(){c.debug("Socket opened"),m.log(v.SOCKET_ACTION,"opened"),this._waitConnectionMessage(),this._startDoctor()}_onMessage(e){if(this._startDoctor(),e.data==="ping"){this.socket&&this.socket.readyState===WebSocket.OPEN&&this.socket.send("pong");return}try{this._handleMessage(JSON.parse(e.data))}catch(t){m.log(v.SOCKET_ACTION,"parse_error"),c.error("Unable to parse message",t,e.data)}}_handleMessage(e){var t;e.type==="notification"?e.notification==="connection"?(c.debug("Signaling connected",e),this.connected=!0,this.reconnectCount=0,this.endpoint=e.endpoint,e.peerId&&this.peerId!==e.peerId.id&&(this.postfix+=`&peerId=${e.peerId.id}`,this.peerId=e.peerId.id),this._stopWaitConnectionMessage(),this.conversationResolve?this.conversationResolve(e):(this._triggerEvent(_e.RECONNECT,e),e.conversation.topology&&this._triggerEvent(_e.NOTIFICATION,{type:"notification",notification:w.TOPOLOGY_CHANGED,topology:e.conversation.topology})),this.lastStamp&&this._handleCachedMessages(),(t=e.recoverMessages)==null||t.forEach(i=>this._handleMessage(i)),this._handleCommandsQueue(this.websocketCommandsQueue)):!this.connected||!this.listenersReady?this.incomingCache.push(e):this._triggerEvent(_e.NOTIFICATION,e):e.type==="response"&&this.responseHandlers[e.sequence]?this._handleCommandResponse(!0,e):e.type==="error"&&this.responseHandlers[e.sequence]?(m.log(v.SOCKET_ACTION,`error-${e.error}`),this._handleCommandResponse(!1,e)):e.type==="error"?(m.log(v.SOCKET_ACTION,`error-${e.error}`),e.error==="service-unavailable"?this._reconnect():e.error==="conversation-ended"?this.conversationReject?this.conversationReject(new N(A.SOCKET_CLOSED,{message:`Unable to connect to the signaling: ${e.error}`})):this._triggerEvent(_e.NOTIFICATION,{notification:w.CLOSED_CONVERSATION,reason:e.reason}):this.connected||e.error==="invalid-token"?this._throwError(new Error(`Signaling error: ${e.error}`)):e.sequence||(this.conversationReject&&this.conversationReject(new N(te.SIGNALING_FAILED,{message:`Unable to connect to the signaling: ${e.error}`})),this._closeSocket())):(m.log(v.SOCKET_ACTION,"unknown_message"),c.warn("Unhandled message",e)),this.lastStamp=e.stamp||this.lastStamp}_handleCachedMessages(){let e=[...this.incomingCache];for(this.incomingCache=[];e.length>0;){let t=e.shift();this._handleMessage(t)}}_throwError(e){this._triggerEvent(_e.FAILED,e)}_onError(e){m.log(v.SOCKET_ACTION,"error"),c.error("Signaling error",e)}_onClose(e){m.log(v.SOCKET_ACTION,"closed"),c.debug("Connection closed",{code:e.code,reason:e.reason}),this.connected=!1,this._stopDoctor(),this.socket&&this.reconnectCount++<ye.RECONNECT_MAX_COUNT?this._reconnect():this.socket&&this._closeSocket(new Error("Connection closed"))}_closeSocket(e=null){!this.socket||(this._disconnect(),Object.values(this.responseHandlers).forEach(t=>{window.clearTimeout(t.responseTimer),e&&t.reject(new Error("Connection closed"),!0)}),this.websocketCommandsQueue=[],this.responseHandlers={},this.lastStamp=0,e&&this._throwError(new Error("Connection closed")))}_reconnect(){let e=Math.min(ye.RECONNECT_MAX_DELAY,ye.RECONNECT_DELAY*Math.pow(2,this.reconnectCount-1));c.log(`Reconnect websocket after ${e}ms (${this.reconnectCount})`),m.log(v.SOCKET_ACTION,"reconnect"),this.reconnectTimer=window.setTimeout(this._connect.bind(this,je.RETRY),e)}_handleCommandResponse(e,t){var r;if(!this.responseHandlers.hasOwnProperty(t.sequence))return;let i=this.responseHandlers[t.sequence];window.clearTimeout(i.responseTimer),e?(delete this.responseHandlers[t.sequence],i.resolve(t)):((r=this.socket)==null?void 0:r.readyState)===WebSocket.OPEN?(delete this.responseHandlers[t.sequence],m.log(v.SOCKET_ACTION,"response-timeout"),i.reject(new Error(t.error||`Response timeout [${i.name}]`))):i.responseTimer=window.setTimeout(()=>this._handleCommandResponse(!1,t),ye.WAIT_RESPONSE_DELAY)}_handleCommandsQueue(e){var t,i;for(;e.length>0;){let r=e.shift();if(this._isDataChannelCommand(r.name)){if(((t=this.producerCommandDataChannel)==null?void 0:t.readyState)!==Ea){r.reject(new Error(`Invalid data channel state: ${(i=this.producerCommandDataChannel)==null?void 0:i.readyState}`));return}ye._isDataChannelResponseRequired(r.name)&&(r.responseTimer=window.setTimeout(()=>this._handleCommandResponse(!1,{command:r.name,sequence:r.sequence}),ye.WAIT_RESPONSE_DELAY),this.responseHandlers[r.sequence]=r);let s=this._serializeBinary(r);s!==null&&this.producerCommandDataChannel.send(s)}else{if(!this.socket||this.socket.readyState!==WebSocket.OPEN){r.reject(new Error("Invalid state or socket already closed"));continue}r.responseTimer=window.setTimeout(()=>this._handleCommandResponse(!1,{command:r.name,sequence:r.sequence}),ye.WAIT_RESPONSE_DELAY),this.responseHandlers[r.sequence]=r,this.socket.send(this._serializeJson(r))}}}_serializeBinary(e){switch(e.name){case V.UPDATE_DISPLAY_LAYOUT:return this.producerCommandSerializationService.serializeUpdateDisplayLayout(e.sequence,e.params);case V.REPORT_PERF_STAT:return this.producerCommandSerializationService.serializePerfStatReport(e.sequence,e.params)}return c.warn("cannot get binary data for data channel command: "+e.name),null}_serializeJson(e){let t;e.name===V.UPDATE_DISPLAY_LAYOUT?t=this._convertDisplayLayout(e.params):t=e.params;let i=Object.assign({command:e.name,sequence:e.sequence},t);return JSON.stringify(i)}_convertDisplayLayout(e){let t=e,i={};for(let r in t)t.hasOwnProperty(r)&&(i[r]=aa(t[r]));return{layouts:i}}_waitConnectionMessage(){this.connectionMessageWaitTimer=window.setTimeout(()=>{this.conversationReject&&this.conversationReject(new N(te.SIGNALING_FAILED,{message:"Unable to connect to the signaling: connection timeout"}))},ye.WAIT_CONNECTION_DELAY)}_stopWaitConnectionMessage(){window.clearTimeout(this.connectionMessageWaitTimer),this.connectionMessageWaitTimer=0}_startDoctor(){this._stopDoctor(),this.doctorTimer=window.setTimeout(()=>{c.warn("Socket is dead, trying to reconnect"),this._disconnect(),this._connect(je.RETRY)},ye.WAIT_MESSAGE_DELAY)}_stopDoctor(){window.clearTimeout(this.doctorTimer),this.doctorTimer=0}},Ge=ye;Ge.RECONNECT_DELAY=d.signalingReconnectDelay,Ge.RECONNECT_MAX_DELAY=d.signalingReconnectMaxDelay,Ge.RECONNECT_MAX_COUNT=d.signalingReconnectMaxCount,Ge.WAIT_CONNECTION_DELAY=d.waitConnectionDelay,Ge.WAIT_RESPONSE_DELAY=d.waitResponseDelay,Ge.WAIT_MESSAGE_DELAY=d.waitMessageDelay;var Ta=(t=>(t.KING="KING",t.PAWN="PAWN",t))(Ta||{}),Fn=Ta;var Et,re,Ht=null,Ym={getCameras:b.getCameras,getMicrophones:b.getMicrophones,getOutput:b.getOutput,hasCamera:b.hasCamera,hasMicrophone:b.hasMicrophone,getSavedCamera:b.getSavedCamera,getSavedMicrophone:b.getSavedMicrophone,getSavedOutput:b.getSavedOutput,hasCameraPermission:b.hasCameraPermission,hasMicrophonePermission:b.hasMicrophonePermission,hasPermissions:b.hasPermissions,getUserMedia:b.getUserMedia,getUserVideo:b.getUserVideo,getUserAudio:b.getUserAudio,saveDeviceId:b.saveDeviceId,isBrowserSupported:b.isBrowserSupported,isScreenCapturingSupported:b.isScreenCapturingSupported,os:b.os,isMobile:b.isMobile,browserName:b.browserName,browserVersion:b.browserVersion,baseChromeVersion:b.baseChromeVersion,getAudioContext:b.getAudioContext};function Gn(a){re=a}function Hn(a){Et=a}function zm(a){Ht=a}function Qm(a){d.videoEffects=a}function Xm(a){return o(this,null,function*(){if(d.set(a),b.browserName()==="Sferum"&&(d.platform=`SFERUM:${b.browserVersion()}`),re||Gn(new li),Et||Hn(()=>new Ge),d.debug&&(Ca.disableLog(!1),c.toggle(!0)),c.log(`Calls SDK ${d.sdkVersion}`,a),yield b.init(),!b.isBrowserSupported())throw new N(te.UNSUPPORTED);re.init()})}function Zm(n){return o(this,arguments,function*(a,e=[de.AUDIO],t="",i=!1,r=!1){let s=[],p=[];if(Array.isArray(a)?s=a.length?a:[]:a&&(s=[a]),s.length&&(p=yield re.getOkIdsByExternalIds(s),!p.length))throw new N(A.CALLEE_IS_OFFLINE);return Wn(p,We.USER,e,t,i,r)})}function Wn(s){return o(this,arguments,function*(a,e=We.USER,t,i="",r=!1,n=!1){if(B.current())throw c.error("There is already active call"),new N(A.FAILED);return new B(re,Et(),Ht).onStart(a,e,t,i,r,n)})}function eh(a){return o(this,null,function*(){return jn(a)})}function jn(i){return o(this,arguments,function*(a,e=Q.USER,t){if(a===B.id())throw new Error("Push has already been processed");return new B(re,Et(),Ht).onPush(a,e,t)})}function th(a){return o(this,null,function*(){return a&&(d.authToken=a),re.authorize()})}function ih(){return o(this,arguments,function*(a=[de.AUDIO]){return It().accept(a)})}function rh(){return o(this,null,function*(){let a=B.current();if(a)return a.decline()})}function ah(t){return o(this,arguments,function*(a,e=[de.AUDIO]){return Kn(a,e)})}function Kn(a,e,t){return o(this,null,function*(){if(B.current())throw c.error("There is already active call"),new N(A.FAILED);return new B(re,Et(),Ht).onJoin({conversationId:a,mediaOptions:e,chatId:t})})}function nh(r){return o(this,arguments,function*(a,e=[de.AUDIO],t,i){if(B.current())throw c.error("There is already active call"),new N(A.FAILED);return t&&(d.anonymToken=t),new B(re,Et(),Ht).onJoin({joinLink:a,mediaOptions:e,observedIds:i})})}function sh(){return o(this,null,function*(){let a=B.current();if(a)return a.hangup();B.hangupAfterInit()})}function oh(a,e){return o(this,null,function*(){let t=yield re.getOkIdsByExternalIds([a]);if(!t.length)throw new Error("User not found");return qn(t[0],e)})}function qn(a,e){return o(this,null,function*(){let t=B.current();t&&(yield t.addParticipant(S.composeUserId(a,Q.USER),e))})}function ch(a,e=!1){return o(this,null,function*(){let t=yield re.getOkIdsByExternalIds([a]);return $n(t[0],e)})}function $n(a,e=!1){return o(this,null,function*(){let t=B.current();t&&(yield t.removeParticipant(S.composeUserId(a,Q.USER),e))})}function dh(a,e){return o(this,null,function*(){let t=yield b.saveDeviceId(a,e),i=B.current();return t&&i?i.changeDevice(a):Promise.reject()})}function ph(a){return o(this,null,function*(){let e=B.current();return e?e.toggleScreenCapturing(a):Promise.reject()})}function lh(a,e=!1){return o(this,null,function*(){let t=B.current();t&&(yield t.setVideoStream(a,e))})}function uh(a){return o(this,null,function*(){let e=B.current();e&&(yield e.toggleLocalVideo(a))})}function mh(a){return o(this,null,function*(){let e=B.current();e&&(yield e.toggleLocalAudio(a))})}function hh(a,e,t){return o(this,null,function*(){let i=B.current();if(i)return i.setLocalResolution(a,e,t)})}function _h(a){return o(this,null,function*(){let e=B.current();e&&(yield e.changePriorities(a))})}function gh(a){return o(this,null,function*(){let e=B.current();e&&(yield e.changeParticipantState(a))})}function fh(a){return o(this,null,function*(){let e=B.current();e&&(yield e.updateDisplayLayout(a))})}function Sh(a,e,t=!1){return o(this,null,function*(){let i=yield re.getOkIdsByExternalIds([a]);return Jn(i[0],e,t)})}function Jn(a,e,t=!1){return o(this,null,function*(){let i=B.current();i&&(yield i.grantRoles(S.composeUserId(a,Q.USER),e,t))})}function vh(){return o(this,arguments,function*(a=null,e,t=[]){let i=null;return a&&(i=(yield re.getOkIdsByExternalIds([a]))[0]),Yn(i,e,t,le.getDeviceIdx(a))})}function Yn(){return o(this,arguments,function*(a=null,e,t=[],i=0){let r=B.current();if(r){let n=a?S.composeParticipantId(a,Q.USER,i):null;yield r.muteParticipant(n,e,t)}})}function Eh(a,e=!1){return o(this,null,function*(){let t=yield re.getOkIdsByExternalIds([a]);return zn(t[0],e,le.getDeviceIdx(a))})}function zn(a,e=!1,t=0){return o(this,null,function*(){let i=B.current();i&&(yield i.pinParticipant(S.composeParticipantId(a,Q.USER,t),e))})}function Ih(a){return o(this,null,function*(){let e=B.current();e&&(yield e.updateMediaModifiers(a))})}function Th(a){return o(this,null,function*(){let e=B.current();e&&(yield e.changeOptions(a))})}function Ch(a,e=null){return o(this,null,function*(){let t=null;return e&&(t=(yield re.getOkIdsByExternalIds([e]))[0]),Qn(a,t)})}function Qn(a,e=null){return o(this,null,function*(){let t=B.current();if(t){let i=e?S.composeUserId(e,Q.USER):null;yield t.chatMessage(a,i)}})}function yh(a=10){return o(this,null,function*(){let e=B.current();if(e)return e.chatHistory(a)})}function Ph(a,e=null){return o(this,null,function*(){let t=null;return e&&(t=(yield re.getOkIdsByExternalIds([e]))[0]),Xn(a,t,le.getDeviceIdx(e))})}function Xn(a,e=null,t=0){return o(this,null,function*(){let i=B.current();if(i){let r=e?S.composeParticipantId(e,Q.USER,t):null;yield i.customData(a,r)}})}function Rh(a="",e=!1){return o(this,null,function*(){return(yield re.createConversation(S.uuid(),a,e)).join_link})}function bh(){return o(this,null,function*(){let a=B.current();return a?a.createJoinLink():Promise.reject()})}function Mh(){return o(this,null,function*(){let a=B.current();return a?a.removeJoinLink():Promise.reject()})}function Dh(a,e){return o(this,null,function*(){return re.getAnonymTokenByLink(a,e)})}function Ah(a){let e=B.current();e&&e.setVolume(a)}function kh(a){d.forceRelayPolicy=a}function Oh(a=!1,e=null,t=null,i="DIRECT_LINK",r=null){return o(this,null,function*(){let n=B.current();return n?n.startStream(a,e,t,i,r):Promise.reject()})}function wh(){return o(this,null,function*(){let a=B.current();return a?a.stopStream():Promise.reject()})}function xh(a,e){return o(this,null,function*(){let t=B.current();if(t){let i=yield re.getOkIdsByExternalIds([a]),r=le.getDeviceIdx(a);return t.recordSetRole(S.composeParticipantId(i[0],Q.USER,r),e)}return Promise.reject()})}function Lh(){return o(this,null,function*(){let a=B.current();return a?a.getStreamInfo():Promise.reject()})}function Nh(a){return o(this,null,function*(){let e=B.current();return e?e.addMovie(a):Promise.reject()})}function Uh(a,e,t,i){return o(this,null,function*(){let r=B.current();return r?r.updateMovie(a,e,t,i):Promise.reject()})}function Bh(a){return o(this,null,function*(){let e=B.current();return e?e.removeMovie(a):Promise.reject()})}function Vh(a){d.statisticsInterval=a;let e=B.current();if(e)return e.updateStatisticsInterval()}function Fh(a){Ca.disableLog(!a),c.toggle(a)}function Gh(a,...e){!d.debugLog||c.send(a,"[external]",...e)}function Hh(a){return o(this,null,function*(){let e=B.current();if(e)return e.videoEffect(a)})}function Wh(a){return o(this,null,function*(){let e=B.current();e&&(yield e.setAudioStream(a))})}function jh(a=null,e,t=!1){return o(this,null,function*(){return It().getWaitingHall(a,e,t)})}function Kh(a,e=!1){return o(this,null,function*(){let t=It(),i=yield re.getOkIdsByExternalIds([a]);return t.promoteParticipant(S.composeUserId(i[0],Q.USER),e)})}function qh(a){return o(this,null,function*(){return It().getParticipantListChunk(a)})}function $h(a){return o(this,null,function*(){return It().getParticipants(a)})}function Jh(a){return o(this,null,function*(){return It().feedback(a)})}function It(){let a=B.current();if(!a)throw new Error("Conversation not found");return a}function Yh(a){return o(this,null,function*(){yield re.removeHistoryRecords(a)})}function zh(){return d.sdkVersion}export{li as Api,yt as BaseApi,Pt as BaseLogger,Rt as BaseSignaling,qe as CallDirection,We as CallType,fi as ChatRoomEventType,Si as ConversationOption,ra as DebugMessageType,ft as ExternalIdType,qr as FacingMode,te as FatalError,N as HangupReason,A as HangupType,de as MediaOption,ae as MediaTrackKind,ve as MediaType,we as MuteState,W as ParticipantState,J as ParticipantStatus,Fn as RecordRole,Ge as Signaling,V as SignalingCommandType,je as SignalingConnectionType,w as SignalingNotification,ot as UserRole,Q as UserType,S as Utils,ih as acceptCall,Nh as addMovie,oh as addParticipant,qn as addParticipantInternal,th as authorize,Ym as browser,Wn as callInternal,Zm as callTo,ph as captureScreen,Th as changeConversationOptions,dh as changeDevice,gh as changeParticipantState,_h as changePriorities,Hh as changeVideoEffect,yh as chatHistory,Ch as chatMessage,Qn as chatMessageInternal,bh as createJoinLink,Ph as customData,Xn as customDataInternal,Fh as debug,Gh as debugMessage,rh as declineCall,Jh as feedback,kh as forceRelayPolicy,Dh as getAnonymTokenByLink,qh as getParticipantListChunk,$h as getParticipants,Lh as getStreamInfo,jh as getWaitingHall,Sh as grantRoles,Jn as grantRolesInternal,sh as hangup,Xm as init,ah as joinCall,nh as joinCallByLink,Kn as joinCallInternal,vh as muteParticipant,Yn as muteParticipantInternal,Eh as pinParticipant,zn as pinParticipantInternal,eh as processPush,jn as processPushInternal,Kh as promoteParticipant,xh as recordSetRole,Yh as removeHistoryRecords,Mh as removeJoinLink,Bh as removeMovie,ch as removeParticipant,$n as removeParticipantInternal,Gn as setApi,Wh as setAudioStream,hh as setLocalResolution,zm as setLogger,Ih as setMediaModifiers,Hn as setSignalingFactory,Vh as setStatisticsInterval,Qm as setVideoEffects,lh as setVideoStream,Ah as setVolume,Rh as startConversation,Oh as startStream,wh as stopStream,mh as toggleLocalAudio,uh as toggleLocalVideo,fh as updateDisplayLayout,Uh as updateMovie,zh as version};
7
+ var Wa=Object.defineProperty,ja=Object.defineProperties;var Ka=Object.getOwnPropertyDescriptors;var vr=Object.getOwnPropertySymbols;var $a=Object.prototype.hasOwnProperty,qa=Object.prototype.propertyIsEnumerable;var Er=Math.pow,Ir=(n,e,t)=>e in n?Wa(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,Ne=(n,e)=>{for(var t in e||(e={}))$a.call(e,t)&&Ir(n,t,e[t]);if(vr)for(var t of vr(e))qa.call(e,t)&&Ir(n,t,e[t]);return n},ht=(n,e)=>ja(n,Ka(e));var o=(n,e,t)=>new Promise((i,r)=>{var a=p=>{try{d(t.next(p))}catch(u){r(u)}},s=p=>{try{d(t.throw(p))}catch(u){r(u)}},d=p=>p.done?i(p.value):Promise.resolve(p.value).then(a,s);d((t=t.apply(n,e)).next())});import Ba from"webrtc-adapter";var kt=class{createJoinLink(e){return o(this,null,function*(){return{join_link:"nop"}})}removeJoinLink(e){return o(this,null,function*(){return{success:!0}})}getAnonymTokenByLink(e,t){return o(this,null,function*(){return""})}log(e){}prepareUserIds(e){return o(this,null,function*(){})}getCachedOkIdByExternalId(e){return null}cacheExternalId(e,t){}hangupConversation(e){}removeHistoryRecords(e){return o(this,null,function*(){})}cleanup(){}};var Ot=class{log(e,t,i=!1){}destroy(){}};var ae=class{constructor(){this._handlers={};this._listeners=[]}_triggerEvent(e,...t){if(!!this._handlers.hasOwnProperty(e))for(let i of this._handlers[e])i.apply(this,t)}addEventListener(e,t){if(typeof t!="function")throw new Error("Listener should be a function");return this._handlers.hasOwnProperty(e)||(this._handlers[e]=[]),this._handlers[e].push(t),{dispose:this.removeEventListener.bind(this,e,t)}}removeEventListener(e,t){if(!this._handlers.hasOwnProperty(e))return;t||delete this._handlers[e];let i=this._handlers[e].indexOf(t);i>=0&&this._handlers[e].splice(i,1)}subscribe(e,t,i){let r=e.addEventListener(t,i);this._listeners.push(r)}unsubscribe(){this._listeners.forEach(e=>{e.dispose()})}};var wt=class extends ae{get ready(){return!0}setParticipantIdRegistry(e){}requestRealloc(){}setEndpoint(e){}setConversationId(e){}readyToSend(){}cleanup(){}requestTestMode(e,t){}getNextCommandSequenceNumber(){return 0}};var Tr=(i=>(i.INCOMING="INCOMING",i.OUTGOING="OUTGOING",i.JOINING="JOINING",i))(Tr||{}),Qe=Tr;var Cr=(i=>(i.USER="USER",i.GROUP="GROUP",i.CHAT="CHAT",i))(Cr||{}),Je=Cr;var yr=(t=>(t.ATTENDEE="ATTENDEE",t.HAND_UP="HAND_UP",t))(yr||{}),Di=yr;var Rr=(i=>(i.ADD_PARTICIPANT="ADD_PARTICIPANT",i.RECORD="RECORD",i.MOVIE_SHARE="MOVIE_SHARE",i))(Rr||{}),ki=Rr;var Pr=(a=>(a.REQUIRE_AUTH_TO_JOIN="REQUIRE_AUTH_TO_JOIN",a.AUDIENCE_MODE="AUDIENCE_MODE",a.WAITING_HALL="WAITING_HALL",a.ASR="ASR",a.FEEDBACK="FEEDBACK",a))(Pr||{}),Oi=Pr;function br(n,e){if(n.length!==e.length)return!1;for(let t of n)if(!e.includes(t))return!1;return!0}function Mr(n,e){let t=new Set(n);for(let[i,r]of Object.entries(e))r?t.add(i):t.delete(i);return Array.from(t)}var Ar=(B=>(B.CAMERA_PERMISSION="camera",B.MIC_PERMISSION="mic",B.CAMERA_ACCESS="cameralock",B.MIC_ACCESS="miclock",B.MIC_NOT_FOUND="nomic",B.SCREEN_PERMISSION="screenpermission",B.SCREEN_ACCESS="screenlock",B.CONNECTION="connection",B.NETWORK="network",B.UNKNOWN="unknown",B.UNSUPPORTED="unsupported",B.SIGNALING_FAILED="signalingfailed",B.API="api",B.AUTH="auth",B))(Ar||{}),oe=Ar;var Dr=(te=>(te.CANCELED="CANCELED",te.REJECTED="REJECTED",te.REMOVED="REMOVED",te.HUNGUP="HUNGUP",te.MISSED="MISSED",te.BUSY="BUSY",te.FAILED="FAILED",te.NETWORK_ERROR="NETWORK_ERROR",te.KILLED="KILLED",te.BANNED="BANNED",te.HAS_ACTIVE_CALL="HAS_ACTIVE_CALL",te.CALLER_IS_BLOCKED="CALLER_IS_BLOCKED",te.NOT_FRIENDS="NOT_FRIENDS",te.CALLEE_IS_OFFLINE="CALLEE_IS_OFFLINE",te.CALLER_IS_REJECTED="CALLER_IS_REJECTED",te.UNKNOWN_ERROR="UNKNOWN_ERROR",te.UNSUPPORTED="UNSUPPORTED",te.OLD_VERSION="OLD_VERSION",te.SERVICE_DISABLED="SERVICE_DISABLED",te.EXTERNAL_API_ERROR="EXTERNAL_API_ERROR",te.SOCKET_CLOSED="SOCKET_CLOSED",te.ENDED="ENDED",te.KILLED_WITHOUT_DELETE="KILLED_WITHOUT_DELETE",te.ANOTHER_DEVICE="ANOTHER_DEVICE",te))(Dr||{}),k=Dr;var kr=(a=>(a.AUDIO="AUDIO",a.VIDEO="VIDEO",a.SCREEN_SHARING="SCREEN_SHARING",a.MOVIE_SHARING="MOVIE_SHARING",a.AUDIO_SHARING="AUDIO_SHARING",a))(kr||{}),le=kr;var Or=(i=>(i.UNMUTE="UNMUTE",i.MUTE="MUTE",i.MUTE_PERMANENT="MUTE_PERMANENT",i))(Or||{}),Ue=Or;var wr=(r=>(r.CALLED="CALLED",r.ACCEPTED="ACCEPTED",r.REJECTED="REJECTED",r.HUNGUP="HUNGUP",r))(wr||{}),j=wr;var xr=(i=>(i.UPDATE="UPDATE",i.REMOVE="REMOVE",i.ACTIVATE="ACTIVATE",i))(xr||{}),wi=xr;var Lr=(r=>(r.START="start",r.ACCEPT="accept",r.JOIN="join",r.RETRY="retry",r))(Lr||{}),ze=Lr;var Nr=(i=>(i.NOTIFICATION="NOTIFICATION",i.FAILED="FAILED",i.RECONNECT="RECONNECT",i))(Nr||{}),Te=Nr;var Ur=(N=>(N.TRANSMITTED_DATA="transmitted-data",N.ACCEPTED_CALL="accepted-call",N.HUNGUP="hungup",N.PARTICIPANT_ADDED="participant-added",N.PARTICIPANT_JOINED="participant-joined",N.CLOSED_CONVERSATION="closed-conversation",N.MEDIA_SETTINGS_CHANGED="media-settings-changed",N.PARTICIPANT_STATE_CHANGED="participant-state-changed",N.RATE_CALL_DATA="rate-call-data",N.FEATURE_SET_CHANGED="feature-set-changed",N.TOPOLOGY_CHANGED="topology-changed",N.PRODUCER_UPDATED="producer-updated",N.CONSUMER_ANSWERED="consumer-answered",N.MULTIPARTY_CHAT_CREATED="multiparty-chat-created",N.FORCE_MEDIA_SETTINGS_CHANGE="force-media-settings-change",N.SETTINGS_UPDATE="settings-update",N.VIDEO_QUALITY_UPDATE="video-quality-update",N.REGISTERED_PEER="registered-peer",N.SWITCH_MICRO="switch-micro",N.RECORD_STARTED="record-started",N.RECORD_STOPPED="record-stopped",N.REALLOC_CON="realloc-con",N.AUDIO_ACTIVITY="audio-activity",N.SPEAKER_CHANGED="speaker-changed",N.STALLED_ACTIVITY="stalled-activity",N.CHAT_MESSAGE="chat-message",N.CUSTOM_DATA="custom-data",N.ROLES_CHANGED="roles-changed",N.MUTE_PARTICIPANT="mute-participant",N.PIN_PARTICIPANT="pin-participant",N.OPTIONS_CHANGED="options-changed",N.NETWORK_STATUS="network-status",N.PARTICIPANT_SOURCES_UPDATE="participant-sources-update",N.PROMOTE_PARTICIPANT="promote-participant",N.CHAT_ROOM_UPDATED="chat-room-updated",N.PROMOTION_APPROVED="promotion-approved",N.JOIN_LINK_CHANGED="join-link-changed",N.FEEDBACK="feedback",N.MOVIE_UPDATE_NOTIFICATION="movie-update-notification",N.MOVIE_SHARE_INFO="movie-share-info",N.MOVIE_SHARE_STARTED="movie-share-started",N.MOVIE_SHARE_STOPPED="movie-share-stopped",N.ROOM_UPDATED="room-updated",N.ROOMS_UPDATED="rooms-updated",N.ROOM_PARTICIPANTS_UPDATED="room-participants-updated",N.FEATURES_PER_ROLE_CHANGED="features-per-role-changed",N.ASR_STARTED="asr-started",N.ASR_STOPPED="asr-stopped",N))(Ur||{}),O=Ur;var Br=(z=>(z.ERROR="callError",z.DEVICES="callDevices",z.CALL_SPEC_ERROR="callSpecError",z.ICE_CONNECTION_STATE="callIceConnectionState",z.ICE_CONNECTION_TYPE="callIceConnectionType",z.ICE_RESTART="callIceRestart",z.PUSH="callPush",z.OUTGOING_CALL="callStart",z.OUTGOING_MULTIPARTY_CALL="callStartMultiparty",z.JOIN_CONVERSATION="callJoinConversation",z.ACCEPTED_OUTGOING="callAcceptedOutgoing",z.ACCEPT_INCOMING="callAcceptIncoming",z.DECLINE_INCOMING="callDeclineIncoming",z.ACCEPT_CONCURRENT="callAcceptConcurrent",z.HANGUP="callHangup",z.MEDIA_STATUS="callMediaStatus",z.DEVICE_CHANGED="callDeviceChanged",z.SOCKET_ACTION="callSocketAction",z.ADD_PARTICIPANT="callAddParticipant",z.REMOVE_PARTICIPANT="callRemoveParticipant",z.POOR_CONNECTION="callPoorConnection",z.TOPOLOGY_CHANGE_REQUESTED="callTopologyChangeRequested",z.RELAY_POLICY="callForceRelay",z.PAT_ALLOCATED="patAllocate",z.PAT_DEALLOCATED="patDeallocate",z.PAT_ERROR="patError",z.PAT_WAITING_TIME_ERROR="patWaitingTimeError",z.PAT_OUTDATED_RESPONSE="patOutdatedResponse",z))(Br||{}),T=Br;var Vr=(t=>(t.AUDIO_MIX="audio-mix",t.PARTICIPANT_AGNOSTIC_TRACK_PREFIX="pat",t))(Vr||{}),Be=Vr;var Fr=(t=>(t.NO_AVAILABLE_TRACKS="no-available-tracks",t.UNKNOWN_ERROR="unknown-error",t))(Fr||{}),Hr=Fr;function Gr(n){switch(n){case 1:return"no-available-tracks";default:return"unknown-error"}}var Wr=(t=>(t.CREATOR="CREATOR",t.ADMIN="ADMIN",t))(Wr||{}),_t=Wr;function xt(n,e){if(n.length!==e.length)return!1;for(let t of n)if(!e.includes(t))return!1;return!0}var jr=(t=>(t.USER="USER",t.GROUP="GROUP",t))(jr||{}),ee=jr;var xi=class{constructor(){this._items=[]}get length(){return this._items.length}push(e){this._items.push(e)}shift(){return this._items.shift()||null}bisect(){let e=this.length>1?Math.floor(this.length/2):1;this._items=this._items.slice(e)}clear(){this._items=[]}toString(){return this._items.length?JSON.stringify(this._items,(e,t)=>t instanceof Error?String(t):t):""}};var Kr=2*1024*1024,Ja=512*1024,Lt=100*1024,za=5,Li="_okcls_logs_session_",Ya=3e4,$r=class{constructor(){this._items=[];this._itemsSize=0;this._storageSize=Kr;try{let e=window.localStorage;for(let t of Object.keys(e)){if(t.indexOf(Li)!==0)continue;let i=e.getItem(t);if(!i){zr(t);continue}let r=Jr(i);this.add(t,r)}}catch(e){console.error("Storage is blocked",e),this._storageSize=0}this._items.sort((e,t)=>e.date-t.date),this.cleanup(Lt)}get size(){return this._itemsSize}get length(){return this._items.length}get available(){return Math.max(this._storageSize-this._itemsSize,0)}get items(){return this._items}set storageSize(e){this._storageSize=e}add(e,t){let i=parseInt(e.replace(Li,""),10);this._itemsSize+=t,this._items.push({key:e,size:t,date:i})}deleteOldestItem(){let e=this._items.shift();e&&(zr(e.key),this._itemsSize-=e.size)}cleanup(e){for(;this.length&&(this.size>Kr||this.length>za-1||this.size+e>this.available);)this.deleteOldestItem()}};function qr(){return`${Li}${Date.now()}`}function Jr(n){return new Blob([n]).size}function zr(n){try{window.localStorage.removeItem(n)}catch(e){console.error("Failed to remove log from storage",e)}}function Ni(){let n=rt.toString();if(!ye.available||!n)return;let e=Jr(n);ye.cleanup(e);try{window.localStorage.setItem(Xt,n)}catch(t){if(console.warn("Failed to write log to storage",t),ye.storageSize=ye.size+e,ye.cleanup(Lt+e),ye.available>=Lt+e){Ni();return}if(e>Lt){rt.bisect(),Ni();return}ye.storageSize=0;return}e>Ja&&(ye.add(Xt,e),Xt=qr(),rt.clear(),ye.cleanup(Lt))}function Ui(){!ye.available||!rt.length||Ni()}function Qa(n=!1){let e=[];try{let r=window.localStorage;for(let s of ye.items){let d=r.getItem(s.key);e.push(d)}let a=rt.toString();a&&e.push(a)}catch(r){console.error("Storage is blocked",r)}let t=`[${e.join(",")}]`;if(n)return t;let i=`logs_${Date.now()}.json`;return Xa(t,i),i}function Xa(n,e){let t=document.createElement("a"),i=new Blob([n],{type:"text/json"});t.href=URL.createObjectURL(i),t.download=e,t.click()}function Yr(n,e){if(!ye.available)return;let t=new Date;rt.push({t:t.getTime(),l:n,d:e,h:t.toLocaleString("ru-RU",{dateStyle:"short",timeStyle:"long"})}),Vi||(Vi=window.setTimeout(()=>{Vi=null,Ui()},Ya))}function Bi(){ye||(ye=new $r,rt=new xi,Xt=qr(),window.addEventListener("beforeunload",Ui))}var ye,rt,Xt,Vi=null;window.__VKCallsSDKLogs__=(n=!1)=>(ye||Bi(),Ui(),Qa(n));import Qr from"@vkontakte/libvpx";var fe=(d=>(d.INIT="init",d.READY="ready",d.FRAME="frame",d.SET_BITRATE="set_bitrate",d.ERROR="error",d.DEBUG="debug",d.LOG_ERROR="log_error",d))(fe||{});var g=class extends Ot{constructor(e,t){super();this._batchInterval=3e3;this._batch=[];this._batchTimeout=null;this._api=e,this._externalLogger=t}_send(e){this._api.log(e)}_sendBatch(){this._stopTimeout(),this._batch.length>0&&(this._send(this._batch),this._batch=[],this._startTimeout())}_startTimeout(){this._batchTimeout=window.setTimeout(()=>this._sendBatch(),this._batchInterval)}_stopTimeout(){this._batchTimeout&&(clearTimeout(this._batchTimeout),this._batchTimeout=null)}_onUnload(){this._sendBatch(),this._stopTimeout()}log(e,t,i=!1){let r={};typeof t!="undefined"&&(r.param=t),this._logInternal(e,r,i),this._externalLogger&&this._externalLogger.log(e,t,i)}logCustom(e,t,i=!1){this._logInternal(e,t,i)}_logInternal(e,t,i){let r={type:1,time:0,operation:e,timestamp:Date.now(),custom:t,uid:this._api.getUserId()};this._batch.push(r),(i||!this._batchTimeout)&&this._sendBatch()}destroy(){this._sendBatch(),this._stopTimeout(),this._externalLogger&&this._externalLogger.destroy()}static create(e,t){g._instance||(g._instance=new g(e,t))}static log(e,t,i=!1){g._instance&&g._instance.log(e,t,i)}static logCustom(e,t,i=!1){g._instance&&g._instance.logCustom(e,t,i)}static destroy(){g._instance&&g._instance.destroy(),g._instance=null}};var Ge=class{constructor(){this._worker=null}_createWorker(s,d){return o(this,arguments,function*(e,t,i=[],r={},a=[]){return new Promise((p,u)=>{let S=i.join(","),C=new Blob([e,`exports.default(${S});`],{type:"application/javascript; charset=utf-8"}),R=window.URL.createObjectURL(C);this._worker=new Worker(R),this._worker.onmessage=P=>{switch(P.data.type){case fe.READY:p();break;case fe.ERROR:u(P.data.error);break;case fe.FRAME:t(P.data);break;case fe.DEBUG:c.debug(P.data.message);break;case fe.LOG_ERROR:g.log(T.ERROR,P.data.message);break}},this._sendToWorker(fe.INIT,r,a)})})}_removeWorker(){var e;(e=this._worker)==null||e.terminate(),this._worker=null}_sendToWorker(e,t={},i=[]){var r;(r=this._worker)==null||r.postMessage(Object.assign({type:e},t),i)}static isBrowserSupported(){throw new Error("Not implemented")}};var gt=class extends Ge{init(e){return o(this,null,function*(){c.debug("LibVPxDecoder started"),yield this._createWorker('var exports=(()=>{var m=Object.defineProperty;var x=a=>m(a,"__esModule",{value:!0});var M=(a,l)=>{x(a);for(var t in l)m(a,t,{get:l[t],enumerable:!0})};var D={};M(D,{default:()=>h});var r=(e=>(e.INIT="init",e.READY="ready",e.FRAME="frame",e.SET_BITRATE="set_bitrate",e.ERROR="error",e.DEBUG="debug",e.LOG_ERROR="log_error",e))(r||{});var h=(a,l)=>{let t=null,o=null,u=!0;function b(){return a({locateFile:l}).then(e=>o=e)}function y(e,g,n,E,R){if(!o){self.postMessage({type:r.LOG_ERROR,message:"decoder-init-fail-libvpx"}),self.postMessage({type:r.FRAME,error:"Fatal initialization error"});return}if(u!==n&&(u=n,t&&(t=null,self.postMessage({type:r.DEBUG,message:`LibVPxDecoder codec changed to ${n?"VP9":"VP8"} - reinitialize`}))),!t&&(self.postMessage({type:r.DEBUG,message:`LibVPxDecoder codec ${n?"VP9":"VP8"}`}),t=new o.VpxDecoder,t.debug(R),!t.init(n?o.VpxType.VP9:o.VpxType.VP8))){t=null,self.postMessage({type:r.FRAME,error:"Decoder failed to create"});return}try{t.allocateBuffer(g.byteLength).set(new Uint8Array(g))}catch(s){self.postMessage({type:r.DEBUG,message:s}),t=null,self.postMessage({type:r.FRAME,error:String(s)});return}if(!(t.decode()&&t.nextImage())){self.postMessage({type:r.FRAME,error:"Decode failed"});return}let p=t.getImageBuffer();if(!p){self.postMessage({type:r.FRAME,error:"No decoded data"});return}let d=t.getImageWidth(),c=t.getImageHeight();t.nextImage()&&(self.postMessage({type:r.DEBUG,message:"LibVPxDecoder dropped frame"}),self.postMessage({type:r.LOG_ERROR,message:"LibVPxDecoder-drop"}));let i=new Uint8ClampedArray(p.byteLength);if(i.set(p),E){let s=new ImageData(i,d,c);createImageBitmap(s,0,0,d,c).then(f=>{self.postMessage({type:r.FRAME,data:f},[f]),f.close()})}else self.postMessage({type:r.FRAME,data:i.buffer,width:d,height:c},[i.buffer])}b().then(()=>{self.onmessage=e=>{switch(e.data.type){case r.FRAME:y(e.data.timestamp,e.data.data,e.data.isVP9,e.data.useImageBitmap,e.data.debug);break}},self.postMessage({type:r.READY})}).catch(e=>{self.postMessage({type:r.ERROR,error:String(e)})})};return D;})();\n',t=>{if(t.error)c.warn("LibVPxDecoder",t.error);else if(t.data instanceof ArrayBuffer){let i=new ImageData(new Uint8ClampedArray(t.data),t.width,t.height);e(i)}else e(t.data)},[Qr,Qr.getUrl])})}decodeFrame(e,t,i,r){let a="ImageBitmap"in window;this._sendToWorker(fe.FRAME,{timestamp:e,data:t.buffer,isVP9:i,keyFrame:r,useImageBitmap:a,debug:c.enabled()},[t.buffer])}destroy(){this._removeWorker(),c.debug("LibVPxDecoder destroyed")}static isBrowserSupported(){return"WebAssembly"in window&&"Worker"in window}};var Fi="_okcls_",ft=(()=>{try{let n=Date.now().toString(),e=window.localStorage,t=!1;return e.setItem(n,n),t=e.getItem(n)===n,e.removeItem(n),t?e:null}catch(n){return null}})();function en(n){let e=ft?ft.getItem(Fi+n):null;if(e===null)return null;try{return JSON.parse(e)}catch(t){return null}}function tn(n,e){try{ft&&ft.setItem(Fi+n,JSON.stringify(e))}catch(t){}}function rn(n){ft&&ft.removeItem(Fi+n)}var Hi;(i=>{function n(r){return en(r)||null}i.get=n;function e(r,a){tn(r,a)}i.set=e;function t(r){rn(r)}i.remove=t})(Hi||(Hi={}));var Xe=Hi;function Xr(n,e){if(n.isAudioEnabled!==e.isAudioEnabled||n.isVideoEnabled!==e.isVideoEnabled||n.isScreenSharingEnabled!==e.isScreenSharingEnabled||n.isAudioSharingEnabled!==e.isAudioSharingEnabled||n.videoStreams.length!==e.videoStreams.length)return!1;for(let t of n.videoStreams)if(!e.videoStreams.find(i=>i.id===t.id&&i.source===t.source))return!1;return!0}function Se(n){return Object.assign({isAudioEnabled:!1,isVideoEnabled:!1,isScreenSharingEnabled:!1,isAudioSharingEnabled:!1,videoStreams:[]},n||{})}var Zr=n=>n.stop(),ea=n=>n.getTracks().forEach(Zr),Gi=n=>n.getVideoTracks().forEach(Zr),ta=n=>n.getVideoTracks()[0].clone();var U=class extends Error{constructor(e,t){super();this.name="HangupReason",this.code=t&&t.code||0,this.remote=t&&t.remote||!1,Object.values(k).indexOf(e)>-1?this.hangup=e:this.error=e;let i=[];this.error&&i.push("error"),this.remote&&i.push("remote"),this.code&&i.push(`code: ${this.code}`),t&&t.message&&i.push(`message: '${t.message}'`),this.message=e+(i.length?` (${i.join(", ")})`:""),Error.captureStackTrace&&Error.captureStackTrace(this,U)}};var Me=(i=>(i.SOURCE_CHANGED="SOURCE_CHANGED",i.TRACK_REPLACED="TRACK_REPLACED",i.SCREEN_STATUS="SCREEN_STATUS",i))(Me||{}),ue=(r=>(r.audio="audio",r.video="video",r.screen="screen",r.audioshare="audioshare",r))(ue||{}),Wi=class extends ae{constructor(){super();this._stream=null;this._trackVideoStreamBackup=null;this._screenTrack=null;this._audioShareTrack=null;this._sendVideoTrack=null;this._mediaSettings=Se();this._videoStatusOnScreenCapturingEnabled=!1;this._effect=null;this._initDeviceChangeListener(),l.audioShareCapabilityEnabled&&(this._audioShareTrack=this.getSilentAudioShareTrack())}request(){return o(this,arguments,function*(e=[le.AUDIO],t=!0){if(this._stream)return;let i=e.includes(le.VIDEO),r=e.includes(le.AUDIO);if(!M.isBrowserSupported())throw new U(oe.UNSUPPORTED);try{this._stream=yield M.getUserMedia(i,r,t),this._mediaSettings.isVideoEnabled=i&&this._stream.getVideoTracks().filter(a=>a.enabled).length>0||!1,this._mediaSettings.isAudioEnabled=r&&this._stream.getAudioTracks().filter(a=>a.enabled).length>0||!1}catch(a){throw new U(a)}})}getStream(){return this._stream}getScreenTrack(){return this._screenTrack}getSendVideoTrack(e=!1){return this._sendVideoTrack&&!e?this._sendVideoTrack:this._stream?this._stream.getVideoTracks()[0]:null}_getSendAudioTrack(){var e;return((e=this._stream)==null?void 0:e.getAudioTracks()[0])||null}addTrackToPeerConnection(e,t,i,r){let a=this.getStream(),s=this._getSendAudioTrack(),d=this.getSendVideoTrack(i);if(!a||!s&&!d&&!t)throw new Error("No local stream found");if(s&&!t){if(r){let{codecs:p}=RTCRtpSender.getCapabilities("audio"),u="audio/red",S=48e3,C=p.findIndex(R=>R.mimeType===u&&R.clockRate===S);if(C>=0){let R=[];R.push(p[C]);for(let P=0;P<p.length;P++)P!==C&&R.push(p[P]);e.getTransceivers().forEach(P=>P.setCodecPreferences(R))}}e.addTrack(s,a)}d&&!t&&e.addTrack(d,a)}getMediaSettings(){return this._mediaSettings}changeDevice(e){return o(this,null,function*(){switch(e){case"videoinput":return this._changeVideoInput();case"audioinput":return this._changeAudioInput();default:return Promise.reject()}})}setVideoStream(e,t){return o(this,null,function*(){return t?this._changeScreen(!1,e):this._changeVideoInput(e)})}_initDeviceChangeListener(){if(!navigator.mediaDevices||!navigator.mediaDevices.enumerateDevices||!navigator.mediaDevices.addEventListener)return;let e=!1,t=!1,i=v.throttle(()=>{t&&this._changeVideoInput().catch(()=>{}),e&&this._changeAudioInput().catch(()=>{}),e=!1,t=!1},1e3);this._onDeviceChange=()=>o(this,null,function*(){if(!this._stream)return;let r=this._stream.getAudioTracks()[0],a=r&&r.enabled&&r.getSettings(),s=a&&a.deviceId,d=this._stream.getVideoTracks()[0],p=d&&d.enabled&&d.getSettings(),u=p&&p.deviceId;if(!s&&!u)return;let S=yield navigator.mediaDevices.enumerateDevices();!e&&s&&(e=!S.find(C=>C.deviceId===s)),!t&&u&&(t=!S.find(C=>C.deviceId===u)),i()}),navigator.mediaDevices.addEventListener("devicechange",this._onDeviceChange)}_destroyDeviceChangeListener(){this._onDeviceChange&&navigator.mediaDevices.removeEventListener("devicechange",this._onDeviceChange)}_changeVideoInput(e=null){return o(this,null,function*(){try{let t=e?"stream":"video",i=e||(yield M.getUserVideo(void 0,!!this._effect));if(!this._stream)i.getTracks().forEach(r=>r.stop());else{l.consumerScreenTrack||(yield this._disableScreenCapture());let r=this._getVideoEffectTrack(i),a=yield this._videoEffect(this._effect,r);this._stopLocalTrack("video"),g.log(T.DEVICE_CHANGED,t),c.log("Video stream changed"),yield this._replaceLocalTrack(a),this._mediaSettings.isVideoEnabled=!0,this._triggerEvent("SOURCE_CHANGED",{kind:"video",mediaSettings:this._mediaSettings})}}catch(t){throw g.log(T.ERROR,"change_video"),c.warn("Camera change failed",t),t}})}_getVideoEffectTrack(e){let t;return this._effect?(this._trackVideoStreamBackup||(this._trackVideoStreamBackup=ta(e)),t=this._trackVideoStreamBackup.clone(),Gi(e)):this._trackVideoStreamBackup?(t=this._trackVideoStreamBackup.clone(),this._stopAndRemoveTrackVideoStreamBackup(),Gi(e)):t=e.getVideoTracks()[0],t}setAudioStream(e){return o(this,null,function*(){return this._changeAudioInput(e)})}_changeAudioInput(e=null){return o(this,null,function*(){try{if(e=e||(yield M.getUserAudio()),!this._stream)e.getTracks().forEach(t=>t.stop());else{let t=e.getAudioTracks()[0];this._stopLocalTrack("audio"),g.log(T.DEVICE_CHANGED,"audio"),c.log("Audio stream changed"),yield this._replaceLocalTrack(t),this._mediaSettings.isAudioEnabled=!0,this._triggerEvent("SOURCE_CHANGED",{kind:"audio",mediaSettings:this._mediaSettings})}}catch(t){throw g.log(T.ERROR,"change_audio"),c.error("Microphone change failed",t),t}})}_changeScreen(e,t){return o(this,null,function*(){try{if(t=t||(yield M.getScreenMedia(e)),t.addEventListener("inactive",()=>{this._mediaSettings.isScreenSharingEnabled&&this.toggleScreenCapturing(!1,!1)},!1),!this._stream)t.getTracks().forEach(i=>i.stop());else{let i=t.getVideoTracks()[0],r=l.consumerScreenTrack?i:yield this._videoEffect(null,i);if(g.log(T.DEVICE_CHANGED,"screen"),c.log("Screen capturing started"),this._screenTrack=r,this._mediaSettings.isScreenSharingEnabled=!0,l.consumerScreenTrack||(this._videoStatusOnScreenCapturingEnabled=this._mediaSettings.isVideoEnabled,this._mediaSettings.isVideoEnabled=!0,this._stopLocalTrack("video"),this._sendVideoTrack=l.consumerScreenDataChannel?M.getBlackMediaTrack(l.videoMinWidth,l.videoMinHeight):r,yield this._replaceLocalTrack(r,this._sendVideoTrack)),t.getAudioTracks().length>0){let a=t.getAudioTracks()[0];a.contentHint="music",this._audioShareTrack=a,this._stopLocalTrack("audioshare"),yield this._replaceLocalTrack(a),this._mediaSettings.isAudioSharingEnabled=!0}e&&!this._mediaSettings.isAudioSharingEnabled&&c.debug("Audio share requested but not captured"),this._triggerEvent("SCREEN_STATUS",{track:r,mediaSettings:this._mediaSettings}),this._triggerEvent("SOURCE_CHANGED",{kind:"screen",mediaSettings:this._mediaSettings})}}catch(i){throw g.log(T.ERROR,"screen"),c.warn("Screen capturing failed",i),i}})}_disableScreenCapture(){return o(this,null,function*(){this._sendVideoTrack&&(this._sendVideoTrack.stop(),this._sendVideoTrack=null),this._screenTrack&&(this._screenTrack.stop(),this._screenTrack=null),yield this.disableAudioShare(),(this._mediaSettings.isScreenSharingEnabled||this._mediaSettings.isAudioSharingEnabled)&&(this._mediaSettings.isScreenSharingEnabled=!1,this._mediaSettings.isAudioSharingEnabled=!1,this._triggerEvent("SCREEN_STATUS",{mediaSettings:this._mediaSettings}),this._triggerEvent("SOURCE_CHANGED",{kind:"screen",mediaSettings:this._mediaSettings}))})}disableAudioShare(){return o(this,null,function*(){if(this._audioShareTrack){this._audioShareTrack.stop();let e=this.getSilentAudioShareTrack();this._stopLocalTrack("audioshare"),yield this._replaceLocalTrack(e),this._mediaSettings.isAudioSharingEnabled&&(this._mediaSettings.isAudioSharingEnabled=!1,this._triggerEvent("SCREEN_STATUS",{mediaSettings:this._mediaSettings}),this._triggerEvent("SOURCE_CHANGED",{kind:"audioshare",mediaSettings:this._mediaSettings}))}})}getSilentAudioShareTrack(){let e=M.getSilentMediaTrack();return e.contentHint="music",e.stop(),e}_replaceLocalTrack(e,t){return o(this,null,function*(){if(!this._stream)return;let i=!1;this._stream.getTracks().forEach(r=>{var a,s;r.kind===e.kind&&r.contentHint===e.contentHint&&((a=this._stream)==null||a.removeTrack(r),(s=this._stream)==null||s.addTrack(e),this._triggerEvent("TRACK_REPLACED",e,t),i=!0)}),i||(this._stream.addTrack(e),this._triggerEvent("TRACK_REPLACED",e,t))})}_stopLocalTrack(e){this._stream&&this._stream.getTracks().forEach(t=>{t.contentHint==="music"&&t.kind==="audio"?e==="audioshare"&&t.stop():t.kind===e&&t.stop()})}_videoEffect(e,t){return o(this,null,function*(){if(!l.videoEffects)return t;try{return g.log(T.DEVICE_CHANGED,`effect_${e}`),l.videoEffects.setEffect(e,t)}catch(i){return c.warn("Video effect failed",i),t}})}_stopAndRemoveTrackVideoStreamBackup(){this._trackVideoStreamBackup&&(this._trackVideoStreamBackup.stop(),this._trackVideoStreamBackup=null)}destroy(){this._destroyDeviceChangeListener(),l.videoEffects&&(this._effect=null,l.videoEffects.destroy()),this._stream&&(ea(this._stream),this._stream=null),this._stopAndRemoveTrackVideoStreamBackup(),this._disableScreenCapture()}toggleScreenCapturing(e,t){return o(this,null,function*(){if(e){yield this._changeScreen(t),t||(yield this.disableAudioShare());return}return l.consumerScreenTrack?this._disableScreenCapture():(t||(yield this.disableAudioShare()),this._videoStatusOnScreenCapturingEnabled?this._changeVideoInput():this.toggleVideo(!1))})}toggleVideo(e){return o(this,null,function*(){if(!this._stream)return;l.consumerScreenTrack||(yield this._disableScreenCapture());let t;if(e){let i=yield M.getUserVideo(void 0,!!this._effect);t=this._getVideoEffectTrack(i),t=yield this._videoEffect(this._effect,t)}else t=M.getBlackMediaTrack(l.videoMinWidth,l.videoMinHeight),t=yield this._videoEffect(null,t),this._stopAndRemoveTrackVideoStreamBackup();this._stopLocalTrack("video"),yield this._replaceLocalTrack(t),this._mediaSettings.isVideoEnabled=e,this._triggerEvent("SOURCE_CHANGED",{kind:"video",mediaSettings:this._mediaSettings})})}toggleAudio(e){return o(this,null,function*(){if(!this._stream)return;let t;e?t=(yield M.getUserAudio()).getAudioTracks()[0]:t=M.getSilentMediaTrack(),this._stopLocalTrack("audio"),yield this._replaceLocalTrack(t),this._mediaSettings.isAudioEnabled=e,this._triggerEvent("SOURCE_CHANGED",{kind:"audio",mediaSettings:this._mediaSettings})})}setResolution(e,t){return o(this,null,function*(){if(!l.consumerScreenTrack&&this._mediaSettings.isScreenSharingEnabled)return;if(!this._stream)throw new Error("Local stream not found");let i=this._stream.getVideoTracks()[0];if(!i)throw new Error("Local video track not found");if(!!i.enabled){if(!this._effect)return i.applyConstraints({width:{ideal:e},height:{ideal:t}});yield this.toggleVideo(!1),yield this.toggleVideo(!0)}})}updateNoiseSuppression(){return o(this,null,function*(){if(!this._stream||!this._mediaSettings.isAudioEnabled)return;let e=this._stream.getAudioTracks()[0];if(!e)throw new Error("Local audio track not found");if(!!e.enabled)return e.applyConstraints({noiseSuppression:l.noiseSuppression})})}videoEffect(e){return o(this,null,function*(){if(!l.videoEffects)throw new Error("Video Effects library is not set");if(!l.consumerScreenTrack&&this._mediaSettings.isScreenSharingEnabled)throw new Error("Can't apply effect to screensharing");if(!this._mediaSettings.isVideoEnabled){this._effect=e;return}if(this._stream&&e!==this._effect)return this._effect=e,this._changeVideoInput(this._stream)})}getAudioShareTrack(){return this._audioShareTrack}};var ia=typeof Object.fromEntries=="function"?Object.fromEntries:function(n){if(!n||!n[Symbol.iterator])throw new Error("Object.fromEntries() requires a single iterable argument");let e={};for(let[t,i]of n)e[t]=i;return e};function ra(n){return o(this,null,function*(){return new Promise((e,t)=>{let i=new FileReader;i.onload=r=>{e(r.target.result)},i.onerror=t,i.readAsArrayBuffer(n)})})}var St=":",Zt="d",an=533,ji="a=fmtp:",nn="sps-pps-idr-in-keyframe=1",Ki;(Mi=>{function n(h,m,I,D,b,H=!1,X=!1){let Ee=/[\r\n]+/,ke=`\r
8
+ `;if(!m&&!I&&!D&&!X&&!H&&!b)return h;function Fe(K){let _e=["a=rtcp-fb:111 nack","a=rtcp-fb:111 nack pli"],Ie="a=rtcp-fb:111",Z=K.findIndex(Q=>Q.startsWith(Ie));return~Z&&(K[Z]=K[Z]+ke+_e.join(ke)),K}function $e(K,_e,Ie){let Z=K.split(" "),Q=Z.slice(0,3),se;for(se=3;se<Z.length;se++)Ie.includes(Z[se])&&Q.push(Z[se]);for(se=3;se<Z.length;se++)!Ie.includes(Z[se])&&!_e.includes(Z[se])&&Q.push(Z[se]);return Q.join(" ")}function we(K,_e){let Ie=new RegExp("a=rtpmap:(\\d+) ([a-zA-Z0-9-]+)\\/\\d+"),Z,Q=[];for(Z=0;Z<K.length;++Z){let se=K[Z].match(Ie);se&&se.length===3&&se[2]===_e&&Q.push(se[1])}return Q}function xe(K,_e,Ie,Z){let Q,se="m="+_e;for(Q=0;Q<K.length;++Q)if(K[Q].startsWith(se)){K[Q]=$e(K[Q],Ie,Z);break}}function Le(K,_e){let Ie=new RegExp(ji+"(\\d+)");for(let Z=0;Z<K.length;++Z){let Q=K[Z].match(Ie);if(Q&&Q.length===2&&_e.includes(Q[1])){let se=K[Z].trim()===ji+Q[1]?" ":";";K[Z]+=se+nn}}}function He(K){let _e=we(K,"H264");if(I){let Ie=_e.slice(0),Z=new RegExp(ji+"(\\d+) apt=(\\d+)"),Q;for(Q=0;Q<K.length;++Q){let qe=K[Q].match(Z);qe&&qe.length===3&&Ie.includes(qe[2])&&Ie.push(qe[1])}let se=new RegExp("a=(rtpmap|rtcp-fb|fmtp):(\\d+) .*");for(Q=K.length;Q--;){let qe=K[Q].match(se);qe&&qe.length===3&&Ie.includes(qe[2])&&K.splice(Q,1)}xe(K,"video",Ie,[])}else m&&xe(K,"video",[],_e),b&&Le(K,_e)}function w(K){let _e=we(K,"VP9");D&&xe(K,"video",[],_e)}function N(K){let _e=we(K,"red");_e.length>0&&xe(K,"audio",[],_e)}let mt=h.split(Ee);return(I||m||b)&&He(mt),D&&w(mt),X&&N(mt),H&&Fe(mt),mt.join(ke)}Mi.patchLocalSDP=n;function e(h){return M.browserName()==="Firefox"&&Number(M.browserVersion())<60&&(h=h.replace("m=application 9 UDP/DTLS/SCTP webrtc-datachannel","m=application 9 DTLS/SCTP 5000").replace("a=sctp-port:5000","a=sctpmap:5000 webrtc-datachannel 256")),h}Mi.patchRemoteSDP=e;function t(h){return h?`${h.type||"WEB_SOCKET"}_${h.id}`:"_"}Mi.getPeerIdString=t;function i(h,m){return h&&h.id===m.id&&(h.type||"WEB_SOCKET")===(m.type||"WEB_SOCKET")}Mi.comparePeerId=i;function r(h){return o(this,null,function*(){return!h||!h.getStats?Promise.resolve(null):h.getStats(null).then(m=>{let I=null,D=null;if(m.forEach(b=>{b.type==="transport"&&b.selectedCandidatePairId?D=m.get(b.selectedCandidatePairId):b.type==="candidate-pair"&&b.state==="succeeded"&&!D&&(!b.hasOwnProperty("selected")||b.selected)&&(D=b)}),D&&D.localCandidateId){let b=m.get(D.localCandidateId);b&&(I={type:b.candidateType,ip:b.ip||b.ipAddress,port:b.port||b.portNumber})}return I}).catch(()=>null)})}Mi.getPeerConnectionHostInfo=r;let a=/^[0-9]+$/,s=/^([gu])([0-9]+)$/;function d(h,m){let I=String(h);return s.test(I)?(c.warn(`Already composite id [${h}] type supplied [${m}]`),I):m===ee.GROUP?"g"+I:m===ee.USER?"u"+I:(c.warn(`Unknown type [${m}] for id [${h}]`),I.match(a)?"u"+I:I)}Mi.composeUserId=d;function p(h,m,I){let D=d(h,m);return u(D,I)}Mi.composeParticipantId=p;function u(h,m){return m?h+St+Zt+m:h}Mi.compose=u;function S(h){return p(h.id,h.idType||ee.USER,h.deviceIdx||0)}Mi.composeId=S;function C(h){return h.participant?S(h.participant):p(h.participantId,h.participantType||ee.USER,h.deviceIdx||0)}Mi.composeMessageId=C;function R(h){let m=String(h),I=m.match(s);return I?{id:Number(I[2]),type:I[1]==="g"?ee.GROUP:ee.USER}:(c.warn(`Unsupported compositeId [${h}]`),{id:Number(m),type:ee.USER})}Mi.decomposeId=R;function P(h){let m=h.split(St+Zt);return{compositeUserId:m[0],deviceIdx:m.length>1?parseInt(m[1],10):0}}Mi.decomposeParticipantId=P;function B(){var X,Ee;let h=(Ee=(X=window.crypto)==null?void 0:X.randomUUID)==null?void 0:Ee.call(X);if(h)return h;let m="0123456789abcdefghijklmnopqrstuvwxyz".split(""),I=new Array(36),D=0,b,H;for(H=0;H<36;H++)H===8||H===13||H===18||H===23?I[H]="-":H===14?I[H]="4":(D<=2&&(D=33554432+Math.random()*16777216|0),b=D&15,D=D>>4,I[H]=m[H===19?b&3|8:b]);return I.join("")}Mi.uuid=B;function q(h,m){let I;function D(){let b=this,H=arguments;I&&window.clearTimeout(I),I=window.setTimeout(()=>{h.apply(b,H)},m)}return D}Mi.throttle=q;function he(h){if(!window.BigInt)return null;let m="",I=h.split(`
9
+ `);for(let H of I)if(H.startsWith("a=fingerprint")){let X=H.split(" ");if(X.length===2){m=X[1];break}}if(!m)return BigInt(-1);let D=m.split(":"),b=BigInt(0);for(let H=Math.min(7,D.length-1);H>=0;H--){let X=BigInt(parseInt(D[H],16));b<<=BigInt(8),b|=X}return BigInt.asIntN(64,b)}Mi.sdpFingerprint=he;function $(h){return o(this,null,function*(){return new Promise(m=>window.setTimeout(m,h))})}Mi.delay=$;function De(h,m,I){let D=[];return h.getSenders().forEach(b=>re(m,b,b.track,I,D)),D}Mi.applySettings=De;function re(h,m,I,D,b){var H;if(h&&I&&I.kind===ue.video){let X=I.getSettings();if(X){let Ee=h.maxBitrateK?h.maxBitrateK*1024:null,ke=X.width,Fe=X.height,$e=ke&&Fe&&h.maxDimension?Math.max(1,Math.max(ke,Fe)/h.maxDimension):null,we=h.maxFramerate?h.maxFramerate:null;if(ke&&Fe&&h.maxDimension&&h.maxDimension>Math.max(ke,Fe)){let w=Math.round(ke*Fe/256),N=(Math.round(w*an/1e4)+1)*1e4;Ee=Ee===null?N:Math.min(N,Ee)}let xe=h.degradationPreference?h.degradationPreference:"balanced",Le=D[I.id];if(Le&&Le.bitrate===Ee&&Le.scaleResolutionDownBy===$e&&Le.maxFramerate===we&&Le.degradationPreference===xe){b[I.id]=Le;return}b[I.id]={bitrate:Ee,scaleResolutionDownBy:$e,maxFramerate:we,degradationPreference:xe};let He=m.getParameters();He.encodings||(He.encodings=[{}]),He.encodings.forEach(w=>{Ee?w.maxBitrate=Ee:delete w.maxBitrate,$e?w.scaleResolutionDownBy=$e:delete w.scaleResolutionDownBy,we?w.maxFramerate=we:delete w.maxFramerate}),He.degradationPreference=xe,(H=m.setParameters)==null||H.call(m,He)}}}Mi.applyVideoTrackSettings=re;function Ce(h,m){Array.isArray(m)||(m=[m]);for(let I of m)if(h.includes(I))return!0;return!1}Mi.includesOneOf=Ce;function be(h){var m;return Object.entries(((m=h.participantState)==null?void 0:m.state)||{}).reduce((I,[D,b])=>(h.participantState&&(I[D]={ts:h.participantState.stateUpdateTs[D],state:b}),I),{})}Mi.mapParticipantState=be;function tt(h){let m=h.map(I=>({uid:I.externalId,mediaSettings:I.mediaSettings,status:I.status,muteStates:I.muteStates,unmuteOptions:I.unmuteOptions,participantState:I.participantState,markers:I.markers,movieShareInfos:I.movieShareInfos}));return l.filterObservers?m.filter(I=>!I.uid.observer):m}Mi.mapSharedParticipants=tt;function At(h,m){let I=Object.keys(h),D=Object.keys(m);if(I.length!==D.length)return!1;for(let b of I)if(!D.hasOwnProperty(b)||h[b].state!==m[b].state||h[b].ts!==m[b].ts)return!1;return!0}Mi.isEqualParticipantState=At;function te(h,m){let I=Object.keys(h),D=Object.keys(m);if(I.length!==D.length)return!1;for(let b of I)if(!m.hasOwnProperty(b)||h[b]!==m[b])return!1;return!0}Mi.isObjectsEquals=te;function gr(h,m){if(h.length!==m.length)return!1;for(let I of h)if(m.indexOf(I)<0)return!1;return!0}Mi.isArraysEquals=gr;function Ri(h){return!Object.keys(h).length}Mi.isEmptyObject=Ri;function Pi(h,m){if(!h&&!m)return 0;if(!h||!m)return h?-1:1;return D(m.rank,h.rank)||D(h.ts,m.ts)||I(h,m);function I(b,H){let X={[ee.USER]:0,[ee.GROUP]:1},{compositeUserId:Ee,deviceIdx:ke}=P(b.id),{compositeUserId:Fe,deviceIdx:$e}=P(H.id),{id:we,type:xe}=R(Ee),{id:Le,type:He}=R(Fe);return D(X[xe],X[He])||D(we,Le)||D(ke,$e)}function D(b,H){return b<H?-1:b===H?0:1}}Mi.participantMarkerCompare=Pi;function z(h,m){let I=Object.entries(h).filter(([,D])=>Array.isArray(m)?!m.includes(D):D!==m);return ia(I)}Mi.objectFilterOutValues=z;function bi(h,m,I){let D=I;for(let b in h)!h.hasOwnProperty(b)||(D=m(D,h[b],b));return D}Mi.objectReduce=bi,Mi.setImmediate=(()=>{let h=1,m={},I=null;return typeof MessageChannel!="undefined"&&(I=new MessageChannel,I.port1.onmessage=D=>{let b=D.data;m[b]&&(m[b](),delete m[b])}),function(D){if(I&&document.visibilityState==="hidden"){let H=h;return h=h>=Number.MAX_SAFE_INTEGER?1:h+1,m[H]=D,I.port2.postMessage(H),()=>{m[H]&&delete m[H]}}let b=setTimeout(D,0);return()=>clearTimeout(b)}})()})(Ki||(Ki={}));var v=Ki;var at=null,$i=null,ei=[],ti=[],qi=[],Nt=null,Ut=null,Ji=null,zi=!1,Yi=!1,ii,vt,ri,Qi=null,Xi="",ai=[],Zi=null,aa=navigator.appVersion,sn=navigator.appName,Ae=navigator.userAgent,na=(r=>(r.USER="user",r.ENVIRONMENT="environment",r.LEFT="left",r.RIGHT="right",r))(na||{}),Bt=class{constructor(e,t=!1,i=l.videoMaxWidth,r=l.videoMaxHeight){let a=!1;if(e){a={noiseSuppression:l.noiseSuppression,echoCancellation:!0,autoGainControl:!0};let d;Ut&&(d=Ut.deviceId),typeof e=="string"&&(d=e),d&&(a.deviceId={ideal:d})}let s=!1;if(t){s={width:{min:l.videoMinWidth,max:i,ideal:i},height:{min:l.videoMinHeight,max:r,ideal:r},aspectRatio:{ideal:l.videoAspectRatio},frameRate:{ideal:l.videoFrameRate}};let d;Nt&&(d=Nt.deviceId),typeof t=="string"&&(d=t),d&&(s.deviceId={ideal:d}),l.videoFacingMode&&(s.facingMode={ideal:l.videoFacingMode})}this.audio=a,this.video=s,this.needVideo=!!s}getNative(){return Object.assign({},{audio:this.audio,video:this.video})}simplify(){return typeof this.video=="object"&&(this.video.width||this.video.height?(delete this.video.width,delete this.video.height):this.video.aspectRatio?delete this.video.aspectRatio:this.video.frameRate?delete this.video.frameRate:(this.video.deviceId||this.video.facingMode)&&(delete this.video.deviceId,delete this.video.facingMode)),typeof this.audio=="object"&&(this.audio.echoCancellation||this.audio.autoGainControl||this.audio.noiseSuppression?(delete this.audio.echoCancellation,delete this.audio.autoGainControl,delete this.audio.noiseSuppression):this.audio.deviceId&&delete this.audio.deviceId),this.video===!0&&this.audio===!0?this.video=!1:this.video===!1&&this.audio===!0?(this.audio=!1,this.video=this.needVideo):this.video===!0&&this.audio===!1&&(this.video=!1),this.video&&!Object.keys(this.video).length&&(this.video=!0),this.audio&&!Object.keys(this.audio).length&&(this.audio=!0),this}canSimplify(){let e=typeof this.video=="object"&&(this.video.width||this.video.height||this.video.aspectRatio||this.video.frameRate||this.video.facingMode||this.video.deviceId)||this.video;return!!(typeof this.audio=="object"&&(this.audio.deviceId||this.audio.noiseSuppression||this.audio.echoCancellation||this.audio.autoGainControl)||this.audio||e)}isVideo(){return!!this.video}isAudio(){return!!this.audio}},sa=class extends Bt{constructor(e,t,i){super(!1,!0);typeof this.video=="object"?(delete this.video.deviceId,delete this.video.aspectRatio,delete this.video.frameRate,delete this.video.facingMode):this.video={},this.video.cursor="motion",this.video.width=e,this.video.height=t,this.video.frameRate=l.screenFrameRate,Ze.browserName()==="Safari"&&Number(Ze.browserVersion())===16&&(delete this.video.width,delete this.video.height),i&&(this.audio={noiseSuppression:!1,echoCancellation:!1,autoGainControl:!1})}};function on(){return o(this,null,function*(){at=null,yield ni()})}function cn(){at=null,ni().then(()=>f.onDeviceChange())}function ni(){return o(this,null,function*(){return at||(!navigator.mediaDevices||!navigator.mediaDevices.enumerateDevices?[]:(!$i&&navigator.mediaDevices.addEventListener&&($i=v.throttle(cn,1e3),navigator.mediaDevices.addEventListener("devicechange",$i)),at=navigator.mediaDevices.enumerateDevices().then(n=>{ei=n.filter(r=>r.kind==="videoinput"?(r.label&&(zi=!0),!0):!1),ti=n.filter(r=>r.kind==="audioinput"?(r.label?Yi=!0:Ze.isMobile()&&Ze.browserName()==="Firefox"&&(Yi=zi),!0):!1),qi=n.filter(r=>r.kind==="audiooutput");let e=Xe.get("videoinput"),t=Xe.get("audioinput"),i=Xe.get("audiooutput");return Nt=ei.find(r=>r.deviceId===e)||null,Ut=ti.find(r=>r.deviceId===t)||null,Ji=qi.find(r=>r.deviceId===i)||null,at=Promise.resolve(n),n}).catch(()=>(at=null,[]))))})}function si(n,e){return o(this,null,function*(){c.debug("Try to get media",n.getNative());let t=Ze.hasPermissions(n.isVideo());!t&&!e&&f.onPermissionsRequested();try{let i=yield navigator.mediaDevices.getUserMedia(n.getNative());return t||(yield on()),i}catch(i){switch(i.name){case"PermissionDeniedError":case"PermissionDismissedError":case"NotAllowedError":case"SecurityError":case"DOMException":e=n.isVideo()?oe.CAMERA_PERMISSION:oe.MIC_PERMISSION;break;case"OverconstrainedError":case"TypeError":case"NotFoundError":break;case"AbortError":case"NotReadableError":e=n.isVideo()?oe.CAMERA_ACCESS:oe.MIC_ACCESS;break}if(n.canSimplify())return si(n.simplify(),e);let r=e||oe.UNKNOWN;throw f.onPermissionsError(r),r}})}function dn(n){return o(this,null,function*(){c.debug("Try to get screen",n.getNative());try{let e=yield navigator.mediaDevices.getDisplayMedia(n.getNative()),t=e==null?void 0:e.getVideoTracks()[0];return t&&(c.debug("Got display media track",t.id),t.contentHint="text"),e}catch(e){switch(e.name){case"PermissionDeniedError":case"NotAllowedError":case"SecurityError":throw oe.SCREEN_PERMISSION;default:throw oe.SCREEN_ACCESS}}})}function oi(){return ai.length||(ai=(()=>{let n,e=!1,t=0,i="0",r=Ae.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i)||[];if(/trident/i.test(r[1]))return n=/\brv[ :]+(\d+)/g.exec(Ae),["IE",n&&n[1]||"Unknown",e,t,i];if(r[1]==="Safari"){if(n=Ae.match(/\bEdge\/(\d+)/),n)return["Edge",n[1]||"Unknown",e,t,i];if(n=Ae.match(/\bCriOS\/(\d+)/),n)return["Chrome",n[1],!0,Number(n[1]),i];if(n=Ae.match(/\bFxiOS\/(\d+)/),n)return["Firefox",n[1],!1,t,i];if(n=Ae.match(/\bYaBrowser\/(\d+)/),n)return["Yandex",n[1],!1,t,i];if(n=Ae.match(/\bOPT\/(\d+)/),n)return["Opera",n[1],!1,t,i]}if(r[1]==="Chrome"){if(e=!0,t=Number(r[2]),n=Ae.match(/\bOPR\/(\d+)/),n)return["Opera",n[1]||"Unknown",e,t,i];if(n=Ae.match(/\bYaBrowser\/(\d+)/),n)return["Yandex",n[1]||"Unknown",e,t,i];if(n=Ae.match(/\bSferum\/((\d+)(?:\.\d+)*)/),n)return["Sferum",n[1]||"Unknown",e,t,i];if(n=Ae.match(/\bEdge?\/(\d+)/),n)return["Edge",n[1]||"Unknown",e,t,i];if(typeof window.opr!="undefined"&&/^(.+\.)?ok.ru$/.test(window.location.host))return["Opera","Hidden",e,t,i]}return n=Ae.match(/version\/(\d+)(?:(?:\.)(\d+))?/i),n&&n[2]!==void 0&&(i=n[2]),[r[2]?r[1]:sn,n&&n[1]||r[2]||aa,e,t,i]})()),ai}var Ze;(h=>{function n(){return o(this,null,function*(){let m=()=>{$(),document.removeEventListener("click",m),document.removeEventListener("touchstart",m)};return document.addEventListener("click",m),document.addEventListener("touchstart",m),ni()})}h.init=n;function e(){return ei}h.getCameras=e;function t(){return ti}h.getMicrophones=t;function i(){return qi}h.getOutput=i;function r(){return ei.length>0}h.hasCamera=r;function a(){return ti.length>0}h.hasMicrophone=a;function s(){return Nt}h.getSavedCamera=s;function d(){return Ut}h.getSavedMicrophone=d;function p(){return Ji}h.getSavedOutput=p;function u(){return zi}h.hasCameraPermission=u;function S(){return Yi}h.hasMicrophonePermission=S;function C(m=!1){return S()?r()&&m?u():!0:!1}h.hasPermissions=C;function R(m=!1,I=!0,D=!0){return o(this,null,function*(){let b=a()&&I,H=r()&&m,X;if(!b&&!H)X=new MediaStream;else try{X=yield si(new Bt(b,H))}catch(Ee){X=new MediaStream}return!X.getVideoTracks().length&&D&&X.addTrack(De()),!X.getAudioTracks().length&&D&&X.addTrack($()),X})}h.getUserMedia=R;function P(m){return o(this,null,function*(){return dn(new sa(window.screen.width,window.screen.height,m))})}h.getScreenMedia=P;function B(m,I=!1){return o(this,null,function*(){let D=I?l.videoEffectMaxWidth:l.videoMaxWidth,b=I?l.videoEffectMaxHeight:l.videoMaxHeight;return si(new Bt(!1,m||!0,D,b))})}h.getUserVideo=B;function q(m){return o(this,null,function*(){return si(new Bt(m||!0,!1))})}h.getUserAudio=q;function he(m,I){return o(this,null,function*(){let b=(yield ni()).find(H=>H.kind===m&&H.deviceId===I);return b?(m==="videoinput"?Nt=b:m==="audioinput"?Ut=b:m==="audiooutput"&&(Ji=b),Xe.set(m,I),b):null})}h.saveDeviceId=he;function $(){if(!ri||ri.readyState==="ended"){let m=bi(),I=m.createMediaStreamDestination(),D=m.createGain();D.gain.value=1e-5,D.connect(I),D.connect(m.destination);let b=m.createOscillator();b.type="sine",b.frequency.value=0,b.connect(D),b.start(),ri=I.stream.getAudioTracks()[0]}return Object.assign(ri.clone(),{enabled:!1})}h.getSilentMediaTrack=$;function De(m=l.videoMinWidth,I=l.videoMinHeight){return vt||(vt=document.createElement("canvas"),vt.getContext("2d")),vt.width=m,vt.height=I,(!ii||ii.readyState==="ended")&&(ii=vt.captureStream(l.videoFrameRate).getVideoTracks()[0]),Object.assign(ii.clone(),{enabled:!1})}h.getBlackMediaTrack=De;function re(){if(Ri()==="Edge"&&Number(Pi())<70)return!1;try{let m=window;return navigator.mediaDevices&&navigator.mediaDevices.getUserMedia&&m.RTCPeerConnection&&m.RTCIceCandidate&&m.RTCSessionDescription&&m.HTMLCanvasElement&&m.HTMLCanvasElement.prototype.captureStream&&m.RTCRtpSender&&m.RTCRtpSender.prototype.replaceTrack&&m.RTCRtpSender.prototype.getParameters&&navigator.sendBeacon&&!0||!1}catch(m){return!1}}h.isBrowserSupported=re;function Ce(){return!!navigator.mediaDevices.getDisplayMedia}h.isScreenCapturingSupported=Ce;function be(){let m=h.browserName()==="Safari"&&h.browserVersion()==="15"&&h.browserSubVersion()==="1",I=h.browserName()==="Opera"&&h.os()==="Windows";return m||I}h.isBrokenH264=be;function tt(){return!(h.baseChromeVersion()&&h.isMobile())}h.canPreferH264=tt;function At(){var m;return((m=window.RTCRtpTransceiver)==null?void 0:m.prototype)&&"setCodecPreferences"in window.RTCRtpTransceiver.prototype}h.canPreferRed=At;function te(){return Xi||(Xi=(()=>{let m={Windows:/Win/,Android:/Android/,OpenBSD:/OpenBSD/,SunOS:/SunOS/,Linux:/(Linux|X11)/,iPad:/(iPad)/,iPhone:/(iPhone)/,iPod:/(iPod)/,MacOS:/(MacPPC|MacIntel|Mac_PowerPC|Macintosh|Mac OS X)/,QNX:/QNX/,UNIX:/UNIX/,BeOS:/BeOS/,OS2:/OS\/2/,Bot:/(nuhk|Googlebot|Yammybot|Openbot|Slurp|MSNBot|Ask Jeeves\/Teoma|ia_archiver)/};for(let I in m)if(m.hasOwnProperty(I)&&m[I].test(Ae))return I;return"Unknown"})()),Xi}h.os=te;function gr(){return Qi===null&&(Qi=/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(aa)),Qi}h.isMobile=gr;function Ri(){return oi()[0]}h.browserName=Ri;function Pi(){return oi()[1]}h.browserVersion=Pi;function z(){return oi()[3]}h.baseChromeVersion=z;function bi(){return Zi||(Zi=new(window.AudioContext||window.webkitAudioContext)),Zi}h.getAudioContext=bi;function fr(){return oi()[4]}h.browserSubVersion=fr;function Mi(){return h.baseChromeVersion()>0&&!h.isMobile()}h.isAudioShareSupported=Mi})(Ze||(Ze={}));var M=Ze;var Ye=class extends Ge{init(e){return o(this,null,function*(){c.debug("WebCodecsDecoder started"),yield this._createWorker('var exports=(()=>{var i=Object.defineProperty;var b=a=>i(a,"__esModule",{value:!0});var E=(a,o)=>{b(a);for(var r in o)i(a,r,{get:o[r],enumerable:!0})};var D={};E(D,{default:()=>g});var s=(r=>(r.VP9="vp09.00.50.08",r.VP8="vp8",r))(s||{}),t=(e=>(e.INIT="init",e.READY="ready",e.FRAME="frame",e.SET_BITRATE="set_bitrate",e.ERROR="error",e.DEBUG="debug",e.LOG_ERROR="log_error",e))(t||{});var g=a=>{let o=null,r=!0;function l(){self.postMessage({type:t.READY})}function p(d,u,e,c=!1){if(!o||r!==e){if(!c){self.postMessage({type:t.DEBUG,message:"WebCodecsDecoder dropped frame - waiting for keyframe"});return}r=e,o?self.postMessage({type:t.DEBUG,message:`WebCodecsDecoder codec changed to ${e?"VP9":"VP8"}`}):(self.postMessage({type:t.DEBUG,message:`WebCodecsDecoder codec ${e?"VP9":"VP8"}`}),o=new VideoDecoder({output:n=>{let m=a?[n]:[];self.postMessage({type:t.FRAME,data:n},m),n.close()},error:n=>{o&&o.state!=="closed"&&o.close(),o=null,self.postMessage({type:t.FRAME,error:"WebCodecsDecoder failed, reinitialize: "+String(n)})}})),o.configure({codec:e?s.VP9:s.VP8})}let f=new EncodedVideoChunk({type:c?"key":"delta",timestamp:d,data:u});o.decode(f)}self.onmessage=d=>{switch(d.data.type){case t.INIT:l();break;case t.FRAME:p(d.data.timestamp,d.data.data,d.data.isVP9,d.data.keyFrame);break}}};return D;})();\n',t=>{t.error?c.warn("WebCodecsDecoder",t.error):e(t.data)},[M.baseChromeVersion()>=92])})}decodeFrame(e,t,i,r=!1){this._sendToWorker(fe.FRAME,{timestamp:e,data:t.buffer,isVP9:i,keyFrame:r},[t.buffer])}destroy(){this._removeWorker(),c.debug("WebCodecsDecoder destroyed")}static isBrowserSupported(){return"VideoDecoder"in window&&"Worker"in window&&"VideoFrame"in window}};import{BitStream as pn}from"bit-buffer";var ln=65536,nt=class{constructor(e,t){this._chunks=[];this._participantId=e,this._onStream=t}appendChunk(e){let t=this._chunks.length;if(e.start)t&&(c.warn("[FrameBuilder] Cleanup buffer",Array.prototype.slice.call(this._chunks)),this._chunks=[]);else if(!t||(this._chunks[t-1].sequence+1)%ln!==e.sequence){c.warn("[FrameBuilder] Got incorrect chunk");return}if(this._chunks.push(e),e.end){let i=this._processFrameData(),{width:r,height:a}=nt.getFrameSize(i);this._processFrame({timestamp:e.timestamp,frameData:i,isVP9:e.isVP9,keyframe:e.keyframe,width:r,height:a})}}destroy(){this._chunks=[]}_processFrameData(){let e=this._chunks;this._chunks=[];let t=e.reduce((a,s)=>a+s.data.byteLength,0),i=new Uint8Array(t),r=0;for(let a of e)i.set(new Uint8Array(a.data),r),r+=a.data.byteLength;return i}static getFrameSize(e){let t={width:0,height:0},i=new pn(e.buffer);i.bigEndian=!0,i.index+=2;let r=i.readBits(1),s=i.readBits(1)<<1|r;return s===3&&i.index++,i.readBits(1)===1||i.readBits(1)!==0||(i.index++,i.index++,i.index+=24,s>=2&&i.index++,i.readBits(3)!==7?(i.index++,(s===1||s===3)&&(i.index+=3)):(s===1||s===3)&&i.index++,t.width=i.readBits(16)+1,t.height=i.readBits(16)+1),t}static isBrowserSupported(){throw new Error("Method `isBrowserSupported` is not implemented")}};var Et=class{constructor(e){this._onStream=e}drawFrame(e){return o(this,null,function*(){throw new Error("Method `drawFrame` is not supported by this implementation")})}drawImage(e){throw new Error("Method `drawImage` is not supported by this implementation")}static isBrowserSupported(){throw new Error("Method `isBrowserSupported` is not implemented")}};var Vt=class extends Et{constructor(e){super(e);this._canvas=null;this._canvasContext=null;this._stream=null;this._track=null;c.debug("CanvasRenderer started"),this._useImageBitmap="ImageBitmap"in window}_createStream(e,t){this._canvas||(this._canvas=document.createElement("canvas"),this._canvas.width=e,this._canvas.height=t,this._canvas.style.pointerEvents="none",this._canvas.style.visibility="hidden",this._canvas.style.position="absolute",this._canvas.style.width="160px",this._canvas.style.height="90px",this._canvas.style.bottom="0",this._canvas.style.right="0",this._canvas.style.zIndex="5000",document.body.appendChild(this._canvas),this._useImageBitmap?this._canvasContext=this._canvas.getContext("bitmaprenderer"):this._canvasContext=this._canvas.getContext("2d"),this._stream=this._canvas.captureStream(0),this._track=this._stream.getVideoTracks()[0],this._track.contentHint="text")}_removeStream(){this._stream&&(this._stream.getTracks().forEach(e=>e.stop()),this._stream=null,this._track=null),this._canvasContext=null;try{this._canvas&&document.body.removeChild(this._canvas)}catch(e){}this._canvas=null}_requestCanvasFrame(){this._track&&this._track.requestFrame?this._track.requestFrame():this._stream&&this._stream.requestFrame&&this._stream.requestFrame()}drawFrame(e){return o(this,null,function*(){let t="createImageBitmap"in e?yield e.createImageBitmap():yield createImageBitmap(e);this.drawImage(t),t.close()})}drawImage(e){this._track||(this._createStream(e.width,e.height),this._onStream(this._stream));let t=this._canvas;if(t.width=e.width,t.height=e.height,e instanceof ImageData){let i=this._canvasContext;i.clearRect(0,0,t.width,t.height),i.putImageData(e,0,0)}else this._canvasContext.transferFromImageBitmap(e);this._requestCanvasFrame()}destroy(){this._removeStream(),c.debug("CanvasRenderer destroyed")}static isBrowserSupported(){return("CanvasCaptureMediaStream"in window||"CanvasCaptureMediaStreamTrack"in window)&&!(M.browserName()==="Safari"&&Number(M.browserVersion())===15)}};var It=class extends Et{constructor(e){super(e);c.debug("TrackGeneratorRenderer started"),this._generator=new MediaStreamTrackGenerator({kind:ue.video}),this._writer=this._generator.writable.getWriter(),this._stream=new MediaStream([this._generator]),this._onStream(this._stream)}drawFrame(e){return o(this,null,function*(){yield this._writer.write(e)})}destroy(){this._writer.releaseLock(),this._generator.writable.close().then(()=>this._generator.stop()),c.debug("TrackGeneratorRenderer destroyed")}static isBrowserSupported(){return"VideoFrame"in window&&"MediaStreamTrackGenerator"in window&&Ye.isBrowserSupported()}};var Ft=class extends nt{constructor(e,t){super(e,t);this._decoderReady=!1;this._decoderQueue=[];c.debug(`StreamBuilder started for participant [${e}]`),It.isBrowserSupported()?this._renderer=new It(t):this._renderer=new Vt(t),Ye.isBrowserSupported()?this._decoder=new Ye:this._decoder=new gt;let i=r=>o(this,null,function*(){"VideoFrame"in window&&r instanceof VideoFrame?yield this._renderer.drawFrame(r):this._renderer.drawImage(r)});this._decoder.init(i).then(()=>{this._decoderReady=!0,this._decodeQueue()})}_processFrame(e){!this._decoderReady||this._decoderQueue.length?(this._decoderQueue.push(e),this._decodeQueue()):this._decoder.decodeFrame(e.timestamp,e.frameData,e.isVP9,e.keyframe)}_decodeQueue(){if(!this._decoderReady)return;let e=this._decoderQueue;this._decoderQueue=[],e.forEach(t=>{this._decoder.decodeFrame(t.timestamp,t.frameData,t.isVP9,t.keyframe)})}destroy(){super.destroy(),this._decoder.destroy(),this._renderer.destroy(),c.debug(`StreamBuilder destroyed for participant ${this._participantId}`)}static isBrowserSupported(){return Vt.isBrowserSupported()||It.isBrowserSupported()}};var Ht=1,un=1,mn=2,er=0,ci=11,oa=1,ca=2,da=4,pa=8;function la(n,e,t,i,r,a,s){let d=0;e&&(d|=oa),t&&(d|=ca),i&&(d|=da),s||(d|=pa);let p=new ArrayBuffer(ci),u=new DataView(p);if(u.setUint8(0,Ht),u.setUint16(1,r),u.setUint32(3,n),u.setUint8(7,a?1:0),u.setUint16(8,er),u.setUint8(10,d),!s)return p;let S=new Uint8Array(p.byteLength+s.byteLength);return S.set(new Uint8Array(p),0),S.set(new Uint8Array(s),p.byteLength),S.buffer}function ua(n){let e=new DataView(n),t=e.getUint8(0),i=e.getUint16(1),r=e.getUint32(3),a=e.getUint8(7)===1,s=e.getUint16(8),d=e.getUint8(10),p=!!(d&oa),u=!!(d&ca),S=!!(d&da),C=!!(d&pa);if(t!==Ht)throw new Error(`Unexpected protocol version. Got ${t}, expected ${Ht}`);return{timestamp:r,start:p,end:u,keyframe:S,sequence:i,isVP9:a,ssrc:s,eos:C,data:n.slice(ci)}}function ma(n){if(!n||!n.byteLength||n.byteLength!==4)return!1;let e=new DataView(n);return!(e.getUint8(0)!==Ht||e.getUint8(1)!==un||e.getUint16(2)!==er)}function ha(n){if(!n||!n.byteLength||n.byteLength!==10)return null;let e=new DataView(n);if(e.getUint8(0)!==Ht||e.getUint8(1)!==mn||e.getUint16(2)!==er)return null;let a=e.getUint16(4),s=e.getUint32(6);return{seq:a,ts2:s}}import*as y from"simple-ebml-builder";var hn=Er(2,15)-1,tr=1,_n=5,gn=5;var di=class{constructor(e){this._queue=[];this._clearBufferTill=0;this._mediaSource=new MediaSource,this._codec=e;let t=()=>{this._mediaSource.removeEventListener("sourceopen",t),this._initBuffer(),this._handleQueue()};this._mediaSource.addEventListener("sourceopen",t,!1)}_handleQueue(){if(!this._sourceBuffer||this._sourceBuffer.updating||!this._queue.length)return;if(this._clearBufferTill&&this._sourceBuffer.buffered.length){let i=this._sourceBuffer.buffered.start(0);i<this._clearBufferTill&&(this._sourceBuffer.remove(i,this._clearBufferTill),c.debug(`[WebmBuilder] SourceBuffer cleanup from ${i} to ${this._clearBufferTill}`)),this._clearBufferTill=0;return}let e=this._queue;this._queue=[];let t=di._buildQueue(e);this._sourceBuffer.appendBuffer(t)}static _buildQueue(e){if(e.length){if(e.length===1)return y.build(e[0])}else return new Uint8Array;let t=e.reduce((a,s)=>a+s.countSize(),0),i=new Uint8Array(t),r=0;for(let a of e){let s=y.build(a);i.set(s,r),r+=s.byteLength}return i}_initBuffer(){this._sourceBuffer=this._mediaSource.addSourceBuffer(`video/webm; codecs="${this._codec}"`),this._sourceBuffer.mode="sequence",this._sourceBuffer.addEventListener("updateend",()=>this._handleQueue())}changeType(e){var t;return this._codec=e,(t=this._sourceBuffer)==null?void 0:t.changeType(e)}append(e,t=!1){this._queue.push(e),t&&this._handleQueue()}cleanup(){var a,s,d;((a=this._mediaSource)==null?void 0:a.readyState)==="open"&&((s=this._sourceBuffer)==null||s.abort());let e=(d=this._sourceBuffer)==null?void 0:d.buffered,t=e==null?void 0:e.length;if(!t)return;let i=e.start(0),r=Math.max(0,e.end(t-1)-_n);r-i>gn&&(this._clearBufferTill=r)}destroy(){this._queue=[],this._mediaSource.readyState==="open"&&(this._sourceBuffer.abort(),this._mediaSource.endOfStream()),this._sourceBuffer=null,this._clearBufferTill=0}get codec(){return this._codec}get mediaSource(){return this._mediaSource}get buffered(){var e;return(e=this._sourceBuffer)==null?void 0:e.buffered}},Ve=class extends nt{constructor(e,t){super(e,t);this._video=null;this._stream=null;this._earliestTimestamp=0;this._clusterStartTime=0;this._lastFrameTimestamp=0;c.debug(`[WebmBuilder] started for participant [${e}]`)}static _intToU16BE(e){return new Uint8Array([e>>8,e])}static _genWebmHeader(){return y.element(y.ID.EBML,[y.element(y.ID.EBMLVersion,y.number(1)),y.element(y.ID.EBMLReadVersion,y.number(1)),y.element(y.ID.EBMLMaxIDLength,y.number(4)),y.element(y.ID.EBMLMaxSizeLength,y.number(8)),y.element(y.ID.DocType,y.string("webm")),y.element(y.ID.DocTypeVersion,y.number(2)),y.element(y.ID.DocTypeReadVersion,y.number(2))])}static _genSegmentHeader(e,t,i){let r=y.element(y.ID.Info,[y.element(y.ID.TimecodeScale,y.number(1e6)),y.element(y.ID.MuxingApp,y.string("vk-webm-builder")),y.element(y.ID.WritingApp,y.string("vk-webm-builder"))]),a=[y.element(y.ID.PixelWidth,y.number(e)),y.element(y.ID.PixelHeight,y.number(t))],s=y.element(y.ID.Tracks,y.element(y.ID.TrackEntry,[y.element(y.ID.TrackNumber,y.number(tr)),y.element(y.ID.TrackUID,y.number(tr)),y.element(y.ID.TrackType,y.number(1)),y.element(y.ID.FlagLacing,y.number(0)),y.element(y.ID.DefaultDuration,y.number(1e9)),y.element(y.ID.CodecID,y.string(`V_${i.toUpperCase()}`)),y.element(y.ID.Video,a)]));return y.unknownSizeElement(y.ID.Segment,[r,s])}static _genClusterHeader(e){return y.unknownSizeElement(y.ID.Cluster,[y.element(y.ID.Timecode,y.number(Math.round(e)))])}_createVideo(e){this._mediaBuffer=new di(e),this._video=document.createElement("video"),this._video.autoplay=!0,this._video.controls=!1,this._video.muted=!0,this._video.style.pointerEvents="none",this._video.style.visibility="hidden",this._video.style.position="absolute",this._video.style.width="160px",this._video.style.height="90px",this._video.style.bottom="0",this._video.style.right="0",this._video.style.zIndex="5000",this._video.src=URL.createObjectURL(this._mediaBuffer.mediaSource),document.body.appendChild(this._video);let t=()=>{if(this._video.src){c.warn(`[WebmBuilder] Video paused for participant [${this._participantId}], try to play again`);let i=this._video.seekable;i.length&&(this._video.currentTime=i.end(i.length-1)-.1),this._video.play().catch(()=>{})}};this._video.onpause=t,this._video.onwaiting=t,this._video.onstalled=t,this._video.onerror=()=>c.warn(`[WebmBuilder] Video Error for participant [${this._participantId}]`,this._video.error),this._stream=this._video.captureStream(),this._onStream(this._stream)}_processFrame(e){let t=e.isVP9?"vp9":"vp8";this._mediaBuffer?this._mediaBuffer.codec!==t&&this._mediaBuffer.changeType(t):this._createVideo(t);let i=e.timestamp;if(i<=this._lastFrameTimestamp&&(i=this._lastFrameTimestamp+10,c.debug(`[WebmBuilder] Fixup timestamp for participant [${this._participantId}]`)),this._lastFrameTimestamp=i,this._earliestTimestamp)i-=this._earliestTimestamp;else{if(!e.keyframe)return;this._earliestTimestamp=i,i=0}if(e.keyframe){this._clusterStartTime=i,this._mediaBuffer.cleanup(),c.debug(`[WebmBuilder] Segment header for participant [${this._participantId}]`);let s=Ve._genWebmHeader();this._mediaBuffer.append(s);let d=Ve._genSegmentHeader(e.width,e.height,t);this._mediaBuffer.append(d)}let r=Math.round(i-this._clusterStartTime);if(r>hn&&(this._clusterStartTime=i,r=0),r===0){c.debug(`[WebmBuilder] Cluster header for participant [${this._participantId}]`);let s=Ve._genClusterHeader(this._clusterStartTime);this._mediaBuffer.append(s)}let a=y.element(y.ID.SimpleBlock,[y.vintEncodedNumber(tr),y.bytes(Ve._intToU16BE(r)),y.number((e.keyframe?1:0)<<7),y.bytes(e.frameData)]);this._mediaBuffer.append(a,!0)}destroy(){super.destroy(),this._video&&(this._video.onpause=null,this._video.onwaiting=null,this._video.onstalled=null,this._video.onerror=null,this._video.pause(),this._video.src="",document.body.removeChild(this._video)),this._mediaBuffer&&(this._mediaBuffer.destroy(),this._mediaBuffer=null),this._stream&&(this._stream.getTracks().forEach(e=>e.stop()),this._stream=null),c.debug(`[WebmBuilder] destroyed for participant [${this._participantId}]`)}static isBrowserSupported(){var e,t,i;return"captureStream"in((e=window.HTMLVideoElement)==null?void 0:e.prototype)&&((t=window.MediaSource)==null?void 0:t.isTypeSupported('video/webm; codecs="vp8"'))&&((i=window.MediaSource)==null?void 0:i.isTypeSupported('video/webm; codecs="vp9"'))}};var Tt=class{constructor(e,t,i,r){this._participantIdRegistry=null;this._streamBuilders={};this._onStream=()=>{};this._onEos=()=>{};c.debug("ScreenCaptureReceiver started"),this._datachannel=e,this._participantIdRegistry=t,this._onStream=i,this._onEos=r,this._datachannel.onmessage=a=>this._onDataChannelMessage(a.data)}_onDataChannelMessage(e){var a,s;let t=ua(e),i=(s=(a=this._participantIdRegistry)==null?void 0:a.getStreamDescription(t.ssrc))==null?void 0:s.participantId;if(!i){c.warn(`Participant id for ssrc ${t.ssrc} not found in registry`);return}if(t.eos){this.close(i),this._onEos(i);return}let r=this._streamBuilders[i];if(!r){let d=p=>this._onStream(i,p);l.screenShareWebmBuilder&&Ve.isBrowserSupported()?r=new Ve(i,d):r=new Ft(i,d),this._streamBuilders[i]=r}r.appendChunk(t)}close(e){let t=this._streamBuilders[e];t&&(t.destroy(),delete this._streamBuilders[e])}destroy(){this._datachannel.onbufferedamountlow=null,this._datachannel.onmessage=null,this._onStream=()=>{},Object.values(this._streamBuilders).forEach(e=>e.destroy()),this._streamBuilders={},this._participantIdRegistry=null,c.debug("ScreenCaptureReceiver destroyed")}static isBrowserSupported(){return(Ye.isBrowserSupported()||gt.isBrowserSupported())&&(Ft.isBrowserSupported()||Ve.isBrowserSupported())}};import _a from"@vkontakte/libvpx";var fn=1e3,Gt=class extends Ge{constructor(e,t,i,r){super();this._video=null;this._imageCapture=null;this._canvas=null;this._canvasCtx=null;this._stream=null;this._track=null;this._frameReadTimeout=0;this._lastFrame=null;this._sourceTrack=e,this._onFrame=t,this._useCongestionControl=i,this._maxBitrate=r,this._useImageCapture="ImageCapture"in window&&"ImageBitmap"in window,(e.readyState!=="live"||!e.enabled||e.muted)&&(this._useImageCapture=!1)}_createDom(){this._canvas||(this._canvas=document.createElement("canvas"),this._canvas.style.pointerEvents="none",this._canvas.style.visibility="hidden",this._canvas.style.position="absolute",this._canvas.style.width="160px",this._canvas.style.height="90px",this._canvas.style.bottom="0",this._canvas.style.right="160px",this._canvas.style.zIndex="5000",this._canvasCtx=this._canvas.getContext("2d"),document.body.appendChild(this._canvas)),!this._video&&!this._useImageCapture&&(this._video=document.createElement("video"),this._video.controls=!1,this._video.autoplay=!1,this._video.preload="auto",this._video.muted=!0,this._video.style.pointerEvents="none",this._video.style.visibility="hidden",this._video.style.position="absolute",this._video.style.width="160px",this._video.style.height="90px",this._video.style.bottom="0",this._video.style.right="0",this._video.style.zIndex="5000",document.body.appendChild(this._video))}_removeDom(){try{this._canvas&&document.body.removeChild(this._canvas),this._video&&document.body.removeChild(this._video)}catch(e){}this._canvasCtx=null,this._canvas=null,this._video=null}_createStream(e){return o(this,null,function*(){if(!this._canvas)throw new Error("Canvas not found");if(!this._video&&!this._useImageCapture)throw new Error("Video element not found");return this._stream=this._canvas.captureStream(0),this._track=this._stream.getVideoTracks()[0],new Promise((t,i)=>{if(this._useImageCapture)this._imageCapture=new ImageCapture(e),t();else{let r=this._video;r.srcObject=new MediaStream([e]),r.onloadeddata=d=>t(),r.onerror=()=>i(new Error("Video element error"));let a=r.play(),s=()=>i(new Error("Autoplay is disabled"));a?a.catch(s):s()}})})}_removeStream(){var e;window.clearTimeout(this._frameReadTimeout),(e=this._lastFrame)==null||e.close(),this._stream&&(this._stream.getTracks().forEach(t=>t.stop()),this._stream=null,this._track=null),this._video&&(this._video.pause(),this._video.srcObject=null),this._imageCapture&&(this._imageCapture=null)}_drawFrameVideo(){if(!this._canvas||!this._canvasCtx||!this._video||!this._track)throw new Error("Fatal error");this._video.paused&&this._video.play();let e=this._video.videoWidth,t=this._video.videoHeight;return this._canvas.width=this._video.width=e,this._canvas.height=this._video.height=t,this._canvasCtx.clearRect(0,0,e,t),this._canvasCtx.drawImage(this._video,0,0,e,t),this._requestCanvasFrame(),this._canvasCtx.getImageData(0,0,e,t)}_getFrameBitmap(){return o(this,null,function*(){if(!this._imageCapture)throw new Error("Destroyed");return this._imageCapture.grabFrame()})}_drawFrameData(e){var r;if(!this._canvas||!this._canvasCtx||!this._track)throw new Error("Destroyed");let t=e.width,i=e.height;return this._canvas.width=t,this._canvas.height=i,this._canvasCtx.clearRect(0,0,t,i),this._canvasCtx.drawImage(e,0,0,t,i),this._requestCanvasFrame(),(r=this._canvasCtx)==null?void 0:r.getImageData(0,0,t,i)}_requestCanvasFrame(){this._track&&this._track.requestFrame?this._track.requestFrame():this._stream&&this._stream.requestFrame&&this._stream.requestFrame()}init(){return o(this,null,function*(){this._createDom();let e=this._sourceTrack.getSettings().width,t=this._sourceTrack.getSettings().height;c.debug(`LibVPxEncoder started ${e}x${t}, codec ${this.isVP9()?"VP9":"VP8"}`),yield this._createStream(this._sourceTrack),yield this._createWorker(`var exports=(()=>{var m=Object.defineProperty;var y=s=>m(s,"__esModule",{value:!0});var x=(s,i)=>{y(s);for(var d in i)m(s,d,{get:i[d],enumerable:!0})};var h={};x(h,{default:()=>V});var t=(a=>(a.INIT="init",a.READY="ready",a.FRAME="frame",a.SET_BITRATE="set_bitrate",a.ERROR="error",a.DEBUG="debug",a.LOG_ERROR="log_error",a))(t||{});var V=(s,i,d,E)=>{let r;function g(e,o){return s({locateFile:i}).then(n=>{if(r=new n.VpxEncoder,r.debug(o),!r.init(e?n.VpxType.VP9:n.VpxType.VP8))throw self.postMessage({type:t.LOG_ERROR,message:"encoder-init-fail-libvpx"}),new Error("LibVPxEncoder failed to create");if(d){let p=Math.round(E/1e3);r.setTargetBitrate(p)}else r.setMaxQuantizer(10),r.setTargetBitrate(1024)})}function R(e,o,n,c){let p=r.allocateImage(e,o);if(!p){self.postMessage({type:t.FRAME,error:"No buffer data"});return}p.set(new Uint8Array(n));let f=Math.round(performance.now()),u=150;if(!r.encode(f,u,c)){self.postMessage({type:t.FRAME,error:"Encode failed"});return}let l=r.readFrame();if(!l){self.postMessage({type:t.FRAME,error:"No encoded data"});return}r.readFrame()&&(self.postMessage({type:t.DEBUG,message:"LibVPxEncoder dropped frame"}),self.postMessage({type:t.LOG_ERROR,message:"LibVPxEncoder-drop"}));let b=new Uint8Array(l.byteLength);b.set(l),self.postMessage({type:t.FRAME,frameType:c?"key":"delta",timestamp:f,duration:u,width:e,height:o,data:b.buffer},[b.buffer])}function a(e,o){let n=Math.round(e/1e3);r.setTargetBitrate(n)}self.onmessage=e=>{switch(e.data.type){case t.INIT:g(e.data.isVP9,e.data.debug).then(()=>self.postMessage({type:t.READY})).catch(o=>self.postMessage({type:t.ERROR,error:String(o)}));break;case t.FRAME:R(e.data.width,e.data.height,e.data.imageData,e.data.keyFrame);break;case t.SET_BITRATE:a(e.data.bitrate,e.data.useCbr);break}}};return h;})();
10
+ `,i=>{var r;i.error?this._onFrame(null,i.error):this._onFrame({type:i.frameType,timestamp:i.timestamp,duration:i.duration,data:i.data,byteLength:(r=i.data)==null?void 0:r.byteLength,width:i.width,height:i.height})},[_a,_a.getUrl,this._useCongestionControl,this._maxBitrate],{isVP9:this.isVP9(),debug:c.enabled()})})}_encode(e,t){let i=e.data.buffer;this._sendToWorker(fe.FRAME,{width:e.width,height:e.height,imageData:i,keyFrame:t},[i])}_requestFrameVideo(e){let t=this._drawFrameVideo();this._encode(t,e)}_requestFrameBitmap(e){this._frameReadTimeout=window.setTimeout(()=>{if(this._lastFrame){let t=this._drawFrameData(this._lastFrame);this._encode(t,e)}else this._onFrame(null)},fn),this._getFrameBitmap().then(t=>{var r;window.clearTimeout(this._frameReadTimeout),(r=this._lastFrame)==null||r.close(),this._lastFrame=t;let i=this._drawFrameData(t);this._encode(i,e)}).catch(()=>{})}requestFrame(e=!1){this._useImageCapture?this._requestFrameBitmap(e):this._requestFrameVideo(e)}setBitrate(e,t=!1){this._sendToWorker(fe.SET_BITRATE,{bitrate:e,useCbr:t})}isVP9(){return!1}destroy(){this._removeWorker(),this._removeStream(),this._removeDom(),c.debug("LibVPxEncoder destroyed")}static isBrowserSupported(){return"WebAssembly"in window&&"Worker"in window&&("CanvasCaptureMediaStream"in window||"CanvasCaptureMediaStreamTrack"in window)}};var Ct=class extends Ge{constructor(e,t,i,r){super();this._sourceTrack=e,this._onFrame=t,this._useCongestionControl=i,this._maxBitrate=r,this._trackProcessor=new MediaStreamTrackProcessor(e)}init(){return o(this,null,function*(){let e=this._sourceTrack.getSettings().width,t=this._sourceTrack.getSettings().height,i=this._trackProcessor.readable;c.debug(`WebCodecsEncoder started ${e}x${t}, codec ${this.isVP9()?"VP9":"VP8"}`),yield this._createWorker(`var exports=(()=>{var A=Object.defineProperty;var B=n=>A(n,"__esModule",{value:!0});var x=(n,i)=>{B(n);for(var o in i)A(n,o,{get:i[o],enumerable:!0})};var P={};x(P,{default:()=>I});var c=(o=>(o.VP9="vp09.00.50.08",o.VP8="vp8",o))(c||{}),a=(t=>(t.INIT="init",t.READY="ready",t.FRAME="frame",t.SET_BITRATE="set_bitrate",t.ERROR="error",t.DEBUG="debug",t.LOG_ERROR="log_error",t))(a||{});var I=()=>{let n=1e3,i,o,l,d,R,p,t=null,E=0,u=!1,s=0,g,V,y=!1;function F(e){i=e.readable,o=i.getReader(),l=e.width,d=e.height,R=e.isVP9,p=e.framerate,g=e.useCongestionControl,V=e.maxBitrate,g&&(s=V),f(),self.postMessage({type:a.READY})}function C(e){E=self.setTimeout(()=>{t&&h(t,e)},n),!u&&(u=!0,o.read().finally(()=>{u=!1,self.clearTimeout(E)}).then(({done:r,value:b})=>{if(t==null||t.close(),t=null,!(r||!b)){if(!m){o.releaseLock(),i.cancel();return}t=b,h(b,e)}}))}function h(e,r){(e.codedWidth!==l||e.codedHeight!==d)&&(l=e.codedWidth,d=e.codedHeight,f()),m.encode(e,{keyFrame:r})}function f(){let e={framerate:p,codec:R?c.VP9:c.VP8,width:l,height:d,latencyMode:"realtime",bitrateMode:y?"constant":"variable"};s>0&&(e.bitrate=s),m.configure(e)}function T(e,r=!1){s=e,y=r,f()}let m=new VideoEncoder({output:e=>{let r;e.data?r=e.data:(r=new ArrayBuffer(e.byteLength),e.copyTo(r)),self.postMessage({type:a.FRAME,frameType:e.type,timestamp:e.timestamp,duration:e.duration,width:l,height:d,data:r},[r])},error:e=>{self.postMessage({type:a.FRAME,error:String(e)})}});self.onmessage=e=>{switch(e.data.type){case a.INIT:F(e.data);break;case a.FRAME:C(e.data.keyFrame);break;case a.SET_BITRATE:T(e.data.bitrate,e.data.useCbr);break}}};return P;})();
11
+ `,r=>{var a;r.error?this._onFrame(null,r.error):this._onFrame({type:r.frameType,timestamp:r.timestamp,duration:r.duration,data:r.data,byteLength:(a=r.data)==null?void 0:a.byteLength,width:r.width,height:r.height})},[],{readable:i,width:e,height:t,isVP9:this.isVP9(),framerate:l.screenFrameRate,useCongestionControl:this._useCongestionControl,maxBitrate:this._maxBitrate},[i])})}requestFrame(e=!1){this._sendToWorker(fe.FRAME,{keyFrame:e})}setBitrate(e,t){this._sendToWorker(fe.SET_BITRATE,{bitrate:e,useCbr:t})}isVP9(){return!0}destroy(){this._removeWorker(),c.debug("WebCodecsEncoder destroyed")}static isBrowserSupported(){return"VideoEncoder"in window&&"Worker"in window&&"EncodedVideoChunk"in window&&"MediaStreamTrackProcessor"in window}};var Sn=1.2,ga=.8,vn=2e3,En=8e3,ir=8e3,In=16e3,Tn=4,Cn=2e3,pi=(i=>(i[i.NONE=0]="NONE",i[i.UP=1]="UP",i[i.DOWN=2]="DOWN",i))(pi||{}),li=class{constructor(e,t,i,r){this._upPenalty=0;this._delayAvgShort=-1;this._delayAvgLong=-1;this._minDelay=Number.MAX_VALUE;this._maxDelay=0;this._largeDelayDuration=0;this._onCongestion=e,this._ccEnabled=r,this._minBitrate=t,this._maxBitrate=i,this._targetBitrate=this._maxBitrate,this._probing=!1;let a=Date.now();this._lastDown=0,this._lastUp=a,this._lastProbing=a,this._lastCheckDelay=0}checkDelay(e,t,i){let r=Date.now();if(this._calcDelay(t,r),this._delayAvgShort<=0||this._delayAvgLong<=0||!this._ccEnabled)return;let a=0,s=this._delayAvgShort-this._delayAvgLong,d=Math.round(Math.abs(s)*100/this._delayAvgLong),p=s>40&&d>30&&this._delayAvgShort>700,u=this._delayAvgShort>2e3;p||u?a=2:Math.abs(s)<40&&d<10&&this._delayAvgShort<2e3&&(a=1);let S=Math.round(this._targetBitrate/1e3),C=i;e%100==0&&c.debug(`#${e}: cc: delay=${t} short=${this._delayAvgShort} long=${this._delayAvgLong} delta=${s} percent=${d} -> ${pi[a]} tr=${S} br=${i}`);let R=r-this._lastDown;if(a===2&&R>vn){this._probing&&(this._upPenalty=Math.min(++this._upPenalty,Tn),this._probing=!1);let $=ga*C*1e3;if($>=this._targetBitrate&&($=this._targetBitrate*ga),$=Math.max($,this._minBitrate),$<this._targetBitrate){let De=Math.round($/1e3),re=Math.round(this._upPenalty*ir/1e3);c.log(`#${e}: cc: delay=${t} short=${this._delayAvgShort} long=${this._delayAvgLong} delta=${s} percent=${d} -> ${pi[a]}`),c.log(`#${e}: cc: DOWN delay=${t} bitrate=${C} target=${S} -> newBitrate=${De} penalty=${re}s`),this._onCongestion($,!0),this._targetBitrate=$}this._lastDown=r}let P=r-this._lastUp,B=En+this._upPenalty*ir;if(a===1&&P>B&&R>B){let $=Math.min(this._targetBitrate*Sn,this._maxBitrate);if($>this._targetBitrate){let De=Math.round($/1e3),re=Math.round(this._targetBitrate/1e3),Ce=Math.round(this._upPenalty*ir/1e3);c.log(`#${e}: cc: delay=${t} short=${this._delayAvgShort} long=${this._delayAvgLong} delta=${s} percent=${d} -> ${pi[a]}`),c.log(`#${e}: cc: UP bitrate=${C} target=${re} -> newBitrate=${De} penalty=${Ce}s`),this._onCongestion($,!1),this._targetBitrate=$,this._probing=!0,this._lastProbing=r,this._lastUp=r}}let q=r-this._lastProbing;this._probing&&q>In&&(this._probing=!1);let he=r-this._lastDown;this._upPenalty>0&&he>3*B&&(c.log(`#${e}: cc: UP reset penalty: oldPenalty=${this._upPenalty}`),this._upPenalty=0)}_calcDelay(e,t){if(!(e<=0)){if(this._delayAvgShort===-1&&(this._delayAvgShort=e,this._delayAvgLong=e),this._delayAvgShort=Math.round((this._delayAvgShort*3+e)/4),this._delayAvgLong=Math.round((this._delayAvgLong*23+e)/24),e>0&&e<this._minDelay?this._minDelay=e:e>this._maxDelay&&(this._maxDelay=e),this._lastCheckDelay===0&&(this._lastCheckDelay=t),e>Cn){let i=t-this._lastCheckDelay;this._largeDelayDuration+=i}this._lastCheckDelay=t}}reconfigure(e,t){this._minBitrate=e,this._maxBitrate=t}getStat(){if(this._minDelay===Number.MAX_VALUE||this._maxDelay===0||this._delayAvgLong<=0)return null;let e={minDelay:this._minDelay,maxDelay:this._maxDelay,avgDelay:this._delayAvgLong,largeDelayDuration:this._largeDelayDuration};return this._minDelay=Number.MAX_VALUE,this._maxDelay=0,this._largeDelayDuration=0,e}};var ui=class{constructor(e){this._size=0;this._head=0;this._tail=0;this._maxSize=e,this._buffer=new Array(e)}add(e,t,i,r,a){this._tail===this._head&&this._size>0&&(this._head=++this._head%this._maxSize);let s=this._tail;return this._buffer[this._tail]={seq:e,ts:t,size:i,sent:Date.now(),start:r,end:a,ts2:-1,recv:-1},this._tail=++this._tail%this._maxSize,this._size++,s}update(e,t){let i=this.get(e);return i===null?null:(i.ts2=t,i.recv=Date.now(),i)}get(e){let t=this._head;for(let i=0;i<this._maxSize;i++){if(e===this._buffer[t].seq)return this._buffer[t];if(t=++t%this._maxSize,t===this._tail)break}return null}getServerBitrateK(e){let t=0,i=0,r=-1,a=-1,s=this._tail;for(let d=0;d<this._maxSize;d++){s>0?--s:s=this._maxSize-1;let p=this._buffer[s];if(p===null||(a===-1&&(a=p.ts2,i=0),a>=0&&(i+=p.size),r=p.ts2,a-r>=e)||s===this._head)break}if(r>=0&&a>=0){let d=a-r;t=Math.round(d>0?i*8/d:0)}return t}getCurrentDelay(){let e=this._tail;for(let t=0;t<this._maxSize;t++){e>0?--e:e=this._maxSize-1;let i=this._buffer[e];if(i===null)break;if(i.recv>=0&&i.sent>=0)return i.recv-i.sent;if(e===this._head)break}return 0}getMaxBandwidth(){let e=0,t=0,i=-1,r=-1,a=this._tail;for(let s=0;s<this._maxSize;s++){if(a>0?--a:a=this._maxSize-1,r===-1&&this._buffer[a].end&&!this._buffer[a].start&&(r=this._buffer[a].ts2,t=0),i===-1&&r>=0&&this._buffer[a].start&&!this._buffer[a].end&&(i=this._buffer[a].ts2),i>=0&&r>=0){let d=r-i;e=d>0?t*8/d:0;break}if(r>=0&&(t+=this._buffer[a].size),a===this._head)break}return Math.round(e)}};var yn=65536,Rn=50,Pn=400,bn=1e6,Mn=3e4,mi=0,yt=class{constructor(e,t,i){this._destroyed=!1;this._needKeyframe=!0;this._frameNum=0;this._feedback=new ui(1024);this._lastSharingStat=Date.now();this._congestionControlEnabled=!1;c.debug("ScreenCaptureSender started"),this.DATA_SIZE=l.consumerScreenDataChannelPacketSize-ci,this._datachannel=t,this._signaling=i,this._congestionControlEnabled=l.screenShareCongestionControl,this._width=e.getSettings().width,this._height=e.getSettings().height;let{minBitrate:r,maxBitrate:a}=this._calcMinMaxBitrate(this._width,this._height),s=this._onCongestionCallback.bind(this);c.log(`ScreenCaptureSender: CongestionControl: enabled=${this._congestionControlEnabled} minBitrate=${Math.round(r/1e3)}k maxBitrate=${Math.round(a/1e3)}k`),this._congestionControl=new li(s,r,a,this._congestionControlEnabled);let d=(p,u)=>{if(!this._destroyed){if(!p){c.warn("requestFrame failed, keyFrame: "+this._needKeyframe,u),this._needKeyframe=!0,this._requestFrame();return}(p.width!==this._width||p.height!==this._height)&&(this._width=p.width,this._height=p.height,this._onResize(this._width,this._height)),this._send(p).catch(S=>{c.warn("sendFrame failed",S),this._needKeyframe=!0}).finally(()=>{this._frameNum++,p.type==="key";let S=this._feedback.getCurrentDelay(),C=this._feedback.getServerBitrateK(2e3);S>0&&this._congestionControl.checkDelay(this._frameNum,S,C),this._requestFrame()}),this._sendSharingStat()}};Ct.isBrowserSupported()?this._encoder=new Ct(e,d,l.screenShareCongestionControl,a):this._encoder=new Gt(e,d,l.screenShareCongestionControl,a),this._datachannel.onmessage=p=>{ma(p.data)&&(c.debug(`[${this._datachannel.label}] Requested keyframe`),this._needKeyframe=!0);let u=ha(p.data);u!==null&&this._checkCcFeedback(u)},this._encoder.init().then(()=>this._requestFrame()).catch(p=>c.warn("ScreenCaptureSender init failed",p))}_requestFrame(){this._destroyed||(this._encoder.requestFrame(this._needKeyframe),this._needKeyframe=!1)}_wrapHeader(e,t,i,r,a){let s=la(e,t,i,r,mi,this._encoder.isVP9(),a);return mi=(mi+1)%yn,s}_stopPacket(){return this._wrapHeader(Date.now(),!1,!1,!1,null)}_send(e){return o(this,null,function*(){return new Promise((t,i)=>{this._sendChunk(e,0,t,i)})})}_sendChunk(e,t,i,r){if(!this._datachannel||this._datachannel.readyState!=="open"){r();return}let a=e.data.slice(t,t+this.DATA_SIZE),s=e.data.byteLength<=t+a.byteLength;this._feedback.add(mi,e.timestamp,a.byteLength,!t,s);let d=this._wrapHeader(e.timestamp,!t,s,e.type==="key",a);this._datachannel.onbufferedamountlow=s?()=>{this._datachannel.bufferedAmount<=this._datachannel.bufferedAmountLowThreshold&&i()}:null;try{this._datachannel.send(d)}catch(p){c.warn("Error send data to DataChannel",p),r();return}s||v.setImmediate(()=>this._sendChunk(e,t+this.DATA_SIZE,i,r))}destroy(){this._datachannel.onbufferedamountlow=null,this._datachannel.onmessage=null,this._datachannel.readyState==="open"&&this._datachannel.send(this._stopPacket()),this._destroyed=!0,this._encoder.destroy(),c.debug("ScreenCaptureSender destroyed")}static isBrowserSupported(){return Ct.isBrowserSupported()||Gt.isBrowserSupported()}_onCongestionCallback(e,t){this._encoder.setBitrate(e,t)}_onResize(e,t){let{minBitrate:i,maxBitrate:r}=this._calcMinMaxBitrate(e,t),a=Math.round(i/1e3),s=Math.round(r/1e3);c.log(`cc: resize to ${e}x${t}, minBitrate=${a} maxBitrate=${s}`),this._congestionControl.reconfigure(i,r)}_calcMinMaxBitrate(e,t){(e===void 0||e<640)&&(e=640),(t===void 0||t<360)&&(t=360);let i=e*t/256,r=Math.min(bn,Math.round(i*Rn)),a=Math.round(i*Pn);return{minBitrate:r,maxBitrate:a}}_checkCcFeedback(e){this._feedback.update(e.seq,e.ts2)===null&&c.debug(`cc: update failed, seq=${e.seq}`)}_sendSharingStat(){let e=Date.now();if(e-this._lastSharingStat>Mn){let i=this._congestionControl.getStat();i!==null&&(c.debug(`cc: send stats: ${JSON.stringify(i)}`),this._signaling.reportSharingStat(i)),this._lastSharingStat=e}}};var ne=class{static get sessionKey(){return ne._sessionKey}static set sessionKey(e){ne._sessionKey=e}static get sessionSecretKey(){return ne._sessionSecretKey}static set sessionSecretKey(e){ne._sessionSecretKey=e}static get accessToken(){return ne._accessToken}static set accessToken(e){ne._accessToken=e}static isEmpty(){return!ne._sessionKey||!ne._sessionSecretKey}};var E=class{static set(e){e.hasOwnProperty("voiceParams")&&(Object.assign(E._params.voiceParams,e.voiceParams),delete e.voiceParams),e.hasOwnProperty("specListenerParams")&&(Object.assign(E._params.specListenerParams,e.specListenerParams),delete e.specListenerParams),e.hasOwnProperty("apiAuth")&&(ne.accessToken=e.apiAuth.accessToken,ne.sessionKey=e.apiAuth.sessionKey,ne.sessionSecretKey=e.apiAuth.sessionSecretKey),Object.assign(E._params,v.objectFilterOutValues(e,void 0))}static get(e){return E._params[e]}static get appName(){return"ok.calls.sdk.js"}static get appVersion(){return 1.1}static get sdkVersion(){return"2.6.2-dev.c8d6e43.0"}static get debug(){return undefined}static get protocolVersion(){return E._params.joinFromMultipleDevices?6:5}static get platform(){return E._params.platform}static set platform(e){E._params.platform=e}static get clientType(){return E._params.clientType}static set clientType(e){E._params.clientType=e}static get externalUserType(){return E._params.externalUserType}static set externalUserType(e){E._params.externalUserType=e}static get device(){return E._params.device}static get apiKey(){return E._params.apiKey}static get apiEnv(){return E._params.apiEnv}static get apiEndpoint(){switch(E.apiEnv){case"AUTO":case"PROD":return"https://api.mycdn.me";case"PROD_OK":return"https://api.ok.ru";case"TEST":return"https://apitest.ok.ru/api";case"VIDEOTEST":return"https://videotestapi.ok.ru/api";default:return E._params.apiEnv}}static get authToken(){return E._params.authToken}static set authToken(e){E._params.authToken=e}static get anonymToken(){return E._params.anonymToken}static set anonymToken(e){E._params.anonymToken=e}static get domain(){return E._params.domain}static get externalDomain(){return E._params.externalDomain}static get iceServers(){return E._params.iceServers}static set iceServers(e){E._params.iceServers=e}static get wssBase(){return E._params.wssBase}static set wssBase(e){E._params.wssBase=e}static get wssToken(){return E._params.wssToken}static set wssToken(e){E._params.wssToken=e}static get signalingReconnectDelay(){return E._params.signalingReconnectDelay}static get signalingReconnectMaxDelay(){return E._params.signalingReconnectMaxDelay}static get signalingReconnectMaxCount(){return E._params.signalingReconnectMaxCount}static get waitConnectionDelay(){return E._params.waitConnectionDelay}static get waitResponseDelay(){return E._params.waitResponseDelay}static get waitMessageDelay(){return E._params.waitMessageDelay}static get waitAnotherTabDelay(){return E._params.waitAnotherTabDelay}static get debugLog(){return E._params.debugLog}static get forceRelayPolicy(){return E._params.forceRelayPolicy}static set forceRelayPolicy(e){E._params.forceRelayPolicy=e}static get videoMinWidth(){return E._params.videoMinWidth}static get videoMaxWidth(){return E._params.videoMaxWidth}static set videoMaxWidth(e){E._params.videoMaxWidth=e}static get videoMinHeight(){return E._params.videoMinHeight}static get videoMaxHeight(){return E._params.videoMaxHeight}static set videoMaxHeight(e){E._params.videoMaxHeight=e}static get videoAspectRatio(){return E._params.videoAspectRatio}static get videoFrameRate(){return E._params.videoFrameRate}static get videoFacingMode(){return E._params.videoFacingMode}static get screenFrameRate(){return E._params.screenFrameRate}static get videoEffects(){return E._params.videoEffects}static set videoEffects(e){E._params.videoEffects=e}static get videoEffectMaxWidth(){return E._params.videoEffectMaxWidth}static set videoEffectMaxWidth(e){E._params.videoEffectMaxWidth=e}static get videoEffectMaxHeight(){return E._params.videoEffectMaxHeight}static set videoEffectMaxHeight(e){E._params.videoEffectMaxHeight=e}static get voiceParams(){return E._params.voiceParams}static get specListenerParams(){return E._params.specListenerParams}static get iceRestartWaitTime(){return E._params.iceRestartWaitTime}static get transportConnectionWaitTime(){return E._params.transportConnectionWaitTime}static get statisticsInterval(){return E._params.statisticsInterval}static set statisticsInterval(e){E._params.statisticsInterval=e}static get networkStatisticsInterval(){return E._params.networkStatisticsInterval}static get perfStatReportEnabled(){return E._params.perfStatReportEnabled}static get callStatReportEnabled(){return E._params.callStatReportEnabled}static get producerNotificationDataChannel(){return E._params.producerNotificationDataChannel}static get producerCommandDataChannel(){return E._params.producerCommandDataChannel}static get consumerScreenDataChannel(){return E._params.consumerScreenDataChannel&&yt.isBrowserSupported()}static get producerScreenDataChannel(){return E._params.producerScreenDataChannel&&E.producerNotificationDataChannel&&Tt.isBrowserSupported()}static get consumerScreenDataChannelPacketSize(){return E._params.consumerScreenDataChannelPacketSize}static get screenShareWebmBuilder(){return E._params.screenShareWebmBuilder}static get noiseSuppression(){return E._params.noiseSuppression}static set noiseSuppression(e){E._params.noiseSuppression=e}static get preferH264(){return E._params.preferH264}static get preferVP9(){return E._params.preferVP9}static get audioNack(){return E._params.audioNack}static get consumerScreenTrack(){return E._params.consumerScreenTrack&&E.consumerScreenDataChannel}static get producerScreenTrack(){return E._params.producerScreenTrack}static get movieShare(){return E._params.movieShare&&E.videoTracksCount>0}static get videoTracksCount(){return E.producerNotificationDataChannel?E._params.videoTracksCount:0}static get breakVideoPayloadTypes(){return E._params.breakVideoPayloadTypes}static get filteredMessages(){return E._params.filteredMessages}static get useParticipantListChunk(){return E._params.useParticipantListChunk&&E._params.videoTracksCount>0}static get useRooms(){return E._params.useRooms}static get participantListChunkInitIndex(){var e;return(e=E._params.participantListChunkInitIndex)!=null?e:0}static get participantListChunkInitCount(){var e;return(e=E._params.participantListChunkInitCount)!=null?e:null}static get serverAudioRed(){return E._params.serverAudioRed&&M.canPreferRed()}static get p2pAudioRed(){return E._params.p2pAudioRed&&M.canPreferRed()}static get h264spsPpsIdrInKeyframe(){return E._params.h264spsPpsIdrInKeyframe}static get batchParticipantsOnStart(){return E._params.batchParticipantsOnStart}static get filterObservers(){return E._params.filterObservers}static get muteMode(){return E._params.muteMode}static get preserveAudioTracks(){return E._params.preserveAudioTracks}static get audioShareCapabilityEnabled(){return M.isAudioShareSupported()&&E._params.audioShareCapabilityEnabled}static get screenShareCongestionControl(){return E._params.screenShareCongestionControl}},l=E;l._params={platform:"WEB",clientType:"PORTAL",externalUserType:"",device:"browser",apiKey:"",authToken:"",anonymToken:"",apiEnv:"AUTO",domain:"",externalDomain:"",iceServers:[],wssBase:"",wssToken:"",signalingReconnectDelay:1e3,signalingReconnectMaxDelay:5e3,signalingReconnectMaxCount:20,waitConnectionDelay:1e4,waitResponseDelay:1e4,waitMessageDelay:15e3,waitAnotherTabDelay:200,debugLog:!1,forceRelayPolicy:!1,videoMinWidth:428,videoMinHeight:240,videoMaxWidth:1280,videoMaxHeight:720,videoAspectRatio:16/9,videoFrameRate:25,screenFrameRate:15,videoEffects:null,videoEffectMaxWidth:640,videoEffectMaxHeight:360,iceRestartWaitTime:2e4,transportConnectionWaitTime:5e3,statisticsInterval:5e3,networkStatisticsInterval:2e4,perfStatReportEnabled:!0,callStatReportEnabled:!1,voiceParams:{smoothing:.8,minFreq:200,maxFreq:5e3,interval:500,threshold:.35,speakerLevelMultiplier:1.8},specListenerParams:{connectionTimeout:1e4,volumeTimeout:1e4},producerNotificationDataChannel:!0,producerCommandDataChannel:!0,consumerScreenDataChannel:!0,producerScreenDataChannel:!0,consumerScreenDataChannelPacketSize:16*1024,screenShareWebmBuilder:!1,noiseSuppression:!0,preferH264:!1,preferVP9:!0,audioNack:!0,consumerScreenTrack:!0,producerScreenTrack:!0,videoTracksCount:0,movieShare:!1,filteredMessages:!0,useParticipantListChunk:!1,useRooms:!1,participantListChunkInitIndex:0,participantListChunkInitCount:null,serverAudioRed:!1,p2pAudioRed:!1,h264spsPpsIdrInKeyframe:!1,breakVideoPayloadTypes:!1,batchParticipantsOnStart:!0,joinFromMultipleDevices:!0,filterObservers:!1,muteMode:!1,preserveAudioTracks:!1,audioShareCapabilityEnabled:!1,screenShareCongestionControl:!1};var Y=(p=>(p.WAITING_HALL="WAITING_HALL",p.WAITING="WAITING",p.CONNECTING="CONNECTING",p.CONNECTED="CONNECTED",p.RECONNECT="RECONNECT",p.ERROR="ERROR",p.HANGUP="HANGUP",p.PERMISSIONS="PERMISSIONS",p))(Y||{});function G(n,...e){let t=l.get(n);t&&setTimeout(t,0,...e)}function de(n,e,...t){if(l.filterObservers){if(Array.isArray(e)){if(e=e.filter(i=>!i.observer),!e.length)return}else if(e.observer)return}G(n,e,...t)}function Re(n){return Object.assign({},n)}function st(n){return n.slice()}var rr;(xs=>{function n(_,A){G("onLocalStream",_,Re(A))}xs.onLocalStream=n;function e(_,A){G("onScreenStream",_,Re(A))}xs.onScreenStream=e;function t(_,A){G("onLocalStreamUpdate",Re(_),A)}xs.onLocalStreamUpdate=t;function i(_){G("onLocalStatus",_)}xs.onLocalStatus=i;function r(_,A){de("onRemoteStream",_,A)}xs.onRemoteStream=r;function a(_,A){de("onRemoteLive",_,A)}xs.onRemoteLive=a;function s(_,A){de("onLocalLive",_,A)}xs.onLocalLive=s;function d(_,A){de("onRemoteLiveUpdate",_,A)}xs.onRemoteLiveUpdate=d;function p(_,A){de("onLocalLiveUpdate",_,A)}xs.onLocalLiveUpdate=p;function u(_,A){de("onRemoteScreenStream",_,A)}xs.onRemoteScreenStream=u;function S(_,A,ie,it,Dt){de("onConversation",_,Re(A),Re(ie),it,Dt)}xs.onConversation=S;function C(_){_&&G("onConversationParticipantListChunk",_)}xs.onConversationParticipantListChunk=C;function R(_,A,ie){de("onRemoteMediaSettings",_,Re(A),ie)}xs.onRemoteMediaSettings=R;function P(_,A){de("onLocalMediaSettings",_,Re(A))}xs.onLocalMediaSettings=P;function B(_,A){de("onRemoteSharedMovieInfo",_,Re(A))}xs.onRemoteSharedMovieInfo=B;function q(_,A){de("onRemoteSharedMovieStoppedInfo",_,Re(A))}xs.onRemoteSharedMovieStoppedInfo=q;function he(_,A){de("onLocalSharedMovieInfo",_,Re(A))}xs.onLocalSharedMovieInfo=he;function $(_,A){de("onLocalSharedMovieStoppedInfo",_,Re(A))}xs.onLocalSharedMovieStoppedInfo=$;function De(_,A){de("onParticipantAdded",_,A)}xs.onParticipantAdded=De;function re(_,A){de("onParticipantJoined",_,A)}xs.onParticipantJoined=re;function Ce(_,A,ie){de("onRemoteParticipantState",_,Re(A),ie)}xs.onRemoteParticipantState=Ce;function be(_,A,ie=null){de("onRemoteStatus",_,A,ie)}xs.onRemoteStatus=be;function tt(_,A,ie=null){de("onParticipantStatus",_,A,ie)}xs.onParticipantStatus=tt;function At(){G("onPermissionsRequested")}xs.onPermissionsRequested=At;function te(_){G("onPermissionsError",_)}xs.onPermissionsError=te;function gr(_,A){de("onRemoteRemoved",_,A)}xs.onRemoteRemoved=gr;function Ri(_,A,ie){G("onCallState",_,A,Re(ie))}xs.onCallState=Ri;function Pi(_,A){G("onDeviceSwitched",_,A)}xs.onDeviceSwitched=Pi;function z(_,A,ie,it=!1,Dt=!1,Ai=null,Va=null,Fa,Sr,Ha){let Ga=Sr?st(Sr):void 0;G("onMuteStates",Re(_),st(A),st(ie),it,Dt,Ai,Va,Fa,Ga,Ha)}xs.onMuteStates=z;function bi(_,A){de("onRolesChanged",_,st(A))}xs.onRolesChanged=bi;function fr(_){G("onLocalRolesChanged",st(_))}xs.onLocalRolesChanged=fr;function Mi(_,A,ie){de("onPinnedParticipant",_,A,ie)}xs.onPinnedParticipant=Mi;function h(_){G("onLocalPin",_)}xs.onLocalPin=h;function m(_){G("onOptionsChanged",st(_))}xs.onOptionsChanged=m;function I(){G("onCallAccepted")}xs.onCallAccepted=I;function D(){G("onRateNeeded")}xs.onRateNeeded=D;function b(_){de("onSpeakerChanged",_)}xs.onSpeakerChanged=b;function H(_){G("onVolumesDetected",st(_))}xs.onVolumesDetected=H;function X(_,A){G("onLocalVolume",_,A)}xs.onLocalVolume=X;function Ee(_,A){G("onJoinStatus",_,A)}xs.onJoinStatus=Ee;function ke(_,A){G("onHangup",_,A)}xs.onHangup=ke;function Fe(_){G("onMultipartyChatCreated",Re(_))}xs.onMultipartyChatCreated=Fe;function $e(){G("onDeviceChange")}xs.onDeviceChange=$e;function we(_){G("onFingerprintChange",_)}xs.onFingerprintChange=we;function xe(){G("onTokenExpired")}xs.onTokenExpired=xe;function Le(_,A,ie=!1){G("onChatMessage",_,A,ie)}xs.onChatMessage=Le;function He(_,A,ie=!1){G("onCustomData",_,A,ie)}xs.onCustomData=He;function w(_,A,ie,it,Dt,Ai){G("onRecordStarted",_,A,ie,it,Dt,Ai)}xs.onRecordStarted=w;function N(){G("onRecordStopped")}xs.onRecordStopped=N;function mt(_){G("onLocalNetworkStatusChanged",_)}xs.onLocalNetworkStatusChanged=mt;function K(_){G("onNetworkStatusChanged",_)}xs.onNetworkStatusChanged=K;function _e(_,...A){G("onDebugMessage",_,...A)}xs.onDebugMessage=_e;function Ie(_,A){let ie=Object.assign({},_,{memory:A});G("onStatistics",ie)}xs.onStatistics=Ie;function Z(){G("onAutoplayError")}xs.onAutoplayError=Z;function Q(_,A,ie){G("onChatRoomUpdated",_,A,ie)}xs.onChatRoomUpdated=Q;function se(_){G("onRemoteMixedAudioStream",_)}xs.onRemoteMixedAudioStream=se;function qe(_){G("onJoinLinkChanged",_)}xs.onJoinLinkChanged=qe;function bs(_){G("onRoomsUpdated",_)}xs.onRoomsUpdated=bs;function Ms(_,A,ie,it){G("onRoomUpdated",_,A,ie,it)}xs.onRoomUpdated=Ms;function As(_){G("onRoomParticipantsUpdated",_)}xs.onRoomParticipantsUpdated=As;function Ds(_){G("onFeedback",_)}xs.onFeedback=Ds;function ks(_){G("onFeaturesPerRoleChanged",_)}xs.onFeaturesPerRoleChanged=ks;function Os(_,A){G("onAsrStarted",_,A)}xs.onAsrStarted=Os;function ws(){G("onAsrStopped")}xs.onAsrStopped=ws})(rr||(rr={}));var f=rr;var fa=(r=>(r.DEBUG="DEBUG",r.LOG="LOG",r.WARN="WARN",r.ERROR="ERROR",r))(fa||{}),ar;(re=>{let n="📞",e=(Ce,...be)=>{f.onDebugMessage(Ce,...be)},t=!1,i=(Ce,be)=>(...tt)=>{Ce(...tt),Yr(be,tt)},r=console.debug.bind(console,n),a=console.log.bind(console,n),s=console.warn.bind(console,n),d=console.error.bind(console,n),p=e.bind(null,"DEBUG"),u=e.bind(null,"LOG"),S=e.bind(null,"WARN"),C=e.bind(null,"ERROR");re.debug=p,re.log=u,re.warn=S,re.error=C;function he(){return t}re.enabled=he;function $(Ce){t=Ce,l.debugLog&&Bi(),Ce?(re.debug=l.debugLog?i(r,"DEBUG"):r,re.log=l.debugLog?i(a,"LOG"):a,re.warn=l.debugLog?i(s,"WARN"):s,re.error=l.debugLog?i(d,"ERROR"):d):(re.debug=l.debugLog?i(p,"DEBUG"):p,re.log=l.debugLog?i(u,"LOG"):u,re.warn=l.debugLog?i(S,"WARN"):S,re.error=l.debugLog?i(C,"ERROR"):C)}re.toggle=$;function De(Ce,...be){switch(Ce){case"DEBUG":re.debug(...be);break;case"LOG":re.log(...be);break;case"WARN":re.warn(...be);break;case"ERROR":re.error(...be);break}}re.send=De})(ar||(ar={}));var c=ar;var Rt=(i=>(i.USER="USER",i.ANONYM="ANONYM",i.GROUP="GROUP",i))(Rt||{}),ve;(d=>{function n(p){return p.length?typeof p[0]=="object"?p:p.map(u=>e(u)):[]}d.fromIds=n;function e(p,u="USER"){return{id:p,type:u}}d.fromId=e;function t(p){return{id:p.id,type:p.type==="ANONYM"?"ANONYM":"USER"}}d.fromSignaling=t;function i(p){return`{"id":"${p.id}","type":"${p.type}"}`}d.toString=i;function r(p,u="USER"){return i(e(p,u))}d.fromIdToString=r;function a(p){try{return JSON.parse(p)}catch(u){throw new Error(`Failed to parse ExternalId from string '${p}'`)}}d.fromString=a;function s(p,u){return p.id===u.id&&p.type===u.type}d.compare=s})(ve||(ve={}));var ge;(r=>{function n(a,s="USER",d=0){return{id:a,type:s,deviceIdx:d}}r.fromId=n;function e(a){return`{"id":"${a.id}","type":"${a.type}","deviceIdx":"${a.deviceIdx}"}`}r.toString=e;function t(a,s){return Object.assign({deviceIdx:s},ve.fromSignaling(a))}r.fromSignaling=t;function i(a){return a&&typeof a=="object"?a.deviceIdx:0}r.getDeviceIdx=i})(ge||(ge={}));var An="kf";function Wt(n){return n.stopStream}function nr(n){return n.keyFrameRequested}function Sa(n){if(Wt(n))return"ss";if(nr(n))return An;let e="";return n.priority!==void 0&&(e+="p="+n.priority),n.width!==void 0&&n.height!==void 0&&(e!==""&&(e+=":"),e+="sz="+Math.round(n.width)+"x"+Math.round(n.height)),n.fit!==void 0&&(e!==""&&(e+=":"),e+="fit="+n.fit),e}var Pe=(a=>(a.CAMERA="CAMERA",a.SCREEN="SCREEN",a.STREAM="STREAM",a.MOVIE="MOVIE",a.AUDIOSHARE="AUDIOSHARE",a))(Pe||{}),va="s",Ea="m";function We(n){return n.participantId+(n.mediaType?St+va+n.mediaType:"")+(n.streamName?St+Ea+n.streamName:"")}function jt(n){let e=n.split(St),t=e.shift();if(!t)throw new Error("Illegal stream description: "+n);let i=null,r,a=0;for(let d of e)switch(d.charAt(0)){case va:i=Dn(d.slice(1));break;case Ea:r=d.slice(1);break;case Zt:a=Number.parseInt(d.slice(1),10);break;default:throw new Error("Unexpected parameter type "+d.charAt(0)+" in stream description "+n)}return{participantId:v.compose(t,a),mediaType:i,streamName:r}}function Dn(n){for(let e of Object.keys(Pe))if(e===n)return Pe[e];return null}function sr(n,e){return n===null||e===null?n===null&&e===null:!(n.maxDimension!==e.maxDimension||n.maxBitrateK!==e.maxBitrateK||n.maxFramerate!==e.maxFramerate||n.degradationPreference!==e.degradationPreference)}function hi(n,e){return!(!sr(n.camera,e.camera)||!sr(n.screenSharing,e.screenSharing))}function or(n,e){return{camera:Object.assign({},n.camera,e.camera),screenSharing:Object.assign({},n.screenSharing,e.screenSharing)}}function Ia(n){try{return btoa(JSON.stringify(n))}catch(e){c.warn("WaitingParticipant: failed convert to string",n,e)}return null}function Ta(n){try{return JSON.parse(atob(n))}catch(e){c.warn("WaitingParticipant: failed convert from string",n,e)}return null}var Pt=(n,e)=>v.objectReduce(n,(t,i,r)=>(i===e&&t.push(r),t),[]);var Kt=class{constructor(e){this._fixNoPacketsApplied=!1;this._fixNoPacketsChecked=!1;this._fixTooManyPacketsApplied=!1;this._fixTooManyPacketsSucceeded=!1;this._fixTooManyPacketsFailed=!1;this._mediaSource=e}_fixAudioDeviceNoPackets(e){if(!(this._fixNoPacketsApplied&&this._fixNoPacketsChecked)){if(this._fixNoPacketsApplied&&!this._fixNoPacketsChecked){this._fixNoPacketsChecked=!0,g.log(T.ERROR,`audio_device_recover_${e.bandwidth?"success":"fail"}`);return}!this._fixNoPacketsApplied&&!e.bandwidth&&(this._fixNoPacketsApplied=!0,g.log(T.ERROR,"audio_device_recover"),this._mediaSource.toggleAudio(!0))}}_fixAudioDeviceTooManyPackets(e){if(this._fixTooManyPacketsSucceeded||this._fixTooManyPacketsFailed)return;let t=75,i=Date.now();if(!this._lastPacketsSentTime)e.packetsSent>0&&(this._lastPacketsSentTime=i,this._lastPacketsSent=e.packetsSent);else if(i-this._lastPacketsSentTime>500){let r=(e.packetsSent-this._lastPacketsSent)*1e3/(i-this._lastPacketsSentTime);this._lastPacketsSentTime=i,this._lastPacketsSent=e.packetsSent,this._fixTooManyPacketsApplied?r>t?(c.log("Failed to fix RV"),g.log(T.ERROR,"audio_device_recover_rv_fail"),this._fixTooManyPacketsFailed=!0):i-this._fixTooManyPacketsTime>6e4&&(c.log("Fixed RV"),g.log(T.ERROR,"audio_device_recover_rv_success"),this._fixTooManyPacketsSucceeded=!0):r>t&&(this._fixTooManyPacketsApplied=!0,c.log("Trying to fix RV"),this._mediaSource.toggleAudio(!0),this._fixTooManyPacketsTime=i)}}fix(e){if(!this._mediaSource)return;let t=e.find(i=>i.kind===ue.audio);!t||(this._fixAudioDeviceNoPackets(t),this._fixAudioDeviceTooManyPackets(t))}};var _i=class{constructor(){this._output=null;this._volume=1;this._features={setSinkId:!!Audio.prototype.setSinkId}}add(e){this.destroy(),this._output={},this._output.audioTrack=e,this._initAudioElement()}remove(e){!this._output||this._output.audioTrack!==e||this.destroy()}get volume(){return this._volume}set volume(e){this._volume=Math.max(0,Math.min(1,e)),this._output&&this._output.audioElement&&(this._output.audioElement.volume=this._volume)}_initAudioElement(){var s;if(l.muteMode||!((s=this._output)==null?void 0:s.audioTrack))return;let e=M.browserName()!=="Safari"||M.isMobile(),t=document.createElement(e?"audio":"video");t.muted=!1,t.volume=this._volume,t.preload="auto";let i=()=>{c.warn("Error on play audio"),f.onAutoplayError()},r=d=>{t.srcObject=new MediaStream([d]),t.load();let p=t.play();p&&p.catch(i)},a=()=>{var p;c.debug("Recover audio playback");let d=(p=this._output)==null?void 0:p.audioTrack;d?r(d):c.warn("Broken audio track")};t.onpause=a,t.onstalled=a,t.onerror=a,r(this._output.audioTrack),this._output.audioElement=t}_stopAudioElement(){var e,t,i;((e=this._output)==null?void 0:e.audioElement)&&(this._output.audioElement.pause(),this._output.audioElement.srcObject=null),(i=(t=this._output)==null?void 0:t.audioTrack)==null||i.stop()}destroy(){!this._output||(this._stopAudioElement(),this._output=null)}changeOutput(){return o(this,null,function*(){var e,t,i;try{if(!this._features.setSinkId)throw new Error('Feature "setSinkId" is not supported');if(!((e=this._output)==null?void 0:e.audioElement))throw new Error("Audio Element is not initialized");let r=M.getSavedOutput();r&&(yield(i=(t=this._output.audioElement).setSinkId)==null?void 0:i.call(t,r.deviceId))}catch(r){throw g.log(T.ERROR,"change_output"),c.error("Output change failed",r),r}})}};var kn=90,On=3,gi=class extends ae{constructor(){super(...arguments);this._lastMemoryStat={percent:0,bytes:0}}onRemoteDataStats(e,t){this._calcMemory(),e.inbound.rtps.map(i=>{let r=typeof i.userId=="string"&&t[i.userId]||null;i.userId=r==null?void 0:r.externalId}),f.onStatistics(e,this._lastMemoryStat)}_calcMemory(){var r;let e=(r=window==null?void 0:window.performance)==null?void 0:r.memory;if(!e||!e.usedJSHeapSize||!e.jsHeapSizeLimit)return;let t=Number((100*e.usedJSHeapSize/e.jsHeapSizeLimit).toFixed(2)),i=Number((e.usedJSHeapSize/1024/1024).toFixed(1));t>kn?c.warn(`High memory usage: ${t}% (${i} MiB)`):(!this._lastMemoryStat.percent||Math.abs(t-this._lastMemoryStat.percent)>=On)&&(c.debug(`Memory usage: ${t}% (${i} MiB)`),this._lastMemoryStat.percent=t,this._lastMemoryStat.bytes=e.usedJSHeapSize)}};var wn=44100,$t=class{constructor(e,t){this._analyser=null;this._gainNode=null;this._fftBins=null;this._mediaStreamSource=null;this._lastSmoothedLevel=0;this._trackId=e,this._stream=t;try{let i=M.getAudioContext();this._gainNode=i.createGain(),this._gainNode.gain.value=1e-5,this._gainNode.connect(i.destination),this._analyser=i.createAnalyser(),this._analyser.fftSize=1024,this._analyser.smoothingTimeConstant=0,this._analyser.connect(this._gainNode),this._fftBins=new Uint8Array(this._analyser.frequencyBinCount),this._mediaStreamSource=i.createMediaStreamSource(t),this._mediaStreamSource.connect(this._analyser)}catch(i){}}get stream(){return this._stream}get trackId(){return this._trackId}_getBins(){if(!this._fftBins||!this._analyser)return new Uint8Array;this._analyser.getByteFrequencyData(this._fftBins);let e=wn/this._fftBins.length,t=Math.ceil(l.voiceParams.minFreq/e),i=Math.floor(l.voiceParams.maxFreq/e);return this._fftBins.subarray(t,i)}getLevel(){let e=this._getBins(),i=e.reduce((a,s)=>a+s,0)/e.length/255,r=this._lastSmoothedLevel*l.voiceParams.smoothing+i*(1-l.voiceParams.smoothing);return this._lastSmoothedLevel=r,{real:i,smoothed:r}}destroy(){this._mediaStreamSource&&(this._mediaStreamSource.disconnect(),this._mediaStreamSource=null),this._gainNode&&(this._gainNode.disconnect(),this._gainNode=null),this._analyser&&(this._analyser.disconnect(),this._analyser=null,this._fftBins=null,this._lastSmoothedLevel=0)}};var fi=class extends ae{constructor(e){super();this._detector=null;this._track=null;this._interval=null;let t=()=>{this._detector&&f.onLocalVolume(this._detector.getLevel().real,e.getMediaSettings().isAudioEnabled),this._interval=window.setTimeout(t,l.voiceParams.interval)};this._interval=window.setTimeout(t,l.voiceParams.interval);let i=()=>{let r=e.getStream();r&&this.init(r)};this.subscribe(e,Me.SOURCE_CHANGED,r=>{r.kind===ue.audio&&r.mediaSettings.isAudioEnabled&&i()}),i()}init(e){this._stopDetector();let t=e.getAudioTracks();t.length&&(this._track=t[0].clone(),this._detector=new $t("local",new MediaStream([this._track])))}_stopDetector(){this._detector&&(this._detector.destroy(),this._detector=null),this._track&&(this._track.stop(),this._track=null)}destroy(){this.unsubscribe(),this._interval&&(window.clearTimeout(this._interval),this._interval=null),this._stopDetector()}};var Ca="videochat-epi",xn=5e3,Ln=3e4,ot=class extends ae{constructor(e,t,i=!1){super();this._previousTimestamp=0;this._previousCallStatReportTimestamp=0;this._previousCallStatReport={nack_sent:0,nack_received:0,pli_sent:0,pli_received:0,fir_sent:0,fir_received:0,frames_dropped:0,jitter_video:0,jitter_audio:0,interframe_delay_variance:0,total_audio_samples_received:0,concealed_audio_samples:0,inserted_audio_samples_for_deceleration:0,removed_audio_samples_for_acceleration:0,silent_concealed_audio_samples:0,audio_concealment_events:0,total_audio_energy:0};this._signaling=t,this._directTopology=i,this.subscribe(e,F.REMOTE_DATA_STATS,this._handleStats.bind(this))}destroy(){this.unsubscribe()}static getEstimatedPerformanceIndex(){try{let e=parseInt(localStorage.getItem(Ca)||"",10);return isNaN(e)?0:e}catch(e){return 0}}_handleStats(e){return o(this,null,function*(){if(!e.inbound||!e.inbound.rtps)return;let t=Date.now();!this._directTopology&&l.perfStatReportEnabled&&this._previousTimestamp+xn<=t&&(yield this.reportPerfStats(e),this._previousTimestamp=t),l.callStatReportEnabled&&this._previousCallStatReportTimestamp+Ln<=t&&(this._reportCallStats(e),this._previousCallStatReportTimestamp=t)})}reportPerfStats(e){return o(this,null,function*(){let t=e.inbound.rtps.reduce((i,r)=>(r.kind==="video"&&(i.framesDecoded+=r.framesDecoded||0,i.framesReceived+=r.framesReceived||0),i),{framesDecoded:0,framesReceived:0});if(t.framesDecoded)try{let i=yield this._signaling.reportPerfStat(t);localStorage.setItem(Ca,i.estimatedPerformanceIndex)}catch(i){}})}_reportCallStats(e){let t={nack_received:0,pli_received:0,fir_received:0,frames_dropped:0,jitter_video:0,jitter_audio:0,interframe_delay_variance:0,nack_sent:0,pli_sent:0,fir_sent:0,total_audio_samples_received:0,concealed_audio_samples:0,silent_concealed_audio_samples:0,inserted_audio_samples_for_deceleration:0,removed_audio_samples_for_acceleration:0,audio_concealment_events:0,total_audio_energy:0,inbound_video_count:0,inbound_audio_count:0};e.inbound.rtps.reduce((r,a)=>(a.kind==="video"?(a.framesReceived&&(r.jitter_video=r.jitter_video*r.inbound_video_count/(r.inbound_video_count+1)+a.jitter*1e3/(r.inbound_video_count+1),r.interframe_delay_variance=r.interframe_delay_variance*r.inbound_video_count/(r.inbound_video_count+1)+a.interframeDelayVariance*1e6/(r.inbound_video_count+1),r.inbound_video_count++),r.frames_dropped+=a.framesDropped,r.nack_sent+=a.nackCount,r.pli_sent+=a.pliCount,r.fir_sent+=a.firCount):(a.totalSamplesReceived&&(r.jitter_audio=r.jitter_audio*r.inbound_audio_count/(r.inbound_audio_count+1)+a.jitter*1e3/(r.inbound_audio_count+1),r.total_audio_energy=r.total_audio_energy*r.inbound_audio_count/(r.inbound_audio_count+1)+a.totalAudioEnergy/(r.inbound_audio_count+1),r.inbound_audio_count++),r.total_audio_samples_received+=a.totalSamplesReceived,r.inserted_audio_samples_for_deceleration+=a.insertedSamplesForDeceleration,r.removed_audio_samples_for_acceleration+=a.removedSamplesForAcceleration,r.concealed_audio_samples+=a.concealedSamples,r.silent_concealed_audio_samples+=a.silentConcealedSamples,r.audio_concealment_events+=a.concealmentEvents),r),t),e.outbound.rtps.reduce((r,a)=>(a.kind==="video"&&(r.nack_received+=a.nackCount,r.pli_received+=a.pliCount,r.fir_received+=a.firCount),r),t);let i={call_topology:this._directTopology?"D":"S",nack_sent:t.nack_sent-this._previousCallStatReport.nack_sent,nack_received:t.nack_received-this._previousCallStatReport.nack_received,pli_sent:t.pli_sent-this._previousCallStatReport.pli_sent,pli_received:t.pli_received-this._previousCallStatReport.pli_received,fir_sent:t.fir_sent-this._previousCallStatReport.fir_sent,fir_received:t.fir_received-this._previousCallStatReport.fir_received,frames_dropped:t.frames_dropped-this._previousCallStatReport.frames_dropped};if(t.jitter_video&&(i.jitter_video=t.jitter_video),t.jitter_audio&&(i.jitter_audio=t.jitter_audio),t.interframe_delay_variance&&(i.interframe_delay_variance=t.interframe_delay_variance),t.total_audio_samples_received){let r=t.total_audio_samples_received-this._previousCallStatReport.total_audio_samples_received,a=t.inserted_audio_samples_for_deceleration-this._previousCallStatReport.inserted_audio_samples_for_deceleration,s=t.removed_audio_samples_for_acceleration-this._previousCallStatReport.removed_audio_samples_for_acceleration,d=t.concealed_audio_samples-this._previousCallStatReport.concealed_audio_samples,p=t.silent_concealed_audio_samples-this._previousCallStatReport.silent_concealed_audio_samples,u=t.audio_concealment_events-this._previousCallStatReport.audio_concealment_events;i.inserted_audio_samples_for_deceleration=a/r*1e3,i.removed_audio_samples_for_acceleration=s/r*1e3,i.concealed_audio_samples=d/r*1e3,i.concealed_silent_audio_samples=p/r*1e3,i.concealment_audio_avg_size=d/u,i.total_audio_energy=t.total_audio_energy}g.logCustom("callStat",i),c.log("Sent call stats",i),this._previousCallStatReport=t}};var Nn=1e3;function me(n,e,t=0){return e in n&&n[e]?n[e]:t}function ya(...n){return e=>{for(let t of n)if(t(e))return!0;return!1}}function et(n,e){return t=>t[n]===e}function Un(n){return(e,t)=>e[n]-t[n]}function Si(n,e){return e.reduce((t,i)=>(t[i[n]]=i,t),{})}function Bn(n){let e={},t=[];for(let i of n)e[i.id]||(e[i.id]=!0,t.push(i));return t}function Vn(n){return n!==null&&typeof n=="object"&&!Array.isArray(n)}function cr(n){return Object.keys(n).filter(e=>n[e]!==void 0).map(e=>[e,n[e]]).reduce((e,t)=>(e[t[0]]=Vn(t[1])?cr(t[1]):t[1],e),{})}function Fn(n){let e=[];for(let t of n)t.forEach(i=>e.push(i));return e}function Hn(n){return o(this,null,function*(){let e=[];return RTCRtpReceiver.prototype.getStats?(e.push(...n.getReceivers().map(t=>t.getStats())),e.push(...n.getSenders().map(t=>t.getStats()))):e.push(n.getStats()),Promise.all(e).then(Fn).then(Bn)})}function Gn(n){let e=n.filter(et("type","candidate-pair")).sort(Un("priority")).find(ya(et("nominated",!0),et("selected",!0)));if(!e)return{totalRoundTripTime:0,currentRoundTripTime:0,bytesSent:0,bytesReceived:0};let t={totalRoundTripTime:e.totalRoundTripTime||0,currentRoundTripTime:e.currentRoundTripTime||0,bytesSent:e.bytesSent,bytesReceived:e.bytesReceived},i=n.find(et("id",e.remoteCandidateId));i&&(t=Object.assign({},t,{remote:{type:i.candidateType,address:i.ip||i.address,port:i.port,protocol:i.protocol}}));let r=n.find(et("id",e.localCandidateId));return r&&(t=Object.assign({},t,{local:{type:r.candidateType,address:r.ip||r.address,port:r.port,protocol:r.protocol,relayProtocol:r.relayProtocol,networkType:r.networkType}})),cr(t)}function Wn(n,e){let t=Si("id",n),i=n.filter(ya(et("type","inbound-rtp"),et("type","outbound-rtp")));M.browserName()==="Firefox"&&(i=Object.values(i.reduce((a,s)=>{if(!a[s.ssrc])a[s.ssrc]=s;else{let d=Object.assign({},a[s.ssrc],s),p=a[s.ssrc].isRemote?s:a[s.ssrc];d.id=p.id,d.type=p.type,delete d.isRemote,delete d.remoteId,a[d.ssrc]=d}return a},{})));let r={};if(M.browserName()==="Safari"){let a=n.filter(et("type","track"));r=Si("trackIdentifier",a)}return i.map(a=>{let s=Number(a.ssrc),d=a.mediaType||a.kind,p=a.trackId,u=a.type,S=a.codecId;if(M.browserName()==="Safari"){let R=/^.+_([\d]+)$/.exec(a.id);if(R&&(s=parseInt(R[1],10)),d=a.id.indexOf("Audio")>0?"audio":"video",e[s]){let P=d+"-"+e[s];r[P]&&(p=r[P].id)}}if(!u||!s||!d)return null;let C={ssrc:s,type:u,kind:d,bytesReceived:me(a,"bytesReceived"),bytesSent:me(a,"bytesSent"),jitter:me(a,"jitter"),packetsLost:me(a,"packetsLost"),packetsReceived:me(a,"packetsReceived"),packetsSent:me(a,"packetsSent"),fractionLost:me(a,"fractionLost"),pliCount:me(a,"pliCount"),firCount:me(a,"firCount"),nackCount:me(a,"nackCount"),userId:e[s]};if(d==="video"){let R=me(a,"framesDecoded"),P=me(a,"totalInterFrameDelay"),B=me(a,"totalSquaredInterFrameDelay");C.interframeDelayVariance=(B-P*P/R)/R}if(d==="audio"&&(C.totalSamplesReceived=me(a,"totalSamplesReceived"),C.concealedSamples=me(a,"concealedSamples"),C.insertedSamplesForDeceleration=me(a,"insertedSamplesForDeceleration"),C.removedSamplesForAcceleration=me(a,"removedSamplesForAcceleration"),C.silentConcealedSamples=me(a,"silentConcealedSamples"),C.concealmentEvents=me(a,"concealmentEvents"),C.totalAudioEnergy=me(a,"totalAudioEnergy")),S&&t[S]){let R=t[S];C.clockRate=R.clockRate,C.mimeType=R.mimeType}if(p&&t[p]){let R=t[p];C.frameHeight=R.frameHeight,C.frameWidth=R.frameWidth,C.framesDecoded=R.framesDecoded,C.framesReceived=R.framesReceived,C.framesDropped=R.framesDropped}return cr(C)}).filter(a=>!!a)}function jn(n,e){if(!e||!e.rtps||!n.rtps)return n;let t=Si("ssrc",n.rtps),i=Si("ssrc",e.rtps),r=(n.timestamp-e.timestamp)/1e3;return!t||!i||Object.keys(t).forEach(a=>{let s=t[a],d=i[a];if(!(!s||!d)){if(s.bytesReceived&&s.bytesReceived>d.bytesReceived&&(s.bandwidth=Math.round((s.bytesReceived-d.bytesReceived)/r)),s.bytesSent&&s.bytesSent>d.bytesSent&&(s.bandwidth=Math.round((s.bytesSent-d.bytesSent)/r)),s.packetsReceived)if(s.packetsReceived>d.packetsReceived||s.packetsLost>d.packetsLost){let p=s.packetsLost-d.packetsLost,u=s.packetsReceived-d.packetsReceived;s.packetLoss=parseFloat((100*p/(p+u)).toFixed(2))}else s.packetLoss=0;s.framesDropped&&d.framesDropped&&s.framesDropped>d.framesDropped&&(s.framesDroppedDelta=parseFloat(((s.framesDropped-d.framesDropped)/r).toFixed(0)))}}),n}function qt(i,r){return o(this,arguments,function*(n,e,t={}){let a=yield Hn(n),s={timestamp:Date.now(),transport:Gn(a),rtps:Wn(a,t)};return e?jn(s,e):(yield v.delay(Nn),qt(n,s,t))})}var vi=.8,ct=class extends ae{constructor(e,t,i,r,a){super();this._remoteSDP={};this._remoteCandidates={};this._state=V.IDLE;this._isOpen=!1;this._remotePeerId=null;this._statInterval=null;this._settingsInterval=null;this._failedOnCreate=null;this._remoteStream=null;this._iceRestartTimeout=null;this._reconnectionTimeout=null;this._reconnectionPrevented=!1;this._fingerprint=null;this._neverConnected=!0;this._prevConsumerSettings={};this._lastNetworkStat={rtt:0,loss:0,date:0};this._remoteNetworkStat={rtt:0,loss:0};this._networkLimits={badNet:{loss:3,rtt:1e3},goodNet:{loss:.5,rtt:600}};if(this._signaling=i,this._mediaSource=r,this._participantId=e,this._isMaster=t,this._serverSettings=a,this._perfStatReporter=new ot(this,i,!0),this.subscribe(this._signaling,Te.NOTIFICATION,this._onSignalingNotification.bind(this)),this.subscribe(this._mediaSource,Me.TRACK_REPLACED,this._onReplacedTrack.bind(this)),this.subscribe(this._mediaSource,Me.SOURCE_CHANGED,this._applySettings.bind(this)),this._pc=new RTCPeerConnection({iceServers:l.iceServers,iceTransportPolicy:l.forceRelayPolicy?"relay":"all"},{optional:[{googSuspendBelowMinBitrate:!1}]}),this._pc.onicecandidate=this._handleIceCandidate.bind(this),this._pc.ontrack=this._onAddTrack.bind(this),this._pc.oniceconnectionstatechange=this._onIceConnectionStateChange.bind(this),this._pc.onconnectionstatechange=this._onConnectionStateChange.bind(this),this._pc.onsignalingstatechange=this._onSignalingStateChange.bind(this),this._prevConsumerSettings={},this._isMaster){try{this._mediaSource.addTrackToPeerConnection(this._pc,!1,!0,l.p2pAudioRed),this._applySettings()}catch(s){g.log(T.ERROR,"addTrack-direct"),c.error("Unable to add media source tracks",s,{participantId:this._participantId}),this._failedOnCreate=s;return}this._createOffer(!1).catch(s=>{this._state===V.IDLE?this._failedOnCreate=s:this.close(s)})}this._startSettingsInterval(),this._startStatInterval()}getState(){return this._state}updateStatisticsInterval(){this._stopStatInterval();let e=this.getState();e!==V.IDLE&&e!==V.CLOSED&&e!==V.FAILED&&this._startStatInterval()}open(e=null){return o(this,null,function*(){if(this._isOpen){c.warn("DirectTransport: Already opened",{participantId:this._participantId});return}if(this._failedOnCreate){this.close(this._failedOnCreate);return}if(c.debug("DirectTransport: Open transport",{participantId:this._participantId}),this._isOpen=!0,this._remotePeerId=e,!this._isMaster)try{this._mediaSource.addTrackToPeerConnection(this._pc,!1,!0,l.p2pAudioRed),this._applySettings()}catch(i){g.log(T.ERROR,"addTrack-direct"),c.error("DirectTransport: Unable to add media source tracks",i,{participantId:this._participantId}),this.close(i);return}this._setState(V.OPENED);let t=e;if(!e){let i=Object.keys(this._remoteSDP);t=i[i.length-1]}if(t&&this._remoteSDP[t])try{yield this._setRemoteDescription(t,this._remoteSDP[t])}catch(i){this.close();return}this._remoteSDP={},this._remoteCandidates={}})}updateSettings(e){hi(e,this._serverSettings)||(this._serverSettings=e,this._applySettings())}preventRestart(){this._reconnectionPrevented=!0}allowRestart(){this._reconnectionPrevented=!1}close(e){this._isOpen=!1,this._stopReconnection(),this._remoteStream&&(this._remoteStream.getTracks().forEach(t=>{t.stop(),this._triggerEvent(F.REMOTE_TRACK_REMOVED,this._remoteStream,t)}),this._remoteStream=null),this._stopStatInterval(),this._stopSettingsInterval(),this._pc&&(this._pc.onicecandidate=null,this._pc.ontrack=null,this._pc.oniceconnectionstatechange=null,this._pc.onconnectionstatechange=null,this._pc.onsignalingstatechange=null,this._pc.close()),this.unsubscribe(),e?(c.error("DirectTransport: Closed",e,{participantId:this._participantId}),this._setState(V.FAILED)):(c.debug("DirectTransport: Closed",{participantId:this._participantId}),this._setState(V.CLOSED)),this._triggerEvent(F.PEER_CONNECTION_CLOSED)}_setState(e){this._state!==e&&(c.debug(`DirectTransport: State changed to ${e}`,{participantId:this._participantId}),this._state=e,this._triggerEvent(F.STATE_CHANGED,e))}_onSignalingNotification(e){var t,i,r,a;switch(e.notification){case O.TRANSMITTED_DATA:this._handleTransmittedData(e);break;case O.SETTINGS_UPDATE:Object.assign(this._networkLimits.badNet,((t=e.settings)==null?void 0:t.badNet)||{}),Object.assign(this._networkLimits.goodNet,((i=e.settings)==null?void 0:i.goodNet)||{});break;case O.CUSTOM_DATA:e.data.hasOwnProperty("sdk")&&(this._remoteNetworkStat.rtt=((r=e.data.sdk)==null?void 0:r.rtt)||0,this._remoteNetworkStat.loss=((a=e.data.sdk)==null?void 0:a.loss)||0);break}}_handleTransmittedData(e){let t=e.data,i=v.getPeerIdString(e.peerId);v.composeMessageId(e)===this._participantId&&(t.candidate&&t.candidate.candidate?this._addIceCandidate(i,t.candidate).catch(this.close.bind(this)):t.sdp&&this._setRemoteDescription(i,t.sdp).catch(this.close.bind(this)))}_addIceCandidate(e,t){return o(this,null,function*(){if(this._isOpen&&(!this._remotePeerId||this._remotePeerId===e)&&this._pc&&this._pc.remoteDescription){c.debug("Add remote ice candidate",{participantId:this._participantId,candidate:t});try{yield this._pc.addIceCandidate(new RTCIceCandidate(t))}catch(i){throw g.log(T.ERROR,"addIceCandidate-direct"),c.error("Unable to add remote ice candidate",i,{participantId:this._participantId,candidate:t}),i}}else c.debug("Cache remote ice candidate",{participantId:this._participantId,candidate:t}),this._remoteCandidates[e]=this._remoteCandidates[e]||[],this._remoteCandidates[e].push(t)})}_setRemoteCandidates(e){return o(this,null,function*(){if(!this._remoteCandidates[e]){c.log(`No cached candidates found for peer ${e}`);return}let t=this._remoteCandidates[e];this._remoteCandidates[e]=[];for(let i of t)try{yield this._addIceCandidate(e,i)}catch(r){}})}_setRemoteDescription(e,t){return o(this,null,function*(){if(this._isOpen&&(!this._remotePeerId||this._remotePeerId===e)&&this._pc){c.debug("Add remote description",{participantId:this._participantId,sdp:t}),this._calcFingerprint(t.sdp);try{yield this._pc.setRemoteDescription(new RTCSessionDescription(t)),yield this._setRemoteCandidates(e)}catch(i){throw g.log(T.ERROR,"setRemoteDescription-direct"),c.error("Unable to set remote description",i,{participantId:this._participantId,sdp:t}),i}}else this._remoteSDP[e]=t})}_onAddTrack(e){c.debug("Added remote track",{participantId:this._participantId,kind:e.track.kind}),this._remoteStream?this._remoteStream.addTrack(e.track):(this._remoteStream=new MediaStream([e.track]),this._remoteStream.onremovetrack=t=>{this._triggerEvent(F.REMOTE_TRACK_REMOVED,this._remoteStream,t.track)}),this._triggerEvent(F.REMOTE_TRACK_ADDED,this._remoteStream,e.track)}_handleIceCandidate(e){return o(this,null,function*(){e.candidate&&this._signaling.ready&&(c.debug("Local ice candidate",{participantId:this._participantId,candidate:e.candidate}),yield this._signaling.sendCandidate(this._participantId,e.candidate))})}_onSignalingStateChange(){switch(c.debug(`DirectTransport: Signaling state changed to ${this._pc.signalingState}`,{participantId:this._participantId}),this._pc.signalingState){case"have-local-offer":let e=this._pc.localDescription;e?this._signaling.sendSdp(this._participantId,e).catch(this.close.bind(this)):this.close(new Error);break;case"have-remote-offer":this._createAnswer().catch(this.close.bind(this)).then(t=>o(this,null,function*(){return this._signaling.sendSdp(this._participantId,t)})).catch(this.close.bind(this));break}}_onIceConnectionStateChange(){switch(c.debug(`DirectTransport: Ice Connection state changed to ${this._pc.iceConnectionState}`,{participantId:this._participantId}),this._pc.iceConnectionState){case"checking":let e=this.getState();e===V.IDLE||e===V.OPENED?this._setState(V.CONNECTING):this._setState(V.RECONNECTING);break}}_onConnectionStateChange(){switch(c.debug(`DirectTransport: Connection state changed to ${this._pc.connectionState}`,{participantId:this._participantId}),g.log(T.ICE_CONNECTION_STATE,this._pc.connectionState),this._pc.connectionState){case"connected":this._neverConnected=!1,this._setState(V.CONNECTED),this._stopReconnection(),v.getPeerConnectionHostInfo(this._pc).then(e=>{e&&g.log(T.ICE_CONNECTION_TYPE,e.type)});break;case"failed":case"disconnected":this._reconnectionPrevented?this.close(new Error(`Ice connection ${this._pc.connectionState}`)):(this._setState(V.RECONNECTING),this._startReconnection());break;case"closed":this.close(new Error("Ice connection closed"));break}}_startReconnection(){this._reconnectionTimeout||this._iceRestartTimeout||(c.log("Waiting for reconnection...",{participantId:this._participantId}),this._reconnectionTimeout=window.setTimeout(()=>{this._reconnectionTimeout=null,this._neverConnected?this._requestTopologySwitch():this._startIceRestart()},l.transportConnectionWaitTime))}_requestTopologySwitch(){this._isMaster&&this._signaling.ready&&(c.log("Switch topology DIRECT to SERVER",{participantId:this._participantId}),this._signaling.switchTopology(ce.SERVER))}_stopReconnection(){this._reconnectionTimeout&&(clearTimeout(this._reconnectionTimeout),this._reconnectionTimeout=null),this._iceRestartTimeout&&(clearTimeout(this._iceRestartTimeout),this._iceRestartTimeout=null)}_startIceRestart(){this._isMaster?(g.log(T.ICE_RESTART),c.log("Ice restart",{participantId:this._participantId}),this._createOffer(!0).catch(this.close.bind(this))):c.debug("Waiting for ice restart...",{participantId:this._participantId}),this._iceRestartTimeout=window.setTimeout(()=>{this._iceRestartTimeout=null,c.error("Ice restart failed",{participantId:this._participantId}),g.log(T.ERROR,"iceRestart-direct"),this._requestTopologySwitch()},l.iceRestartWaitTime)}_createOffer(e){return o(this,null,function*(){let t={iceRestart:e,offerToReceiveAudio:!0,offerToReceiveVideo:!0};return c.debug("Create offer",{participantId:this._participantId,options:t}),this._pc.createOffer(t).catch(i=>{throw c.error("Unable to create offer",i,{participantId:this._participantId}),g.log(T.ERROR,"createOffer-direct"),i}).then(i=>o(this,null,function*(){return c.debug("Created offer",{participantId:this._participantId,offer:i}),i=ct._patchDescription(i),c.debug("Set local description",{participantId:this._participantId,offer:i}),this._calcFingerprint(i.sdp),this._pc.setLocalDescription(i).then(()=>this._pc.localDescription)})).catch(i=>{throw c.error("Unable to set local description",i,{participantId:this._participantId}),g.log(T.ERROR,"setLocalDescription-direct"),i})})}_createAnswer(){return o(this,null,function*(){return c.debug("Create answer",{participantId:this._participantId}),this._pc.createAnswer().catch(e=>{throw c.error("Unable to create answer",e,{participantId:this._participantId}),g.log(T.ERROR,"createAnswer-direct"),e}).then(e=>o(this,null,function*(){return c.debug("Created answer",{participantId:this._participantId,answer:e}),e=ct._patchDescription(e),c.debug("Set local description",{participantId:this._participantId,answer:e}),this._calcFingerprint(e.sdp),this._pc.setLocalDescription(e)})).then(()=>this._pc.localDescription).catch(e=>{throw c.error("Unable to set local description",e,{participantId:this._participantId}),g.log(T.ERROR,"setLocalDescription-direct"),e})})}static _patchDescription(e){let t=!!M.baseChromeVersion();return e.sdp=v.patchLocalSDP(e.sdp,l.preferH264&&M.canPreferH264(),M.isBrokenH264(),l.preferVP9,l.h264spsPpsIdrInKeyframe,t&&l.audioNack,l.p2pAudioRed),e}_onReplacedTrack(e){this._pc&&(this._pc.getSenders().forEach(t=>{t.track&&t.track.kind===e.kind&&t.track.contentHint===e.contentHint&&(t.track.enabled=e.enabled,t.replaceTrack(e).catch(i=>{c.error("DirectTransport: Unable to replace track",i,{participantId:this._participantId}),g.log(T.ERROR,"replaceTrack-direct")}))}),this._applySettings())}_startStatInterval(){if(this._statInterval)return;let e=()=>{if(!this._pc){this._stopStatInterval();return}qt(this._pc,this._lastStat).then(t=>{this._lastStat=t;let i={inbound:{topology:ce.DIRECT,transport:t.transport,rtps:t.rtps.filter(r=>r.type==="inbound-rtp"?(r.userId=this._participantId,!0):!1)},outbound:{topology:ce.DIRECT,transport:t.transport,rtps:t.rtps.filter(r=>r.type==="outbound-rtp")}};this._checkBadNetwork(i),this._triggerEvent(F.REMOTE_DATA_STATS,i),this._statInterval=window.setTimeout(e,l.statisticsInterval)})};this._statInterval=window.setTimeout(e,l.statisticsInterval)}_stopStatInterval(){this._statInterval&&(window.clearTimeout(this._statInterval),this._statInterval=null)}_checkBadNetwork(e){if(!this._signaling.ready)return;let t=$=>$.rtt<=this._networkLimits.goodNet.rtt&&$.loss<=this._networkLimits.goodNet.loss,i=$=>$.rtt>=this._networkLimits.badNet.rtt||$.loss>=this._networkLimits.badNet.loss,r=Math.round(e.outbound.transport.currentRoundTripTime*1e3)||0,a=e.inbound.rtps.reduce(($,De)=>Math.max($,De.packetLoss||0),0),s={rtt:this._lastNetworkStat.rtt*(1-vi)+r*vi,loss:this._lastNetworkStat.loss*(1-vi)+a*vi},d=i(s),p=t(s),u=i(this._remoteNetworkStat),S=t(this._remoteNetworkStat),C=i(this._lastNetworkStat),R=t(this._lastNetworkStat),q=d||u?.2:p&&S?1:0,he=Date.now();if((C!==d||R!==p||he-this._lastNetworkStat.date>l.networkStatisticsInterval)&&(this._lastNetworkStat.date=Date.now(),this._signaling.customData({sdk:Object.assign({type:"bad-net"},s)},null).catch($=>{c.warn("Unable to send [bad-net]",$)})),q){let $={};$[this._participantId]=$[""]=q,this._triggerEvent(F.NETWORK_STATUS,$)}this._lastNetworkStat.rtt=s.rtt,this._lastNetworkStat.loss=s.loss}_startSettingsInterval(){let e=2e3;if(this._settingsInterval)return;let t=()=>{if(!this._pc){this._stopSettingsInterval();return}this._applySettings(),this._settingsInterval=window.setTimeout(t,e)};this._settingsInterval=window.setTimeout(t,e)}_stopSettingsInterval(){this._settingsInterval&&(window.clearTimeout(this._settingsInterval),this._settingsInterval=null)}_calcFingerprint(e){let t=v.sdpFingerprint(e);if(t===null){c.warn("Fingerprint calculation is unsupported");return}this._fingerprint===null?this._fingerprint=t:(f.onFingerprintChange((this._fingerprint^t).toString()),this._fingerprint=null)}_applySettings(){var t;let e=this._mediaSource.getMediaSettings().isScreenSharingEnabled?this._serverSettings.screenSharing:this._serverSettings.camera;e&&((t=this._pc)==null?void 0:t.connectionState)==="connected"&&(this._prevConsumerSettings=v.applySettings(this._pc,e,this._prevConsumerSettings))}};var Ra=(r=>(r.producerNotification="producerNotification",r.producerCommand="producerCommand",r.consumerScreenShare="consumerScreenShare",r.producerScreenShare="producerScreenShare",r))(Ra||{}),Jt=Ra;import{decode as dt}from"messagepack";var dr=class{constructor(){this.streamDescriptionByCompactId=new Map;this.compactIdByStreamDescription=new Map}getStreamDescription(e){return this.streamDescriptionByCompactId.get(e)}getCompactId(e){return this.compactIdByStreamDescription.get(e)}handleMessage(e){var a,s;let t=new Uint8Array(e),i=t[0],r=t.subarray(1);switch(i){case 1:let d=dt(r);return Object.entries(d).forEach(([B,q])=>{let he=jt(B);this.streamDescriptionByCompactId.set(q,he),this.compactIdByStreamDescription.set(B,q)}),null;case 2:case 4:let p=dt(r),u=[];for(let B of p){let q=this.getStreamDescription(B);q&&u.push(q.participantId)}return i===2?{type:"notification",notification:O.AUDIO_ACTIVITY,activeParticipants:u}:{type:"notification",notification:O.STALLED_ACTIVITY,stalledParticipants:u};case 3:let S=dt(r);return{type:"notification",notification:O.SPEAKER_CHANGED,speaker:(a=this.getStreamDescription(S))==null?void 0:a.participantId};case 5:let C=dt(r);return{type:"notification",notification:O.VIDEO_QUALITY_UPDATE,quality:{maxBitrate:C[0],maxDimension:C[1]}};case 6:let R=dt(r),P={};for(let[B,q]of Object.entries(R)){let he=(s=this.getStreamDescription(Number(B)))==null?void 0:s.participantId;he&&(P[he]=q/100)}return{type:"notification",notification:O.NETWORK_STATUS,statuses:P};case 7:return this._createParticipantSourcesUpdateNotification(r);case 8:{let q=dt(r).map(he=>{var At;let[$,De,re,Ce,be,tt]=he;return{participantId:(At=this.getStreamDescription($))==null?void 0:At.participantId,gain:De,pause:re,offset:Ce,mute:be,liveStatus:tt}});return{type:"notification",notification:O.MOVIE_UPDATE_NOTIFICATION,data:q}}default:return c.debug("unsupported message type: "+i),null}}_createParticipantSourcesUpdateNotification(e){let t=dt(e),i=[];for(let[r,a]of Object.entries(t)){let s=a[0],d=a[1],p=a[2],u;if(s!==null){if(u=this.getStreamDescription(s),!u){c.error(`could not uncompress participant ID ${s}`);continue}}else u=null;if(p===null){c.error("unexpected null sequenceNumber",r,a);continue}let S=Be.PARTICIPANT_AGNOSTIC_TRACK_PREFIX+"-"+r,C=d?d>>>0:null;i.push({participantStreamDescription:u,streamId:S,rtpTimestamp:C,sequenceNumber:p})}return{type:"notification",notification:O.PARTICIPANT_SOURCES_UPDATE,participantUpdateInfos:i}}};var Kn=90,$n=4294967295,je=class extends ae{constructor(e,t,i){super();this._pc=null;this._producerNotification=null;this._producerCommand=null;this._producerScreen=null;this._consumerScreen=null;this._isOpen=!1;this._observer=!1;this._reconnectionPrevented=!1;this._state=V.IDLE;this._statInterval=null;this._settingsInterval=null;this._statBytes={};this._ssrcMap={};this._producerOfferIsProcessing=!1;this._producerNextOffer=null;this._prevConsumerSettings={};this._captureSender=null;this._captureReceiver=null;this._participantIdRegistry=null;this._disabledSenders=new Set;this._rtpReceiversByStreamId={};this._producerSessionId="";this._newAudioShareTrack=null;this._signaling=e,this._mediaSource=t,this._newAudioShareTrack=t.getAudioShareTrack(),this.subscribe(this._signaling,Te.NOTIFICATION,this._onSignalingNotification.bind(this)),this.subscribe(this._mediaSource,Me.TRACK_REPLACED,this._onReplacedTrack.bind(this)),this.subscribe(this._mediaSource,Me.SOURCE_CHANGED,this._applyConsumerSettings.bind(this)),this.subscribe(this._mediaSource,Me.SCREEN_STATUS,this._onScreenSharingStatus.bind(this)),this._perfStatReporter=new ot(this,e),this._serverSettings=i,c.debug("ServerTransport: Created")}getState(){return this._state||V.IDLE}updateStatisticsInterval(){this._stopStatInterval();let e=this.getState();e!==V.IDLE&&e!==V.CLOSED&&e!==V.FAILED&&this._startStatInterval()}open(e=!1){if(this._isOpen){c.log("ServerTransport: Already opened connections");return}this._isOpen=!0,this._observer=e,this._openConnection()}close(e){this._isOpen=!1,this._closeConnection(),this.unsubscribe(),e?(c.error("ServerTransport: Closed",e),this._setState(V.FAILED)):(c.debug("ServerTransport: Closed"),this._setState(V.CLOSED))}removeParticipant(e){var t;(t=this._captureReceiver)==null||t.close(e)}preventRestart(){this._reconnectionPrevented=!0}allowRestart(){this._reconnectionPrevented=!1}updateSettings(e){hi(e,this._serverSettings)||(this._serverSettings=e,this._applyConsumerSettings())}_closeConnection(){this._stopStatInterval(),this._stopSettingsInterval(),this._removeCaptureSender(),this._removeCaptureReceiver(),this._pc&&(this._rtpReceiversByStreamId={},this._disabledSenders.forEach(e=>{var t;return(t=e.track)==null?void 0:t.stop()}),this._disabledSenders.clear(),this._pc.ontrack=null,this._pc.onconnectionstatechange=null,this._pc.onsignalingstatechange=null,this._participantIdRegistry=null,je._closeDataChannel(this._producerNotification),je._closeDataChannel(this._producerCommand),je._closeDataChannel(this._producerScreen),je._closeDataChannel(this._consumerScreen),this._pc.close(),this._pc=null,this._producerOfferIsProcessing=!1,this._producerNextOffer=null),this._triggerEvent(F.PEER_CONNECTION_CLOSED)}static _closeDataChannel(e){e&&(e.onopen=null,e.onmessage=null,e.onerror=null,e.close())}_createDataChannel(e,t,i){c.debug(`[${t}] data channel opening`);let r=e.createDataChannel(t,{ordered:!0});r.onopen=()=>{let a=r.readyState;a==="open"?(c.debug(`[${t}] data channel opened`),r.onerror=s=>{c.error(`[${t}] data channel error`,s)},i(r)):c.error(`[${t}] data channel open failed, state [${a}]`)}}_openConnection(e=!1){c.debug("ServerTransport: Open single connection"),this._pc=new RTCPeerConnection({},{optional:[{googSuspendBelowMinBitrate:!1}]}),this._pc.ontrack=this._onAddTrack.bind(this,this._pc),this._pc.onconnectionstatechange=v.throttle(t=>{this._pc&&this._onConnectionStateChange(this._pc,t)},500),this._pc.onsignalingstatechange=je._onSignalingStateChange.bind(this,this._pc),l.producerNotificationDataChannel&&this._createDataChannel(this._pc,Jt.producerNotification,t=>{this._producerNotification=t,this._producerNotification.binaryType="arraybuffer",this._participantIdRegistry=new dr,this._signaling.setParticipantIdRegistry(this._participantIdRegistry),this._signaling.setProducerNotificationDataChannel(t)}),l.producerCommandDataChannel&&(this._signaling.useCommandDataChannel(!0),this._createDataChannel(this._pc,Jt.producerCommand,t=>{this._producerCommand=t,this._signaling.setProducerCommandDataChannel(t)})),l.producerScreenDataChannel&&this._createDataChannel(this._pc,Jt.producerScreenShare,t=>{this._producerScreen=t,this._producerScreen.binaryType="arraybuffer",this._createCaptureReceiver()});try{this._mediaSource.addTrackToPeerConnection(this._pc,this._observer,!1,l.serverAudioRed),this._prevConsumerSettings={},this._applyConsumerSettings()}catch(t){c.error("ServerTransport: Unable to add media source tracks",t),g.log(T.ERROR,"addTrack-single"),this.close(t);return}l.consumerScreenDataChannel&&this._createDataChannel(this._pc,Jt.consumerScreenShare,t=>{this._consumerScreen=t,this._consumerScreen.binaryType="arraybuffer";let i=this._mediaSource.getScreenTrack();i&&this._createCaptureSender(i)}),e||this._allocateConsumer(),this._setState(V.OPENED),this._startStatInterval(),this._startSettingsInterval()}_reconnect(){this.getState()!==V.OPENED&&(this._setState(V.RECONNECTING),this._closeConnection(),this._openConnection(!0))}_signalActiveParticipants(e){this._triggerEvent(F.SIGNALLED_ACTIVE_PARTICIPANTS,e)}_signalStalledParticipants(e){this._triggerEvent(F.SIGNALLED_STALLED_PARTICIPANTS,e)}_signalSpeakerChanged(e){this._triggerEvent(F.SIGNALLED_SPEAKER_CHANGED,e)}_signalNetworkStatus(e){this._triggerEvent(F.NETWORK_STATUS,e)}_updateSSRCMap(e){e&&e.sdp.split(`
12
+ `).forEach(t=>{let i=`a=ssrc:([0-9]+) label:(audio|video)-((?:[ug]?[\\d]+)|(?:mix)|(?:${Be.PARTICIPANT_AGNOSTIC_TRACK_PREFIX}-[0-9]+))`,r=new RegExp(i).exec(t);r&&(this._ssrcMap[r[1]]=r[3])})}_createCaptureSender(e){!e||!l.consumerScreenDataChannel||!this._consumerScreen||!this._mediaSource.getMediaSettings().isScreenSharingEnabled||(this._captureSender&&this._removeCaptureSender(),this._captureSender=new yt(e,this._consumerScreen,this._signaling))}_removeCaptureSender(){var e;(e=this._captureSender)==null||e.destroy(),this._captureSender=null}_createCaptureReceiver(){!l.producerScreenDataChannel||!this._producerScreen||!this._participantIdRegistry||(this._captureReceiver&&this._removeCaptureReceiver(),this._captureReceiver=new Tt(this._producerScreen,this._participantIdRegistry,(e,t)=>{this._triggerEvent(F.REMOTE_STREAM_SECOND,e,t)},e=>{this._triggerEvent(F.REMOTE_STREAM_SECOND,e,null)}))}_removeCaptureReceiver(){var e;(e=this._captureReceiver)==null||e.destroy(),this._captureReceiver=null}_applyConsumerSettings(){let e=this._mediaSource.getMediaSettings().isScreenSharingEnabled&&!l.consumerScreenDataChannel?this._serverSettings.screenSharing:this._serverSettings.camera;if(e&&this._pc){let t=[];this._pc.getSenders().forEach(i=>{if(!i.track||i.track.kind!==ue.video)return;let r=!this._disabledSenders.has(i),a=e.maxDimension!==0;if(r&&!a){c.log("Disabling video upload"),this._disabledSenders.add(i),i.replaceTrack(M.getBlackMediaTrack()).catch(d=>{c.error("Could not disable video upload",d)});return}let s=this._mediaSource.getSendVideoTrack();if(!r&&a&&s){c.log("Enabling video upload"),this._disabledSenders.delete(i);let d=i.track;d.enabled=s.enabled,i.replaceTrack(s).then(()=>d.stop()).catch(p=>{c.error("Could not enable video upload",p)})}v.applyVideoTrackSettings(e,i,s!=null?s:i.track,this._prevConsumerSettings,t)}),this._prevConsumerSettings=t}}_onScreenSharingStatus(e){e.track?this._createCaptureSender(e.track):this._removeCaptureSender()}_setState(e){this._state!==e&&(this._state=e,this._triggerEvent(F.STATE_CHANGED,e))}_startStatInterval(){if(this._statInterval)return;let e=()=>{if(!this._pc){this._stopStatInterval();return}this._collectStat().then(t=>{this._reportStats(t),this._detectStaleTracks(t)}).catch(()=>{}),this._statInterval=window.setTimeout(e,l.statisticsInterval)};this._statInterval=window.setTimeout(e,l.statisticsInterval)}_stopStatInterval(){this._statInterval&&(window.clearTimeout(this._statInterval),this._statInterval=null),this._statBytes={}}_startSettingsInterval(){let e=2e3;if(this._settingsInterval)return;let t=()=>{if(!this._pc){this._stopSettingsInterval();return}this._applyConsumerSettings(),this._settingsInterval=window.setTimeout(t,e)};this._settingsInterval=window.setTimeout(t,e)}_stopSettingsInterval(){this._settingsInterval&&(window.clearTimeout(this._settingsInterval),this._settingsInterval=null)}_collectStat(){return o(this,null,function*(){if(!this._pc)return Promise.reject();let e=yield qt(this._pc,this._lastStat,this._ssrcMap);return this._lastStat=e,e})}_reportStats(e){this._triggerEvent(F.REMOTE_DATA_STATS,{inbound:{topology:ce.SERVER,transport:e.transport,rtps:e.rtps.filter(t=>t.type==="inbound-rtp")},outbound:{topology:ce.SERVER,transport:e.transport,rtps:e.rtps.filter(t=>t.type==="outbound-rtp")}})}_detectStaleTracks(e){let t=e.rtps.find(s=>s.type==="inbound-rtp"&&s.kind==="audio"&&this._ssrcMap[s.ssrc]==="mix");if(!t)return;let i=Be.AUDIO_MIX,r=this._statBytes[i],a=!1;if(r){let s=t.bytesReceived-r.bytesReceived;s>=0&&s<=5&&(a=!0),r.stalled!==a&&this._triggerEvent(F.REMOTE_ALL_STALL,a)}this._statBytes[i]={bytesReceived:t.bytesReceived,stalled:a}}_allocateConsumer(){if(!this._signaling.ready)return;let e={estimatedPerformanceIndex:ot.getEstimatedPerformanceIndex(),audioMix:!0,consumerUpdate:!0,producerNotificationDataChannelVersion:l.producerNotificationDataChannel?7:0,producerCommandDataChannelVersion:l.producerCommandDataChannel?3:0,consumerScreenDataChannelVersion:l.consumerScreenDataChannel?1:0,producerScreenDataChannelVersion:l.producerScreenDataChannel?1:0,onDemandTracks:!0,unifiedPlan:!0,singleSession:!0,videoTracksCount:l.videoTracksCount,red:l.serverAudioRed,audioShare:l.audioShareCapabilityEnabled};this._signaling.allocateConsumer(null,e)}_acceptProducer(e){return o(this,null,function*(){if(this._producerOfferIsProcessing){this._producerNextOffer=e,c.debug("[single] wait until other remote offer is processed");return}this._producerOfferIsProcessing=!0;let t=new RTCSessionDescription({type:"offer",sdp:v.patchRemoteSDP(e)});if(c.debug("[single] set remote offer",{offer:t}),!this._pc)throw new Error("Interrupt allocation");this._pc.setRemoteDescription(t).catch(i=>{throw c.error("[single] unable to set remote offer",i),g.log(T.ERROR,"setRemoteDescription-single"),i}).then(()=>o(this,null,function*(){if(c.debug("[single] create local answer"),!this._pc)throw new Error("Interrupt allocation");return this.handleTracks(),this._pc.createAnswer()})).catch(i=>{throw c.error("[single] unable to create answer",i),g.log(T.ERROR,"createAnswer-single"),i}).then(i=>(i.sdp=v.patchLocalSDP(i.sdp,!1,M.isBrokenH264(),!1,l.h264spsPpsIdrInKeyframe),i)).then(i=>o(this,null,function*(){if(c.debug("[single] set local answer",{answer:i}),!this._pc)throw new Error("Interrupt allocation");return yield this._pc.setLocalDescription(i),i})).catch(i=>{throw c.error("[single] unable to set local answer",i),g.log(T.ERROR,"setLocalDescription-single"),i}).then(i=>o(this,null,function*(){c.debug("[single] transmit local answer",{answer:i}),this._updateSSRCMap(t),yield this._signaling.acceptProducer(i,Object.keys(this._ssrcMap)),c.debug("[single] remote offer has been processed")})).catch(i=>{c.warn("[single] unable to send local answer",i),g.log(T.ERROR,"acceptProducer")}).then(()=>o(this,null,function*(){if(this._producerOfferIsProcessing=!1,this._producerNextOffer){c.debug("[single] there is other unprocessed remote offer, process it");let i=this._producerNextOffer;return this._producerNextOffer=null,this._acceptProducer(i)}})).catch(i=>this.close(i))})}handleTracks(){this._newAudioShareTrack&&(this._pc.getTransceivers().forEach(e=>{e.mid.endsWith("s")&&(e.sender.track!==null&&c.warn("Unexpected track assigned to audioshare"),e.direction="sendonly",e.sender.replaceTrack(this._newAudioShareTrack).catch(t=>{c.error("ServerTransport: Unable to replace track",t),g.log(T.ERROR,"replaceTrack-single")}),this._newAudioShareTrack=null)}),this._newAudioShareTrack&&c.warn("Cannot find audioshare transceiver"))}_onSignalingNotification(e){return o(this,null,function*(){if(!!this._isOpen)switch(e.notification){case O.PRODUCER_UPDATED:yield this._onProducerUpdated(e);break;case O.REALLOC_CON:this._reconnect();break;case O.AUDIO_ACTIVITY:this._signalActiveParticipants(e.activeParticipants);break;case O.SPEAKER_CHANGED:this._signalSpeakerChanged(e.speaker);break;case O.STALLED_ACTIVITY:this._signalStalledParticipants(e.stalledParticipants);break;case O.NETWORK_STATUS:this._signalNetworkStatus(e.statuses);break}})}_onProducerUpdated(e){return o(this,null,function*(){this._producerSessionId&&this._producerSessionId!==e.sessionId&&this._reconnect(),l.breakVideoPayloadTypes&&(c.log("test mode enabled, video switched off"),this._signaling.requestTestMode("breakVideoPayloadTypes",null)),this._producerSessionId=e.sessionId,yield this._acceptProducer(e.description)})}_onAddTrack(e,t){c.debug("[single] remote track (added)",{track:t.track});let i=t.streams[0];i?(i.onremovetrack||(i.onremovetrack=a=>{this._triggerEvent(F.REMOTE_TRACK_REMOVED,i.id,i,a.track)}),i.getTracks().find(a=>a.id===t.track.id)||i.addTrack(t.track),this._rtpReceiversByStreamId[i.id]=t.receiver,this._triggerEvent(F.REMOTE_TRACK_ADDED,i.id,i,t.track)):c.error("[single] unable to get media stream from track event")}static _onSignalingStateChange(e,t){c.debug("[single] signaling state changed",{state:e.signalingState},t)}_onConnectionStateChange(e,t){switch(c.debug("[single] connection state changed",{state:e.connectionState},t),g.log(T.ICE_CONNECTION_STATE,e.connectionState),e.connectionState){case"failed":this._reconnectionPrevented?this.close(new Error("Ice connection failed")):this._reconnect();break;case"connecting":let i=this.getState();i===V.IDLE||i===V.OPENED?this._setState(V.CONNECTING):e.iceConnectionState==="checking"&&this._setState(V.RECONNECTING);break;case"disconnected":this._reconnectionPrevented?this.close(new Error("Ice connection disconnected")):this._setState(V.RECONNECTING);break;case"connected":this._setState(V.CONNECTED),v.getPeerConnectionHostInfo(e).then(r=>{r&&g.log(T.ICE_CONNECTION_TYPE,r.type)});break}}_onReplacedTrack(e,t){if(this._pc){l.consumerScreenDataChannel&&t&&(e=t);let i=!1;this._pc.getSenders().forEach(r=>{r.track&&r.track.kind===e.kind&&!this._disabledSenders.has(r)&&r.track.contentHint===e.contentHint&&(r.track.enabled=e.enabled,r.replaceTrack(e).catch(a=>{c.error("ServerTransport: Unable to replace track",a),g.log(T.ERROR,"replaceTrack-single")}),i=!0)}),!i&&e.kind===ue.audio&&e.contentHint==="music"&&(this._newAudioShareTrack=e)}this._applyConsumerSettings()}getStreamWaitingTimeMs(e,t){if(!this._pc)return g.log(T.PAT_WAITING_TIME_ERROR,"noConnection"),c.error("Cannot get stream waiting time, peer connection is not initialized"),0;if(!RTCRtpReceiver.prototype.getSynchronizationSources)return g.log(T.PAT_WAITING_TIME_ERROR,"oldBrowser"),c.error("Cannot get stream waiting time, RTCRtpReceiver.getSynchronizationSources is not supported"),0;let i=this._rtpReceiversByStreamId[e];if(!i)return g.log(T.PAT_WAITING_TIME_ERROR,"noReceiver"),c.error(`Cannot get stream waiting time, cannot find RTP receiver by stream ID: ${e}`),0;let r=i.getSynchronizationSources();if(!r||!r.length)return c.log(`Cannot get stream waiting time, ${e} receiver has no synchronization sources`),0;let s=r[0].rtpTimestamp;if(!Number.isInteger(s))return g.log(T.PAT_WAITING_TIME_ERROR,"timestampNotInteger"),c.error(`Cannot get stream waiting time, ${e} receiver's RTP timestamp is not an integer: ${s}`),0;let d=t-s&$n,p=Math.ceil(d/Kn);return Math.min(100,Math.max(0,p))}};var F=(P=>(P.REMOTE_TRACK_ADDED="REMOTE_TRACK_ADDED",P.REMOTE_TRACK_REMOVED="REMOTE_TRACK_REMOVED",P.REMOTE_STREAM_SECOND="REMOTE_STREAM_SECOND",P.REMOTE_ALL_STALL="REMOTE_ALL_STALL",P.REMOTE_DATA_STATS="REMOTE_DATA_STATS",P.STATE_CHANGED="STATE_CHANGED",P.LOCAL_STATE_CHANGED="LOCAL_STATE_CHANGED",P.SIGNALLED_ACTIVE_PARTICIPANTS="SIGNALLED_ACTIVE_PARTICIPANTS",P.SIGNALLED_SPEAKER_CHANGED="SIGNALLED_SPEAKER_CHANGED",P.SIGNALLED_STALLED_PARTICIPANTS="SIGNALLED_STALLED_PARTICIPANTS",P.TOPOLOGY_CHANGED="TOPOLOGY_CHANGED",P.NETWORK_STATUS="NETWORK_STATUS",P.PEER_CONNECTION_CLOSED="PEER_CONNECTION_CLOSED",P))(F||{}),V=(d=>(d.IDLE="IDLE",d.OPENED="OPENED",d.CONNECTING="CONNECTING",d.RECONNECTING="RECONNECTING",d.CONNECTED="CONNECTED",d.CLOSED="CLOSED",d.FAILED="FAILED",d))(V||{}),ce=(t=>(t.DIRECT="DIRECT",t.SERVER="SERVER",t))(ce||{}),pr=class extends ae{constructor(e,t,i,r){super();this._allocated=[];this._opened=[];this._directTransport=null;this._serverTransport=null;this._dtListeners=[];this._stListeners=[];this._states={};this._localState="IDLE";this._signaling=t,this._mediaSource=i,this._topology=e,this._serverSettings=r,this.subscribe(this._signaling,Te.NOTIFICATION,this._onSignalingNotification.bind(this)),e==="SERVER"&&(this._serverTransport=this._createServerTransport())}updateSettings(e){c.log("Update transport settings",e),this._serverSettings=e,this._directTransport&&this._directTransport.updateSettings(e),this._serverTransport&&this._serverTransport.updateSettings(e)}updateStatisticsInterval(){this._directTransport&&this._directTransport.updateStatisticsInterval(),this._serverTransport&&this._serverTransport.updateStatisticsInterval()}allocate(e,t=!1){if(c.warn(`Trying allocate participant [${e}]`),this._allocated.indexOf(e)!==-1){c.warn(`The participant [${e}] has already had allocated transport`);return}this._allocated.push(e),this._topology==="DIRECT"&&!this._directTransport&&(this._directTransport=this._createDirectTransport(e,t)),this._topology==="SERVER"&&!this._serverTransport&&(this._serverTransport=this._createServerTransport())}open(e,t=null,i=!1,r=!1){c.warn(`Trying open participant [${JSON.stringify(e)}]`);let a=r;for(let s of e){if(this._opened.indexOf(s)!==-1){c.warn(`The participant [${s}] has already had opened transport`);continue}if(this._allocated.indexOf(s)===-1){c.warn(`The participant [${s}] has no allocated transport`);continue}this._opened.push(s),a=!0}!a||(this._topology==="DIRECT"&&this._directTransport&&this._directTransport.open(t),this._topology==="SERVER"&&this._serverTransport&&(this._serverTransport.open(i),this._setStates(e,this._serverTransport.getState()),this._setLocalState(this._serverTransport.getState())),c.debug("The transport has been opened",e))}close(e){var r;let t=this._allocated.indexOf(e),i=this._opened.indexOf(e);t<0&&c.warn(`The participant [${e}] transport has already deallocated`),this._topology==="DIRECT"&&this._directTransport&&(this._directTransport.close(),this._directTransport=null),this._topology==="SERVER"&&((r=this._serverTransport)==null||r.removeParticipant(e),this._setState(e,"CLOSED")),i>=0&&this._opened.splice(i,1),t>=0&&this._allocated.splice(t,1)}destroy(){this.unsubscribe(),this._dtListeners&&this._dtListeners.forEach(e=>{e.dispose()}),this._stListeners&&this._stListeners.forEach(e=>{e.dispose()}),this._directTransport&&(this._directTransport.close(),this._directTransport=null),this._serverTransport&&(this._serverTransport.close(),this._serverTransport=null),this._allocated=[],this._opened=[]}getTopology(){return this._topology}isAllocated(e){return this._allocated.indexOf(e)>=0}allocated(){return this._allocated.slice()}opened(){return this._opened.slice()}getState(){var e,t;return this._topology==="SERVER"?(e=this._serverTransport)==null?void 0:e.getState():(t=this._directTransport)==null?void 0:t.getState()}_setStates(e,t){let i=e.filter(r=>this._states[r]!==t?(this._states[r]=t,!0):!1);i.length&&this._triggerEvent("STATE_CHANGED",i,t)}_setState(e,t){this._states[e]!==t&&(this._states[e]=t,this._triggerEvent("STATE_CHANGED",[e],t))}_setLocalState(e){this._localState!==e&&(this._localState=e,this._triggerEvent("LOCAL_STATE_CHANGED",e))}_onSignalingNotification(e){if(e.notification===O.TOPOLOGY_CHANGED)return this._onTopologyChanged(e)}_onTopologyChanged(e){var t;if(e.topology!==this._topology){if(c.log(`Topology changed ${this._topology} -> ${e.topology}`),g.log(T.TOPOLOGY_CHANGE_REQUESTED,e.topology),this._topology=e.topology,this._topology==="SERVER"&&(this._serverTransport?this._serverTransport.allowRestart():(this._serverTransport=this._createServerTransport(),this._opened.length>0&&((t=this._directTransport)==null||t.preventRestart(),this._serverTransport.open()))),this._topology==="DIRECT"){let i=e.offerTo||[],r=e.offerToTypes||[],a=e.offerToDeviceIdxs||[],s=i.length&&r.length?v.composeParticipantId(i[0],r[0],a[0]):null;if(this._serverTransport&&this._serverTransport.preventRestart(),!this._allocated||this._allocated.length===0){c.error("Topology changed to DIRECT, but the list of allocated participants is empty");return}this._allocated.length>1&&c.warn("Topology changed to DIRECT, but the allocated participants count more then one");let d=this._allocated[0];if(this._directTransport)this._directTransport.allowRestart();else{let p=s===d;this._directTransport=this._createDirectTransport(d,p)}this._opened.indexOf(d)>=0&&this._directTransport.open()}this._triggerEvent("TOPOLOGY_CHANGED",this._topology)}}_createDirectTransport(e,t=!1){let i=new ct(e,t,this._signaling,this._mediaSource,this._serverSettings);return this._dtListeners&&this._dtListeners.length>0&&c.warn(`The list of direct listeners for the participant [${e}] is not empty`),this._dtListeners=[],this._dtListeners.push(i.addEventListener("REMOTE_TRACK_ADDED",this._onDirectRemoteTrackAdded.bind(this,e)),i.addEventListener("REMOTE_TRACK_REMOVED",this._onDirectRemoteTrackRemoved.bind(this,e)),i.addEventListener("REMOTE_DATA_STATS",this._onDirectRemoteDataStats.bind(this)),i.addEventListener("STATE_CHANGED",this._onDirectTransportChanged.bind(this,e)),i.addEventListener("NETWORK_STATUS",this._onTransportNetworkStatus.bind(this)),i.addEventListener("PEER_CONNECTION_CLOSED",this._onPeerConnectionClosed.bind(this,"DIRECT"))),i}_createServerTransport(){let e=new je(this._signaling,this._mediaSource,this._serverSettings);return this._stListeners&&this._stListeners.length>0&&c.warn("The list of server transport listeners is not empty"),this._stListeners=[],this._stListeners.push(e.addEventListener("REMOTE_TRACK_ADDED",this._onServerRemoteTrackAdded.bind(this)),e.addEventListener("REMOTE_TRACK_REMOVED",this._onServerRemoteTrackRemoved.bind(this)),e.addEventListener("REMOTE_ALL_STALL",this._onServerRemoteAllStall.bind(this)),e.addEventListener("REMOTE_DATA_STATS",this._onServerRemoteDataStats.bind(this)),e.addEventListener("STATE_CHANGED",this._onServerTransportChanged.bind(this)),e.addEventListener("SIGNALLED_ACTIVE_PARTICIPANTS",this._onTransportActiveParticipants.bind(this)),e.addEventListener("SIGNALLED_SPEAKER_CHANGED",this._onTransportSpeakerChanged.bind(this)),e.addEventListener("SIGNALLED_STALLED_PARTICIPANTS",this._onTransportStalledParticipants.bind(this)),e.addEventListener("NETWORK_STATUS",this._onTransportNetworkStatus.bind(this)),e.addEventListener("REMOTE_STREAM_SECOND",this._onRemoteStreamSecond.bind(this)),e.addEventListener("PEER_CONNECTION_CLOSED",this._onPeerConnectionClosed.bind(this,"SERVER"))),e}_releaseDirectTransport(e){this._directTransport&&(e&&this._directTransport.close(),this._directTransport=null),this._dtListeners&&(this._dtListeners.forEach(t=>{t.dispose()}),this._dtListeners=[])}_releaseServerTransport(e){this._serverTransport&&(e&&this._serverTransport.close(),this._serverTransport=null),this._stListeners&&(this._stListeners.forEach(t=>{t.dispose()}),this._stListeners=[])}_setLocalNoiseSuppression(e){var t;l.noiseSuppression!==e&&(l.noiseSuppression=e,(t=this._mediaSource)==null||t.updateNoiseSuppression())}_onDirectTransportChanged(e,t){if(t==="CONNECTED"&&this._topology==="DIRECT"&&this._releaseServerTransport(!0),(t==="CLOSED"||t==="FAILED")&&(this._releaseDirectTransport(!1),this._topology==="DIRECT")){let i=this._opened.indexOf(e);i>=0&&this._opened.splice(i,1);let r=this._allocated.indexOf(e);r>=0&&this._allocated.splice(r,1)}this._topology==="DIRECT"&&(this._setState(e,t),this._setLocalState(t))}_onServerTransportChanged(e){let t=this._opened.slice();e==="CONNECTED"&&this._topology==="SERVER"&&this._releaseDirectTransport(!0),(e==="CLOSED"||e==="FAILED")&&(this._releaseServerTransport(!1),this._topology==="SERVER"&&(this._allocated=[],this._opened=[])),this._topology==="SERVER"&&(this._setStates(t,e),this._setLocalState(e))}_onTransportActiveParticipants(e){this._topology==="SERVER"&&this._triggerEvent("SIGNALLED_ACTIVE_PARTICIPANTS",e)}_onTransportStalledParticipants(e){this._topology==="SERVER"&&this._triggerEvent("SIGNALLED_STALLED_PARTICIPANTS",e)}_onTransportSpeakerChanged(e){this._topology==="SERVER"&&this._triggerEvent("SIGNALLED_SPEAKER_CHANGED",e)}_onTransportNetworkStatus(e){this._triggerEvent("NETWORK_STATUS",e)}_onRemoteStreamSecond(e,t){this._triggerEvent("REMOTE_STREAM_SECOND",e,t)}_onPeerConnectionClosed(e){this._triggerEvent("PEER_CONNECTION_CLOSED",e)}_onServerRemoteAllStall(e){this._topology==="SERVER"&&this._triggerEvent("REMOTE_ALL_STALL",e)}_onServerRemoteDataStats(e){this._triggerEvent("REMOTE_DATA_STATS",e)}_onDirectRemoteTrackAdded(e,t,i){this._triggerEvent("REMOTE_TRACK_ADDED",e,t,i)}_onDirectRemoteTrackRemoved(e,t,i){this._triggerEvent("REMOTE_TRACK_REMOVED",e,t,i)}_onDirectRemoteDataStats(e){this._triggerEvent("REMOTE_DATA_STATS",e)}_onServerRemoteTrackAdded(e,t,i){this._triggerEvent("REMOTE_TRACK_ADDED",e,t,i)}_onServerRemoteTrackRemoved(e,t,i){this._triggerEvent("REMOTE_TRACK_REMOVED",e,t,i)}getStreamWaitingTimeMs(e,t){return this._topology!=="SERVER"?(g.log(T.PAT_WAITING_TIME_ERROR,"wrongTopology"),c.error(`Cannot get stream waiting time, incorrect topology: ${this._topology}`),0):this._serverTransport?this._serverTransport.getStreamWaitingTimeMs(e,t):(g.log(T.PAT_WAITING_TIME_ERROR,"noTransport"),c.error("Cannot get stream waiting time, server transport is not initialized"),0)}};var pt=(e=>(e.VOLUMES_DETECTED="VOLUMES_DETECTED",e))(pt||{}),lr=class extends ae{constructor(e){super();this._detector=null;this._interval=null;this.subscribe(e,F.REMOTE_TRACK_ADDED,this._onRemoteTrackAdded.bind(this)),this.subscribe(e,F.REMOTE_TRACK_REMOVED,this._onRemoteTrackRemoved.bind(this)),this.subscribe(e,F.SIGNALLED_ACTIVE_PARTICIPANTS,this._onSignalledActiveParticipants.bind(this)),this.subscribe(e,F.TOPOLOGY_CHANGED,this._onTopologyChanged.bind(this))}destroy(){var e;this._interval&&(window.clearTimeout(this._interval),this._interval=null),this.unsubscribe(),(e=this._detector)==null||e.destroy(),this._detector=null}_onRemoteTrackAdded(e,t,i){var r;if(i.kind===ue.audio&&((r=this._detector)==null||r.destroy(),this._detector=new $t(e,t),!this._interval)){let a=()=>{this._collectVolumes(),this._interval=window.setTimeout(a,l.voiceParams.interval)};this._interval=window.setTimeout(a,l.voiceParams.interval)}}_onRemoteTrackRemoved(e,t,i){i.kind===ue.audio&&(!this._detector||this._detector.stream!==t||(this._detector.destroy(),this._detector=null))}_collectVolumes(){if(!this._detector)return;let e={},t=this._detector.trackId,i=this._detector.getLevel();if(t===Be.AUDIO_MIX){if(this._activeParticipants)for(let r of this._activeParticipants)e[r]=i}else e[t]=i;this._triggerEvent("VOLUMES_DETECTED",e)}_onSignalledActiveParticipants(e){this._activeParticipants=e}_onTopologyChanged(e){e===ce.DIRECT&&(this._activeParticipants=null)}};var ur=(e=>(e.SPEAKER_CHANGED="SPEAKER_CHANGED",e))(ur||{}),mr=class extends ae{constructor(e,t,i){super();this._speakerId=null;this._serverSideSpeakerDetection=!1;this._serverSideSpeakerDetection=i===ce.SERVER,this.subscribe(e,pt.VOLUMES_DETECTED,this._onVolumesDetected.bind(this)),this.subscribe(t,F.SIGNALLED_SPEAKER_CHANGED,this._onServerSpeakerChanged.bind(this)),this.subscribe(t,F.TOPOLOGY_CHANGED,this._onTopologyChanged.bind(this))}destroy(){this.unsubscribe()}_onVolumesDetected(e){if(this._serverSideSpeakerDetection)return;let t=0,i=null;if(Object.keys(e).forEach(r=>{let a=e[r].smoothed;a>t&&a>l.voiceParams.threshold&&(t=a,i=r)}),i&&i!==this._speakerId){let r=this._speakerId&&e.hasOwnProperty(this._speakerId)?e[this._speakerId].smoothed:0;t>r*l.voiceParams.speakerLevelMultiplier&&(this._speakerId=i,this._triggerEvent("SPEAKER_CHANGED",i))}}_onServerSpeakerChanged(e){this._serverSideSpeakerDetection&&this._triggerEvent("SPEAKER_CHANGED",e)}_onTopologyChanged(e){this._serverSideSpeakerDetection=e===ce.SERVER}};var Ei=class extends ae{constructor(e,t,i){super();this._states={};this._volumes={};this._participants={};this._connectionTimeout=0;this._volumeTimeout=0;this._transport=e,this._participants=i,this.subscribe(e,F.STATE_CHANGED,this._onTransportStateChanged.bind(this)),this.subscribe(t,pt.VOLUMES_DETECTED,this._onVolumesDetected.bind(this))}destroy(){this.unsubscribe(),this._connectionTimeout&&window.clearTimeout(this._connectionTimeout),this._volumeTimeout&&window.clearTimeout(this._volumeTimeout)}onChangeRemoteMediaSettings(e,t){t.isAudioEnabled||(this._volumes[e]=1),t.isAudioEnabled&&(this._volumes[e]=0)}_onTransportStateChanged(e,t){e.forEach(i=>this._states[i]=t),t===V.OPENED&&(this._connectionTimeout||(this._connectionTimeout=window.setTimeout(this._onConnectionTimeout.bind(this),l.specListenerParams.connectionTimeout)),this._volumeTimeout||(this._volumeTimeout=window.setTimeout(this._onVolumeTimeout.bind(this),l.specListenerParams.volumeTimeout))),t===V.FAILED&&this._connectionTimeout&&(c.warn("Transport failed, send callSpecError"),g.log(T.CALL_SPEC_ERROR,`${this._transport.getTopology()}_CONNECTION_TIMEOUT`))}_onVolumesDetected(e){Object.keys(e).forEach(t=>{this._volumes[t]=Math.max(e[t].real,this._volumes[t]||0)})}_onConnectionTimeout(){let e=i=>i!==V.CONNECTED;(()=>Object.values(this._states).filter(e).length>0)()&&(c.warn("There is not connected transport, send callSpecError"),g.log(T.CALL_SPEC_ERROR,`${this._transport.getTopology()}_CONNECTION_TIMEOUT`)),this._connectionTimeout=0}_onVolumeTimeout(){let e=[];Object.keys(this._volumes).forEach(t=>{if(this._volumes[t]>0)return;let i="UNKNOWN",r=this._participants[t];r&&r.platform&&(i=r.platform),e.indexOf(i)<0&&(e.push(i),g.log(T.CALL_SPEC_ERROR,`${this._transport.getTopology()}_VOLUME_TIMEOUT_${i}`))}),e.length&&c.warn("There is silent participant, send callSpecError"),this._volumeTimeout=0}};var qn=1e3,Jn=1e4;var zn=15,W=class extends ae{constructor(e,t,i){super();this._mediaSource=null;this._conversation=null;this._myLastRequestedLayouts={};this._state="IDLE";this._participantState=j.CALLED;this._participants={};this._transport=null;this._debugInfo=null;this._volumesDetector=null;this._speakerDetector=null;this._localVolumeDetector=null;this._specListener=null;this._activeSpeakerId=null;this._lastSignalledActiveSpeakerId=null;this._serverSettings={camera:null,screenSharing:null};this._lastStalled={};this._remoteAllStalled=!1;this._audioFix=null;this._streamByStreamId=new Map;this._streamIdByStreamDescription=new Map;this._streamWaitTimerByStreamDescription=new Map;this._sequenceNumberByStreamDescription=new Map;this._cooldownTimestampByStreamDescription=new Map;this._cooldownQueueCleanupTimer=null;g.create(e,i),this._api=e,this._signaling=t,this._onUnload=()=>{this._conversation&&this._api&&this._api.hangupConversation(this._conversation.id),g.destroy()},window.addEventListener("unload",this._onUnload),this._audioOutput=new _i,l.videoTracksCount>0&&(this._cooldownQueueCleanupTimer=window.setInterval(this._cleanupCooldownQueue.bind(this),qn))}static current(){return W._current}static hangupAfterInit(){W._activationMutex&&!W._current&&(W._delayedHangup=!0)}static id(){var e,t;return((t=(e=W._current)==null?void 0:e._conversation)==null?void 0:t.id)||null}onStart(e,t,i,r="",a=!1,s=!1,d){return o(this,null,function*(){if(W._activationMutex)throw g.log(T.ERROR,"startCall"),c.warn("Conversation: there is already running activation"),new U(k.FAILED);W._activationMutex=!0;try{this._mediaSource=this._createMediaSource(),yield this._mediaSource.request(i);let p=this._mediaSource.getMediaSettings();t===Je.CHAT||e.length>1?this._logWithMediaSettings(T.OUTGOING_MULTIPARTY_CALL,p):this._logWithMediaSettings(T.OUTGOING_CALL,p);let u=yield this._startConversation(e,t,Qe.OUTGOING,i,r,a,s,d);if(!this._conversation)throw new U(k.UNKNOWN_ERROR);if(this._participantState=j.ACCEPTED,this._signaling.changeMediaSettings(p),yield this._processConnection(u),this._allocateTransport(),this._createSpeakerDetector(),this._createSpecListener(),this._signaling.readyToSend(),W._delayedHangup)throw new U(k.CANCELED);c.debug("Outgoing call",{opponentIds:e,opponentType:t,mediaOptions:i});let S=Object.values(this._participants),C;return l.batchParticipantsOnStart&&(C=v.mapSharedParticipants(S)),yield this._processConnectionSharedMovieInfo(u),f.onLocalStream(this._mediaSource.getStream(),this._mediaSource.getMediaSettings()),f.onConversation(this._conversation.externalId,this._conversation.mediaModifiers,this._conversation.muteStates,C),this._onConversationParticipantListChunk(u),f.onLocalStatus(Y.WAITING),this._toggleJoinAvailability(),this._changeFeatureSet(),this._changeNeedRate(),W._current=this,this._conversation.concurrent?yield this._acceptConcurrent():l.batchParticipantsOnStart||this._setParticipantsStatus(S,Y.WAITING),this._conversation}catch(p){throw this._close(p,"Unable to start conversation"),p}finally{W._activationMutex=!1}})}onJoin(e){return o(this,null,function*(){var t;if(W._activationMutex)throw g.log(T.ERROR,"joinCall"),c.warn("Conversation: there is already running activation"),new U(k.FAILED);W._activationMutex=!0,this._state="PROCESSING";try{let i=!!((t=e.observedIds)==null?void 0:t.length);this._mediaSource=this._createMediaSource(),yield this._mediaSource.request(e.mediaOptions,!i);let r=this._mediaSource.getMediaSettings();this._logWithMediaSettings(T.JOIN_CONVERSATION,r);let a=yield this._joinConversation(e);if(!this._conversation)throw new U(k.UNKNOWN_ERROR);return this._conversation.observer=i,f.onLocalStream(this._mediaSource.getStream(),r),this._conversation.waitingHall?(c.log("In waiting hall"),W._current=this,W._activationMutex=!1,this._signaling.readyToSend(),f.onLocalStatus(Y.WAITING_HALL),this._conversation):this._onJoinPart2(a)}catch(i){throw W._activationMutex=!1,this._close(i,"Unable to join conversation"),i}})}_onJoinPart2(e){return o(this,null,function*(){var t,i,r,a,s,d;c.debug("Join conversation part 2"),W._activationMutex=!0;try{if(this._participantState=j.ACCEPTED,!this._conversation||!this._mediaSource)throw new U(k.UNKNOWN_ERROR);if(this._conversation.observer||this._signaling.changeMediaSettings(this._mediaSource.getMediaSettings()),yield this._processConnection(e),this._allocateTransport(),this._createSpeakerDetector(),this._createSpecListener(),this._signaling.readyToSend(),W._delayedHangup)throw new U(k.CANCELED);let p=Object.values(this._participants),u;l.batchParticipantsOnStart&&(u=v.mapSharedParticipants(p.filter(R=>!R.isInRoom)));let S=[];if((i=(t=e==null?void 0:e.rooms)==null?void 0:t.rooms)==null?void 0:i.length)for(let R of e.rooms.rooms)S.push({id:R.id,name:R.name,participantCount:R.participantCount,participantIds:yield Promise.all(((a=(r=R==null?void 0:R.participantIds)==null?void 0:r.map)==null?void 0:a.call(r,this._getExternalIdByParticipantId.bind(this)))||[]),participants:((s=R==null?void 0:R.participants)==null?void 0:s.participants)?this._participantListChunkToExternalChunk(R.participants):void 0,active:R.active,muteStates:R.muteStates});let C=(d=e==null?void 0:e.rooms)==null?void 0:d.roomId;return yield this._processConnectionSharedMovieInfo(e),f.onConversation(this._conversation.externalId,this._conversation.mediaModifiers,e.conversation.muteStates,u,{rooms:S,roomId:C}),this._onConversationParticipantListChunk(e),f.onLocalStatus(Y.WAITING),this._toggleJoinAvailability(),this._changeNeedRate(),this._state="ACTIVE",this._changeFeatureSet(),W._current=this,l.batchParticipantsOnStart||this._setParticipantsStatus(p,Y.WAITING),this._openTransport(p,!1),this._conversation}catch(p){throw this._close(p,"Unable to join conversation"),p}finally{W._activationMutex=!1}})}onPush(r){return o(this,arguments,function*(e,t=ee.USER,i){if(W._activationMutex)throw c.warn("Conversation: there is already running activation"),new U(k.REJECTED);W._activationMutex=!0;try{let a=yield this._prepareConversation(e,t,i);if(this._mediaSource=this._createMediaSource(),!this._conversation)throw new U(k.UNKNOWN_ERROR);if(!a.conversation.participants.find(d=>{var p;return d.state===j.CALLED&&d.id===((p=this._conversation)==null?void 0:p.userId)}))throw c.log("Push rejected (there is an active call)"),g.log(T.PUSH,"rejected"),new U(k.REJECTED);if(yield this._processConnection(a),this._allocateTransport(),this._createSpeakerDetector(),this._createSpecListener(),this._signaling.readyToSend(),g.log(T.PUSH,"accepted"),W._current=this,W._delayedHangup)throw new U(k.CANCELED);W._activationMutex=!1}catch(a){throw W._activationMutex=!1,this._close(a,"Unable to handle inbound call push"),a}})}_isInWaitingHall(e){if(!e.conversation||(e.conversation.options||[]).indexOf(Oi.WAITING_HALL)<0)return!1;let t=(e.conversation.participants||[]).find(i=>v.comparePeerId(i.peerId,e.peerId));return t&&t.restricted||!1}_acceptConcurrent(){return o(this,null,function*(){if(!this._mediaSource||!this._conversation)throw new U(k.UNKNOWN_ERROR);this._state="PROCESSING";let e=this._mediaSource.getMediaSettings();this._logWithMediaSettings(T.ACCEPT_CONCURRENT,e),c.debug("Concurrent call",{conversationId:this._conversation.id});try{yield this._signaling.acceptCall(this._mediaSource.getMediaSettings()),f.onCallAccepted(),this._state="ACTIVE",this._participantState=j.ACCEPTED,this._changeFeatureSet(),this._openTransport(Object.values(this._participants),!0)}catch(t){this._close(t,"Unable to accept concurrent call")}})}accept(e){return o(this,null,function*(){var t;if(this._state!=="IDLE")throw g.log(T.ERROR,"acceptIncoming"),c.error("Unable to accept a call - invalid state"),new Error("Unable to accept a call - invalid state");if(!this._mediaSource||!this._conversation)throw new U(k.UNKNOWN_ERROR);this._state="PROCESSING",c.debug("Accept incoming call",e);try{yield this._mediaSource.request(e);let i=this._mediaSource.getMediaSettings();this._logWithMediaSettings(T.ACCEPT_INCOMING,i),this._signaling.changeMediaSettings(i),yield this._signaling.acceptCall(i),this._participantState=j.ACCEPTED;let r=Object.values(this._participants),a;if(l.batchParticipantsOnStart&&(a=v.mapSharedParticipants(r)),f.onCallAccepted(),f.onLocalStream(this._mediaSource.getStream(),i),f.onConversation(this._conversation.externalId,this._conversation.mediaModifiers,this._conversation.muteStates,a),l.useParticipantListChunk){let p=yield this._getInitialParticiapntListChunk();(t=p==null?void 0:p.participants)==null||t.forEach(u=>{let S=v.composeId(u),C=this._participants[S];C&&(C.movieShareInfos=u.movieShareInfos)}),this._onConversationParticipantListChunk({participants:p})}f.onLocalStatus(Y.WAITING),this._toggleJoinAvailability(),this._changeNeedRate();let s=Pt(this._conversation.muteStates,Ue.MUTE),d=Pt(this._conversation.muteStates,Ue.MUTE_PERMANENT);for(let p of[s,d])p.length&&(yield this._processMuteState({mediaOptions:p,stateUpdated:!0}));return this._state="ACTIVE",this._changeFeatureSet(),l.batchParticipantsOnStart||this._setParticipantsStatus(r,Y.WAITING),this._openTransport(r,!0),this._conversation}catch(i){throw this._close(i,"Unable to accept call"),i}})}decline(){return o(this,null,function*(){var e;if(this._state!=="IDLE")throw g.log(T.ERROR,"declineIncoming"),c.error("Unable to decline a call - invalid state"),new Error("Unable to decline a call - invalid state");this._state="PROCESSING",c.debug("Decline incoming call"),this._logWithMediaSettings(T.DECLINE_INCOMING,(e=this._mediaSource)==null?void 0:e.getMediaSettings()),this._participantState=j.HUNGUP,this._signaling.ready&&(yield this._signaling.hangup(k.REJECTED)),this._close(new U(k.REJECTED))})}hangup(){return o(this,null,function*(){c.debug("Hangup");let e=this._state==="ACTIVE"?k.HUNGUP:k.CANCELED;g.log(T.HANGUP,e),this._signaling.ready?(yield this._signaling.hangup(e),this._close(new U(e))):f.onHangup(new U(k.HUNGUP),this._conversation&&this._conversation.id)})}addParticipant(e,t){return o(this,null,function*(){if(!this._signaling.ready){this._close(new U(k.UNKNOWN_ERROR),"Unable to add participant");return}let i=yield this._signaling.addParticipant(e,t),r=null;i.type==="error"&&(i.error==="call-unfeasible"?r=i.status:r=k.UNKNOWN_ERROR);let a=i.participant;yield this._onAddParticipant(v.composeId(a),a,r)})}removeParticipant(e,t=!1){return o(this,null,function*(){this._signaling.ready&&(yield this._signaling.removeParticipant(e,t),this._onRemoveParticipant(e))})}setVolume(e){this._audioOutput.volume=e}updateStatisticsInterval(){this._transport&&this._transport.updateStatisticsInterval()}_openTransport(e,t){var r;if(!this._transport)return;let i=[];for(let a of e)(a.state===j.CALLED||a.state===j.ACCEPTED)&&(this._transport.isAllocated(a.id)||this._transport.allocate(a.id,t)),a.state===j.ACCEPTED&&i.push(a.id);i.length&&this._transport.open(i,null,!!((r=this._conversation)==null?void 0:r.observer))}_close(e,t){t&&c.error(t,e),c.debug("Close conversation",e),e.error?this._signaling.ready&&this._signaling.hangup(k.FAILED):g.log(T.ERROR,e.hangup),W._activationMutex=!1;let i=this._conversation&&this._conversation.id;if([k.CANCELED,k.NOT_FRIENDS,k.CALLEE_IS_OFFLINE,k.CALLER_IS_BLOCKED,k.CALLER_IS_REJECTED].indexOf(e.hangup)!==-1||e.hangup===k.REJECTED&&!e.remote){f.onHangup(e,i),this.destroy();return}if(e.hangup===k.HUNGUP&&(!e.remote||this._participantState===j.CALLED)){f.onHangup(e,i),this.destroy();return}if(e.hangup===k.MISSED&&!e.remote){f.onHangup(e,i),this.destroy();return}if(e.hangup===k.SOCKET_CLOSED&&W._current&&!this._conversation){this._cleanupSignaling(),this._cleanupMediaSource();return}if(e.hangup===k.BUSY&&!e.remote){this._cleanupSignaling(),this._cleanupMediaSource();return}this._state="CLOSE",this._participantState=j.HUNGUP,this._changeFeatureSet(),this._cleanupMediaSource(),this._cleanupParticipants(),this._cleanupParticipantAgnosticStreams(),this._cleanupTransport(),this._cleanupSpeakerDetector(),this._cleanupSpecListener(),this._cleanupSignaling(),this._api.cleanup(),g.destroy(),this._conversation=null,this._myLastRequestedLayouts={},W._current=null,W._delayedHangup=!1,f.onHangup(e||new U(k.UNKNOWN_ERROR),i),this._cooldownQueueCleanupTimer!==null&&(window.clearInterval(this._cooldownQueueCleanupTimer),this._cooldownQueueCleanupTimer=null)}destroy(){let e=this._conversation&&this._conversation.id;c.debug("Destroy conversation",{conversationId:e}),this._cleanupMediaSource(),this._cleanupParticipants(),this._cleanupParticipantAgnosticStreams(),this._cleanupTransport(),this._cleanupSpeakerDetector(),this._cleanupSpecListener(),this._cleanupSignaling(),this._api.cleanup(),this._cleanupListeners(),g.destroy(),this._conversation=null,this._myLastRequestedLayouts={},W._current=null,W._delayedHangup=!1,this._cooldownQueueCleanupTimer!==null&&(window.clearInterval(this._cooldownQueueCleanupTimer),this._cooldownQueueCleanupTimer=null)}_getConversationParams(e){return o(this,null,function*(){let t=yield this._api.getConversationParams(e);c.debug("Api.getConversationParams",t);let i=[],{turn_server:r,stun_server:a}=t;if(a&&i.push(a),r){let s=r.urls.filter((d,p,u)=>u.indexOf(d)===p);s.push(`${s[s.length-1]}?transport=tcp`),i.push({urls:s,username:r.username,credential:r.credential})}return l.iceServers=i,l.wssBase=t.endpoint,l.wssToken=t.token,t.client_type&&(l.clientType=t.client_type),l.externalUserType=t.external_user_type,t})}_addGeoParamsToEndpoint(e,t){return t.isp_as_no&&(e+=`&ispAsNo=${t.isp_as_no}`),t.isp_as_org&&(e+=`&ispAsOrg=${t.isp_as_org}`),t.loc_cc&&(e+=`&locCc=${t.loc_cc}`),t.loc_reg&&(e+=`&locReg=${t.loc_reg}`),e}_startConversation(e,t,i,r,a="",s=!1,d=!1,p){return o(this,null,function*(){let u=v.uuid();c.debug("Conversation: start",{conversationId:u,opponentIds:e,opponentType:t,direction:i});let S=r.includes(le.VIDEO),C=yield this._api.startConversation(u,e,t,S,a,s,d,{onlyAdminCanShareMovie:p});c.debug("Api.startConversation",C);let R=yield this._getConversationParams(C.id);C.endpoint=this._addGeoParamsToEndpoint(C.endpoint,R);let P=yield this._connectSignaling(ze.START,C);return yield this._setConversation(C,P,i),P})}_joinConversation(e){return o(this,null,function*(){let{conversationId:t,mediaOptions:i,chatId:r,joinLink:a,observedIds:s,payload:d}=e;c.debug("Conversation: join",{conversationId:t,joinLink:a,observedIds:s});let p=i.includes(le.VIDEO),u;if(t)u=yield this._api.joinConversation(t,p,r);else if(a)u=yield this._api.joinConversationByLink(a,p,s,d);else throw new U(k.UNKNOWN_ERROR);c.debug("Api.joinConversation",u),yield this._getConversationParams(u.id);let S=yield this._connectSignaling(ze.JOIN,u);return yield this._setConversation(u,S,Qe.JOINING),S})}_prepareConversation(r){return o(this,arguments,function*(e,t=ee.USER,i){c.debug("Conversation: push",{conversationId:e,type:t,peerId:i});let a=this._api.getUserId();if(!a)throw new U(k.UNKNOWN_ERROR);let s=yield this._getConversationParams(e),d=s.device_idx||0,p=`${l.wssBase}?userId=${a}&entityType=${t}&deviceIdx=${d}&conversationId=${e}&token=${l.wssToken}`;p=this._addGeoParamsToEndpoint(p,s);let u={id:e,peerId:i,endpoint:p,is_concurrent:!1,p2p_forbidden:!1,device_idx:d},S=yield this._connectSignaling(ze.ACCEPT,u);return W._current&&(W._current._participantState===j.ACCEPTED||W._current._participantState===j.CALLED)?(c.log("Push rejected (busy)"),g.log(T.PUSH,"busy"),this._signaling.ready&&this._signaling.hangup(k.BUSY),Promise.reject({hangup:k.BUSY})):(W._current&&(W._current.destroy(),W._current=null),yield this._setConversation(u,S,Qe.INCOMING,t),S)})}_createParticipant(e){return o(this,null,function*(){var i;let t=Object.assign({id:null,externalId:null,mediaSettings:Se(),participantState:{},state:j.CALLED,status:null,remoteStream:null,mediaSource:null,platform:null,clientType:null,roles:[],networkRating:1,lastRequestedLayouts:{},muteStates:{},unmuteOptions:[],observedIds:[],isInRoom:!1},e);if(e.externalId){let r=v.decomposeParticipantId(t.id).compositeUserId;this._api.cacheExternalId(r,e.externalId)}else t.externalId=yield this._getParticipantId(t.id);return((i=t.observedIds)==null?void 0:i.length)&&(t.externalId.observer=!0),this._setParticipantMarkers(t,t.markers),t})}_getParticipantId(e){return o(this,null,function*(){try{let t=v.decomposeParticipantId(e),i=yield this._api.userId(t.compositeUserId);return Object.assign({deviceIdx:t.deviceIdx},i)}catch(t){throw this._close(new U(k.NETWORK_ERROR),t),t}})}_setConversation(a,s,d){return o(this,arguments,function*(e,t,i,r=ee.USER){yield this._prepareParticipants(t.conversation.participants);let p=this._api.getUserId(),u=e.device_idx||0;if(!p){let R=(t.conversation.participants||[]).find(P=>v.comparePeerId(P.peerId,t.peerId));if(!R)throw new U(k.UNKNOWN_ERROR);p=Number(R.id),R.idType&&(r=R.idType),R.deviceIdx&&(u=R.deviceIdx),this._api.setUserId(p)}let S=v.composeParticipantId(p,r,u),C=yield this._getParticipantId(S);this._conversation={userId:p,compositeUserId:S,externalId:C,acceptTime:t.conversation.acceptTime,features:t.conversation.features||[],featuresPerRole:t.conversation.featuresPerRole,id:t.conversation.id||e.id,participantsLimit:t.conversation.participantsLimit||30,topology:t.conversation.topology||ce.DIRECT,direction:i,concurrent:t.isConcurrent||e.is_concurrent||!1,needRate:!1,chatId:t.conversation.multichatId,roles:[],recordInfo:null,joinLink:e.join_link,pinnedParticipantId:null,mediaModifiers:t.mediaModifiers,options:[],muteStates:{},unmuteOptions:[],networkRating:1,waitingHall:this._isInWaitingHall(t),observer:!1,asrInfo:null},this._signaling.setConversationId(e.id),e.p2p_forbidden&&(l.forceRelayPolicy=e.p2p_forbidden),g.log(T.RELAY_POLICY,l.forceRelayPolicy?"1":"0"),this._changeFeatureSet(),this._logDevices()})}_updateConversation(e){if(!this._conversation)throw new U(k.UNKNOWN_ERROR);this._conversation.acceptTime=e.conversation.acceptTime,this._conversation.features=e.conversation.features||[],this._conversation.featuresPerRole=e.conversation.featuresPerRole,this._conversation.participantsLimit=e.conversation.participantsLimit||30,this._conversation.topology=e.conversation.topology||ce.DIRECT,this._conversation.concurrent=e.isConcurrent||!1,this._conversation.chatId=e.conversation.multichatId,this._conversation.mediaModifiers=e.mediaModifiers,this._conversation.waitingHall=!1}_createMediaSource(){let e=new Wi;return this.subscribe(e,Me.SOURCE_CHANGED,this._onLocalMediaStreamChanged.bind(this)),this.subscribe(e,Me.SCREEN_STATUS,this._onScreenSharingStatus.bind(this)),this._audioFix=new Kt(e),e}_connectSignaling(e,t){return o(this,null,function*(){return this._signaling.setEndpoint(t.endpoint),this.subscribe(this._signaling,Te.NOTIFICATION,this._onSignalingNotification.bind(this)),this.subscribe(this._signaling,Te.FAILED,this._onSignalingFailed.bind(this)),this.subscribe(this._signaling,Te.RECONNECT,this._onSignalingReconnect.bind(this)),this._signaling.connect(e,t)})}_processConnection(e){return o(this,null,function*(){yield this._registerConnectionParticipants(e),this._processConnectionData(e)})}_prepareParticipants(e){return o(this,null,function*(){let t=e.map(i=>i.id);t.length&&(yield this._api.prepareUserIds(t))})}_onConversationParticipantListChunk(e){let t=e.participants;t&&f.onConversationParticipantListChunk(this._participantListChunkToExternalChunk(this._createParticipantListChunk(t)))}_createParticipantListChunk(e){return Ne(Ne({},{participants:[],countBefore:0,countAfter:0,markerFound:!1}),e)}_participantListChunkToExternalChunk(e){let t=v.mapSharedParticipants(e.participants.map(i=>{let r=v.composeId(i);return this._participants[r]}));return ht(Ne({},e),{participants:t})}_registerConnectionParticipants(e){return o(this,null,function*(){var i,r,a,s,d,p;yield this._registerParticipants(e.conversation.participants),((i=e.participants)==null?void 0:i.participants)&&(yield this._registerParticipants((r=e.participants)==null?void 0:r.participants));let t=(s=(a=e==null?void 0:e.rooms)==null?void 0:a.rooms)!=null?s:[];for(let u of t)yield this._registerParticipants((p=(d=u==null?void 0:u.participants)==null?void 0:d.participants)!=null?p:[],!0)})}_registerParticipants(e,t=!1){return o(this,null,function*(){if(!!this._conversation)for(let i of e){let r=v.composeId(i);if(this._isMe(r)){this._conversation.roles=i.roles||[],this._conversation.roles.length&&(c.debug(`Local roles changed: ${i.roles}`),f.onLocalRolesChanged(this._conversation.roles)),yield this._registerParticipantLocalMuteState(i);continue}if(i.state===j.HUNGUP||i.state===j.REJECTED){this._participants[i.id]&&this._removeParticipant(this._participants[i.id],k.HUNGUP);continue}this._registerParticipantInCache(yield this._createParticipant({id:r,externalId:i.externalId&&ge.fromSignaling(i.externalId,i.deviceIdx||0),mediaSettings:Se(i.mediaSettings),participantState:v.mapParticipantState(i),state:i.state,roles:i.roles||[],status:l.batchParticipantsOnStart?Y.WAITING:null,muteStates:i.muteStates||{},unmuteOptions:i.unmuteOptions||[],observedIds:i.observedIds||[],markers:this._denormalizeMarkers(r,i.markers),movieShareInfos:i.movieShareInfos,isInRoom:t})),i.roles&&i.roles.length&&(c.debug(`Roles for participant [${r}] changed: ${i.roles}`),f.onRolesChanged(this._participants[r].externalId,i.roles))}})}_registerParticipantLocalMuteState(e){return o(this,null,function*(){if(!e.muteStates)return Promise.resolve();let t=Pt(e.muteStates,Ue.MUTE),i=Pt(e.muteStates,Ue.MUTE_PERMANENT);for(let r of[t,i])!r.length||(yield this._onMuteParticipant({muteStates:e.muteStates,unmuteOptions:e.unmuteOptions,mediaOptions:r,stateUpdated:!0}))})}_getStatusByTransportState(e){let t;return e===V.CONNECTED?t=Y.CONNECTED:e===V.CONNECTING||e===V.OPENED?t=Y.CONNECTING:e===V.RECONNECTING&&(t=Y.RECONNECT),t}_registerParticipantInCache(e){return this._participants[e.id]=e}_getExistedParticipantByIdOrCreate(e){return o(this,null,function*(){return this._participants[e]||this._createParticipant({id:e})})}_getExternalIdByParticipantId(e){return o(this,null,function*(){var t;if(this._isMe(e))return this._conversation.externalId;if(l.useParticipantListChunk)return(yield this._getExistedParticipantByIdOrCreate(e)).externalId;if((t=this._participants[e])==null?void 0:t.externalId)return this._participants[e].externalId;{let i=yield this._getParticipantId(e);return this._api.cacheExternalId(e,i),i}})}_registerParticipantAndSetMarkersIfChunkEnabled(e,t){return o(this,null,function*(){if(l.useParticipantListChunk){let i=this._registerParticipantInCache(yield this._getExistedParticipantByIdOrCreate(e));return this._setParticipantMarkers(i,t),i}return this._participants[e]})}_warnParticipantNotInConversation(e){c.warn(`Participant [${e}] isn't in conversation`)}_setParticipantMarkers(e,t){return e.markers=this._denormalizeMarkers(e.id,t),e}_denormalizeMarkers(e,t){if(!t)return null;let i=Object.values(t).find(r=>"ts"in r&&"rank"in r);return Object.entries(t).reduce((r,[a,s])=>(r[a]=ht(Ne(Ne({},i),s),{id:e}),r),{})}_processConnectionData(e){return o(this,null,function*(){var i;let t;((i=e.rooms)==null?void 0:i.roomId)?t=e.rooms.rooms.find(a=>a.id===e.rooms.roomId).muteStates:v.isEmptyObject(this._conversation.muteStates)&&e.conversation.muteStates&&(t=e.conversation.muteStates),t&&this._onMuteParticipant({muteStates:t,unmuteOptions:e.unmuteOptions,mediaOptions:Object.keys(t),muteAll:!0,stateUpdated:!0}),e.conversation.pinnedParticipantId&&(yield this._onPinParticipant(e.conversation.pinnedParticipantId)),this._onRecordInfo(e.conversation.recordInfo),this._onOptionsChanged(e.conversation.options),e.chatRoom&&e.chatRoom.totalCount&&this._onChatRoomUpdated(Di.ATTENDEE,e.chatRoom.totalCount,e.chatRoom.firstParticipants)})}_allocateTransport(){if(!this._conversation||!this._mediaSource)return;this._transport=new pr(this._conversation.topology,this._signaling,this._mediaSource,this._serverSettings),this._debugInfo=new gi,this.subscribe(this._transport,F.STATE_CHANGED,this._onTransportStateChanged.bind(this)),this.subscribe(this._transport,F.LOCAL_STATE_CHANGED,this._onTransportLocalStateChanged.bind(this)),this.subscribe(this._transport,F.REMOTE_TRACK_ADDED,this._onRemoteTrackAdded.bind(this)),this.subscribe(this._transport,F.REMOTE_TRACK_REMOVED,this._onRemoteTrackRemoved.bind(this)),this.subscribe(this._transport,F.REMOTE_ALL_STALL,this._onRemoteAllStall.bind(this)),this.subscribe(this._transport,F.REMOTE_DATA_STATS,this._onRemoteDataStats.bind(this)),this.subscribe(this._transport,F.SIGNALLED_STALLED_PARTICIPANTS,this._onRemoteSignalledStall.bind(this)),this.subscribe(this._transport,F.TOPOLOGY_CHANGED,this._onTopologyChanged.bind(this)),this.subscribe(this._transport,F.NETWORK_STATUS,this._onNetworkStatus.bind(this)),this.subscribe(this._transport,F.REMOTE_STREAM_SECOND,this._onRemoteStreamSecond.bind(this)),this.subscribe(this._transport,F.PEER_CONNECTION_CLOSED,this._onPeerConnectionClosed.bind(this));let e=this._conversation.direction===Qe.OUTGOING&&!this._conversation.concurrent;for(let t of Object.values(this._participants))(t.state===j.ACCEPTED||t.state===j.CALLED)&&this._transport.allocate(t.id,e)}_createSpeakerDetector(){this._transport&&(this._volumesDetector=new lr(this._transport),this.subscribe(this._volumesDetector,pt.VOLUMES_DETECTED,this._onVolumesDetected.bind(this)),this._speakerDetector=new mr(this._volumesDetector,this._transport,this._conversation.topology),this.subscribe(this._speakerDetector,ur.SPEAKER_CHANGED,this._onSpeakerChanged.bind(this)),this._localVolumeDetector=new fi(this._mediaSource))}_createSpecListener(){this._transport&&this._volumesDetector&&(this._specListener=new Ei(this._transport,this._volumesDetector,this._participants))}_logDevices(){let e=M.getCameras().length,t=M.getMicrophones().length;c.debug("Cameras: "+e+(M.hasCameraPermission()?"✔":"✖")+", Microphones: "+t+(M.hasMicrophonePermission()?"✔":"✖")),g.log(T.DEVICES,`${e}_${t}`)}_logWithMediaSettings(e,t){g.log(e,[(t==null?void 0:t.isAudioEnabled)&&"audio",(t==null?void 0:t.isVideoEnabled)&&"video"].filter(Boolean).join("_"))}_removeParticipant(e,t){var i;e.state===j.CALLED||e.state===j.ACCEPTED||this._state==="CLOSE"||(e.id===this._lastSignalledActiveSpeakerId&&(this._lastSignalledActiveSpeakerId=null),!!this._participants[e.id]&&(t===k.HUNGUP?this._setParticipantsStatus([e],Y.HANGUP):this._setParticipantsStatus([e],Y.ERROR,t),(i=e.mediaSource)==null||i.disconnect(),this._conversation&&this._conversation.pinnedParticipantId===e.id&&(this._conversation.pinnedParticipantId=null),this.updateDisplayLayout([{uid:e.externalId,mediaType:Pe.CAMERA,stopStream:!0}]),delete this._participants[e.id],f.onRemoteRemoved(e.externalId,e.markers)))}_cleanupListeners(){this.unsubscribe(),window.removeEventListener("unload",this._onUnload)}_cleanupMediaSource(){this._mediaSource&&(this._mediaSource.destroy(),this._mediaSource=null)}_cleanupParticipants(){Object.values(this._participants).forEach(e=>{var t,i,r;(t=e.remoteStream)==null||t.getTracks().forEach(a=>a.stop()),(i=e.secondStream)==null||i.getTracks().forEach(a=>a.stop()),(r=e.mediaSource)==null||r.disconnect()}),this._participants={},this._audioOutput&&this._audioOutput.destroy()}_cleanupParticipantAgnosticStreams(){c.debug("cleaning up participant-agnostic streams"),this._streamByStreamId.forEach(e=>{e.getTracks().forEach(t=>{t.stop()})}),this._streamByStreamId=new Map,this._streamWaitTimerByStreamDescription.forEach(e=>{window.clearTimeout(e)}),this._streamWaitTimerByStreamDescription=new Map,this._streamIdByStreamDescription=new Map,this._sequenceNumberByStreamDescription=new Map,this._cooldownTimestampByStreamDescription=new Map}_cleanupTransport(){this._transport&&(this._transport.destroy(),this._transport=null),this._debugInfo&&(this._debugInfo=null)}_cleanupSpeakerDetector(){this._speakerDetector&&(this._speakerDetector.destroy(),this._speakerDetector=null),this._volumesDetector&&(this._volumesDetector.destroy(),this._volumesDetector=null),this._localVolumeDetector&&(this._localVolumeDetector.destroy(),this._localVolumeDetector=null)}_cleanupSpecListener(){this._specListener&&(this._specListener.destroy(),this._specListener=null)}_cleanupSignaling(){this._signaling.close(),this._signaling.cleanup()}_onAddParticipant(e,t,i){return o(this,null,function*(){c.debug(`Add new participant [${e}]`);let r=this._participants[e];if(r&&(r.state===j.ACCEPTED||r.state===j.CALLED)){c.warn(`Participant [${r.id}:${r.state}] is already in conversation`);return}r||(r=this._registerParticipantInCache(yield this._createParticipant({id:e,externalId:t.externalId&&ge.fromSignaling(t.externalId,t.deviceIdx||0),mediaSettings:Se(t.mediaSettings),state:t.state,roles:t.roles||[],muteStates:t.muteStates||{},unmuteOptions:t.unmuteOptions||[],observedIds:t.observedIds||[]}))),this._setParticipantsStatus([r],Y.WAITING),i?(r.state=j.HUNGUP,this._removeParticipant(r,i)):this._transport&&(r.state=j.CALLED,this._transport.allocate(r.id,!0),g.log(T.ADD_PARTICIPANT),this._invokeRolesChangedCallbackIfNeeded(r))})}_onRemoveParticipant(e){c.debug(`Remove participant [${e}]`);let t=[];for(let i=0;i<=zn;i++){let r=v.compose(e,i),a=this._participants[r];a&&t.push(a)}if(!t.length){this._warnParticipantNotInConversation(e);return}if(this._transport)for(let i of t)this._transport.close(i.id);g.log(T.REMOVE_PARTICIPANT)}changeDevice(e){return o(this,null,function*(){return e==="audiooutput"?this._audioOutput.changeOutput():this._mediaSource?(e==="audioinput"&&(this._audioFix=new Kt(this._mediaSource)),this._mediaSource.changeDevice(e)):Promise.reject(oe.UNKNOWN)})}toggleScreenCapturing(e,t){return o(this,null,function*(){return this._mediaSource?this._mediaSource.toggleScreenCapturing(e,t):Promise.reject(oe.UNKNOWN)})}setVideoStream(e,t=!1){return o(this,null,function*(){if(this._mediaSource)return this._mediaSource.setVideoStream(e,t)})}setAudioStream(e){return o(this,null,function*(){if(this._mediaSource)return this._mediaSource.setAudioStream(e)})}toggleLocalVideo(e){return o(this,null,function*(){if(this._mediaSource)return g.log(T.MEDIA_STATUS,e?"video_1":"video_0"),this._mediaSource.toggleVideo(e)})}toggleLocalAudio(e){return o(this,null,function*(){if(this._mediaSource)return g.log(T.MEDIA_STATUS,e?"audio_1":"audio_0"),this._mediaSource.toggleAudio(e)})}changePriorities(e){return o(this,null,function*(){if(e.length<2||!this._signaling.ready)return;let t={},i={};for(let r of e){let a=typeof r.uid=="object"?r.uid:ge.fromId(r.uid),s=ge.toString(a);i[s]=r.priority}for(let r of Object.values(this._participants)){let a=ge.toString(r.externalId);i.hasOwnProperty(a)&&(t[r.id]=i[a])}yield this._signaling.changePriorities(t)})}changeParticipantState(e){return o(this,null,function*(){for(let[t,i]of Object.entries(e))if(t.length>5||i.length>5)throw new Error("key/value max length is 5 chars, mappings with empty values (null or empty string) are discarded");yield this._signaling.changeParticipantState(e)})}requestKeyFrame(e){return o(this,null,function*(){let t={};return t[We(e)]={keyFrameRequested:!0},this._signaling.updateDisplayLayout(t)})}requestTestMode(e,t){return o(this,null,function*(){return this._signaling.requestTestMode(e,t)})}updateDisplayLayout(e){return o(this,null,function*(){if(e.length<1||!this._signaling.ready)return;c.log(`Update display layout [${this._signaling.getNextCommandSequenceNumber()}]`,e);let t={};for(let r of e){let a=typeof r.uid=="object"?r.uid:ge.fromId(r.uid),s=this._api.getCachedOkIdByExternalId(a);if(!s){let S=ge.toString(a);c.log(`Unknown participant external ID ${S}`);continue}let d=v.compose(s,a.deviceIdx),p=We({participantId:d,mediaType:r.mediaType,streamName:r.streamName}),u=this._participants[d];u?u.lastRequestedLayouts[p]=r:this._isMe(d)&&(this._myLastRequestedLayouts[p]=r),Wt(r)?(this._isMe(d)&&delete this._myLastRequestedLayouts[p],this._streamIdByStreamDescription.has(p)&&!this._cooldownTimestampByStreamDescription.has(p)&&this._cooldownTimestampByStreamDescription.set(p,Date.now())):(this._cooldownTimestampByStreamDescription.delete(p),!this._streamIdByStreamDescription.has(p)&&l.videoTracksCount>0&&this._streamIdByStreamDescription.set(p,null),t[p]=r)}let i=this._cooldownTimestampByStreamDescription.keys();for(;this._streamIdByStreamDescription.size>l.videoTracksCount;){let r=i.next();if(r.done){c.error("Cannot accommodate all streaming requests: tracks available "+l.videoTracksCount+"; requested streams: "+Array.from(this._streamIdByStreamDescription.keys()));break}this._stopStreaming(r.value),t[r.value]={stopStream:!0}}yield this._sendUpdateDisplayLayout(t)})}feedback(e){return this._signaling.feedback(e)}_stopStreaming(e){if(this._cooldownTimestampByStreamDescription.delete(e),this._sequenceNumberByStreamDescription.set(e,this._signaling.getNextCommandSequenceNumber()),this._streamWaitTimerByStreamDescription.has(e)&&(c.log("Client asked to stop streaming before stream became available",e),window.clearTimeout(this._streamWaitTimerByStreamDescription.get(e)),this._streamWaitTimerByStreamDescription.delete(e)),this._streamIdByStreamDescription.get(e)){let i=jt(e),r=this._participants[i.participantId],{externalId:a}=this._conversation,s=this._isMe(i.participantId);if(r){if(i.streamName&&(i.mediaType===Pe.STREAM||i.mediaType===Pe.MOVIE)){let d={stream:null,streamName:i.streamName,mediaType:i.mediaType};s?f.onLocalLive(a,d):f.onRemoteLive(r.externalId,d)}else s||f.onRemoteStream(r.externalId,null);g.log(T.PAT_DEALLOCATED)}else c.log(`Cannot find participant to stop streaming: ${i.participantId}`)}this._streamIdByStreamDescription.delete(e)}_sendUpdateDisplayLayout(e){return o(this,null,function*(){if(Object.keys(e).length===0)return;let t=yield this._signaling.updateDisplayLayout(e);if(!t)return;let i=[];for(let[r,a]of Object.entries(t.errorCodeByParticipantId||{})){let s=jt(r),d=this._participants[s.participantId];if(d){let p;typeof a!="number"?(c.warn(`Unexpected error code ${a} received for participant ${s.participantId}`),p=Hr.UNKNOWN_ERROR):p=Gr(a),i.push({externalId:d.externalId,errorReason:p})}}if(i&&i.length)throw new Ii("Could not allocate one or more participants",i)})}_cleanupCooldownQueue(){let e={},t=this._cooldownTimestampByStreamDescription.entries();do{let i=t.next();if(i.done)break;let r=i.value;if(r[1]+Jn>Date.now())break;let s=r[0];this._stopStreaming(s),e[s]={stopStream:!0}}while(!0);this._sendUpdateDisplayLayout(e)}_onParticipantSourcesUpdate(e){if(this._conversation){c.log("Received participant sources update notification",e);for(let t of e)this._waitForStreamIfNeeded(t)}}_onParticipantPromoted(e){return o(this,null,function*(){c.log("Promoted in waiting hall",!e.demote),e.demote?(c.log("Kicked from waiting hall"),this._close(new U(k.REMOVED))):(this._updateConversation(e),yield this._onJoinPart2(e))})}_onChatRoomUpdated(r){return o(this,arguments,function*(e,t=0,i=[]){c.log(`Chat room updated: ${e}`);let a=[],s=[];i.length&&(i.forEach(d=>{if(d.externalId){let p=ve.fromSignaling(d.externalId);a.push(p),this._api.cacheExternalId(d.id.id,p)}else s.push(v.decomposeId(d.id.id).id)}),s.length&&!a.length&&(a=yield this._api.getExternalIdsByOkIds(s))),f.onChatRoomUpdated(e,t,a)})}_onSharedMovieUpdate(e){return o(this,null,function*(){let{externalId:t}=this._conversation,{data:i}=e;for(let r of i)if(this._isMe(r.participantId))f.onLocalLiveUpdate(t,r);else{let s=yield this._getExternalIdByParticipantId(r.participantId);s&&f.onRemoteLiveUpdate(s,r)}})}_onSharedMovieInfoStarted(e){return o(this,null,function*(){c.log(`Shared movie started data received: ${e.notification}`),yield this._processSharedMovieInfo(e.movieShareInfo)})}_processSharedMovieInfos(e){return o(this,null,function*(){e&&(yield Promise.all(e.map(t=>this._processSharedMovieInfo(t))))})}_processSharedMovieInfo(e){return o(this,null,function*(){var r;if(!e)return;let{externalId:t}=this._conversation;if(this._isMe(e.initiatorId))f.onLocalSharedMovieInfo(t,e);else{let a=yield this._getExternalIdByParticipantId(e.initiatorId);a&&f.onRemoteSharedMovieInfo(a,e)}this._transport.getTopology()===ce.SERVER&&this._transport.getState()===V.IDLE&&this._participantState!==j.CALLED&&this._transport.open(this._transport.allocated(),null,!!((r=this._conversation)==null?void 0:r.observer),!0)})}_processConnectionSharedMovieInfo(e){return o(this,null,function*(){let t=e.conversation.participants.find(i=>this._isMe(v.composeId(i)));yield this._processSharedMovieInfos(t==null?void 0:t.movieShareInfos)})}_onSharedMovieInfoStopped(e){return o(this,null,function*(){c.log(`Shared movie stopped data received: ${e.notification}`);let{externalId:t}=this._conversation,{initiatorId:i,movieId:r,source:a}=e,s={initiatorId:i,movieId:r,source:a};if(this._isMe(i))f.onLocalSharedMovieStoppedInfo(t,s);else{let p=yield this._getExternalIdByParticipantId(i);p&&f.onRemoteSharedMovieStoppedInfo(p,s)}})}_onFeaturesPerRoleChanged(e){c.log(`Features per role changed: ${e.notification}`),f.onFeaturesPerRoleChanged(e.featuresPerRole)}_waitForStreamIfNeeded(e){var d,p;let t=this._matchStreamDescription(e.participantStreamDescription);if(!t||l.producerScreenDataChannel&&t.mediaType===Pe.SCREEN)return;let i=We(t),r=this._sequenceNumberByStreamDescription.get(i);if(r&&r>e.sequenceNumber){c.warn(`Participant ${t.participantId} received outdated PAT response: sequence number ${e.sequenceNumber}; last sent sequence number for given participant is ${r}`),g.log(T.PAT_OUTDATED_RESPONSE);return}let a=e.streamId,s=e.rtpTimestamp?this._getWaitingTime(a,e.rtpTimestamp):0;if(s<=0){this._streamWaitTimerByStreamDescription.delete(i);let u=t.participantId,S=this._participants[u],{externalId:C}=this._conversation,R=this._isMe(u);if(!S&&!R){g.log(T.PAT_ERROR,"participantMissing"),c.error(`Could not find participant by ID: ${u}`);return}let P=R?C:S.externalId,B=this._streamByStreamId.get(a);if(!B){g.log(T.PAT_ERROR,"streamNotFound"),c.error(`Could not find stream by ID: ${a}`);return}g.log(T.PAT_ALLOCATED),this._streamIdByStreamDescription.set(i,a);let q=(d=e.participantStreamDescription)==null?void 0:d.mediaType;if(q===Pe.STREAM||q===Pe.MOVIE){if((p=e.participantStreamDescription)==null?void 0:p.streamName){let he={streamName:e.participantStreamDescription.streamName,stream:B,mediaType:q};R?f.onLocalLive(P,he):f.onRemoteLive(P,he)}}else if(l.producerScreenTrack&&q===Pe.SCREEN)f.onRemoteScreenStream(S.externalId,B);else if(!R){let he=(l.producerScreenTrack?null:S.secondStream)||B;f.onRemoteStream(S.externalId,he)}}else{c.debug(`Waiting for ${s} until stream ${a} for ${i} is switched`);let u=window.setTimeout(this._waitForStreamIfNeeded.bind(this,e),s);this._streamWaitTimerByStreamDescription.set(i,u)}}_matchStreamDescription(e){if(!e)return null;if(this._streamIdByStreamDescription.has(We(e)))return e;let t=e.participantId;if(e.mediaType){let i={participantId:t,mediaType:null};if(this._streamIdByStreamDescription.has(We(i)))return i}else{let i={participantId:t,mediaType:Pe.CAMERA};if(this._streamIdByStreamDescription.has(We(i)))return i;let r={participantId:t,mediaType:Pe.SCREEN};if(this._streamIdByStreamDescription.has(We(r)))return r}return c.error("Received unrequested allocation",e),null}_getWaitingTime(e,t){if(this._transport)return this._transport.getStreamWaitingTimeMs(e,t);throw new Error("transport is not initialized")}_isCallAdmin(){return this._conversation?v.includesOneOf(this._conversation.roles,[_t.ADMIN,_t.CREATOR]):!1}_checkAdminRole(){if(!!this._conversation&&!v.includesOneOf(this._conversation.roles,[_t.ADMIN,_t.CREATOR]))throw new Error("You don't have the required permission")}grantRoles(e,t,i){return o(this,null,function*(){this._checkAdminRole(),yield this._signaling.grantRoles(e,t,i)})}startAsr(){return o(this,null,function*(){yield this._signaling.startAsr()})}stopAsr(){return o(this,null,function*(){yield this._signaling.stopAsr()})}muteParticipant(){return o(this,arguments,function*(e=null,t,i=[],r){this._checkAdminRole(),yield this._signaling.muteParticipant(e,t,i,r)})}enableFeatureForRoles(e,t){return o(this,null,function*(){yield this._signaling.enableFeatureForRoles(e,t)})}pinParticipant(e,t){return o(this,null,function*(){this._checkAdminRole(),yield this._signaling.pinParticipant(e,t)})}updateMediaModifiers(e){return o(this,null,function*(){this._signaling.ready&&this._conversation&&(this._conversation.mediaModifiers=e,yield this._signaling.updateMediaModifiers(e))})}changeOptions(e){return o(this,null,function*(){if(this._signaling.ready&&this._conversation){this._checkAdminRole(),yield this._signaling.changeOptions(e);let t=Mr(this._conversation.options,e);this._onOptionsChanged(t)}})}getWaitingHall(e,t,i){return o(this,null,function*(){if(!this._signaling)return Promise.reject();let r=null;e&&(r=Ta(e));let a=yield this._signaling.getWaitingHall(r,t,i);if(a.error)return Promise.reject(a.message);let s=a.participants||[],d=[],p=[],u=null;return s.length&&(s.forEach(S=>{if(S.externalId){let C=ve.fromSignaling(S.externalId);d.push(C),this._api.cacheExternalId(S.id.id,C)}else p.push(v.decomposeId(S.id.id).id)}),p.length&&!d.length&&(d=yield this._api.getExternalIdsByOkIds(p)),a.hasMore&&(u=Ia(s[s.length-1].id))),{participants:d,pageMarker:u,totalCount:a.totalCount||0}})}promoteParticipant(e,t){return o(this,null,function*(){this._signaling&&(yield this._signaling.promoteParticipant(e,t))})}chatMessage(e,t=null){return o(this,null,function*(){this._signaling.ready&&(yield this._signaling.chatMessage(e,t))})}chatHistory(e){return o(this,null,function*(){if(this._signaling.ready){let t=yield this._signaling.chatHistory(e);for(let i=t.messages.length-1;i>=0;i--){let r=t.messages[i];yield this._onChatMessage(r)}}})}customData(e,t=null){return o(this,null,function*(){this._signaling.ready&&(yield this._signaling.customData(e,t))})}createJoinLink(){return o(this,null,function*(){if(this._conversation){let t=(yield this._api.createJoinLink(this._conversation.id)).join_link;if(t)return this._conversation.joinLink=t,t}return Promise.reject()})}removeJoinLink(){return o(this,null,function*(){if(this._conversation&&(yield this._api.removeJoinLink(this._conversation.id)).success){delete this._conversation.joinLink;return}return Promise.reject()})}addMovie(r){return o(this,arguments,function*({movieId:e,gain:t,metadata:i}){let a={movieId:e};(t||t===0)&&(a.gain=t),i&&(a.metadata=i);let s=yield this._signaling.addMovie(a);if(s.error)throw new Error(s.error);return{movieId:s.movieId,streamType:s.streamType}})}updateMovie(e){return o(this,null,function*(){let t=yield this._signaling.updateMovie(e);if(t.error)throw new Error(t.error)})}removeMovie(e){return o(this,null,function*(){let t={movieId:e},i=yield this._signaling.removeMovie(t);if(i.error)throw new Error(i.error)})}updateRooms(e,t){return o(this,null,function*(){c.debug("Rooms: update",{rooms:e,assignRandomly:t});let i=yield this._signaling.updateRooms(e,t);if(i.error)throw new Error(i.error)})}activateRooms(e,t){return o(this,null,function*(){c.debug("Rooms: activate",{roomIds:e,deactivate:t});let i=yield this._signaling.activateRooms(e,t);if(i.error)throw new Error(i.error)})}switchRoom(e,t){return o(this,null,function*(){c.debug("Room: switch",{toRoomId:e,participantId:t});let i=yield this._signaling.switchRoom(e,t);if(i.error)throw new Error(i.error)})}removeRooms(e){return o(this,null,function*(){c.debug("Rooms: remove",{roomIds:e});let t=yield this._signaling.removeRooms(e);if(t.error)throw new Error(t.error)})}startStream(e=!1,t=null,i=null,r="DIRECT_LINK",a=null,s=null){return o(this,null,function*(){let d={movieId:i,name:t,privacy:r,groupId:a,roomId:s,streamMovie:!e},p=yield this._signaling.startStream(d);return p.error?Promise.reject(p.message):p})}stopStream(e=null){return o(this,null,function*(){let t={roomId:e},i=yield this._signaling.stopStream(t);return i.error?Promise.reject():i})}recordSetRole(e,t,i=null){return o(this,null,function*(){let r=yield this._signaling.recordSetRole(e,t,i);if(r.error)throw new Error(r.error)})}getStreamInfo(){return o(this,null,function*(){let e=yield this._signaling.getRecordStatus();return{movieId:e.recordMovieId,preview:e.recordMoviePreviewUrl}})}setLocalResolution(e,t,i){return o(this,null,function*(){var r;if(e<l.videoMinWidth||t<l.videoMinHeight)throw new Error("Sizes received are less than the `videoMinWidth` or `videoMinHeight`");if(i==null?void 0:i.effect){if(i.effect.width<l.videoMinWidth||i.effect.height<l.videoMinHeight)throw new Error("Sizes of effect received are less than the `videoMinWidth` or `videoMinHeight`");l.videoEffectMaxHeight=i.effect.height,l.videoEffectMaxWidth=i.effect.width}return l.videoMaxWidth=e,l.videoMaxHeight=t,(r=this._mediaSource)==null?void 0:r.setResolution(e,t)})}videoEffect(e){return o(this,null,function*(){var t;return(t=this._mediaSource)==null?void 0:t.videoEffect(e)})}getParticipants(e){return o(this,null,function*(){let t=e.externalIds.map(s=>({id:s.id,type:l.externalUserType})),i=yield this._signaling.getParticipants(t);if(i.error)throw new Error(i.error);let r=i.participants,a=this._transport.getState();return Promise.all(r.map(s=>o(this,null,function*(){var p;let d=v.composeId(s);return this._createParticipant({id:d,externalId:s.externalId&&ge.fromSignaling(s.externalId,s.deviceIdx||0),mediaSettings:Se(s.mediaSettings),participantState:v.mapParticipantState(s),state:s.state,roles:s.roles||[],status:(p=this._getStatusByTransportState(a))!=null?p:Y.WAITING,muteStates:s.muteStates||{},unmuteOptions:s.unmuteOptions||[],observedIds:s.observedIds||[],markers:this._denormalizeMarkers(d,s.markers)})}))).then(v.mapSharedParticipants)})}getParticipantListChunk(e){return o(this,null,function*(){var d;c.log("Request participant list chunk",e);let t=yield this._signaling.getParticipantListChunk(e);if(t.error)throw new Error(t.error);let i=this._createParticipantListChunk(t.chunk),r=i.participants.filter(p=>{let u=v.composeId(p);return!this._participants[u]});yield this._registerParticipants(r);let a=(d=this._transport)==null?void 0:d.getState();return i.participants.forEach(p=>{var C,R,P;let u=v.composeId(p),S=this._participants[u];S.status=(C=this._getStatusByTransportState(a))!=null?C:Y.WAITING,S.movieShareInfos=p.movieShareInfos,Object.assign(S.mediaSettings,p.mediaSettings),Object.assign(S.muteStates,p.muteStates),S.unmuteOptions=(R=p.unmuteOptions)!=null?R:S.unmuteOptions,this._state==="ACTIVE"&&this._transport&&(this._transport.isAllocated(S.id)||this._transport.allocate(S.id,!0),this._transport.open([S.id],null,!!((P=this._conversation)==null?void 0:P.observer)))}),this._participantListChunkToExternalChunk(i)})}_getInitialParticiapntListChunk(){return o(this,null,function*(){let e=l.participantListChunkInitIndex,t=l.participantListChunkInitCount,i="GRID",r=yield this._signaling.getParticipantListChunk({listType:i,fromIdx:e,count:t});return c.debug("Get initial participant list chunk",r.chunk),r.chunk})}_onLocalMediaStreamChanged(e){return o(this,null,function*(){var t,i;!this._conversation||(c.debug("Local media stream changed",e.mediaSettings),f.onLocalStreamUpdate(e.mediaSettings,e.kind),this._signaling.ready&&!((t=this._conversation)==null?void 0:t.waitingHall)&&!((i=this._conversation)==null?void 0:i.observer)&&(yield this._signaling.changeMediaSettings(e.mediaSettings)))})}_onScreenSharingStatus(e){return o(this,null,function*(){var t,i;if(c.log("Screen sharing changed",e.track,e.mediaSettings),l.consumerScreenTrack){let r=e.track?new MediaStream([e.track]):null;f.onScreenStream(r,e.mediaSettings),this._signaling.ready&&!((t=this._conversation)==null?void 0:t.waitingHall)&&!((i=this._conversation)==null?void 0:i.observer)&&(yield this._signaling.changeMediaSettings(e.mediaSettings))}})}_changeRemoteMediaSettings(e,t){c.debug(`Remote media settings changed [${e}]`,t);let{externalId:i}=this._conversation;if(this._isMe(e)){f.onLocalMediaSettings(i,t);return}let a=this._participants[e];if(!a){this._warnParticipantNotInConversation(e);return}a.mediaSettings=t,this._state==="ACTIVE"&&f.onRemoteMediaSettings(a.externalId,t,a.markers),this._specListener&&this._specListener.onChangeRemoteMediaSettings(e,t)}_changeRemoteParticipantState(e,t){c.debug(`Remote participant state changed [${e}]`,t);let i=this._participants[e];if(!i){this._warnParticipantNotInConversation(e);return}i.participantState=t||{},this._state==="ACTIVE"&&f.onRemoteParticipantState(i.externalId,i.participantState,i.markers)}_invokeRolesChangedCallbackIfNeeded(e){this._state==="ACTIVE"&&e.roles&&e.roles.length&&(c.debug(`Roles for participant [${e.id}] changed: ${e.roles}`),f.onRolesChanged(e.externalId,e.roles))}_onSignalingNotification(e){switch(e.notification){case O.ACCEPTED_CALL:return this._onAcceptedCall(e);case O.HUNGUP:return this._onHungup(e);case O.PARTICIPANT_ADDED:return this._onAddedParticipant(e);case O.PARTICIPANT_JOINED:return this._onJoinedParticipant(e);case O.CLOSED_CONVERSATION:return this._onClosedConversation(e);case O.MEDIA_SETTINGS_CHANGED:return this._onMediaSettingsChanged(e);case O.PARTICIPANT_STATE_CHANGED:return this._onParticipantStateChanged(e);case O.RATE_CALL_DATA:return this._onNeedRate();case O.FEATURE_SET_CHANGED:return this._onFeatureSetChanged(e);case O.MULTIPARTY_CHAT_CREATED:return this._onMultipartyChatCreated(e);case O.FORCE_MEDIA_SETTINGS_CHANGE:return this._onForceMediaSettingsChange(e);case O.SETTINGS_UPDATE:return this._onSettingsUpdate(e);case O.VIDEO_QUALITY_UPDATE:return this._onVideoQualityUpdate(e);case O.REGISTERED_PEER:return this._onPeerRegistered(e);case O.SWITCH_MICRO:return this._onMicSwitched(e);case O.CHAT_MESSAGE:return this._onChatMessage(e);case O.CUSTOM_DATA:return this._onCustomData(e);case O.RECORD_STARTED:return this._onRecordInfo(e.recordInfo);case O.RECORD_STOPPED:return this._onRecordInfo(null);case O.ROLES_CHANGED:return this._onRolesChanged(e.participantId,e.roles||[]);case O.MUTE_PARTICIPANT:return this._onMuteParticipant(e);case O.PIN_PARTICIPANT:return this._onPinParticipant(e.participantId,e.unpin,e.markers);case O.OPTIONS_CHANGED:return this._onOptionsChanged(e.options||[]);case O.PARTICIPANT_SOURCES_UPDATE:return this._onParticipantSourcesUpdate(e.participantUpdateInfos);case O.PROMOTE_PARTICIPANT:return this._onParticipantPromoted(e);case O.CHAT_ROOM_UPDATED:return this._onChatRoomUpdated(e.eventType,e.totalCount,e.firstParticipants);case O.JOIN_LINK_CHANGED:return this._onJoinLinkChanged(e);case O.FEEDBACK:return this._onFeedback(e);case O.MOVIE_UPDATE_NOTIFICATION:return this._onSharedMovieUpdate(e);case O.MOVIE_SHARE_STARTED:return this._onSharedMovieInfoStarted(e);case O.MOVIE_SHARE_STOPPED:return this._onSharedMovieInfoStopped(e);case O.ROOMS_UPDATED:return this._onRoomsUpdated(e);case O.ROOM_UPDATED:return this._onRoomUpdated(e);case O.ROOM_PARTICIPANTS_UPDATED:return this._onRoomParticipantsUpdated(e);case O.FEATURES_PER_ROLE_CHANGED:return this._onFeaturesPerRoleChanged(e);case O.ASR_STARTED:return this._onAsrInfo(e.asrInfo);case O.ASR_STOPPED:return this._onAsrInfo(null)}}_onSignalingReconnect(e){return o(this,null,function*(){if(!this._conversation)return;e.conversation.acceptTime&&(this._conversation.acceptTime=e.conversation.acceptTime),e.conversation.participantsLimit&&(this._conversation.participantsLimit=e.conversation.participantsLimit),e.conversation.features&&(this._conversation.features=e.conversation.features,this._conversation.featuresPerRole=e.conversation.featuresPerRole,this._changeFeatureSet()),e.conversation.pinnedParticipantId!==this._conversation.pinnedParticipantId&&(e.conversation.pinnedParticipantId?yield this._onPinParticipant(e.conversation.pinnedParticipantId,!1):this._conversation.pinnedParticipantId&&(yield this._onPinParticipant(this._conversation.pinnedParticipantId,!0))),e.conversation.state;let t=null;if(e.conversation.participants){let i=Object.keys(this._participants),r=[];for(let a of e.conversation.participants){let s=v.composeId(a),d=a.roles||[];if(this._isMe(s)){t=Se(a.mediaSettings),xt(this._conversation.roles,d)||this._onRolesChanged(s,d);continue}r.push(s);let p=this._participants[s];if(!p)yield this._onJoinedParticipant({participantId:a.id,participant:a,mediaSettings:a.mediaSettings});else{let u=Se(a.mediaSettings);Xr(u,p.mediaSettings)||this._changeRemoteMediaSettings(s,u);let S=v.mapParticipantState(a),C=p.participantState;v.isEqualParticipantState(S,C)||this._changeRemoteParticipantState(s,S),xt(d,p.roles)||this._onRolesChanged(p.id,d)}}for(let a of i)r.indexOf(a)<0&&this._removeParticipant(this._participants[a],k.HUNGUP)}this._onMuteParticipant({muteStates:e.conversation.muteStates,unmuteOptions:e.unmuteOptions,mediaOptions:[]},t),this._onRecordInfo(e.conversation.recordInfo),this._onOptionsChanged(e.conversation.options)})}_onSignalingFailed(e){c.error("Signaling failed",e),this._close(e)}_onAcceptedCall(e){return o(this,null,function*(){let t=v.composeMessageId(e),i=v.getPeerIdString(e.peerId);if(c.debug(`Participant accepted call [${t}]`),this._conversation&&this._isMe(t)){this._close(new U(k.MISSED),"Call accepted on other device");return}let r=this._participants[t];r||(r=this._registerParticipantInCache(yield this._createParticipant({id:t,mediaSettings:Se(e.mediaSettings)}))),r.state=j.ACCEPTED,r.mediaSettings=Se(e.mediaSettings),this._logWithMediaSettings(T.ACCEPTED_OUTGOING,r.mediaSettings),this._conversation&&this._conversation.direction===Qe.OUTGOING&&(this._state==="IDLE"||this._state==="PROCESSING")&&(this._state="ACTIVE",this._changeFeatureSet()),this._state==="ACTIVE"&&this._transport&&this._transport.open([r.id],i),this._changeRemoteMediaSettings(t,r.mediaSettings),this._changeRemoteParticipantState(t)})}_onHungup(e){return o(this,null,function*(){c.debug(`Participant hungup [${e.participantId}]`,{reason:e.reason});let t=v.composeMessageId(e);if(this._conversation&&this._isMe(t)){this._close(new U(e.reason,{remote:!0}));return}yield this._registerParticipantAndSetMarkersIfChunkEnabled(t,e.markers);let i=this._participants[t];if(!i){this._warnParticipantNotInConversation(t);return}this._transport&&this._transport.close(t),i.state=e.reason===k.REJECTED?j.REJECTED:j.HUNGUP,this._state!=="CLOSE"&&this._removeParticipant(i,k.HUNGUP)})}_onAddedParticipant(e){return o(this,null,function*(){var r,a;c.debug(`Participant added [${e.participantId}]`);let t=v.composeMessageId(e),i=this._participants[t];if(i&&i.state!==j.HUNGUP&&i.state!==j.REJECTED){c.debug(`Participant [${t}] is already in conversation and is active`);return}i||(i=this._registerParticipantInCache(yield this._createParticipant({id:t,externalId:e.participant.externalId&&ge.fromSignaling(e.participant.externalId,e.participant.deviceIdx||0),mediaSettings:Se(e.participant.mediaSettings),state:e.participant.state,participantState:v.mapParticipantState(e.participant),roles:e.participant.roles||[],muteStates:e.participant.muteStates||{},unmuteOptions:e.participant.unmuteOptions||[],observedIds:e.participant.observedIds||[]}))),i.state=j.CALLED,i.mediaSettings=Se((r=e.participant)==null?void 0:r.mediaSettings),i.participantState=v.mapParticipantState(e.participant),i.roles=((a=e.participant)==null?void 0:a.roles)||[],this._setParticipantsStatus([i],Y.WAITING),this._state==="ACTIVE"&&this._transport&&this._transport.allocate(i.id,!0),f.onParticipantAdded(i.externalId,i.markers),this._changeRemoteMediaSettings(t,i.mediaSettings),this._changeRemoteParticipantState(t,i.participantState),this._invokeRolesChangedCallbackIfNeeded(i)})}_onJoinedParticipant(e){return o(this,null,function*(){var r,a;c.debug(`Participant joined [${e.participantId}]`);let t=v.composeMessageId(e),i=this._participants[t];if(i&&i.state===j.ACCEPTED){c.warn(`Participant [${t}] is already in conversation and is active`);return}i||(i=this._registerParticipantInCache(yield this._createParticipant({id:t,externalId:e.participant.externalId&&ge.fromSignaling(e.participant.externalId,e.participant.deviceIdx||0),mediaSettings:Se(e.participant.mediaSettings),state:e.participant.state,participantState:v.mapParticipantState(e.participant),roles:e.participant.roles||[],muteStates:e.participant.muteStates||{},movieShareInfos:e.participant.movieShareInfos,unmuteOptions:e.participant.unmuteOptions||[],observedIds:e.participant.observedIds||[],markers:this._denormalizeMarkers(t,e.participant.markers)}))),this._conversation&&this._conversation.direction===Qe.OUTGOING&&(this._state==="IDLE"||this._state==="PROCESSING")&&(this._state="ACTIVE",this._changeFeatureSet()),i.state=j.ACCEPTED,i.mediaSettings=Se(e.mediaSettings),i.participantState=v.mapParticipantState(e.participant),i.roles=e.participant.roles||[],((r=this._transport)==null?void 0:r.isAllocated(i.id))?this._setParticipantsStatus([i],Y.CONNECTED):this._setParticipantsStatus([i],Y.WAITING),this._state==="ACTIVE"&&this._transport&&(this._transport.isAllocated(i.id)||this._transport.allocate(i.id,!0),this._transport.open([i.id],null,!!((a=this._conversation)==null?void 0:a.observer))),f.onParticipantJoined(i.externalId,i.markers),this._changeRemoteMediaSettings(t,i.mediaSettings),this._changeRemoteParticipantState(t,i.participantState),this._invokeRolesChangedCallbackIfNeeded(i),f.onMuteStates(i.muteStates,i.unmuteOptions,Object.keys(i.muteStates),!1,!1,i.externalId,void 0,!0),yield this._processSharedMovieInfos(i.movieShareInfos)})}_onClosedConversation(e){this._toggleJoinAvailability(),this._close(new U(e.reason,{remote:!0}))}_onMediaSettingsChanged(e){return o(this,null,function*(){let t=v.composeMessageId(e);yield this._registerParticipantAndSetMarkersIfChunkEnabled(t,e.markers),this._changeRemoteMediaSettings(t,Se(e.mediaSettings))})}_onParticipantStateChanged(e){return o(this,null,function*(){let t=v.composeMessageId(e);yield this._registerParticipantAndSetMarkersIfChunkEnabled(t,e.markers),this._changeRemoteParticipantState(t,v.mapParticipantState(e))})}_onNeedRate(){this._conversation&&(this._conversation.needRate=!0,this._changeNeedRate())}_onFeatureSetChanged(e){this._conversation&&(this._conversation.features=e.features,this._conversation.featuresPerRole=e.featuresPerRole,this._changeFeatureSet())}_onMultipartyChatCreated(e){this._conversation&&(this._conversation.chatId=e.chatId,this._toggleJoinAvailability(),f.onMultipartyChatCreated(this._conversation))}_onForceMediaSettingsChange(e){return o(this,null,function*(){if(!this._mediaSource)return;let t=this._mediaSource.getMediaSettings(),i=Se(e.mediaSettings);t.isAudioEnabled!==i.isAudioEnabled&&(yield this._mediaSource.toggleAudio(i.isAudioEnabled)),t.isVideoEnabled!==i.isVideoEnabled&&(yield this._mediaSource.toggleVideo(i.isVideoEnabled)),l.consumerScreenTrack&&t.isScreenSharingEnabled!==i.isScreenSharingEnabled&&(yield this._mediaSource.toggleScreenCapturing(i.isScreenSharingEnabled,i.isAudioSharingEnabled))})}_onSettingsUpdate(e){c.debug("Got settings update notification",e);let t={camera:e.camera,screenSharing:e.screenSharing};this._serverSettings=or(this._serverSettings,t),this._transport&&this._transport.updateSettings(this._serverSettings)}_onVideoQualityUpdate(e){c.debug("Got video quality update notification",e);let t=Math.round(e.quality.maxBitrate/1024),i=e.quality.maxDimension,r={camera:Object.assign({},this._serverSettings.camera,{maxBitrateK:t,maxDimension:i}),screenSharing:null};this._serverSettings=or(this._serverSettings,r),this._transport&&this._transport.updateSettings(this._serverSettings)}_onPeerRegistered(e){let t=v.composeMessageId(e);this._participants[t]&&(this._participants[t].clientType=e.clientType,this._participants[t].platform=e.platform)}_onMicSwitched(e){return o(this,null,function*(){f.onDeviceSwitched(le.AUDIO,!e.mute),yield this.toggleLocalAudio(!e.mute)})}_onChatMessage(e){return o(this,null,function*(){let t=v.composeMessageId(e),i;this._participants[t]?i=this._participants[t].externalId:i=yield this._getParticipantId(t),f.onChatMessage(e.message,i,e.direct)})}_onCustomData(e){return o(this,null,function*(){if(e.data.hasOwnProperty("sdk"))return;let t=v.composeMessageId(e),i;this._participants[t]?i=this._participants[t].externalId:i=yield this._getParticipantId(t),f.onCustomData(e.data,i,e.direct)})}_onRecordInfo(e){return o(this,null,function*(){var i;if(!this._conversation)return;let t=!1;if(!this._conversation.recordInfo!=!e?t=!0:this._conversation.recordInfo&&e&&(t=this._conversation.recordInfo.recordMovieId!==e.recordMovieId),t)if(e){let r=yield this._getParticipantId(e.initiator);f.onRecordStarted(r,e.recordMovieId,e.recordStartTime,e.recordType,e.recordExternalMovieId,e.recordExternalOwnerId)}else f.onRecordStopped();this._conversation.recordInfo=e,e&&this._transport.getTopology()===ce.SERVER&&this._participantState!==j.CALLED&&this._transport.open(this._transport.allocated(),null,!!((i=this._conversation)==null?void 0:i.observer),!0)})}_onAsrInfo(e){return o(this,null,function*(){if(!this._conversation)return;let t=!1;if(!this._conversation.asrInfo!=!e?t=!0:this._conversation.asrInfo&&e&&(t=this._conversation.asrInfo.movieId!==e.movieId),t)if(e){let i=yield this._getParticipantId(e.initiatorId);f.onAsrStarted(i,e.movieId)}else f.onAsrStopped();this._conversation.asrInfo=e})}_onRolesChanged(e,t){if(this._conversation&&this._isMe(e)&&!xt(this._conversation.roles,t)){c.debug(`Local roles changed: ${t}`),this._conversation.roles=t,f.onLocalRolesChanged(t),this._processMuteState({mediaOptions:Pt(this._conversation.muteStates,Ue.MUTE_PERMANENT),stateUpdated:!0});return}let i=this._participants[e];i&&!xt(i.roles,t)&&(c.debug(`Roles for participant [${e}] changed: ${t}`),i.roles=t,f.onRolesChanged(i.externalId,t))}_onMuteParticipant(e,t=null){return o(this,null,function*(){if(!this._conversation)return;let i=e.muteStates||{},r=e.unmuteOptions||[],a=e.mediaOptions||[],s=e.adminId?this._participants[e.adminId]:null;if(e.participantId&&!this._isMe(e.participantId)){if(!this._isCallAdmin()){c.warn(`Not admin got mute states for participant [${e.participantId}]`);return}let d=this._participants[e.participantId];d&&(c.debug(`Mute states for participant [${e.participantId}] changed`,i),f.onMuteStates(i,r,a,e.muteAll,e.unmute,d.externalId,s==null?void 0:s.externalId,e.stateUpdated,e.requestedMedia,e.roomId));return}if(!(v.isObjectsEquals(this._conversation.muteStates,i)&&v.isArraysEquals(this._conversation.unmuteOptions,r)&&!a.length)){if(this._conversation.muteStates=i,this._conversation.unmuteOptions=r,this._isMe(e.adminId)){e.muteAll&&f.onMuteStates(i,r,a,e.muteAll,e.unmute,null,this._conversation.externalId,e.stateUpdated,e.requestedMedia,e.roomId);return}yield this._processMuteState({mediaOptions:a,muteAll:e.muteAll,unmute:e.unmute,serverSettings:t,admin:s,stateUpdated:e.stateUpdated,requestedMedia:e.requestedMedia,roomId:e.roomId})}})}applyMuteStates(e,t,i){return o(this,null,function*(){let r={muteStates:e,mediaOptions:t,roomId:i,stateUpdated:!0};yield this._onMuteParticipant(r)})}_processMuteState(u){return o(this,arguments,function*({mediaOptions:e=[],muteAll:t=!1,unmute:i=!1,serverSettings:r=null,admin:a=null,stateUpdated:s,requestedMedia:d,roomId:p}){if(!this._conversation||!this._mediaSource||this._participantState!==j.ACCEPTED)return;let S=Object.assign({},this._conversation.muteStates),C=this._conversation.unmuteOptions,R=this._mediaSource.getMediaSettings(),P=Object.entries(S);for(let[B,q]of P)if(!(q!==Ue.MUTE&&q!==Ue.MUTE_PERMANENT)&&(this._isCallAdmin()&&q===Ue.MUTE_PERMANENT&&!t&&(S[B]=Ue.MUTE),!(!e.includes(B)||i)))switch(B){case le.VIDEO:R.isVideoEnabled&&!(r==null?void 0:r.isVideoEnabled)&&(f.onDeviceSwitched(le.VIDEO,!1),yield this.toggleLocalVideo(!1));break;case le.AUDIO:R.isAudioEnabled&&!(r==null?void 0:r.isAudioEnabled)&&(f.onDeviceSwitched(le.AUDIO,!1),yield this.toggleLocalAudio(!1));break;case le.SCREEN_SHARING:R.isScreenSharingEnabled&&!(r==null?void 0:r.isScreenSharingEnabled)&&(f.onDeviceSwitched(le.SCREEN_SHARING,!1),yield this.toggleScreenCapturing(!1,!1));break;case le.AUDIO_SHARING:R.isAudioSharingEnabled&&!(r==null?void 0:r.isAudioSharingEnabled)&&(f.onDeviceSwitched(le.AUDIO_SHARING,!1),yield this.toggleScreenCapturing(R.isScreenSharingEnabled,!1));break}f.onMuteStates(S,C,e,t,i,null,a==null?void 0:a.externalId,s,d,p)})}_onPinParticipant(e,t=!1,i){return o(this,null,function*(){if(!this._conversation)return;let r=this._conversation.pinnedParticipantId;if(r&&r!==e)if(this._isMe(r))f.onLocalPin(!0);else{let a=yield this._getExternalIdByParticipantId(r);a&&f.onPinnedParticipant(a,!0,this._denormalizeMarkers(e,i))}if(this._isMe(e))f.onLocalPin(t);else{let a=yield this._getExternalIdByParticipantId(e);a&&f.onPinnedParticipant(a,t,this._denormalizeMarkers(e,i))}this._conversation.pinnedParticipantId=t?null:e})}_onOptionsChanged(e){this._conversation&&!br(this._conversation.options,e)&&(this._conversation.options=e,f.onOptionsChanged(e))}_onNetworkStatus(e){if(this._conversation){let t=[];for(let[i,r]of Object.entries(e)){let a;if(this._isMe(i)||i==="")a=this._conversation.networkRating;else if(this._participants[i])a=this._participants[i].networkRating;else continue;if(a!==r)if(this._isMe(i)||i==="")this._conversation.networkRating=r,f.onLocalNetworkStatusChanged(r);else{let s=this._participants[i];s.networkRating=r,t.push({uid:s.externalId,rating:r})}}if(t.length===0)return;c.log("Received network status update: ",e),f.onNetworkStatusChanged(t)}}_onRemoteStreamSecond(e,t){let i=this._participants[e];if(!!i){if(l.producerScreenTrack){f.onRemoteScreenStream(i.externalId,t);return}if(i.secondStream=t,l.videoTracksCount>0){let r=e;if(!this._streamIdByStreamDescription.has(r)){c.error("Received remote stream notification for a participant that has no track associated with it",r);return}let a=this._streamIdByStreamDescription.get(r);if(!a||this._streamWaitTimerByStreamDescription.has(r)){c.log("Delaying secondary stream start/stop until main stream becomes available",r);return}let s=this._streamByStreamId.get(a);if(!s){g.log(T.PAT_ERROR,"streamNotFound"),c.error(`Could not find stream by ID: ${a}`);return}f.onRemoteStream(i.externalId,i.secondStream||s)}else{let r=t||i.remoteStream;r&&f.onRemoteStream(i.externalId,r)}}}_onPeerConnectionClosed(e){e===ce.SERVER&&this._cleanupParticipantAgnosticStreams()}_changeFeatureSet(){if(this._conversation){let e=this._state==="ACTIVE",t=this._conversation.features.includes(ki.ADD_PARTICIPANT);f.onCallState(e,t,this._conversation)}}_changeNeedRate(){this._conversation&&this._conversation.needRate&&f.onRateNeeded()}_onVolumesDetected(e){let t=[];for(let[i,r]of Object.entries(e)){let a=this._participants[i];a&&a.externalId&&t.push({uid:a.externalId,volume:r.real})}f.onVolumesDetected(t)}_onSpeakerChanged(e){this._activeSpeakerId=e,this._participants[e]&&this._lastSignalledActiveSpeakerId!==e&&(f.onSpeakerChanged(this._participants[e].externalId),this._lastSignalledActiveSpeakerId=e)}_onTransportStateChanged(e,t){return o(this,null,function*(){c.debug(`Transport state has changed: ${t}`,e);let i=this._getStatusByTransportState(t);if(!i)return;let r=e.reduce((a,s)=>{if(s in this._participants){let d=this._participants[s];a.push(d),t===V.CONNECTED&&(d.remoteStream||(d.mediaSettings&&this._changeRemoteMediaSettings(s,d.mediaSettings),this._changeRemoteParticipantState(s,d.participantState)),this._updateDisplayLayoutFromCache(s))}else this._warnParticipantNotInConversation(s);return a},[]);!r.length||this._setParticipantsStatus(r,i)})}_onTransportLocalStateChanged(e){return o(this,null,function*(){var t;if(c.debug(`Local transport state has changed: ${e}`),e===V.CONNECTED&&(f.onLocalStatus(Y.CONNECTED),((t=this._transport)==null?void 0:t.getTopology())===ce.SERVER)){let i=Object.values(this._myLastRequestedLayouts);yield this.updateDisplayLayout(i)}e===V.CONNECTING&&f.onLocalStatus(Y.CONNECTING),e===V.RECONNECTING&&f.onLocalStatus(Y.RECONNECT),e===V.FAILED&&this._transport&&this._transport.allocated().length===0&&(this._signaling.ready&&(yield this._signaling.hangup(k.FAILED)),this._close(new U(k.FAILED),"Transport failed"))})}_onRemoteTrackAdded(e,t,i){return o(this,null,function*(){if(e.endsWith(Be.AUDIO_MIX))c.debug("Remote audio mix track added"),this._audioOutput.add(i),f.onRemoteMixedAudioStream(t);else if(e.startsWith(Be.PARTICIPANT_AGNOSTIC_TRACK_PREFIX))c.debug(`Participant-agnostic track added: ${e}`),this._streamByStreamId.set(e,t);else{c.debug(`Remote track added on the participant [${e}]`,{kind:i.kind});let r=this._participants[e];if(r||(c.warn(`Conversation: track added before participant [${e}]`),r=this._registerParticipantInCache(yield this._createParticipant({id:e})),this._setParticipantsStatus([r],Y.WAITING),this._activeSpeakerId===e&&this._lastSignalledActiveSpeakerId!==e&&(f.onSpeakerChanged(r.externalId),this._lastSignalledActiveSpeakerId=e)),this._transport&&!this._transport.isAllocated(r.id)&&this._transport.allocate(r.id,!1),i.kind===ue.audio&&(this._audioOutput.add(i),l.preserveAudioTracks||t.removeTrack(i)),r.remoteStream!==t){if(r.remoteStream=t,r.secondStream)return;f.onRemoteStream(r.externalId,t)}r.mediaSettings&&this._changeRemoteMediaSettings(e,r.mediaSettings),l.batchParticipantsOnStart||this._changeRemoteParticipantState(e,r.participantState)}})}_onRemoteTrackRemoved(e,t,i){switch(c.debug(`[${e}] remote track (removed)`,{track:i}),i.kind){case ue.audio:this._removeAudioTrack(e,t,i);break;case ue.video:case ue.screen:this._removeVideoTrack(e,t,i);break}}_removeAudioTrack(e,t,i){if(e!==Be.AUDIO_MIX){let r=this._participants[e];if(!r||r.remoteStream&&r.remoteStream!==t)return}this._audioOutput.remove(i)}_removeVideoTrack(e,t,i){}_onTopologyChanged(e){e===ce.DIRECT&&(this._onRemoteSignalledStall([]),this._onRemoteAllStall(!1)),this._conversation&&(this._conversation.topology=e,this._changeFeatureSet())}_onRemoteAllStall(e){if(this._remoteAllStalled===e)return;this._remoteAllStalled=e;let t=[],i=[];for(let r in this._participants)if(this._participants.hasOwnProperty(r)){let a=this._participants[r];e||this._lastStalled[r]?t.push(a):i.push(a)}t.length&&this._setParticipantsStatus(t,Y.RECONNECT),i.length&&this._setParticipantsStatus(i,Y.CONNECTED)}_onRemoteSignalledStall(e){let t={},i=[],r=[];e.forEach(a=>{if(t[a]=!0,!this._lastStalled[a]){let s=this._participants[a];s&&!this._remoteAllStalled&&i.push(s)}delete this._lastStalled[a]}),Object.keys(this._lastStalled).forEach(a=>{let s=this._participants[a];s&&!this._remoteAllStalled&&r.push(s)}),i.length&&this._setParticipantsStatus(i,Y.RECONNECT),r.length&&this._setParticipantsStatus(r,Y.CONNECTED),this._lastStalled=t}_onRemoteDataStats(e){this._debugInfo&&this._debugInfo.onRemoteDataStats(e,this._participants),this._fixAudioDevice(e.outbound.rtps)}_fixAudioDevice(e){var t;!M.hasMicrophone()||!this._audioFix||!((t=this._mediaSource)==null?void 0:t.getMediaSettings().isAudioEnabled)||this._audioFix.fix(e)}_toggleJoinAvailability(){let e=this._conversation&&this._conversation.chatId,t=e&&this._state!=="CLOSE"||!1;e&&(c.debug("Toggle join availability",{available:t,chatId:e}),f.onJoinStatus(t,e))}_updateDisplayLayoutFromCache(e){return o(this,null,function*(){var i;if(((i=this._transport)==null?void 0:i.getTopology())!==ce.SERVER)return;let t=this._participants[e];t&&t.lastRequestedLayouts&&Object.keys(t.lastRequestedLayouts).length&&(yield this.updateDisplayLayout(Object.values(t.lastRequestedLayouts)))})}_setParticipantsStatus(e,t,i=null){if(c.debug("Set participants status",{participants:e,status:t,data:i}),!e.length)return;let r=e.reduce((a,s)=>(s.status!==t&&(s.status=t,l.batchParticipantsOnStart?a.push(s.externalId):f.onParticipantStatus(s.externalId,t,i)),a),[]);!r.length||l.batchParticipantsOnStart&&f.onRemoteStatus(r,t,i)}_onJoinLinkChanged(e){f.onJoinLinkChanged(e.joinLink)}_onRoomsUpdated(e){return o(this,null,function*(){var i,r;let t={};for(let a of Object.keys(wi)){let s=e.updates[a];!s||(t[a]={rooms:yield Promise.all(((r=(i=s==null?void 0:s.rooms)==null?void 0:i.map)==null?void 0:r.call(i,this._convertRoomToExternal.bind(this)))||[]),roomIds:s==null?void 0:s.roomIds,deactivated:s==null?void 0:s.deactivated})}f.onRoomsUpdated(t)})}_onRoomUpdated(e){return o(this,null,function*(){let t=yield this._convertRoomToExternal(e.room);f.onRoomUpdated(e.events,e.roomId,t,e.deactivate)})}_convertRoomToExternal(e){return o(this,null,function*(){var a,s,d,p,u,S;if(!e)return null;let[t,i,r]=yield Promise.all([Promise.all(((s=(a=e==null?void 0:e.participantIds)==null?void 0:a.map)==null?void 0:s.call(a,this._getExternalIdByParticipantId.bind(this)))||[]),Promise.all(((p=(d=e==null?void 0:e.addParticipantIds)==null?void 0:d.map)==null?void 0:p.call(d,this._getExternalIdByParticipantId.bind(this)))||[]),Promise.all(((S=(u=e==null?void 0:e.removeParticipantIds)==null?void 0:u.map)==null?void 0:S.call(u,this._getExternalIdByParticipantId.bind(this)))||[])]);return{id:e.id,name:e.name,participantCount:e.participantCount,participantIds:t,addParticipantIds:i,removeParticipantIds:r,participants:e.participants,active:e.active}})}_onRoomParticipantsUpdated(e){return o(this,null,function*(){var p,u,S,C,R;let t=this._transport.getState(),[i,r]=yield Promise.all([Promise.all(((u=(p=e.addedParticipantIds)==null?void 0:p.map)==null?void 0:u.call(p,this._getExternalIdByParticipantId.bind(this)))||[]),Promise.all(((C=(S=e==null?void 0:e.addedParticipants)==null?void 0:S.map)==null?void 0:C.call(S,P=>o(this,null,function*(){var q;let B=v.composeId(P);return this._createParticipant({id:B,externalId:P.externalId&&ge.fromSignaling(P.externalId,P.deviceIdx||0),mediaSettings:Se(P.mediaSettings),participantState:v.mapParticipantState(P),state:P.state,roles:P.roles||[],status:(q=this._getStatusByTransportState(t))!=null?q:Y.WAITING,muteStates:P.muteStates||{},unmuteOptions:P.unmuteOptions||[],observedIds:P.observedIds||[],markers:this._denormalizeMarkers(B,P.markers)})})))||[])]);for(let P of r)this._registerParticipantInCache(P),this._state==="ACTIVE"&&this._transport&&(this._transport.isAllocated(P.id)||this._transport.allocate(P.id,!0),this._transport.open([P.id],null,!!((R=this._conversation)==null?void 0:R.observer)));let a=[],s=[];if(e==null?void 0:e.removedParticipantMarkers){for(let P of e.removedParticipantMarkers)P.GRID&&s.push(this._getExternalIdByParticipantId(P.GRID.id));a=yield Promise.all(s)}let d={roomId:e.roomId,participantCount:e.participantCount,addedParticipantIds:i,addedParticipants:v.mapSharedParticipants(r),removedParticipantMarkers:e==null?void 0:e.removedParticipantMarkers,removedParticipantIds:a};f.onRoomParticipantsUpdated(d)})}_onFeedback(e){return o(this,null,function*(){let t=a=>o(this,null,function*(){return(yield this._registerParticipantAndSetMarkersIfChunkEnabled(a)).externalId}),i=e.feedback.map(a=>o(this,null,function*(){let s=a.items.map(p=>o(this,null,function*(){if(p.participantId===this._conversation.compositeUserId)return Promise.resolve(ht(Ne({},p),{participantId:this._conversation.externalId}));let u=yield t(p.participantId);return ht(Ne({},p),{participantId:u})})),d=yield Promise.all(s);return ht(Ne({},a),{items:d})})),r=yield Promise.all(i);f.onFeedback(r)})}_isMe(e){var t;return e===((t=this._conversation)==null?void 0:t.compositeUserId)}},L=W;L._delayedHangup=!1;var Ii=class extends Error{constructor(e,t){super(e);Object.setPrototypeOf(this,Ii.prototype),this.participantErrors=t}};var bt,zt=null;function Yn(){return o(this,null,function*(){var n;if(l.apiEnv!=="AUTO")return l.apiEndpoint;try{let e=atob("aHR0cHM6Ly9kbnMuZ29vZ2xlL3Jlc29sdmU/bmFtZT12aWRlby5fZW5kcG9pbnQub2sucnUmdHlwZT1UWFQ="),i=yield(yield fetch(e,{method:"GET",mode:"cors",cache:"no-cache"})).json(),r=(n=i==null?void 0:i.Answer[0])==null?void 0:n.data;if(!r)throw new Error("Wrong DNS response");return c.debug("Resolved API endpoint",r),r}catch(e){return c.warn("Failed to resolve API endpoint using DNS, default is used",e),l.apiEndpoint}})}function Pa(){return o(this,null,function*(){return bt||zt||(zt=Yn(),bt=yield zt,zt=null,bt)})}function ba(){if(!l.apiKey)throw new U(oe.API,{message:"Required argument apiAppKey not passed"})}function hr(i){return o(this,arguments,function*(n,e={},t=!1){if(!window.Blob||!window.navigator.sendBeacon)return;yield Pa();let r=Aa(n,e,t),a=new window.Blob([r],{type:"application/x-www-form-urlencoded"});window.navigator.sendBeacon(`${bt}/fb.do`,a)})}function Ma(i){return o(this,arguments,function*(n,e={},t=!1){yield Pa();let r=Aa(n,e,t);return Qn(r)})}function Qn(n){return o(this,null,function*(){return new Promise((e,t)=>{let i=new XMLHttpRequest;i.open("POST",`${bt}/fb.do`,!0),i.setRequestHeader("Content-type","application/x-www-form-urlencoded"),i.onreadystatechange=()=>{if(i.readyState!==XMLHttpRequest.DONE)return;let r;try{r=JSON.parse(i.responseText)}catch(a){r={result:i.responseText}}i.status!==200||r.hasOwnProperty("error_msg")?t(r):e(r)},i.send(n)})})}function Aa(n,e={},t=!1){e.method=n,e.format="JSON",e.application_key||(e.application_key=l.apiKey),t||(ne.sessionKey?e.session_key=ne.sessionKey:ne.accessToken&&(e.access_token=ne.accessToken));for(let[r,a]of Object.entries(e))typeof a=="object"&&(e[r]=JSON.stringify(a));let i="";for(let[r,a]of Object.entries(e))i&&(i+="&"),i+=`${r}=${encodeURIComponent(a)}`;return i}var Zn=10,es=700,ts=3e3,Ti=class extends kt{constructor(){super(...arguments);this._userId=null;this._externalUidsCache={}}_callUnsafe(r){return o(this,arguments,function*(e,t={},i=!1){let a=s=>o(this,null,function*(){try{return yield Ma(e,t,i)}catch(d){if(!d.hasOwnProperty("error_msg")&&(s++,c.debug(`${e} network error, attempt ${s}...`),s<Zn))return yield v.delay(Math.min(s*es,ts)),a(s);throw c.warn(e,"error",d),d}});return a(0)})}_call(r){return o(this,arguments,function*(e,t={},i=!1){try{return yield this._callUnsafe(e,t,i)}catch(a){c.warn("Api call error",a);let s=oe.API;switch(a.error_code){case 102:case 103:case 104:return yield this.authorize(),this._callUnsafe(e,t,i);case 1101:s=k.SERVICE_DISABLED;break;case 1102:s=k.CALLEE_IS_OFFLINE;break;case 1103:s=k.NOT_FRIENDS;break;case 1104:case 1106:s=k.EXTERNAL_API_ERROR;break;case 1113:s=k.CALLER_IS_REJECTED;break}throw new U(s,{message:a.error_msg,code:a.error_code})}})}userId(e){return o(this,null,function*(){let t=v.decomposeId(e).id;return ne.isEmpty()?ve.fromId(String(t)):(this._externalUidsCache.hasOwnProperty(t)||Object.assign(this._externalUidsCache,yield this._getExternalIdsByOkIds([t])),ve.fromString(this._externalUidsCache[t]))})}prepareUserIds(e){return o(this,null,function*(){ne.isEmpty()||Object.assign(this._externalUidsCache,yield this._getExternalIdsByOkIds(e))})}authorize(){return o(this,null,function*(){if(!this._uuid){let t=Xe.get("uuid");t||(t=v.uuid(),Xe.set("uuid",t)),this._uuid=String(t)}let e={session_data:{version:2,device_id:this._uuid,client_version:l.appVersion,client_type:"SDK_JS"}};return l.authToken&&(e.session_data.auth_token=l.authToken,e.session_data.version=3),this._callUnsafe("auth.anonymLogin",e,!0).then(t=>{t.uid&&(this._userId=Number(t.uid)),ne.sessionKey=t.session_key,ne.sessionSecretKey=t.session_secret_key}).catch(t=>{throw t.error_code===401&&f.onTokenExpired(),new U(oe.AUTH,{message:t.error_msg,code:t.error_code})})})}log(e){let t={collector:"ok.mobile.apps.video",data:JSON.stringify({application:`${l.appName}:${l.sdkVersion}`,platform:l.platform,items:e})};hr("log.externalLog",t)}init(){ba()}joinConversation(e,t=!1,i){return o(this,null,function*(){let r={conversationId:e,isVideo:t,protocolVersion:l.protocolVersion};return i&&(r.chatId=i),this._call("vchat.joinConversation",r)})}createConversation(a){return o(this,arguments,function*(e,t="",i=!1,{onlyAdminCanShareMovie:r}={}){let s=this._preareStartConversationData({conversationId:e,isVideo:!1,joiningAllowed:!0,payload:t,requireAuthToJoin:i,onlyAdminCanShareMovie:r});return this._startConversation(s)})}startConversation(u,S,C){return o(this,arguments,function*(e,t,i,r=!1,a="",s=!1,d=!1,{onlyAdminCanShareMovie:p}={}){let R=this._preareStartConversationData({conversationId:e,isVideo:r,joiningAllowed:s,payload:a,requireAuthToJoin:d,onlyAdminCanShareMovie:p});if(t&&t.length)switch(i){case Je.USER:R.uids=t.join(",");break;case Je.GROUP:R.gid=t[0];break;case Je.CHAT:R.chatId=t[0];break}return this._startConversation(R)})}_preareStartConversationData({conversationId:e,isVideo:t,payload:i="",joiningAllowed:r=!1,requireAuthToJoin:a=!1,onlyAdminCanShareMovie:s}){let d={conversationId:e,isVideo:t,protocolVersion:l.protocolVersion};return r&&(d.createJoinLink=!0),i&&(d.payload=i),l.domain&&(d.domainId=l.domain),l.externalDomain&&(d.externalDomain=l.externalDomain),a&&(d.requireAuthToJoin=!0),s!==void 0&&(d.onlyAdminCanShareMovie=s),d}_startConversation(e){return o(this,null,function*(){return this._call("vchat.startConversation",e)})}createJoinLink(e){return o(this,null,function*(){return this._call("vchat.createJoinLink",{conversationId:e})})}removeJoinLink(e){return o(this,null,function*(){return this._call("vchat.removeJoinLink",{conversationId:e})})}getAnonymTokenByLink(e,t){return o(this,null,function*(){let i={joinLink:e};t&&(i.anonymName=t);let r=yield this._call("vchat.getAnonymTokenByLink",i);return this._userId=Number(r.uid),r.token})}joinConversationByLink(e,t=!1,i,r){return o(this,null,function*(){let a={joinLink:e,isVideo:t,protocolVersion:l.protocolVersion};return(i==null?void 0:i.length)&&(a.observedIds=i.join(",")),l.anonymToken&&(a.anonymToken=l.anonymToken),r&&(a.payload=r),this._call("vchat.joinConversationByLink",a)})}getOkIdsByExternalIds(e){return o(this,null,function*(){let t=ve.fromIds(e),i=[],r={methods:[]},a=[],s=Object.keys(this._externalUidsCache),d=Object.values(this._externalUidsCache);for(let u of t){let S=ve.toString(u),C=d.indexOf(S);C>-1?i.push(Number(s[C])):(a.push(S),r.methods.push({"vchat.getOkIdByExternalId":{params:{externalId:u.id,anonym:u.type===Rt.ANONYM},onError:"SKIP"}}))}return r.methods.length&&(yield this._call("batch.executeV2",r)).forEach((u,S)=>{if(u.ok){let C=Number(u.ok.ok_id);this._externalUidsCache[C]=a[S],i.push(C)}}),i})}getExternalIdsByOkIds(e){return o(this,null,function*(){let t=[],i=[];for(let a of e)this._externalUidsCache.hasOwnProperty(a)?t.push(ve.fromString(this._externalUidsCache[a])):i.push(a);if(!i.length)return t;let r=yield this._getExternalIdsByOkIds(i);Object.assign(this._externalUidsCache,r);for(let a of i)r.hasOwnProperty(a)&&t.push(ve.fromString(r[a]));return t})}getCachedOkIdByExternalId(e){let t=Object.keys(this._externalUidsCache),i=Object.values(this._externalUidsCache),r=ve.toString(e),a=i.indexOf(r);return a>-1?v.composeUserId(t[a],ee.USER):null}cacheExternalId(e,t){let i=v.decomposeId(e).id;this._externalUidsCache[i]=ve.toString(t)}getConversationParams(e){return o(this,null,function*(){let t={};return l.anonymToken&&(t.anonymToken=l.anonymToken),e&&(t.conversationId=e),this._call("vchat.getConversationParams",t)})}getUserId(){return this._userId}setUserId(e){this._userId=e}hangupConversation(e){let t={conversationId:e,reason:k.HUNGUP};l.anonymToken&&(t.anonymToken=l.anonymToken),hr("vchat.hangupConversation",t)}removeHistoryRecords(e){return o(this,null,function*(){yield this._call("vchat.removeHistoryRecords",{recordIds:e.join(",")})})}cleanup(){}_getExternalIdsByOkIds(e){return o(this,null,function*(){let t={};try{let i=yield this._call("vchat.getExternalIdsByOkIds",{uids:e.join(",")});if(i.external_ids)for(let[r,a]of Object.entries(i.external_ids))t[r]=ve.fromIdToString(a,Rt.USER);if(i.anonym_ids)for(let[r,a]of Object.entries(i.anonym_ids))t[r]=ve.fromIdToString(a,Rt.ANONYM);return t}catch(i){return t}})}};import{Any as rs,Arr as ka,Int as J,Nil as lt,Str as as}from"messagepack";var Da=(w=>(w.RECOVER="recover",w.ACCEPT_CALL="accept-call",w.ADD_PARTICIPANT="add-participant",w.REMOVE_PARTICIPANT="remove-participant",w.HANGUP="hangup",w.TRANSMIT_DATA="transmit-data",w.ACCEPT_PRODUCER="accept-producer",w.ALLOCATE_CONSUMER="allocate-consumer",w.CHANGE_MEDIA_SETTINGS="change-media-settings",w.CHANGE_PARTICIPANT_STATE="change-participant-state",w.CHANGE_STREAM_PRIORITIES="change-streams-priorities",w.UPDATE_DISPLAY_LAYOUT="update-display-layout",w.REPORT_PERF_STAT="report-perf-stat",w.REPORT_SHARING_STAT="report-sharing-stat",w.RECORD_START="record-start",w.RECORD_STOP="record-stop",w.RECORD_SET_ROLE="record-set-role",w.RECORD_GET_STATUS="record-get-status",w.SWITCH_MICRO="switch-micro",w.SWITCH_TOPOLOGY="switch-topology",w.REQUEST_REALLOC="request-realloc",w.CHAT_MESSAGE="chat-message",w.CHAT_HISTORY="chat-history",w.CUSTOM_DATA="custom-data",w.GRANT_ROLES="grant-roles",w.MUTE_PARTICIPANT="mute-participant",w.ENABLE_FEATURE_FOR_ROLES="enable-feature-for-roles",w.PIN_PARTICIPANT="pin-participant",w.UPDATE_MEDIA_MODIFIERS="update-media-modifiers",w.CHANGE_OPTIONS="change-options",w.GET_WAITING_HALL="get-waiting-hall",w.GET_PARTICIPANT_LIST_CHUNK="get-participant-list-chunk",w.GET_PARTICIPANTS="get-participants",w.PROMOTE_PARTICIPANT="promote-participant",w.REQUEST_TEST_MODE="request-test-mode",w.ADD_MOVIE="add-movie",w.UPDATE_MOVIE="update-movie",w.REMOVE_MOVIE="remove-movie",w.GET_ROOMS="get_rooms",w.GET_ROOM="get_room",w.UPDATE_ROOMS="update-rooms",w.ACTIVATE_ROOMS="activate-rooms",w.REMOVE_ROOMS="remove-rooms",w.SWITCH_ROOM="switch-room",w.FEEDBACK="feedback",w.ASR_START="asr-start",w.ASR_STOP="asr-stop",w))(Da||{}),x=Da;function Yt(){let n=new DataView(new ArrayBuffer(64)),e=0;function t(i){if(e+i>n.byteLength){let r=new Uint8Array(Math.max(e+i,n.byteLength+64));r.set(new Uint8Array(n.buffer.slice(0,e))),n=new DataView(r.buffer)}}return{put(i){if(t(i.byteLength),is(i)){let r=i.buffer;new Uint8Array(n.buffer).set(new Uint8Array(r),e)}else new Uint8Array(n.buffer).set(new Uint8Array(i),e);e+=i.byteLength},putI8(i){t(1),n.setInt8(e,i),++e},putI16(i){t(2),n.setInt16(e,i),e+=2},putI32(i){t(4),n.setInt32(e,i),e+=4},putI64(i){t(8);let r=i<0;r&&(i=-i);let a=i/4294967296|0,s=i%4294967296|0;r&&(s=~s+1|0,a=s===0?~a+1|0:~a),n.setUint32(e,a),n.setUint32(e+4,s),e+=8},putUi8(i){t(1),n.setUint8(e,i),++e},putUi16(i){t(2),n.setUint16(e,i),e+=2},putUi32(i){t(4),n.setUint32(e,i),e+=4},putUi64(i){t(8),n.setUint32(e,i/4294967296|0),n.setUint32(e+4,i%4294967296),e+=8},putF(i){t(8),n.setFloat64(e,i),e+=8},ui8array(){return new Uint8Array(n.buffer.slice(0,e))}}}function is(n){return n.buffer!==void 0}function Ci(n){let e=ArrayBuffer.isView(n)?new DataView(n.buffer,n.byteOffset,n.byteLength):new DataView(n),t=0;return{peek(){return e.getUint8(t)},get(i){t+=i;let r=e.byteOffset;return e.buffer.slice(r+t-i,r+t)},getI8(){return e.getInt8(t++)},getI16(){return t+=2,e.getInt16(t-2)},getI32(){return t+=4,e.getInt32(t-4)},getI64(){t+=8;let i=e.getInt32(t-8),r=e.getUint32(t-4);return i*4294967296+r},getUi8(){return e.getUint8(t++)},getUi16(){return t+=2,e.getUint16(t-2)},getUi32(){return t+=4,e.getUint32(t-4)},getUi64(){t+=8;let i=e.getUint32(t-8),r=e.getUint32(t-4);return i*4294967296+r},getF32(){return t+=4,e.getFloat32(t-4)},getF64(){return t+=8,e.getFloat64(t-8)}}}var Oa=0,wa=1,ns=2,ss=0,os=1,cs=2,yi=0,ds=0,ps=0,ls=1,_r=class{constructor(){this.participantIdRegistry=null}setParticipantIdRegistry(e){this.participantIdRegistry=e}serializeUpdateDisplayLayout(e,t){let i=Yt();J.enc(i,Oa),J.enc(i,yi),J.enc(i,e),lt.enc(i,null);let r=[];for(let a in t)t.hasOwnProperty(a)&&this.writeLayout(t,a,r);return ka.enc(i,r),lt.enc(i,null),i.ui8array()}writeLayout(e,t,i){let r=e[t],a=Yt();if(this.writeStreamDesc(t,a),Wt(r))J.enc(a,os);else if(nr(r))J.enc(a,cs);else if(J.enc(a,ss),r.priority!==void 0?J.enc(a,r.priority):lt.enc(a,null),r.width!==void 0&&r.height!==void 0?(J.enc(a,Math.round(r.width)),J.enc(a,Math.round(r.height))):(lt.enc(a,null),lt.enc(a,null)),r.fit!==void 0)switch(r.fit){case"cv":J.enc(a,ps);break;case"cn":J.enc(a,ls);break;default:lt.enc(a,null)}else lt.enc(a,null);i.push(a.ui8array())}writeStreamDesc(e,t){if(this.participantIdRegistry){let i=this.participantIdRegistry.getCompactId(e);if(i!==void 0){J.enc(t,i);return}}as.enc(t,e)}serializePerfStatReport(e,t){let i=Yt();return J.enc(i,wa),J.enc(i,yi),J.enc(i,e),J.enc(i,t.framesDecoded),J.enc(i,t.framesReceived),i.ui8array()}serializeSharingStatReport(e,t){let i=Yt();return J.enc(i,ns),J.enc(i,yi),J.enc(i,e),J.enc(i,t.minDelay),J.enc(i,t.maxDelay),J.enc(i,t.avgDelay),J.enc(i,t.largeDelayDuration),i.ui8array()}deserializeCommandResponse(e){return o(this,null,function*(){let t;if(e instanceof Blob){let s=Blob.prototype.arrayBuffer?yield e.arrayBuffer():yield ra(e);t=Ci(s)}else t=Ci(e);let i=J.dec(t),r=J.dec(t);if(r!==yi){c.warn("Unsupported version for command type: "+i+", version "+r);return}if(J.dec(t)!==ds){c.warn("Error code: "+i+"received for command type: "+i+", version "+r);return}switch(i){case Oa:return this.deserializeUpdateDisplayLayoutResponse(t);case wa:return this.deserializeReportPerfStatResponse(t);default:return c.warn("unsupported command response commandType: "+i),null}})}deserializeUpdateDisplayLayoutResponse(e){let t=J.dec(e),i=ka.dec(e),r={};return i.forEach(a=>{let s=Ci(a),d=rs.dec(s);if(typeof d=="string")r[d]=J.dec(s);else{let p=d,u=We(this.participantIdRegistry.getStreamDescription(p));r[u]=J.dec(s)}}),{type:"response",sequence:t,response:x.UPDATE_DISPLAY_LAYOUT.toString(),errorCodeByParticipantId:r}}deserializeReportPerfStatResponse(e){let t=J.dec(e),i=J.dec(e);return{type:"response",sequence:t,response:x.REPORT_PERF_STAT.toString(),estimatedPerformanceIndex:i}}};var xa="open",La=[()=>l.producerScreenTrack,()=>l.videoTracksCount>0,()=>!0,()=>l.filteredMessages,()=>l.consumerScreenTrack,()=>!0,()=>l.movieShare,()=>l.useParticipantListChunk,()=>l.useRooms],us=10,Oe=class extends wt{constructor(){super(...arguments);this.socket=null;this.sequence=1;this.lastStamp=0;this.websocketCommandsQueue=[];this.datachannelCommandsQueue=[];this.incomingCache=[];this.responseHandlers={};this.reconnectCount=0;this.conversationResolve=null;this.conversationReject=null;this.connected=!1;this.listenersReady=!1;this.postfix="&platform="+l.platform+"&appVersion="+l.appVersion+"&version="+l.protocolVersion+"&device="+l.device+"&capabilities="+Oe._getCapabilityFlags();this.peerId=null;this.conversationId=null;this.reconnectTimer=0;this.connectionMessageWaitTimer=0;this.doctorTimer=0;this.participantIdRegistry=null;this.producerNotificationDataChannel=null;this.producerCommandDataChannel=null;this.producerCommandDataChannelEnabled=!1;this.producerCommandSerializationService=new _r}static _getCapabilityFlags(){let e=0;for(let t=0;t<La.length;t++)La[t]()&&(e|=1<<t);return e.toString(16).toUpperCase()}get ready(){return this.socket!==null}setEndpoint(e){this.endpoint=e}setConversationId(e){this.conversationId=e}setParticipantIdRegistry(e){this.participantIdRegistry=e,this.producerCommandSerializationService.setParticipantIdRegistry(e)}setProducerNotificationDataChannel(e){this.producerNotificationDataChannel=e,this.producerNotificationDataChannel.onmessage=t=>{var r;let i=(r=this.participantIdRegistry)==null?void 0:r.handleMessage(t.data);i&&this._handleMessage(i)}}setProducerCommandDataChannel(e){this.producerCommandDataChannel=e,this.producerCommandDataChannel.onmessage=t=>{this.producerCommandSerializationService.deserializeCommandResponse(t.data).then(i=>{i&&this._handleMessage(i)}).catch(i=>{c.warn("Cannot parse message at producerCommandDataChannel",i)})},this._handleCommandsQueue(this.datachannelCommandsQueue)}useCommandDataChannel(e){this.producerCommandDataChannelEnabled=e}cleanup(){this.datachannelCommandsQueue=[]}connect(e){return o(this,null,function*(){return this.postfix+=`&clientType=${l.clientType}`,new Promise((t,i)=>{if(this.socket&&this.socket.readyState<WebSocket.CLOSING){g.log(T.SOCKET_ACTION,"already_opened"),i(Error("Socket already opened"));return}this.conversationResolve=r=>{t(r),this.conversationResolve=null,this.conversationReject=null},this.conversationReject=r=>{i(r),this.conversationResolve=null,this.conversationReject=null},this._connect(e)})})}_send(r){return o(this,arguments,function*(e,t={},i=0){if(t.participantId){let a=v.decomposeParticipantId(t.participantId),s=v.decomposeId(a.compositeUserId);t=Object.assign({},t,{participantId:s.id,participantType:s.type}),a.deviceIdx&&(t.deviceIdx=a.deviceIdx)}return this._sendRaw(e,t,i)})}_sendRaw(r){return o(this,arguments,function*(e,t={},i=0){let a=s=>{var p;if(this._isDataChannelCommand(e))this.datachannelCommandsQueue.push(s),((p=this.producerCommandDataChannel)==null?void 0:p.readyState)===xa&&this._handleCommandsQueue(this.datachannelCommandsQueue);else{if(!this.socket){g.log(T.SOCKET_ACTION,"not_opened"),c.warn("Socket not opened"),s.reject(new Error(`Socket not opened [${e}]`),!0);return}this.socket.readyState>WebSocket.OPEN&&(g.log(T.SOCKET_ACTION,"invalid_state"),c.warn(`Socket is not opened, state ${this.socket.readyState}`)),this.websocketCommandsQueue.push(s),this.socket&&this.socket.readyState===WebSocket.OPEN&&this._handleCommandsQueue(this.websocketCommandsQueue)}};return new Promise((s,d)=>{let p=(S,C=!1)=>{!i||C?d(S):(c.debug("Resending a signaling message",e,u.sequence),i--,a(u))},u={sequence:this.sequence++,name:e,params:t,responseTimer:0,resolve:s,reject:p};a(u)})})}_isDataChannelCommand(e){return this.producerCommandDataChannelEnabled?e===x.UPDATE_DISPLAY_LAYOUT||e===x.REPORT_PERF_STAT||e===x.REPORT_SHARING_STAT:!1}static _isDataChannelResponseRequired(e){return e===x.UPDATE_DISPLAY_LAYOUT||e===x.REPORT_PERF_STAT}getNextCommandSequenceNumber(){return this.sequence}hangup(e){return o(this,null,function*(){return this._send(x.HANGUP,{reason:e}).catch(()=>{})})}sendCandidate(e,t){return o(this,null,function*(){return this._send(x.TRANSMIT_DATA,{participantId:e,data:{candidate:t}})})}requestTestMode(e,t){return o(this,null,function*(){return this._send(x.REQUEST_TEST_MODE,{consumer:e,producer:t})})}sendSdp(e,t){return o(this,null,function*(){return this._send(x.TRANSMIT_DATA,{participantId:e,data:{sdp:t}})})}acceptCall(e){return o(this,null,function*(){return this._send(x.ACCEPT_CALL,{mediaSettings:e})})}changeMediaSettings(e){return o(this,null,function*(){return this._send(x.CHANGE_MEDIA_SETTINGS,{mediaSettings:e},us)})}changeParticipantState(e){return o(this,null,function*(){return this._send(x.CHANGE_PARTICIPANT_STATE,{participantState:{state:e}})})}addParticipant(e,t){return o(this,null,function*(){return this._send(x.ADD_PARTICIPANT,Ne({participantId:e},t))})}removeParticipant(e,t=!1){return o(this,null,function*(){return this._send(x.REMOVE_PARTICIPANT,{participantId:e,ban:t})})}allocateConsumer(e,t){return o(this,null,function*(){let i={capabilities:t};return e&&(i.description=e.sdp),this._send(x.ALLOCATE_CONSUMER,i)})}acceptProducer(e,t){return o(this,null,function*(){let i={description:e.sdp};return t&&(i.ssrcs=t),this._send(x.ACCEPT_PRODUCER,i)})}changePriorities(e){return o(this,null,function*(){return this._send(x.CHANGE_STREAM_PRIORITIES,{typedPriorities:e}).catch(()=>{})})}updateDisplayLayout(e){return o(this,null,function*(){return this._send(x.UPDATE_DISPLAY_LAYOUT,e)})}addMovie(e){return o(this,null,function*(){return this._send(x.ADD_MOVIE,e)})}updateMovie(e){return o(this,null,function*(){return this._send(x.UPDATE_MOVIE,e)})}removeMovie(e){return o(this,null,function*(){return this._send(x.REMOVE_MOVIE,e)})}updateRooms(e,t){return o(this,null,function*(){return this._send(x.UPDATE_ROOMS,{rooms:e,assignRandomly:t})})}activateRooms(e,t){return o(this,null,function*(){return this._send(x.ACTIVATE_ROOMS,{roomIds:e,deactivate:t})})}switchRoom(e,t){return o(this,null,function*(){return this._sendRaw(x.SWITCH_ROOM,{toRoomId:e,participantId:t})})}removeRooms(e){return o(this,null,function*(){return this._send(x.REMOVE_ROOMS,{roomIds:e})})}startStream(e){return o(this,null,function*(){return this._send(x.RECORD_START,e)})}stopStream(e){return o(this,null,function*(){return this._send(x.RECORD_STOP,e)})}recordSetRole(e,t,i){return o(this,null,function*(){return this._send(x.RECORD_SET_ROLE,{participantId:e,role:t,roomId:i})})}getRecordStatus(){return o(this,null,function*(){return this._send(x.RECORD_GET_STATUS)})}switchTopology(e,t=!1){return o(this,null,function*(){return this._send(x.SWITCH_TOPOLOGY,{topology:e,force:t})})}requestRealloc(){return o(this,null,function*(){return this._send(x.REQUEST_REALLOC)})}reportPerfStat(e){return o(this,null,function*(){return this._send(x.REPORT_PERF_STAT,e)})}reportSharingStat(e){return o(this,null,function*(){return this._send(x.REPORT_SHARING_STAT,e)})}chatMessage(e,t=null){return o(this,null,function*(){return this._send(x.CHAT_MESSAGE,{message:e,participantId:t})})}chatHistory(e){return o(this,null,function*(){return this._send(x.CHAT_HISTORY,{count:e})})}customData(e,t){return o(this,null,function*(){return this._send(x.CUSTOM_DATA,{data:e,participantId:t})})}grantRoles(e,t,i){return o(this,null,function*(){let r={participantId:e,roles:t};return i&&(r.revoke=!0),this._sendRaw(x.GRANT_ROLES,r)})}muteParticipant(e,t,i,r){return o(this,null,function*(){return this._sendRaw(x.MUTE_PARTICIPANT,{participantId:e,muteStates:t,requestedMedia:i,roomId:r})})}enableFeatureForRoles(e,t){return o(this,null,function*(){return this._sendRaw(x.ENABLE_FEATURE_FOR_ROLES,{feature:e,roles:t})})}pinParticipant(e,t){return o(this,null,function*(){let i={participantId:e};return t&&(i.unpin=!0),this._sendRaw(x.PIN_PARTICIPANT,i)})}updateMediaModifiers(e){return o(this,null,function*(){return this._send(x.UPDATE_MEDIA_MODIFIERS,{mediaModifiers:e})})}changeOptions(e){return o(this,null,function*(){return this._send(x.CHANGE_OPTIONS,{options:e})})}getWaitingHall(e=null,t,i=!1){return o(this,null,function*(){let r={};return e&&(r.fromId=e),t&&(r.count=t),i&&(r.backward=i),this._send(x.GET_WAITING_HALL,r)})}promoteParticipant(e,t=!1){return o(this,null,function*(){let i={participantId:e};return t&&(i.demote=t),this._sendRaw(x.PROMOTE_PARTICIPANT,i)})}feedback(e){return o(this,null,function*(){return this._sendRaw(x.FEEDBACK,{key:e})})}close(){this.socket&&this.socket.readyState<WebSocket.CLOSING&&this._closeSocket(),this._stopWaitConnectionMessage(),this._stopDoctor(),clearTimeout(this.reconnectTimer)}readyToSend(){this.listenersReady=!0,this._handleCachedMessages()}getParticipantListChunk(e){return o(this,null,function*(){return this._send(x.GET_PARTICIPANT_LIST_CHUNK,e)})}getParticipants(e){return o(this,null,function*(){return this._send(x.GET_PARTICIPANTS,{externalIds:e})})}startAsr(){return o(this,null,function*(){return this._send(x.ASR_START)})}stopAsr(){return o(this,null,function*(){return this._send(x.ASR_STOP)})}_connect(e){if(this.socket&&this.socket.readyState<WebSocket.CLOSING)return;let t="";e&&(t+=`&tgt=${e}`),e===ze.RETRY&&this.lastStamp&&(t+=`&recoverTs=${this.lastStamp}`),t=i(t),c.debug("Connecting to "+this.endpoint+this.postfix+t),this.socket=new WebSocket(this.endpoint+this.postfix+t),this.socket.onopen=this._onOpen.bind(this),this.socket.onmessage=this._onMessage.bind(this),this.socket.onerror=this._onError.bind(this),this.socket.onclose=this._onClose.bind(this),this._startDoctor();function i(r){if(!l.useParticipantListChunk)return r;r+=`&partIdx=${l.participantListChunkInitIndex}`;let s=l.participantListChunkInitCount;return s!==null&&(r+=`&partCount=${s}`),r}}_disconnect(){this.socket&&this.socket.readyState<WebSocket.CLOSING&&(this.socket.onopen=null,this.socket.onmessage=null,this.socket.onerror=null,this.socket.onclose=null,this.socket.close(),this.socket=null),this._stopWaitConnectionMessage(),this._stopDoctor(),clearTimeout(this.reconnectTimer)}_onOpen(){c.debug("Socket opened"),g.log(T.SOCKET_ACTION,"opened"),this._waitConnectionMessage(),this._startDoctor()}_onMessage(e){if(this._startDoctor(),e.data==="ping"){this.socket&&this.socket.readyState===WebSocket.OPEN&&this.socket.send("pong");return}try{this._handleMessage(JSON.parse(e.data))}catch(t){g.log(T.SOCKET_ACTION,"parse_error"),c.error("Unable to parse message",t,e.data)}}_handleMessage(e){var t;e.type==="notification"?e.notification==="connection"?(c.debug("Signaling connected",e),this.connected=!0,this.reconnectCount=0,this.endpoint=e.endpoint,e.peerId&&this.peerId!==e.peerId.id&&(this.postfix+=`&peerId=${e.peerId.id}`,this.peerId=e.peerId.id),this._stopWaitConnectionMessage(),this.conversationResolve?this.conversationResolve(e):(this._triggerEvent(Te.RECONNECT,e),e.conversation.topology&&this._triggerEvent(Te.NOTIFICATION,{type:"notification",notification:O.TOPOLOGY_CHANGED,topology:e.conversation.topology})),this.lastStamp&&this._handleCachedMessages(),(t=e.recoverMessages)==null||t.forEach(i=>this._handleMessage(i)),this._handleCommandsQueue(this.websocketCommandsQueue)):!this.connected||!this.listenersReady?this.incomingCache.push(e):this._triggerEvent(Te.NOTIFICATION,e):e.type==="response"&&this.responseHandlers[e.sequence]?this._handleCommandResponse(!0,e):e.type==="error"&&this.responseHandlers[e.sequence]?(g.log(T.SOCKET_ACTION,`error-${e.error}`),this._handleCommandResponse(!1,e)):e.type==="error"?(g.log(T.SOCKET_ACTION,`error-${e.error}`),e.error==="service-unavailable"?this._reconnect():e.error==="conversation-ended"?this.conversationReject?this.conversationReject(new U(k.SOCKET_CLOSED,{message:`Unable to connect to the signaling: ${e.error}`})):this._triggerEvent(Te.NOTIFICATION,{notification:O.CLOSED_CONVERSATION,reason:e.reason}):this.connected||e.error==="invalid-token"?this._throwError(new Error(`Signaling error: ${e.error}`)):e.sequence||(this.conversationReject&&this.conversationReject(new U(oe.SIGNALING_FAILED,{message:`Unable to connect to the signaling: ${e.error}`})),this._closeSocket())):(g.log(T.SOCKET_ACTION,"unknown_message"),c.warn("Unhandled message",e)),this.lastStamp=e.stamp||this.lastStamp}_handleCachedMessages(){let e=[...this.incomingCache];for(this.incomingCache=[];e.length>0;){let t=e.shift();this._handleMessage(t)}}_throwError(e){this._triggerEvent(Te.FAILED,e)}_onError(e){g.log(T.SOCKET_ACTION,"error"),c.error("Signaling error",e)}_onClose(e){g.log(T.SOCKET_ACTION,"closed"),c.debug("Connection closed",{code:e.code,reason:e.reason}),this.connected=!1,this._stopDoctor(),this.socket&&this.reconnectCount++<Oe.RECONNECT_MAX_COUNT?this._reconnect():this.socket&&this._closeSocket(new Error("Connection closed"))}_closeSocket(e=null){!this.socket||(this._disconnect(),Object.values(this.responseHandlers).forEach(t=>{window.clearTimeout(t.responseTimer),e&&t.reject(new Error("Connection closed"),!0)}),this.websocketCommandsQueue=[],this.responseHandlers={},this.lastStamp=0,e&&this._throwError(new Error("Connection closed")))}_reconnect(){let e=Math.min(Oe.RECONNECT_MAX_DELAY,Oe.RECONNECT_DELAY*Math.pow(2,this.reconnectCount-1));c.log(`Reconnect websocket after ${e}ms (${this.reconnectCount})`),g.log(T.SOCKET_ACTION,"reconnect"),this.reconnectTimer=window.setTimeout(this._connect.bind(this,ze.RETRY),e)}_handleCommandResponse(e,t){var r;if(!this.responseHandlers.hasOwnProperty(t.sequence))return;let i=this.responseHandlers[t.sequence];window.clearTimeout(i.responseTimer),e?(delete this.responseHandlers[t.sequence],i.resolve(t)):((r=this.socket)==null?void 0:r.readyState)===WebSocket.OPEN?(delete this.responseHandlers[t.sequence],g.log(T.SOCKET_ACTION,"response-timeout"),i.reject(new Error(t.error||`Response timeout [${i.name}]`))):i.responseTimer=window.setTimeout(()=>this._handleCommandResponse(!1,t),Oe.WAIT_RESPONSE_DELAY)}_handleCommandsQueue(e){var t,i;for(;e.length>0;){let r=e.shift();if(this._isDataChannelCommand(r.name)){if(((t=this.producerCommandDataChannel)==null?void 0:t.readyState)!==xa){r.reject(new Error(`Invalid data channel state: ${(i=this.producerCommandDataChannel)==null?void 0:i.readyState}`));return}Oe._isDataChannelResponseRequired(r.name)&&(r.responseTimer=window.setTimeout(()=>this._handleCommandResponse(!1,{command:r.name,sequence:r.sequence}),Oe.WAIT_RESPONSE_DELAY),this.responseHandlers[r.sequence]=r);let s=this._serializeBinary(r);s!==null&&this.producerCommandDataChannel.send(s)}else{if(!this.socket||this.socket.readyState!==WebSocket.OPEN){r.reject(new Error("Invalid state or socket already closed"));continue}r.responseTimer=window.setTimeout(()=>this._handleCommandResponse(!1,{command:r.name,sequence:r.sequence}),Oe.WAIT_RESPONSE_DELAY),this.responseHandlers[r.sequence]=r,this.socket.send(this._serializeJson(r))}}}_serializeBinary(e){switch(e.name){case x.UPDATE_DISPLAY_LAYOUT:return this.producerCommandSerializationService.serializeUpdateDisplayLayout(e.sequence,e.params);case x.REPORT_PERF_STAT:return this.producerCommandSerializationService.serializePerfStatReport(e.sequence,e.params);case x.REPORT_SHARING_STAT:return this.producerCommandSerializationService.serializeSharingStatReport(e.sequence,e.params)}return c.warn("cannot get binary data for data channel command: "+e.name),null}_serializeJson(e){let t;e.name===x.UPDATE_DISPLAY_LAYOUT?t=this._convertDisplayLayout(e.params):t=e.params;let i=Object.assign({command:e.name,sequence:e.sequence},t);return JSON.stringify(i)}_convertDisplayLayout(e){let t=e,i={};for(let r in t)t.hasOwnProperty(r)&&(i[r]=Sa(t[r]));return{layouts:i}}_waitConnectionMessage(){this.connectionMessageWaitTimer=window.setTimeout(()=>{this.conversationReject&&this.conversationReject(new U(oe.SIGNALING_FAILED,{message:"Unable to connect to the signaling: connection timeout"}))},Oe.WAIT_CONNECTION_DELAY)}_stopWaitConnectionMessage(){window.clearTimeout(this.connectionMessageWaitTimer),this.connectionMessageWaitTimer=0}_startDoctor(){this._stopDoctor(),this.doctorTimer=window.setTimeout(()=>{c.warn("Socket is dead, trying to reconnect"),this._disconnect(),this._connect(ze.RETRY)},Oe.WAIT_MESSAGE_DELAY)}_stopDoctor(){window.clearTimeout(this.doctorTimer),this.doctorTimer=0}},Ke=Oe;Ke.RECONNECT_DELAY=l.signalingReconnectDelay,Ke.RECONNECT_MAX_DELAY=l.signalingReconnectMaxDelay,Ke.RECONNECT_MAX_COUNT=l.signalingReconnectMaxCount,Ke.WAIT_CONNECTION_DELAY=l.waitConnectionDelay,Ke.WAIT_RESPONSE_DELAY=l.waitResponseDelay,Ke.WAIT_MESSAGE_DELAY=l.waitMessageDelay;var Na=(t=>(t.KING="KING",t.PAWN="PAWN",t))(Na||{}),ms=Na;var Ua=class{constructor(e){this._queue=new Array(e).fill(null),this._readCursor=this._writeCursor=this._left=0,this._moveReadCursor=!1}get length(){return this._queue.length}get left(){return this._left}toArray(){return Array.from(this._queue)}add(e){this._moveReadCursor&&(this._readCursor=this.nextCursor(this._readCursor)),this._queue[this._writeCursor]===null&&(this._left+=1),this._queue[this._writeCursor]=e,this._writeCursor=this.nextCursor(this._writeCursor),this._moveReadCursor=this._writeCursor===this._readCursor}nextCursor(e){return(e+1)%this._queue.length}next(){let e=this._queue[this._readCursor];return e&&(this._moveReadCursor=!1,this._queue[this._readCursor]=null,this._readCursor=this.nextCursor(this._readCursor),this._left-=1),e}};var Mt,pe,Qt=null,Jh={getCameras:M.getCameras,getMicrophones:M.getMicrophones,getOutput:M.getOutput,hasCamera:M.hasCamera,hasMicrophone:M.hasMicrophone,getSavedCamera:M.getSavedCamera,getSavedMicrophone:M.getSavedMicrophone,getSavedOutput:M.getSavedOutput,hasCameraPermission:M.hasCameraPermission,hasMicrophonePermission:M.hasMicrophonePermission,hasPermissions:M.hasPermissions,getUserMedia:M.getUserMedia,getUserVideo:M.getUserVideo,getUserAudio:M.getUserAudio,saveDeviceId:M.saveDeviceId,isBrowserSupported:M.isBrowserSupported,isScreenCapturingSupported:M.isScreenCapturingSupported,os:M.os,isMobile:M.isMobile,browserName:M.browserName,browserVersion:M.browserVersion,baseChromeVersion:M.baseChromeVersion,getAudioContext:M.getAudioContext};function hs(n){pe=n}function _s(n){Mt=n}function zh(n){Qt=n}function Yh(n){l.videoEffects=n}function Qh(n){return o(this,null,function*(){if(l.set(n),M.browserName()==="Sferum"&&(l.platform=`SFERUM:${M.browserVersion()}`),pe||hs(new Ti),Mt||_s(()=>new Ke),l.debug&&(Ba.disableLog(!1),c.toggle(!0)),c.log(`Calls SDK ${l.sdkVersion}`,n),yield M.init(),!M.isBrowserSupported())throw new U(oe.UNSUPPORTED);c.log("UserAgent:",navigator.userAgent),c.log("Screen resolution:",`${window.screen.width}x${window.screen.height}`),c.log("Permissions:",`Camera: ${M.hasCameraPermission()}, Mic: ${M.hasMicrophonePermission()}`),pe.init()})}function Xh(s){return o(this,arguments,function*(n,e=[le.AUDIO],t="",i=!1,r=!1,a){let d=[],p=[];if(Array.isArray(n)?d=n.length?n:[]:n&&(d=[n]),d.length&&(p=yield pe.getOkIdsByExternalIds(d),!p.length))throw new U(k.CALLEE_IS_OFFLINE);return gs(p,Je.USER,e,t,i,r,a)})}function gs(d){return o(this,arguments,function*(n,e=Je.USER,t,i="",r=!1,a=!1,s){if(L.current())throw c.error("There is already active call"),new U(k.FAILED);return new L(pe,Mt(),Qt).onStart(n,e,t,i,r,a,s)})}function Zh(n){return o(this,null,function*(){return fs(n)})}function fs(i){return o(this,arguments,function*(n,e=ee.USER,t){if(n===L.id())throw new Error("Push has already been processed");return new L(pe,Mt(),Qt).onPush(n,e,t)})}function e_(n){return o(this,null,function*(){return n&&(l.authToken=n),pe.authorize()})}function t_(){return o(this,arguments,function*(n=[le.AUDIO]){return ut().accept(n)})}function i_(){return o(this,null,function*(){let n=L.current();if(n)return n.decline()})}function r_(t){return o(this,arguments,function*(n,e=[le.AUDIO]){return Ss(n,e)})}function Ss(n,e,t){return o(this,null,function*(){if(L.current())throw c.error("There is already active call"),new U(k.FAILED);return new L(pe,Mt(),Qt).onJoin({conversationId:n,mediaOptions:e,chatId:t})})}function a_(a){return o(this,arguments,function*(n,e=[le.AUDIO],t,i,r){if(L.current())throw c.error("There is already active call"),new U(k.FAILED);return t&&(l.anonymToken=t),new L(pe,Mt(),Qt).onJoin({joinLink:n,mediaOptions:e,observedIds:i,payload:r})})}function n_(){return o(this,null,function*(){let n=L.current();if(n)return n.hangup();L.hangupAfterInit()})}function s_(n,e){return o(this,null,function*(){let t=yield pe.getOkIdsByExternalIds([n]);if(!t.length)throw new Error("User not found");return vs(t[0],e)})}function vs(n,e){return o(this,null,function*(){let t=L.current();t&&(yield t.addParticipant(v.composeUserId(n,ee.USER),e))})}function o_(n,e=!1){return o(this,null,function*(){let t=yield pe.getOkIdsByExternalIds([n]);return Es(t[0],e)})}function Es(n,e=!1){return o(this,null,function*(){let t=L.current();t&&(yield t.removeParticipant(v.composeUserId(n,ee.USER),e))})}function c_(n,e){return o(this,null,function*(){let t=yield M.saveDeviceId(n,e),i=L.current();return t&&i?i.changeDevice(n):Promise.reject()})}function d_(n){return o(this,null,function*(){return Is(n,!1)})}function Is(n,e){return o(this,null,function*(){if(e){if(!l.audioShareCapabilityEnabled)throw new Error("Audio share capability is disabled");if(!n)throw new Error("Audio share without screen share is not allowed")}let t=L.current();return t?t.toggleScreenCapturing(n,e):Promise.reject()})}function p_(n,e=!1){return o(this,null,function*(){let t=L.current();t&&(yield t.setVideoStream(n,e))})}function l_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.toggleLocalVideo(n))})}function u_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.toggleLocalAudio(n))})}function m_(n,e,t){return o(this,null,function*(){let i=L.current();if(i)return i.setLocalResolution(n,e,t)})}function h_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.changePriorities(n))})}function __(n){return o(this,null,function*(){let e=L.current();e&&(yield e.changeParticipantState(n))})}function g_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.updateDisplayLayout(n))})}function f_(n,e,t=!1){return o(this,null,function*(){let i=yield pe.getOkIdsByExternalIds([n]);return Ts(i[0],e,t)})}function Ts(n,e,t=!1){return o(this,null,function*(){let i=L.current();i&&(yield i.grantRoles(v.composeUserId(n,ee.USER),e,t))})}function S_(){return o(this,arguments,function*(n=null,e,t=[],i){let r=null;return n&&(r=(yield pe.getOkIdsByExternalIds([n]))[0]),Cs(r,e,t,ge.getDeviceIdx(n),i)})}function Cs(){return o(this,arguments,function*(n=null,e,t=[],i=0,r){let a=L.current();if(a){let s=n?v.composeParticipantId(n,ee.USER,i):null;yield a.muteParticipant(s,e,t,r)}})}function v_(n,e,t){return o(this,null,function*(){let i=L.current();i&&(yield i.applyMuteStates(n,e,t))})}function E_(n,e=!1){return o(this,null,function*(){let t=yield pe.getOkIdsByExternalIds([n]);return ys(t[0],e,ge.getDeviceIdx(n))})}function ys(n,e=!1,t=0){return o(this,null,function*(){let i=L.current();i&&(yield i.pinParticipant(v.composeParticipantId(n,ee.USER,t),e))})}function I_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.updateMediaModifiers(n))})}function T_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.changeOptions(n))})}function C_(n,e=null){return o(this,null,function*(){let t=null;return e&&(t=(yield pe.getOkIdsByExternalIds([e]))[0]),Rs(n,t)})}function Rs(n,e=null){return o(this,null,function*(){let t=L.current();if(t){let i=e?v.composeUserId(e,ee.USER):null;yield t.chatMessage(n,i)}})}function y_(n=10){return o(this,null,function*(){let e=L.current();if(e)return e.chatHistory(n)})}function R_(n,e=null){return o(this,null,function*(){let t=null;return e&&(t=(yield pe.getOkIdsByExternalIds([e]))[0]),Ps(n,t,ge.getDeviceIdx(e))})}function Ps(n,e=null,t=0){return o(this,null,function*(){let i=L.current();if(i){let r=e?v.composeParticipantId(e,ee.USER,t):null;yield i.customData(n,r)}})}function P_(){return o(this,arguments,function*(n="",e=!1,{onlyAdminCanShareMovie:t=!1}={}){return(yield pe.createConversation(v.uuid(),n,e,{onlyAdminCanShareMovie:t})).join_link})}function b_(){return o(this,null,function*(){let n=L.current();return n?n.createJoinLink():Promise.reject()})}function M_(){return o(this,null,function*(){let n=L.current();return n?n.removeJoinLink():Promise.reject()})}function A_(n,e){return o(this,null,function*(){return pe.getAnonymTokenByLink(n,e)})}function D_(n){let e=L.current();e&&e.setVolume(n)}function k_(n){l.forceRelayPolicy=n}function O_(n=!1,e=null,t=null,i="DIRECT_LINK",r=null,a=null){return o(this,null,function*(){let s=L.current();return s?s.startStream(n,e,t,i,r,a):Promise.reject()})}function w_(n=null){return o(this,null,function*(){let e=L.current();return e?e.stopStream(n):Promise.reject()})}function x_(n,e,t=null){return o(this,null,function*(){let i=L.current();if(i){let r=yield pe.getOkIdsByExternalIds([n]),a=ge.getDeviceIdx(n);return i.recordSetRole(v.composeParticipantId(r[0],ee.USER,a),e,t)}return Promise.reject()})}function L_(){return o(this,null,function*(){let n=L.current();return n?n.getStreamInfo():Promise.reject()})}function N_(n){return o(this,null,function*(){let e=L.current();return e?e.addMovie(n):Promise.reject()})}function U_(n){return o(this,null,function*(){let e=L.current();return e?e.updateMovie(n):Promise.reject()})}function B_(n){return o(this,null,function*(){let e=L.current();return e?e.removeMovie(n):Promise.reject()})}function V_(n,e){return o(this,null,function*(){let t=L.current();return t?t.updateRooms(n,e):Promise.reject()})}function F_(n,e){return o(this,null,function*(){let t=L.current();return t?t.activateRooms(n,e):Promise.reject()})}function H_(n,e=null){return o(this,null,function*(){let t=null;if(e){let r=yield pe.getOkIdsByExternalIds([e]);t=v.composeUserId(r[0],ee.USER)}let i=L.current();return i?i.switchRoom(n,t):Promise.reject()})}function G_(n){return o(this,null,function*(){let e=L.current();return e?e.removeRooms(n):Promise.reject()})}function W_(n){l.statisticsInterval=n;let e=L.current();if(e)return e.updateStatisticsInterval()}function j_(n){Ba.disableLog(!n),c.toggle(n)}function K_(n,...e){!l.debugLog||c.send(n,"[external]",...e)}function $_(n){return o(this,null,function*(){let e=L.current();if(e)return e.videoEffect(n)})}function q_(n){return o(this,null,function*(){let e=L.current();e&&(yield e.setAudioStream(n))})}function J_(n=null,e,t=!1){return o(this,null,function*(){return ut().getWaitingHall(n,e,t)})}function z_(n,e=!1){return o(this,null,function*(){let t=ut(),i=yield pe.getOkIdsByExternalIds([n]);return t.promoteParticipant(v.composeUserId(i[0],ee.USER),e)})}function Y_(n){return o(this,null,function*(){return ut().getParticipantListChunk(n)})}function Q_(n){return o(this,null,function*(){return ut().getParticipants(n)})}function X_(n){return o(this,null,function*(){return ut().feedback(n)})}function Z_(n,e){return o(this,null,function*(){return ut().enableFeatureForRoles(n,e)})}function ut(){let n=L.current();if(!n)throw new Error("Conversation not found");return n}function eg(n){return o(this,null,function*(){yield pe.removeHistoryRecords(n)})}function tg(){return o(this,null,function*(){let n=L.current();n&&(yield n.startAsr())})}function ig(){return o(this,null,function*(){let n=L.current();n&&(yield n.stopAsr())})}function rg(){return l.sdkVersion}export{Ti as Api,Ua as ArrayDequeue,kt as BaseApi,Ot as BaseLogger,wt as BaseSignaling,Qe as CallDirection,Je as CallType,Di as ChatRoomEventType,ki as ConversationFeature,Oi as ConversationOption,fa as DebugMessageType,Rt as ExternalIdType,na as FacingMode,oe as FatalError,U as HangupReason,k as HangupType,le as MediaOption,ue as MediaTrackKind,Pe as MediaType,Ue as MuteState,j as ParticipantState,Y as ParticipantStatus,ms as RecordRole,wi as RoomsEventType,Ke as Signaling,x as SignalingCommandType,ze as SignalingConnectionType,O as SignalingNotification,ce as TransportTopology,_t as UserRole,ee as UserType,v as Utils,t_ as acceptCall,F_ as activateRooms,N_ as addMovie,s_ as addParticipant,vs as addParticipantInternal,v_ as applyMuteStates,e_ as authorize,Jh as browser,gs as callInternal,Xh as callTo,d_ as captureScreen,Is as captureScreenAndAudio,T_ as changeConversationOptions,c_ as changeDevice,__ as changeParticipantState,h_ as changePriorities,$_ as changeVideoEffect,y_ as chatHistory,C_ as chatMessage,Rs as chatMessageInternal,b_ as createJoinLink,R_ as customData,Ps as customDataInternal,j_ as debug,K_ as debugMessage,i_ as declineCall,Z_ as enableFeatureForRoles,X_ as feedback,k_ as forceRelayPolicy,A_ as getAnonymTokenByLink,Y_ as getParticipantListChunk,Q_ as getParticipants,L_ as getStreamInfo,J_ as getWaitingHall,f_ as grantRoles,Ts as grantRolesInternal,n_ as hangup,Qh as init,r_ as joinCall,a_ as joinCallByLink,Ss as joinCallInternal,S_ as muteParticipant,Cs as muteParticipantInternal,E_ as pinParticipant,ys as pinParticipantInternal,Zh as processPush,fs as processPushInternal,z_ as promoteParticipant,x_ as recordSetRole,eg as removeHistoryRecords,M_ as removeJoinLink,B_ as removeMovie,o_ as removeParticipant,Es as removeParticipantInternal,G_ as removeRooms,hs as setApi,q_ as setAudioStream,m_ as setLocalResolution,zh as setLogger,I_ as setMediaModifiers,_s as setSignalingFactory,W_ as setStatisticsInterval,Yh as setVideoEffects,p_ as setVideoStream,D_ as setVolume,tg as startAsr,P_ as startConversation,O_ as startStream,ig as stopAsr,w_ as stopStream,H_ as switchRoom,u_ as toggleLocalAudio,l_ as toggleLocalVideo,g_ as updateDisplayLayout,U_ as updateMovie,V_ as updateRooms,rg as version};