sip-connector 10.0.1 → 11.1.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.
- package/dist/SipConnector-5B3QzrjB.cjs +1 -0
- package/dist/{SipConnector-JHUHYEf2.js → SipConnector-zEWljwQJ.js} +329 -317
- package/dist/SipConnector.d.ts +14 -9
- package/dist/doMock.cjs +1 -1
- package/dist/doMock.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +381 -320
- package/dist/tools/answerIncomingCall.d.ts +3 -2
- package/dist/tools/callToServer.d.ts +3 -2
- package/dist/tools/generateSimulcastEncodings.d.ts +7 -0
- package/dist/tools/resolveStartPresentation.d.ts +4 -3
- package/dist/tools/resolveUpdatePresentation.d.ts +4 -3
- package/dist/types.d.ts +6 -1
- package/dist/utils/findVideoTrack.d.ts +2 -0
- package/dist/videoSendingBalancer/processSender.d.ts +2 -2
- package/dist/videoSendingBalancer/scaleResolutionAndBitrate.d.ts +10 -0
- package/package.json +3 -3
- package/dist/SipConnector-D9yQTGlS.cjs +0 -1
- package/dist/tools/resolveHandleAddedSender.d.ts +0 -3
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint,
|
|
2
|
+
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
3
|
declare const resolveAnswerIncomingCall: (sipConnector: SipConnector) => (parameters: {
|
|
4
4
|
mediaStream: MediaStream;
|
|
5
5
|
extraHeaders?: string[] | undefined;
|
|
6
6
|
iceServers?: RTCIceServer[];
|
|
7
|
-
rtpSendParameters?: TRtpSendParameters;
|
|
8
7
|
contentHint?: TContentHint;
|
|
8
|
+
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
+
sendEncodings?: RTCRtpEncodingParameters[];
|
|
9
10
|
setRemoteStreams: (streams: MediaStream[]) => void;
|
|
10
11
|
onBeforeProgressCall?: (conference?: string) => void;
|
|
11
12
|
onSuccessProgressCall?: (parameters_: {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint,
|
|
2
|
+
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
3
|
declare const resolveCallToServer: (sipConnector: SipConnector) => (parameters: {
|
|
4
4
|
conference: string;
|
|
5
5
|
mediaStream: MediaStream;
|
|
6
6
|
extraHeaders?: string[] | undefined;
|
|
7
7
|
iceServers?: RTCIceServer[];
|
|
8
|
-
rtpSendParameters?: TRtpSendParameters;
|
|
9
8
|
contentHint?: TContentHint;
|
|
9
|
+
simulcastEncodings?: TSimulcastEncodings;
|
|
10
|
+
sendEncodings?: RTCRtpEncodingParameters[];
|
|
10
11
|
setRemoteStreams: (streams: MediaStream[]) => void;
|
|
11
12
|
onBeforeProgressCall?: (conference: string) => void;
|
|
12
13
|
onSuccessProgressCall?: (parameters_: {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TSimulcastEncodings } from '../types';
|
|
2
|
+
declare const generateSimulcastEncodings: ({ mediaStream, simulcastEncodings, sendEncodings, }: {
|
|
3
|
+
mediaStream: MediaStream;
|
|
4
|
+
simulcastEncodings?: TSimulcastEncodings;
|
|
5
|
+
sendEncodings?: RTCRtpEncodingParameters[];
|
|
6
|
+
}) => RTCRtpEncodingParameters[] | undefined;
|
|
7
|
+
export default generateSimulcastEncodings;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint,
|
|
3
|
-
declare const resolveStartPresentation: (sipConnector: SipConnector) => ({ mediaStream, isP2P, maxBitrate,
|
|
2
|
+
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
+
declare const resolveStartPresentation: (sipConnector: SipConnector) => ({ mediaStream, isP2P, maxBitrate, contentHint, simulcastEncodings, sendEncodings, }: {
|
|
4
4
|
mediaStream: MediaStream;
|
|
5
5
|
isP2P: boolean;
|
|
6
6
|
maxBitrate?: number;
|
|
7
|
-
rtpSendParameters?: TRtpSendParameters;
|
|
8
7
|
contentHint?: TContentHint;
|
|
8
|
+
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
+
sendEncodings?: RTCRtpEncodingParameters[];
|
|
9
10
|
}, options?: {
|
|
10
11
|
callLimit: number;
|
|
11
12
|
}) => Promise<MediaStream | void>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint,
|
|
3
|
-
declare const resolveUpdatePresentation: (sipConnector: SipConnector) => ({ mediaStream, isP2P, maxBitrate,
|
|
2
|
+
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
+
declare const resolveUpdatePresentation: (sipConnector: SipConnector) => ({ mediaStream, isP2P, maxBitrate, contentHint, simulcastEncodings, sendEncodings, }: {
|
|
4
4
|
mediaStream: MediaStream;
|
|
5
5
|
isP2P: boolean;
|
|
6
6
|
maxBitrate?: number;
|
|
7
|
-
rtpSendParameters?: TRtpSendParameters;
|
|
8
7
|
contentHint?: TContentHint;
|
|
8
|
+
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
+
sendEncodings?: RTCRtpEncodingParameters[];
|
|
9
10
|
}) => Promise<MediaStream | void>;
|
|
10
11
|
export default resolveUpdatePresentation;
|
package/dist/types.d.ts
CHANGED
|
@@ -46,6 +46,11 @@ export type TParametersCreateUaConfiguration = {
|
|
|
46
46
|
connectionRecoveryMaxInterval?: number;
|
|
47
47
|
userAgent?: string;
|
|
48
48
|
};
|
|
49
|
-
export type
|
|
49
|
+
export type TOnAddedTransceiver = (transceiver: RTCRtpTransceiver, track: MediaStreamTrack, stream: MediaStream) => Promise<void>;
|
|
50
50
|
export type TContentHint = 'motion' | 'detail' | 'text' | 'none';
|
|
51
51
|
export type TRtpSendParameters = Partial<Omit<RTCRtpSendParameters, 'transactionId'>>;
|
|
52
|
+
export type TSize = {
|
|
53
|
+
width: number;
|
|
54
|
+
height: number;
|
|
55
|
+
};
|
|
56
|
+
export type TSimulcastEncodings = TSize[];
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { EEventsMainCAM } from '../types';
|
|
2
2
|
import { TOnSetParameters, TResult } from './setEncodingsToSender';
|
|
3
|
-
declare const processSender: ({ mainCam, resolutionMainCam, sender,
|
|
3
|
+
declare const processSender: ({ mainCam, resolutionMainCam, sender, videoTrack, codec, }: {
|
|
4
4
|
mainCam?: EEventsMainCAM;
|
|
5
5
|
resolutionMainCam?: string;
|
|
6
6
|
sender: RTCRtpSender;
|
|
7
|
-
|
|
7
|
+
videoTrack: MediaStreamVideoTrack;
|
|
8
8
|
codec?: string;
|
|
9
9
|
}, onSetParameters?: TOnSetParameters) => Promise<TResult>;
|
|
10
10
|
export default processSender;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TSize } from '../types';
|
|
2
|
+
declare const scaleResolutionAndBitrate: ({ videoTrack, targetSize, codec, }: {
|
|
3
|
+
videoTrack: MediaStreamVideoTrack;
|
|
4
|
+
targetSize: TSize;
|
|
5
|
+
codec?: string;
|
|
6
|
+
}) => {
|
|
7
|
+
scaleResolutionDownBy: number;
|
|
8
|
+
maxBitrate: number;
|
|
9
|
+
};
|
|
10
|
+
export default scaleResolutionAndBitrate;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sip-connector",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"description": "Module for connect to Vinteo server",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webrtc",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@krivega/cancelable-promise": "^1.1.3",
|
|
66
|
-
"@krivega/jssip": "^
|
|
66
|
+
"@krivega/jssip": "^5.0.0",
|
|
67
67
|
"debug": "^4.3.7",
|
|
68
68
|
"events-constructor": "^1.2.3",
|
|
69
69
|
"repeated-calls": "^2.3.0",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
},
|
|
112
112
|
"peerDependencies": {
|
|
113
113
|
"@krivega/cancelable-promise": "^1.1.3",
|
|
114
|
-
"@krivega/jssip": "^
|
|
114
|
+
"@krivega/jssip": "^5.0.0",
|
|
115
115
|
"debug": "^4.3.7",
|
|
116
116
|
"events-constructor": "^1.2.3",
|
|
117
117
|
"repeated-calls": "^2.2.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";var Pt=Object.defineProperty;var Ot=(s,e,t)=>e in s?Pt(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t;var o=(s,e,t)=>Ot(s,typeof e!="symbol"?e+"":e,t);const C=require("@krivega/cancelable-promise"),ve=require("events-constructor"),ye=require("repeated-calls"),V=require("debug"),Dt="Connection Error",qe="Request Timeout",Mt="SIP Failure Code",pt="Internal Error",vt="Busy",x="Rejected",yt="Redirected",bt="Unavailable",ke="Not Found",wt="Address Incomplete",Ut="Incompatible SDP",Lt="Missing SDP",Ht="Authentication Error",Be="Terminated",Wt="WebRTC Error",Fe="Canceled",qt="No Answer",kt="Expires",Bt="No ACK",Ft="Dialog Error",Vt="User Denied Media Access",Ve="Bad Media Description",xt="RTP Timeout",Yt=Object.freeze(Object.defineProperty({__proto__:null,ADDRESS_INCOMPLETE:wt,AUTHENTICATION_ERROR:Ht,BAD_MEDIA_DESCRIPTION:Ve,BUSY:vt,BYE:Be,CANCELED:Fe,CONNECTION_ERROR:Dt,DIALOG_ERROR:Ft,EXPIRES:kt,INCOMPATIBLE_SDP:Ut,INTERNAL_ERROR:pt,MISSING_SDP:Lt,NOT_FOUND:ke,NO_ACK:Bt,NO_ANSWER:qt,REDIRECTED:yt,REJECTED:x,REQUEST_TIMEOUT:qe,RTP_TIMEOUT:xt,SIP_FAILURE_CODE:Mt,UNAVAILABLE:bt,USER_DENIED_MEDIA_ACCESS:Vt,WEBRTC_ERROR:Wt},Symbol.toStringTag,{value:"Module"})),Y="incomingCall",G="declinedIncomingCall",$="failedIncomingCall",J="terminatedIncomingCall",k="connecting",f="connected",S="disconnected",v="newRTCSession",m="registered",X="unregistered",P="registrationFailed",xe="newMessage",z="sipEvent",Q="availableSecondRemoteStream",j="notAvailableSecondRemoteStream",K="mustStopPresentation",y="shareState",Z="enterRoom",ee="useLicense",te="peerconnection:confirmed",ne="peerconnection:ontrack",b="channels",se="channels:notify",ie="ended:fromserver",oe="main-cam-control",re="admin-stop-main-cam",ae="admin-start-main-cam",ce="admin-stop-mic",Ee="admin-start-mic",w="admin-force-sync-media-state",_e="participant:added-to-list-moderators",le="participant:removed-from-list-moderators",de="participant:move-request-to-stream",he="participant:move-request-to-spectators",ue="participation:accepting-word-request",Te="participation:cancelling-word-request",Se="webcast:started",Ne="webcast:stopped",Ce="account:changed",ge="account:deleted",Ae="conference:participant-token-issued",O="ended",Ye="sending",Ge="reinvite",$e="replaces",Je="refer",Xe="progress",ze="accepted",U="confirmed",L="peerconnection",A="failed",Qe="muted",je="unmuted",Re="newDTMF",Ie="newInfo",Ke="hold",Ze="unhold",et="update",tt="sdp",nt="icecandidate",st="getusermediafailed",it="peerconnection:createofferfailed",ot="peerconnection:createanswerfailed",rt="peerconnection:setlocaldescriptionfailed",at="peerconnection:setremotedescriptionfailed",ct="presentation:start",Et="presentation:started",_t="presentation:end",fe="presentation:ended",H="presentation:failed",lt="SPECTATOR",dt=1e6,Gt=Object.freeze(Object.defineProperty({__proto__:null,ACCEPTED:ze,ACCOUNT_CHANGED:Ce,ACCOUNT_DELETED:ge,ADMIN_FORCE_SYNC_MEDIA_STATE:w,ADMIN_START_MAIN_CAM:ae,ADMIN_START_MIC:Ee,ADMIN_STOP_MAIN_CAM:re,ADMIN_STOP_MIC:ce,AVAILABLE_SECOND_REMOTE_STREAM_EVENT:Q,CHANNELS:b,CHANNELS_NOTIFY:se,CONFERENCE_PARTICIPANT_TOKEN_ISSUED:Ae,CONFIRMED:U,CONNECTED:f,CONNECTING:k,DECLINED_INCOMING_CALL:G,DISCONNECTED:S,ENDED:O,ENDED_FROM_SERVER:ie,ENTER_ROOM:Z,FAILED:A,FAILED_INCOMING_CALL:$,GET_USER_MEDIA_FAILED:st,HOLD:Ke,ICE_CANDIDATE:nt,INCOMING_CALL:Y,MAIN_CAM_CONTROL:oe,MUST_STOP_PRESENTATION_EVENT:K,MUTED:Qe,NEW_DTMF:Re,NEW_INFO:Ie,NEW_MESSAGE:xe,NEW_RTC_SESSION:v,NOT_AVAILABLE_SECOND_REMOTE_STREAM_EVENT:j,ONE_MEGABIT_IN_BITS:dt,PARTICIPANT_ADDED_TO_LIST_MODERATORS:_e,PARTICIPANT_MOVE_REQUEST_TO_SPECTATORS:he,PARTICIPANT_MOVE_REQUEST_TO_STREAM:de,PARTICIPANT_REMOVED_FROM_LIST_MODERATORS:le,PARTICIPATION_ACCEPTING_WORD_REQUEST:ue,PARTICIPATION_CANCELLING_WORD_REQUEST:Te,PEER_CONNECTION:L,PEER_CONNECTION_CONFIRMED:te,PEER_CONNECTION_CREATE_ANSWER_FAILED:ot,PEER_CONNECTION_CREATE_OFFER_FAILED:it,PEER_CONNECTION_ONTRACK:ne,PEER_CONNECTION_SET_LOCAL_DESCRIPTION_FAILED:rt,PEER_CONNECTION_SET_REMOTE_DESCRIPTION_FAILED:at,PRESENTATION_END:_t,PRESENTATION_ENDED:fe,PRESENTATION_FAILED:H,PRESENTATION_START:ct,PRESENTATION_STARTED:Et,PROGRESS:Xe,REFER:Je,REGISTERED:m,REGISTRATION_FAILED:P,REINVITE:Ge,REPLACES:$e,SDP:tt,SENDING:Ye,SHARE_STATE:y,SIP_EVENT:z,SPECTATOR:lt,TERMINATED_INCOMING_CALL:J,UNHOLD:Ze,UNMUTED:je,UNREGISTERED:X,UPDATE:et,USE_LICENSE:ee,WEBCAST_STARTED:Se,WEBCAST_STOPPED:Ne},Symbol.toStringTag,{value:"Module"})),ht=[Y,G,J,$,ue,Te,de,se,Ae,Ce,ge,Se,Ne,_e,le],me=[k,f,S,v,m,X,P,xe,z],ut=[Q,j,K,y,Z,ee,te,ne,b,ie,oe,ae,re,ce,Ee,w,he],Pe=[O,k,Ye,Ge,$e,Je,Xe,ze,U,L,A,Qe,je,Re,Ie,Ke,Ze,et,tt,nt,st,it,ot,rt,at,ct,Et,_t,fe,H],Oe=[...me,...ht],De=[...Pe,...ut],$t=Object.freeze(Object.defineProperty({__proto__:null,SESSION_EVENT_NAMES:De,SESSION_JSSIP_EVENT_NAMES:Pe,SESSION_SYNTHETICS_EVENT_NAMES:ut,UA_EVENT_NAMES:Oe,UA_JSSIP_EVENT_NAMES:me,UA_SYNTHETICS_EVENT_NAMES:ht},Symbol.toStringTag,{value:"Module"})),Jt=s=>{const e=[];return s&&e.push(`X-Vinteo-Remote: ${s}`),e},Xt="content-type",zt="x-webrtc-enter-room",D="application/vinteo.webrtc.sharedesktop",Qt="application/vinteo.webrtc.roomname",jt="application/vinteo.webrtc.channels",Kt="application/vinteo.webrtc.mediastate",Zt="application/vinteo.webrtc.refusal",be="application/vinteo.webrtc.maincam",en="application/vinteo.webrtc.mic",tn="application/vinteo.webrtc.uselic",nn="X-WEBRTC-USE-LICENSE",sn="X-WEBRTC-PARTICIPANT-NAME",we="X-WEBRTC-INPUT-CHANNELS",Ue="X-WEBRTC-OUTPUT-CHANNELS",on="X-WEBRTC-MAINCAM",rn="X-WEBRTC-MIC",Le="X-WEBRTC-SYNC",an="X-WEBRTC-MAINCAM-RESOLUTION",cn="X-WEBRTC-MEDIA-STATE",En="X-Vinteo-Media-Type",_n="X-Vinteo-MainCam-State",ln="X-Vinteo-Mic-State",dn="application/vinteo.webrtc.partstate",hn="X-WEBRTC-PARTSTATE",un="application/vinteo.webrtc.notify",Tn="X-VINTEO-NOTIFY",I="x-webrtc-share-state",Sn=`${I}: LETMESTARTPRESENTATION`,Nn=`${I}: STOPPRESENTATION`,Tt="YOUCANRECEIVECONTENT",St="CONTENTEND",Nt="YOUMUSTSTOPSENDCONTENT",Cn=`${I}: ${Nt}`,gn=`${I}: ${Tt}`,An=`${I}: ${St}`,Rn="X-WEBRTC-REQUEST-ENABLE-MEDIA-DEVICE",In=`${Rn}: LETMESTARTMAINCAM`,Me="sip-connector",p=V(Me),fn=()=>{V.enable(Me)},mn=()=>{V.enable(`-${Me}`)},Pn=(s,e)=>{s.getVideoTracks().forEach(n=>{"contentHint"in n&&n.contentHint!==e&&(n.contentHint=e)})},M=(s,{videoMode:e,audioMode:t,contentHint:n}={})=>{if(!s||e==="recvonly"&&t==="recvonly")return;const i=t==="recvonly"?[]:s.getAudioTracks(),r=e==="recvonly"?[]:s.getVideoTracks(),a=[...i,...r],c=new MediaStream(a);return c.getTracks=()=>[...c.getAudioTracks(),...c.getVideoTracks()],n&&n!=="none"&&Pn(c,n),c};var R=(s=>(s.PAUSE_MAIN_CAM="PAUSEMAINCAM",s.RESUME_MAIN_CAM="RESUMEMAINCAM",s.MAX_MAIN_CAM_RESOLUTION="MAXMAINCAMRESOLUTION",s.ADMIN_STOP_MAIN_CAM="ADMINSTOPMAINCAM",s.ADMIN_START_MAIN_CAM="ADMINSTARTMAINCAM",s))(R||{}),W=(s=>(s.ADMIN_STOP_MIC="ADMINSTOPMIC",s.ADMIN_START_MIC="ADMINSTARTMIC",s))(W||{}),q=(s=>(s.ADMIN_SYNC_FORCED="1",s.ADMIN_SYNC_NOT_FORCED="0",s))(q||{}),Ct=(s=>(s.AUDIO="AUDIO",s.VIDEO="VIDEO",s.AUDIOPLUSPRESENTATION="AUDIOPLUSPRESENTATION",s))(Ct||{});function On(s){return e=>`sip:${e}@${s}`}const Dn=(s,e)=>()=>Math.floor(Math.random()*(e-s))+s,He=s=>s.trim().replaceAll(" ","_"),Mn=Dn(1e5,99999999),pn=s=>s.some(t=>{const{kind:n}=t;return n==="video"}),vn="Error decline with 603",yn=1006,bn=s=>typeof s=="object"&&s!==null&&"code"in s&&s.code===yn,wn=s=>s.message===vn,Un=(s,e)=>s.find(t=>t.track&&e.getTracks().includes(t.track)),Ln=(s,e)=>(s.degradationPreference=e.degradationPreference,s),Hn=(s,e)=>{s.encodings===void 0&&(s.encodings=[]);for(let t=s.encodings.length;t<e;t+=1)s.encodings.push({});return s},gt=s=>(e,t)=>t!==void 0&&e!==t||t===void 0&&e!==s,Wn=gt(),qn=(s,e)=>{if(Wn(s,e))return s},kn=(s,e)=>{const t=s.maxBitrate,n=qn(e,t);return n!==void 0&&(s.maxBitrate=n),s},At=1,Bn=gt(At),Fn=(s,e)=>{const t=s===void 0?void 0:Math.max(s,At);if(t!==void 0&&Bn(t,e))return t},Vn=(s,e)=>{const t=s.scaleResolutionDownBy,n=Fn(e,t);return n!==void 0&&(s.scaleResolutionDownBy=n),s},xn=(s,e)=>{var n;const t=((n=e.encodings)==null?void 0:n.length)??0;return Hn(s,t),s.encodings.forEach((i,r)=>{const a=((e==null?void 0:e.encodings)??[])[r],c=a==null?void 0:a.maxBitrate,_=a==null?void 0:a.scaleResolutionDownBy;kn(i,c),Vn(i,_)}),s},Yn=(s,e)=>{var t,n,i,r,a,c,_,l;if(((t=s.codecs)==null?void 0:t.length)!==((n=e.codecs)==null?void 0:n.length))return!0;for(let E=0;E<(((i=s.codecs)==null?void 0:i.length)??0);E++)if(JSON.stringify(s.codecs[E])!==JSON.stringify(e.codecs[E]))return!0;if(((r=s.headerExtensions)==null?void 0:r.length)!==((a=e.headerExtensions)==null?void 0:a.length))return!0;for(let E=0;E<(((c=s.headerExtensions)==null?void 0:c.length)??0);E++)if(JSON.stringify(s.headerExtensions[E])!==JSON.stringify(e.headerExtensions[E]))return!0;if(((_=s.encodings)==null?void 0:_.length)!==((l=e.encodings)==null?void 0:l.length))return!0;for(let E=0;E<(s.encodings.length??0);E++)if(JSON.stringify(s.encodings[E])!==JSON.stringify(e.encodings[E]))return!0;return s.rtcp.cname!==e.rtcp.cname||s.rtcp.reducedSize!==e.rtcp.reducedSize||s.degradationPreference!==e.degradationPreference},Rt=async(s,e)=>{const t=s.getParameters(),n=JSON.parse(JSON.stringify(t));xn(t,e),Ln(t,e);const i=Yn(n,t);return i&&await s.setParameters(t),{parameters:t,isChanged:i}},It=async(s,e,t)=>{const{isChanged:n,parameters:i}=await Rt(s,{encodings:[{scaleResolutionDownBy:e.scaleResolutionDownBy,maxBitrate:e.maxBitrate}]});return n&&t&&t(i),{isChanged:n,parameters:i}},Gn=async(s,e,t)=>{const n=Un(s,e);if(n)return It(n,{maxBitrate:t})},$n=486,Jn=487,F="local",We="remote",Xn=3,zn=1,Qn=(s=new Error)=>{const{originator:e,cause:t}=s;return C.isCanceledError(s)?!0:typeof t=="string"?t===qe||t===x||e===F&&(t===Fe||t===Be):!1},g="SipConnector",jn="channels",Kn="WebcastStarted",Zn="WebcastStopped",es="accountChanged",ts="accountDeleted",ns="addedToListModerators",ss="removedFromListModerators",is="ParticipationRequestAccepted",os="ParticipationRequestRejected",rs="ParticipantMovedToWebcast",as="ConferenceParticipantTokenIssued";class cs{constructor({JsSIP:e}){o(this,"_isRegisterConfig",!1);o(this,"_connectionConfiguration",{});o(this,"_remoteStreams",{});o(this,"JsSIP");o(this,"_sessionEvents");o(this,"_uaEvents");o(this,"_cancelableConnect");o(this,"_cancelableConnectWithRepeatedCalls");o(this,"_cancelableSendPresentationWithRepeatedCalls");o(this,"_cancelableInitUa");o(this,"_cancelableDisconnect");o(this,"_cancelableSet");o(this,"_cancelableCall");o(this,"_cancelableAnswer");o(this,"_cancelableSendDTMF");o(this,"getSipServerUrl",e=>e);o(this,"promisePendingStartPresentation");o(this,"promisePendingStopPresentation");o(this,"ua");o(this,"session");o(this,"incomingSession");o(this,"_streamPresentationCurrent");o(this,"socket");o(this,"connect",async(e,t)=>(this._cancelRequests(),this._connectWithDuplicatedCalls(e,t)));o(this,"initUa",async e=>this._cancelableInitUa.request(e));o(this,"set",async e=>this._cancelableSet.request(e));o(this,"call",async e=>this._cancelableCall.request(e));o(this,"disconnect",async()=>(this._cancelRequests(),this._disconnectWithoutCancelRequests()));o(this,"answerToIncomingCall",async e=>this._cancelableAnswer.request(e));o(this,"sendDTMF",async e=>this._cancelableSendDTMF.request(e));o(this,"hangUp",async()=>(this._cancelRequests(),this._hangUpWithoutCancelRequests()));o(this,"tryRegister",async()=>{if(!this.isRegisterConfig)throw new Error("Config is not registered");this._uaEvents.trigger(k,void 0);try{await this.unregister()}catch(e){p("tryRegister",e)}return this.register()});o(this,"declineToIncomingCall",async({statusCode:e=Jn}={})=>new Promise((t,n)=>{if(!this.isAvailableIncomingCall){n(new Error("no incomingSession"));return}const i=this.incomingSession,r=this.remoteCallerData;this._cancelableCall.cancelRequest(),this._cancelableAnswer.cancelRequest(),this.removeIncomingSession(),this._uaEvents.trigger(G,r),t(i.terminate({status_code:e}))}));o(this,"busyIncomingCall",async()=>this.declineToIncomingCall({statusCode:$n}));o(this,"removeIncomingSession",()=>{delete this.incomingSession});o(this,"_connectWithDuplicatedCalls",async(e,{callLimit:t=Xn}={})=>{const n=async()=>this._cancelableConnect.request(e),i=r=>{var l;const c=!!((l=this.ua)!=null&&l.isConnected())&&this.hasEqualConnectionConfiguration(e),_=!!r&&!bn(r);return c||_};return this._cancelableConnectWithRepeatedCalls=ye.repeatedCallsAsync({targetFunction:n,isComplete:i,callLimit:t,isRejectAsValid:!0,isCheckBeforeCall:!1,onAfterCancel:()=>{this._cancelableConnect.cancelRequest()}}),this._cancelableConnectWithRepeatedCalls.then(r=>{if(r instanceof this.JsSIP.UA)return r;throw r})});o(this,"handleNewRTCSession",({originator:e,session:t})=>{if(e===We){this.incomingSession=t;const n=this.remoteCallerData;t.on(A,i=>{this.removeIncomingSession(),i.originator===F?this._uaEvents.trigger(J,n):this._uaEvents.trigger($,n)}),this._uaEvents.trigger(Y,n)}});o(this,"_connect",async e=>this.initUa(e).then(async()=>this._start()));o(this,"_initUa",async({user:e,password:t,sipServerUrl:n,sipWebSocketServerURL:i,remoteAddress:r,sessionTimers:a,registerExpires:c,connectionRecoveryMinInterval:_,connectionRecoveryMaxInterval:l,userAgent:E,displayName:d="",register:h=!1,extraHeaders:u=[]})=>{if(!n)throw new Error("sipServerUrl is required");if(!i)throw new Error("sipWebSocketServerURL is required");if(h&&!e)throw new Error("user is required for authorized connection");if(h&&!t)throw new Error("password is required for authorized connection");this._connectionConfiguration={sipServerUrl:n,displayName:d,register:h,user:e,password:t};const{configuration:N,helpers:T}=this.createUaConfiguration({user:e,sipServerUrl:n,sipWebSocketServerURL:i,password:t,displayName:d,register:h,sessionTimers:a,registerExpires:c,connectionRecoveryMinInterval:_,connectionRecoveryMaxInterval:l,userAgent:E});return this.getSipServerUrl=T.getSipServerUrl,this.socket=T.socket,this.ua&&await this._disconnectWithoutCancelRequests(),this._isRegisterConfig=!!h,this.ua=this._createUa({...N,remoteAddress:r,extraHeaders:u}),this._uaEvents.eachTriggers((B,ft)=>{const pe=me.find(mt=>mt===ft);pe&&this.ua&&this.ua.on(pe,B)}),this.ua});o(this,"_createUa",({remoteAddress:e,extraHeaders:t=[],...n})=>{const i=new this.JsSIP.UA(n),a=[...e?Jt(e):[],...t];return a.length>0&&i.registrator().setExtraHeaders(a),i});o(this,"_start",async()=>new Promise((e,t)=>{const{ua:n}=this;if(!n){t(new Error("this.ua is not initialized"));return}const i=()=>{c(),e(n)},r=_=>{c(),t(_)},a=()=>{this.isRegisterConfig?(this.on(m,i),this.on(P,r)):this.on(f,i),this.on(S,r)},c=()=>{this.off(m,i),this.off(P,r),this.off(f,i),this.off(S,r)};a(),this.on(v,this.handleNewRTCSession),n.start()}));o(this,"_set",async({displayName:e,password:t})=>new Promise((n,i)=>{const{ua:r}=this;if(!r){i(new Error("this.ua is not initialized"));return}let a=!1,c=!1;e!==void 0&&e!==this._connectionConfiguration.displayName&&(a=r.set("display_name",He(e)),this._connectionConfiguration.displayName=e),t!==void 0&&t!==this._connectionConfiguration.password&&(c=r.set("password",t),this._connectionConfiguration.password=t);const _=a||c;c&&this.isRegisterConfig?this.register().then(()=>{n(_)}).catch(l=>{i(l)}):_?n(_):i(new Error("nothing changed"))}));o(this,"_disconnectWithoutCancelRequests",async()=>this._cancelableDisconnect.request());o(this,"_disconnect",async()=>{this.off(v,this.handleNewRTCSession);const e=new Promise(t=>{this.once(S,()=>{delete this.ua,t()})});return this.ua?(await this._hangUpWithoutCancelRequests(),this.ua?this.ua.stop():this._uaEvents.trigger(S,void 0)):this._uaEvents.trigger(S,void 0),e});o(this,"_call",async({number:e,mediaStream:t,extraHeaders:n=[],ontrack:i,iceServers:r,videoMode:a,audioMode:c,onAddedSender:_,contentHint:l,offerToReceiveAudio:E=!0,offerToReceiveVideo:d=!0})=>new Promise((h,u)=>{const{ua:N}=this;if(!N){u(new Error("this.ua is not initialized"));return}this._connectionConfiguration.number=e,this._connectionConfiguration.answer=!1,this._handleCall({ontrack:i}).then(h).catch(T=>{u(T)}),this.session=N.call(this.getSipServerUrl(e),{extraHeaders:n,mediaStream:M(t,{videoMode:a,audioMode:c,contentHint:l}),eventHandlers:this._sessionEvents.triggers,videoMode:a,audioMode:c,onAddedSender:_,pcConfig:{iceServers:r},rtcOfferConstraints:{offerToReceiveAudio:E,offerToReceiveVideo:d}})}));o(this,"_answer",async({mediaStream:e,ontrack:t,extraHeaders:n=[],iceServers:i,videoMode:r,audioMode:a,onAddedSender:c,contentHint:_})=>new Promise((l,E)=>{if(!this.isAvailableIncomingCall){E(new Error("no incomingSession"));return}this.session=this.incomingSession,this.removeIncomingSession();const{session:d}=this;if(!d){E(new Error("No session established"));return}this._sessionEvents.eachTriggers((u,N)=>{const T=Pe.find(B=>B===N);T&&d.on(T,u)}),this._connectionConfiguration.answer=!0,this._connectionConfiguration.number=d.remote_identity.uri.user,this._handleCall({ontrack:t}).then(l).catch(u=>{E(u)});const h=M(e,{videoMode:r,audioMode:a,contentHint:_});d.answer({extraHeaders:n,videoMode:r,audioMode:a,onAddedSender:c,mediaStream:h,pcConfig:{iceServers:i}})}));o(this,"_handleCall",async({ontrack:e})=>new Promise((t,n)=>{const i=()=>{this.onSession(L,E),this.onSession(U,d)},r=()=>{this.offSession(L,E),this.offSession(U,d)},a=()=>{this.onSession(A,_),this.onSession(O,_)},c=()=>{this.offSession(A,_),this.offSession(O,_)},_=h=>{r(),c(),n(h)};let l;const E=({peerconnection:h})=>{l=h,l.ontrack=u=>{this._sessionEvents.trigger(ne,l),e&&e(u)}},d=()=>{l&&this._sessionEvents.trigger(te,l),r(),c(),t(l)};i(),a()}));o(this,"_restoreSession",()=>{this._cancelRequestsAndResetPresentation(),delete this._connectionConfiguration.number,delete this.session,this._remoteStreams={}});o(this,"_sendDTMF",async e=>new Promise((t,n)=>{const{session:i}=this;if(!i){n(new Error("No session established"));return}this.onceSession(Re,({originator:r})=>{r===F&&t()}),i.sendDTMF(e,{duration:120,interToneGap:600})}));o(this,"_hangUpWithoutCancelRequests",async()=>{if(this.ua&&this.session){const{session:e}=this;if(this._streamPresentationCurrent)try{await this.stopPresentation()}catch(t){p("error stop presentation: ",t)}if(this._restoreSession(),!e.isEnded())return e.terminateAsync()}});o(this,"_handleShareState",e=>{switch(e){case Tt:{this._sessionEvents.trigger(Q,void 0);break}case St:{this._sessionEvents.trigger(j,void 0);break}case Nt:{this._sessionEvents.trigger(K,void 0);break}}});o(this,"_maybeTriggerChannels",e=>{const t=e.getHeader(we),n=e.getHeader(Ue);if(t&&n){const i={inputChannels:t,outputChannels:n};this._sessionEvents.trigger(b,i)}});o(this,"_handleNotify",e=>{switch(e.cmd){case jn:{const t=e;this._triggerChannelsNotify(t);break}case Kn:{const t=e;this._triggerWebcastStartedNotify(t);break}case Zn:{const t=e;this._triggerWebcastStoppedNotify(t);break}case ns:{const t=e;this._triggerAddedToListModeratorsNotify(t);break}case ss:{const t=e;this._triggerRemovedFromListModeratorsNotify(t);break}case is:{const t=e;this._triggerParticipationAcceptingWordRequest(t);break}case os:{const t=e;this._triggerParticipationCancellingWordRequest(t);break}case rs:{const t=e;this._triggerParticipantMoveRequestToStream(t);break}case es:{this._triggerAccountChangedNotify();break}case ts:{this._triggerAccountDeletedNotify();break}case as:{const t=e;this._triggerConferenceParticipantTokenIssued(t);break}default:p("unknown cmd",e.cmd)}});o(this,"_triggerRemovedFromListModeratorsNotify",({conference:e})=>{const t={conference:e};this._uaEvents.trigger(le,t)});o(this,"_triggerAddedToListModeratorsNotify",({conference:e})=>{const t={conference:e};this._uaEvents.trigger(_e,t)});o(this,"_triggerWebcastStartedNotify",({body:{conference:e,type:t}})=>{const n={conference:e,type:t};this._uaEvents.trigger(Se,n)});o(this,"_triggerWebcastStoppedNotify",({body:{conference:e,type:t}})=>{const n={conference:e,type:t};this._uaEvents.trigger(Ne,n)});o(this,"_triggerAccountChangedNotify",()=>{this._uaEvents.trigger(Ce,void 0)});o(this,"_triggerAccountDeletedNotify",()=>{this._uaEvents.trigger(ge,void 0)});o(this,"_triggerConferenceParticipantTokenIssued",({body:{conference:e,participant:t,jwt:n}})=>{const i={conference:e,participant:t,jwt:n};this._uaEvents.trigger(Ae,i)});o(this,"_triggerChannelsNotify",e=>{const t=e.input,n=e.output,i={inputChannels:t,outputChannels:n};this._uaEvents.trigger(se,i)});o(this,"_triggerParticipationAcceptingWordRequest",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(ue,t)});o(this,"_triggerParticipationCancellingWordRequest",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(Te,t)});o(this,"_triggerParticipantMoveRequestToStream",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(de,t)});o(this,"_triggerEnterRoom",e=>{const t=e.getHeader(zt),n=e.getHeader(sn);this._sessionEvents.trigger(Z,{room:t,participantName:n})});o(this,"_triggerShareState",e=>{const t=e.getHeader(I);this._sessionEvents.trigger(y,t)});o(this,"_maybeTriggerParticipantMoveRequestToSpectators",e=>{e.getHeader(hn)===lt&&this._sessionEvents.trigger(he,void 0)});o(this,"_triggerMainCamControl",e=>{const t=e.getHeader(on),n=e.getHeader(Le),i=n===q.ADMIN_SYNC_FORCED;if(t===R.ADMIN_START_MAIN_CAM){this._sessionEvents.trigger(ae,{isSyncForced:i});return}if(t===R.ADMIN_STOP_MAIN_CAM){this._sessionEvents.trigger(re,{isSyncForced:i});return}(t===R.RESUME_MAIN_CAM||t===R.PAUSE_MAIN_CAM)&&n&&this._sessionEvents.trigger(w,{isSyncForced:i});const r=e.getHeader(an);this._sessionEvents.trigger(oe,{mainCam:t,resolutionMainCam:r})});o(this,"_triggerMicControl",e=>{const t=e.getHeader(rn),i=e.getHeader(Le)===q.ADMIN_SYNC_FORCED;t===W.ADMIN_START_MIC?this._sessionEvents.trigger(Ee,{isSyncForced:i}):t===W.ADMIN_STOP_MIC&&this._sessionEvents.trigger(ce,{isSyncForced:i})});o(this,"_triggerUseLicense",e=>{const t=e.getHeader(nn);this._sessionEvents.trigger(ee,t)});o(this,"_handleNewInfo",e=>{const{originator:t}=e;if(t!=="remote")return;const{request:n}=e,i=n.getHeader(Xt);if(i)switch(i){case Qt:{this._triggerEnterRoom(n),this._maybeTriggerChannels(n);break}case un:{this._maybeHandleNotify(n);break}case D:{this._triggerShareState(n);break}case be:{this._triggerMainCamControl(n);break}case en:{this._triggerMicControl(n);break}case tn:{this._triggerUseLicense(n);break}case dn:{this._maybeTriggerParticipantMoveRequestToSpectators(n);break}}});o(this,"_handleSipEvent",({request:e})=>{this._maybeHandleNotify(e)});o(this,"_maybeHandleNotify",e=>{const t=e.getHeader(Tn);if(t){const n=JSON.parse(t);this._handleNotify(n)}});o(this,"_handleEnded",e=>{const{originator:t}=e;t===We&&this._sessionEvents.trigger(ie,e),this._restoreSession()});this.JsSIP=e,this._sessionEvents=new ve(De),this._uaEvents=new ve(Oe),this._cancelableConnect=new C.CancelableRequest(this._connect,{moduleName:g,afterCancelRequest:()=>{this._cancelableInitUa.cancelRequest(),this._cancelableDisconnect.cancelRequest()}}),this._cancelableInitUa=new C.CancelableRequest(this._initUa,{moduleName:g}),this._cancelableDisconnect=new C.CancelableRequest(this._disconnect,{moduleName:g}),this._cancelableSet=new C.CancelableRequest(this._set,{moduleName:g}),this._cancelableCall=new C.CancelableRequest(this._call,{moduleName:g}),this._cancelableAnswer=new C.CancelableRequest(this._answer,{moduleName:g}),this._cancelableSendDTMF=new C.CancelableRequest(this._sendDTMF,{moduleName:g}),this.onSession(y,this._handleShareState),this.onSession(Ie,this._handleNewInfo),this.on(z,this._handleSipEvent),this.onSession(A,this._handleEnded),this.onSession(O,this._handleEnded)}async register(){return new Promise((e,t)=>{this.isRegisterConfig&&this.ua?(this.ua.on(m,e),this.ua.on(P,t),this.ua.register()):t(new Error("Config is not registered"))})}async unregister(){return new Promise((e,t)=>{this.isRegistered&&this.ua?(this.ua.on(X,e),this.ua.unregister()):t(new Error("ua is not registered"))})}async sendOptions(e,t,n){if(!this.ua)throw new Error("is not connected");return new Promise((i,r)=>{try{this.ua.sendOptions(e,t,{extraHeaders:n,eventHandlers:{succeeded:()=>{i()},failed:r}})}catch(a){r(a)}})}async ping(e,t){var i;if(!((i=this.ua)!=null&&i.configuration.uri))throw new Error("is not connected");const n=this.ua.configuration.uri;return this.sendOptions(n,e,t)}async checkTelephony({userAgent:e,displayName:t,sipServerUrl:n,sipWebSocketServerURL:i,remoteAddress:r,extraHeaders:a}){return new Promise((c,_)=>{const{configuration:l}=this.createUaConfiguration({sipWebSocketServerURL:i,displayName:t,userAgent:e,sipServerUrl:n}),E=this._createUa({...l,remoteAddress:r,extraHeaders:a}),d=()=>{const u=new Error("Telephony is not available");_(u)};E.once(S,d);const h=()=>{E.removeAllListeners(),E.once(S,c),E.stop()};E.once(f,h),E.start()})}async replaceMediaStream(e,t){if(!this.session)throw new Error("No session established");const{contentHint:n}=t||{},i=M(e,{contentHint:n});return this.session.replaceMediaStream(i,t)}async askPermissionToEnableCam(e={}){if(!this.session)throw new Error("No session established");const t=[In];return this.session.sendInfo(be,void 0,{noTerminateWhenError:!0,...e,extraHeaders:t}).catch(n=>{if(wn(n))throw n})}get isPendingPresentation(){return!!this.promisePendingStartPresentation||!!this.promisePendingStopPresentation}async _sendPresentationWithDuplicatedCalls({session:e,stream:t,presentationOptions:n,options:i={callLimit:zn}}){const r=async()=>this._sendPresentation(e,t,n),a=()=>!!this._streamPresentationCurrent;return this._cancelableSendPresentationWithRepeatedCalls=ye.repeatedCallsAsync({targetFunction:r,isComplete:a,isRejectAsValid:!0,...i}),this._cancelableSendPresentationWithRepeatedCalls.then(c=>c)}hasEqualConnectionConfiguration(e){var i;const{configuration:t}=this.createUaConfiguration(e),n=(i=this.ua)==null?void 0:i.configuration;return(n==null?void 0:n.password)===t.password&&(n==null?void 0:n.register)===t.register&&(n==null?void 0:n.uri.toString())===t.uri&&(n==null?void 0:n.display_name)===t.display_name&&(n==null?void 0:n.user_agent)===t.user_agent&&(n==null?void 0:n.sockets)===t.sockets&&(n==null?void 0:n.session_timers)===t.session_timers&&(n==null?void 0:n.register_expires)===t.register_expires&&(n==null?void 0:n.connection_recovery_min_interval)===t.connection_recovery_min_interval&&(n==null?void 0:n.connection_recovery_max_interval)===t.connection_recovery_max_interval}createUaConfiguration({user:e,password:t,sipWebSocketServerURL:n,displayName:i="",sipServerUrl:r,register:a=!1,sessionTimers:c=!1,registerExpires:_=60*5,connectionRecoveryMinInterval:l=2,connectionRecoveryMaxInterval:E=6,userAgent:d}){if(a&&!t)throw new Error("password is required for authorized connection");const h=a&&e?e.trim():`${Mn()}`,u=On(r),N=u(h),T=new this.JsSIP.WebSocketInterface(n);return{configuration:{password:t,register:a,uri:N,display_name:He(i),user_agent:d,sdp_semantics:"unified-plan",sockets:[T],session_timers:c,register_expires:_,connection_recovery_min_interval:l,connection_recovery_max_interval:E},helpers:{socket:T,getSipServerUrl:u}}}async _sendPresentation(e,t,{maxBitrate:n=dt,onAddedSender:i,isNeedReinvite:r=!0,isP2P:a=!1,contentHint:c="detail"}){const _=M(t,{contentHint:c});this._streamPresentationCurrent=_;const l=a?[gn]:[Sn],E=e.sendInfo(D,void 0,{extraHeaders:l}).then(async()=>e.startPresentation(_,r,i)).then(async()=>{const{connection:d}=this;if(!d||n===void 0)return;const h=d.getSenders();await Gn(h,t,n)}).then(()=>t).catch(d=>{throw this._removeStreamPresentationCurrent(),this._sessionEvents.trigger(H,d),d});return this.promisePendingStartPresentation=E,E.finally(()=>{this.promisePendingStartPresentation=void 0})}async startPresentation(e,{isNeedReinvite:t,isP2P:n,maxBitrate:i,onAddedSender:r,contentHint:a}={},c){const _=this.establishedSession;if(!_)throw new Error("No session established");if(this._streamPresentationCurrent)throw new Error("Presentation is already started");return n&&await this.sendMustStopPresentation(_),this._sendPresentationWithDuplicatedCalls({session:_,stream:e,presentationOptions:{isNeedReinvite:t,isP2P:n,maxBitrate:i,onAddedSender:r,contentHint:a},options:c})}async sendMustStopPresentation(e){await e.sendInfo(D,void 0,{extraHeaders:[Cn]})}async stopPresentation({isP2P:e=!1}={}){this._cancelSendPresentationWithRepeatedCalls();const t=this._streamPresentationCurrent;let n=this.promisePendingStartPresentation??Promise.resolve();const i=e?[An]:[Nn],r=this.establishedSession;return r&&t&&(n=n.then(async()=>r.sendInfo(D,void 0,{extraHeaders:i})).then(async()=>r.stopPresentation(t)).catch(a=>{throw this._sessionEvents.trigger(H,a),a})),!r&&t&&this._sessionEvents.trigger(fe,t),this.promisePendingStopPresentation=n,n.finally(()=>{this._resetPresentation()})}async updatePresentation(e,{isP2P:t,maxBitrate:n,onAddedSender:i,contentHint:r}={}){const a=this.establishedSession;if(!a)throw new Error("No session established");if(!this._streamPresentationCurrent)throw new Error("Presentation has not started yet");return this.promisePendingStartPresentation&&await this.promisePendingStartPresentation,this._sendPresentation(a,e,{isP2P:t,maxBitrate:n,onAddedSender:i,contentHint:r,isNeedReinvite:!1})}_removeStreamPresentationCurrent(){delete this._streamPresentationCurrent}_resetPresentation(){this._removeStreamPresentationCurrent(),this.promisePendingStartPresentation=void 0,this.promisePendingStopPresentation=void 0}_cancelRequestsAndResetPresentation(){this._cancelSendPresentationWithRepeatedCalls(),this._resetPresentation()}on(e,t){return this._uaEvents.on(e,t)}once(e,t){return this._uaEvents.once(e,t)}onceRace(e,t){return this._uaEvents.onceRace(e,t)}async wait(e){return this._uaEvents.wait(e)}off(e,t){this._uaEvents.off(e,t)}onSession(e,t){return this._sessionEvents.on(e,t)}onceSession(e,t){return this._sessionEvents.once(e,t)}onceRaceSession(e,t){return this._sessionEvents.onceRace(e,t)}async waitSession(e){return this._sessionEvents.wait(e)}offSession(e,t){this._sessionEvents.off(e,t)}isConfigured(){return!!this.ua}getConnectionConfiguration(){return{...this._connectionConfiguration}}getRemoteStreams(){if(!this.connection)return;const t=this.connection.getReceivers().map(({track:n})=>n);return pn(t)?this._generateStreams(t):this._generateAudioStreams(t)}get connection(){var t;return(t=this.session)==null?void 0:t.connection}get remoteCallerData(){var e,t,n,i,r,a;return{displayName:(t=(e=this.incomingSession)==null?void 0:e.remote_identity)==null?void 0:t.display_name,host:(i=(n=this.incomingSession)==null?void 0:n.remote_identity)==null?void 0:i.uri.host,incomingNumber:(a=(r=this.incomingSession)==null?void 0:r.remote_identity)==null?void 0:a.uri.user,session:this.incomingSession}}get requested(){return this._cancelableConnect.requested||this._cancelableInitUa.requested||this._cancelableCall.requested||this._cancelableAnswer.requested}get establishedSession(){var e;return(e=this.session)!=null&&e.isEstablished()?this.session:void 0}get isRegistered(){return!!this.ua&&this.ua.isRegistered()}get isRegisterConfig(){return!!this.ua&&this._isRegisterConfig}get isCallActive(){return!!(this.ua&&this.session)}get isAvailableIncomingCall(){return!!this.incomingSession}_generateStream(e,t){const{id:n}=e,i=this._remoteStreams[n]||new MediaStream;return t&&i.addTrack(t),i.addTrack(e),this._remoteStreams[n]=i,i}_generateAudioStream(e){const{id:t}=e,n=this._remoteStreams[t]||new MediaStream;return n.addTrack(e),this._remoteStreams[t]=n,n}_generateStreams(e){const t=[];return e.forEach((n,i)=>{if(n.kind==="audio")return;const r=n,a=e[i-1];let c;a&&a.kind==="audio"&&(c=a);const _=this._generateStream(r,c);t.push(_)}),t}_generateAudioStreams(e){return e.map(n=>this._generateAudioStream(n))}_cancelRequests(){this._cancelActionsRequests(),this._cancelCallRequests(),this._cancelConnectWithRepeatedCalls()}_cancelConnectWithRepeatedCalls(){var e;(e=this._cancelableConnectWithRepeatedCalls)==null||e.cancel()}_cancelSendPresentationWithRepeatedCalls(){var e;(e=this._cancelableSendPresentationWithRepeatedCalls)==null||e.cancel()}_cancelCallRequests(){this._cancelableCall.cancelRequest(),this._cancelableAnswer.cancelRequest()}_cancelActionsRequests(){this._cancelableAnswer.cancelRequest(),this._cancelableSendDTMF.cancelRequest()}async waitChannels(){return this.waitSession(b)}async waitSyncMediaState(){return this.waitSession(w)}async sendChannels({inputChannels:e,outputChannels:t}){if(!this.session)throw new Error("No session established");const n=`${we}: ${e}`,i=`${Ue}: ${t}`,r=[n,i];return this.session.sendInfo(jt,void 0,{extraHeaders:r})}async sendMediaState({cam:e,mic:t},n={}){if(!this.session)throw new Error("No session established");const i=`${cn}: currentstate`,r=`${_n}: ${Number(e)}`,a=`${ln}: ${Number(t)}`,c=[i,r,a];return this.session.sendInfo(Kt,void 0,{noTerminateWhenError:!0,...n,extraHeaders:c})}async _sendRefusalToTurnOn(e,t={}){if(!this.session)throw new Error("No session established");const c=[`${En}: ${e==="mic"?0:1}`];return this.session.sendInfo(Zt,void 0,{noTerminateWhenError:!0,...t,extraHeaders:c})}async sendRefusalToTurnOnMic(e={}){if(!this.session)throw new Error("No session established");return this._sendRefusalToTurnOn("mic",{noTerminateWhenError:!0,...e})}async sendRefusalToTurnOnCam(e={}){if(!this.session)throw new Error("No session established");return this._sendRefusalToTurnOn("cam",{noTerminateWhenError:!0,...e})}}exports.BAD_MEDIA_DESCRIPTION=Ve;exports.EEventsMainCAM=R;exports.EEventsMic=W;exports.EEventsSyncMediaState=q;exports.EUseLicense=Ct;exports.NOT_FOUND=ke;exports.REJECTED=x;exports.SESSION_EVENT_NAMES=De;exports.SipConnector=cs;exports.UA_EVENT_NAMES=Oe;exports.causes=Yt;exports.constants=Gt;exports.disableDebug=mn;exports.enableDebug=fn;exports.eventNames=$t;exports.hasCanceledCallError=Qn;exports.logger=p;exports.setEncodingsToSender=It;exports.setParametersToSender=Rt;
|