sip-connector 8.2.0 → 8.3.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-BCc5pokv.cjs +1 -0
- package/dist/{SipConnector-C5s0hhzA.js → SipConnector-DagL4rCl.js} +209 -202
- package/dist/SipConnector.d.ts +6 -5
- package/dist/__fixtures__/BaseSession.mock.d.ts +0 -1
- package/dist/__fixtures__/RTCPeerConnectionMock.d.ts +0 -1
- package/dist/__fixtures__/Registrator.mock.d.ts +0 -1
- package/dist/__fixtures__/Request.mock.d.ts +0 -1
- package/dist/__fixtures__/Session.mock.d.ts +0 -1
- package/dist/__fixtures__/UA.mock.d.ts +0 -1
- package/dist/__fixtures__/index.d.ts +0 -1
- package/dist/__fixtures__/jssip.mock.d.ts +0 -1
- package/dist/constants.d.ts +1 -0
- package/dist/doMock.cjs +1 -1
- package/dist/doMock.d.ts +0 -1
- package/dist/doMock.js +2 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +107 -105
- package/dist/logger.d.ts +0 -1
- package/dist/tools/__fixtures__/call.d.ts +0 -1
- package/dist/tools/__fixtures__/connectToServer.d.ts +0 -1
- package/dist/tools/__fixtures__/hasValidUri.d.ts +0 -1
- package/dist/tools/__fixtures__/processRequest.d.ts +0 -1
- package/dist/tools/answerIncomingCall.d.ts +0 -1
- package/dist/tools/callToServer.d.ts +0 -1
- package/dist/tools/connectToServer.d.ts +0 -1
- package/dist/tools/disconnectFromServer.d.ts +0 -1
- package/dist/tools/error/getLinkError.d.ts +0 -1
- package/dist/tools/error/getTypeFromError.d.ts +0 -1
- package/dist/tools/error/getValuesFromError.d.ts +0 -1
- package/dist/tools/prepareMediaStream.d.ts +7 -0
- package/dist/tools/resolveAskPermissionToEnableCam.d.ts +0 -1
- package/dist/tools/resolveGetRemoteStreams.d.ts +0 -1
- package/dist/tools/resolveOnMoveToSpectators.d.ts +0 -1
- package/dist/tools/resolveOnMustStopPresentation.d.ts +0 -1
- package/dist/tools/resolveOnUseLicense.d.ts +0 -1
- package/dist/tools/resolveSendMediaState.d.ts +0 -1
- package/dist/tools/resolveSendRefusalToTurnOnCam.d.ts +0 -1
- package/dist/tools/resolveSendRefusalToTurnOnMic.d.ts +0 -1
- package/dist/tools/resolveStartPresentation.d.ts +4 -4
- package/dist/tools/resolveStopShareSipConnector.d.ts +0 -1
- package/dist/tools/resolveUpdatePresentation.d.ts +0 -1
- package/dist/tools/resolveUpdateRemoteStreams.d.ts +1 -1
- package/dist/tools/setVideoTrackContentHints.d.ts +3 -0
- package/dist/tools/syncMediaState/index.d.ts +0 -1
- package/dist/tools/syncMediaState/resolveOnStartMainCam.d.ts +0 -1
- package/dist/tools/syncMediaState/resolveOnStartMic.d.ts +0 -1
- package/dist/tools/syncMediaState/resolveOnStopMainCam.d.ts +0 -1
- package/dist/tools/syncMediaState/resolveOnStopMic.d.ts +0 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils.d.ts +0 -4
- package/dist/videoSendingBalancer/balance.d.ts +0 -1
- package/dist/videoSendingBalancer/index.d.ts +0 -1
- package/dist/videoSendingBalancer/processSender.d.ts +0 -1
- package/package.json +19 -17
- package/dist/SipConnector-BA8w-WR5.cjs +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { UA, WebSocketInterface } from '@krivega/jssip';
|
|
2
|
-
|
|
3
2
|
export declare enum EEventsMainCAM {
|
|
4
3
|
PAUSE_MAIN_CAM = "PAUSEMAINCAM",
|
|
5
4
|
RESUME_MAIN_CAM = "RESUMEMAINCAM",
|
|
@@ -47,3 +46,4 @@ export type TParametersCreateUa = {
|
|
|
47
46
|
connectionRecoveryMaxInterval?: number;
|
|
48
47
|
userAgent?: string;
|
|
49
48
|
};
|
|
49
|
+
export type TContentHint = 'motion' | 'detail' | 'text' | 'none';
|
package/dist/utils.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
export declare function resolveSipUrl(serverUrl: string): (string: string) => string;
|
|
2
2
|
export declare const parseDisplayName: (displayName: string) => string;
|
|
3
3
|
export declare const generateUserId: () => number;
|
|
4
|
-
export declare const prepareMediaStream: (mediaStream?: MediaStream, { videoMode, audioMode, }?: {
|
|
5
|
-
videoMode?: "recvonly" | "sendonly" | "sendrecv";
|
|
6
|
-
audioMode?: "recvonly" | "sendonly" | "sendrecv";
|
|
7
|
-
}) => MediaStream | undefined;
|
|
8
4
|
export declare const hasVideoTracks: (remoteTracks: MediaStreamTrack[]) => boolean;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EEventsMainCAM } from '../types';
|
|
2
2
|
import { TOnSetParameters, TResult } from './setEncodingsToSender';
|
|
3
|
-
|
|
4
3
|
declare const balance: ({ mainCam, resolutionMainCam, connection, onSetParameters, ignoreForCodec, }: {
|
|
5
4
|
mainCam?: EEventsMainCAM;
|
|
6
5
|
resolutionMainCam?: string;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { default as SipConnector } from '../SipConnector';
|
|
2
2
|
import { TOnSetParameters } from './setEncodingsToSender';
|
|
3
|
-
|
|
4
3
|
declare const resolveVideoSendingBalancer: (sipConnector: SipConnector, { ignoreForCodec, onSetParameters, }?: {
|
|
5
4
|
ignoreForCodec?: string;
|
|
6
5
|
onSetParameters?: TOnSetParameters;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sip-connector",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.3.0",
|
|
4
4
|
"description": "Module for connect to Vinteo server",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webrtc",
|
|
@@ -64,20 +64,21 @@
|
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@krivega/cancelable-promise": "^1.1.3",
|
|
66
66
|
"@krivega/jssip": "^3.24.3",
|
|
67
|
-
"debug": "^4.3.
|
|
67
|
+
"debug": "^4.3.6",
|
|
68
68
|
"events-constructor": "^1.2.3",
|
|
69
69
|
"repeated-calls": "^2.2.1",
|
|
70
70
|
"sequent-promises": "^2.0.1",
|
|
71
71
|
"stack-promises": "^2.0.2",
|
|
72
72
|
"ts-debounce": "^4.0.0",
|
|
73
|
-
"webrtc-mock": "^1.
|
|
73
|
+
"webrtc-mock": "^1.1.6"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@babel/preset-typescript": "^7.24.7",
|
|
77
|
-
"@commitlint/cli": "^19.
|
|
78
|
-
"@commitlint/config-conventional": "^19.
|
|
77
|
+
"@commitlint/cli": "^19.4.1",
|
|
78
|
+
"@commitlint/config-conventional": "^19.4.1",
|
|
79
79
|
"@nabla/vite-plugin-eslint": "^2.0.4",
|
|
80
80
|
"@types/debug": "^4.1.12",
|
|
81
|
+
"@types/dom-mediacapture-transform": "^0.1.9",
|
|
81
82
|
"@types/jest": "^29.5.12",
|
|
82
83
|
"@typescript-eslint/eslint-plugin": "^7.15.0",
|
|
83
84
|
"@typescript-eslint/parser": "^7.15.0",
|
|
@@ -86,27 +87,27 @@
|
|
|
86
87
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
87
88
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
88
89
|
"eslint-config-prettier": "^9.1.0",
|
|
89
|
-
"eslint-import-resolver-typescript": "^3.6.
|
|
90
|
+
"eslint-import-resolver-typescript": "^3.6.3",
|
|
90
91
|
"eslint-plugin-flowtype": "^8.0.3",
|
|
91
92
|
"eslint-plugin-import": "^2.29.1",
|
|
92
|
-
"eslint-plugin-jest": "^28.
|
|
93
|
-
"eslint-plugin-prettier": "^5.1
|
|
94
|
-
"eslint-plugin-unicorn": "^
|
|
95
|
-
"husky": "^9.
|
|
93
|
+
"eslint-plugin-jest": "^28.8.0",
|
|
94
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
95
|
+
"eslint-plugin-unicorn": "^55.0.0",
|
|
96
|
+
"husky": "^9.1.5",
|
|
96
97
|
"jest": "^29.7.0",
|
|
97
98
|
"jest-environment-jsdom": "^29.7.0",
|
|
98
99
|
"jest-extended": "^4.0.2",
|
|
99
100
|
"jest-junit": "^16.0.0",
|
|
100
|
-
"lint-staged": "^15.2.
|
|
101
|
-
"prettier": "^3.3.
|
|
101
|
+
"lint-staged": "^15.2.9",
|
|
102
|
+
"prettier": "^3.3.3",
|
|
102
103
|
"standard-version": "^9.5.0",
|
|
103
|
-
"ts-jest": "^29.
|
|
104
|
+
"ts-jest": "^29.2.5",
|
|
104
105
|
"ts-node": "^10.9.2",
|
|
105
106
|
"tsc-files": "^1.1.4",
|
|
106
|
-
"typescript": "^5.5.
|
|
107
|
-
"vite": "^5.
|
|
108
|
-
"vite-plugin-dts": "^
|
|
109
|
-
"vite-tsconfig-paths": "^
|
|
107
|
+
"typescript": "^5.5.4",
|
|
108
|
+
"vite": "^5.4.2",
|
|
109
|
+
"vite-plugin-dts": "^4.0.3",
|
|
110
|
+
"vite-tsconfig-paths": "^5.0.1"
|
|
110
111
|
},
|
|
111
112
|
"peerDependencies": {
|
|
112
113
|
"@krivega/cancelable-promise": "^1.1.3",
|
|
@@ -119,5 +120,6 @@
|
|
|
119
120
|
"ts-debounce": "^4.0.0",
|
|
120
121
|
"webrtc-mock": "^1.0.4"
|
|
121
122
|
},
|
|
123
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
|
|
122
124
|
"main:src": "src/index.ts"
|
|
123
125
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";var pt=Object.defineProperty;var Pt=(r,e,t)=>e in r?pt(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var i=(r,e,t)=>Pt(r,typeof e!="symbol"?e+"":e,t);const C=require("@krivega/cancelable-promise"),Me=require("events-constructor"),ve=require("repeated-calls"),B=require("debug"),ft="Connection Error",We="Request Timeout",Ot="SIP Failure Code",Dt="Internal Error",Mt="Busy",V="Rejected",vt="Redirected",bt="Unavailable",qe="Not Found",yt="Address Incomplete",wt="Incompatible SDP",Ut="Missing SDP",Lt="Authentication Error",ke="Terminated",Ht="WebRTC Error",Fe="Canceled",Wt="No Answer",qt="Expires",kt="No ACK",Ft="Dialog Error",Bt="User Denied Media Access",Be="Bad Media Description",Vt="RTP Timeout",Yt=Object.freeze(Object.defineProperty({__proto__:null,ADDRESS_INCOMPLETE:yt,AUTHENTICATION_ERROR:Lt,BAD_MEDIA_DESCRIPTION:Be,BUSY:Mt,BYE:ke,CANCELED:Fe,CONNECTION_ERROR:ft,DIALOG_ERROR:Ft,EXPIRES:qt,INCOMPATIBLE_SDP:wt,INTERNAL_ERROR:Dt,MISSING_SDP:Ut,NOT_FOUND:qe,NO_ACK:kt,NO_ANSWER:Wt,REDIRECTED:vt,REJECTED:V,REQUEST_TIMEOUT:We,RTP_TIMEOUT:Vt,SIP_FAILURE_CODE:Ot,UNAVAILABLE:bt,USER_DENIED_MEDIA_ACCESS:Bt,WEBRTC_ERROR:Ht},Symbol.toStringTag,{value:"Module"})),Y="incomingCall",x="declinedIncomingCall",G="failedIncomingCall",$="terminatedIncomingCall",q="connecting",m="connected",u="disconnected",M="newRTCSession",p="registered",X="unregistered",P="registrationFailed",Ve="newMessage",J="sipEvent",z="availableSecondRemoteStream",Q="notAvailableSecondRemoteStream",j="mustStopPresentation",v="shareState",K="enterRoom",Z="useLicense",ee="peerconnection:confirmed",te="peerconnection:ontrack",b="channels",ne="channels:notify",se="ended:fromserver",ie="main-cam-control",re="admin-stop-main-cam",oe="admin-start-main-cam",ae="admin-stop-mic",ce="admin-start-mic",y="admin-force-sync-media-state",_e="participant:added-to-list-moderators",Ee="participant:removed-from-list-moderators",le="participant:move-request-to-stream",he="participant:move-request-to-spectators",de="participation:accepting-word-request",Te="participation:cancelling-word-request",ue="webcast:started",Se="webcast:stopped",Ce="account:changed",Ne="account:deleted",ge="conference:participant-token-issued",f="ended",Ye="sending",xe="reinvite",Ge="replaces",$e="refer",Xe="progress",Je="accepted",w="confirmed",U="peerconnection",A="failed",ze="muted",Qe="unmuted",Ae="newDTMF",Re="newInfo",je="hold",Ke="unhold",Ze="update",et="sdp",tt="icecandidate",nt="getusermediafailed",st="peerconnection:createofferfailed",it="peerconnection:createanswerfailed",rt="peerconnection:setlocaldescriptionfailed",ot="peerconnection:setremotedescriptionfailed",at="presentation:start",ct="presentation:started",_t="presentation:end",Ie="presentation:ended",L="presentation:failed",Et="SPECTATOR",xt=Object.freeze(Object.defineProperty({__proto__:null,ACCEPTED:Je,ACCOUNT_CHANGED:Ce,ACCOUNT_DELETED:Ne,ADMIN_FORCE_SYNC_MEDIA_STATE:y,ADMIN_START_MAIN_CAM:oe,ADMIN_START_MIC:ce,ADMIN_STOP_MAIN_CAM:re,ADMIN_STOP_MIC:ae,AVAILABLE_SECOND_REMOTE_STREAM_EVENT:z,CHANNELS:b,CHANNELS_NOTIFY:ne,CONFERENCE_PARTICIPANT_TOKEN_ISSUED:ge,CONFIRMED:w,CONNECTED:m,CONNECTING:q,DECLINED_INCOMING_CALL:x,DISCONNECTED:u,ENDED:f,ENDED_FROM_SERVER:se,ENTER_ROOM:K,FAILED:A,FAILED_INCOMING_CALL:G,GET_USER_MEDIA_FAILED:nt,HOLD:je,ICE_CANDIDATE:tt,INCOMING_CALL:Y,MAIN_CAM_CONTROL:ie,MUST_STOP_PRESENTATION_EVENT:j,MUTED:ze,NEW_DTMF:Ae,NEW_INFO:Re,NEW_MESSAGE:Ve,NEW_RTC_SESSION:M,NOT_AVAILABLE_SECOND_REMOTE_STREAM_EVENT:Q,PARTICIPANT_ADDED_TO_LIST_MODERATORS:_e,PARTICIPANT_MOVE_REQUEST_TO_SPECTATORS:he,PARTICIPANT_MOVE_REQUEST_TO_STREAM:le,PARTICIPANT_REMOVED_FROM_LIST_MODERATORS:Ee,PARTICIPATION_ACCEPTING_WORD_REQUEST:de,PARTICIPATION_CANCELLING_WORD_REQUEST:Te,PEER_CONNECTION:U,PEER_CONNECTION_CONFIRMED:ee,PEER_CONNECTION_CREATE_ANSWER_FAILED:it,PEER_CONNECTION_CREATE_OFFER_FAILED:st,PEER_CONNECTION_ONTRACK:te,PEER_CONNECTION_SET_LOCAL_DESCRIPTION_FAILED:rt,PEER_CONNECTION_SET_REMOTE_DESCRIPTION_FAILED:ot,PRESENTATION_END:_t,PRESENTATION_ENDED:Ie,PRESENTATION_FAILED:L,PRESENTATION_START:at,PRESENTATION_STARTED:ct,PROGRESS:Xe,REFER:$e,REGISTERED:p,REGISTRATION_FAILED:P,REINVITE:xe,REPLACES:Ge,SDP:et,SENDING:Ye,SHARE_STATE:v,SIP_EVENT:J,SPECTATOR:Et,TERMINATED_INCOMING_CALL:$,UNHOLD:Ke,UNMUTED:Qe,UNREGISTERED:X,UPDATE:Ze,USE_LICENSE:Z,WEBCAST_STARTED:ue,WEBCAST_STOPPED:Se},Symbol.toStringTag,{value:"Module"})),lt=[Y,x,$,G,de,Te,le,ne,ge,Ce,Ne,ue,Se,_e,Ee],me=[q,m,u,M,p,X,P,Ve,J],ht=[z,Q,j,v,K,Z,ee,te,b,se,ie,oe,re,ae,ce,y,he],pe=[f,q,Ye,xe,Ge,$e,Xe,Je,w,U,A,ze,Qe,Ae,Re,je,Ke,Ze,et,tt,nt,st,it,rt,ot,at,ct,_t,Ie,L],Pe=[...me,...lt],fe=[...pe,...ht],Gt=Object.freeze(Object.defineProperty({__proto__:null,SESSION_EVENT_NAMES:fe,SESSION_JSSIP_EVENT_NAMES:pe,SESSION_SYNTHETICS_EVENT_NAMES:ht,UA_EVENT_NAMES:Pe,UA_JSSIP_EVENT_NAMES:me,UA_SYNTHETICS_EVENT_NAMES:lt},Symbol.toStringTag,{value:"Module"})),$t=r=>{const e=[];return r&&e.push(`X-Vinteo-Remote: ${r}`),e},Xt="content-type",Jt="x-webrtc-enter-room",O="application/vinteo.webrtc.sharedesktop",zt="application/vinteo.webrtc.roomname",Qt="application/vinteo.webrtc.channels",jt="application/vinteo.webrtc.mediastate",Kt="application/vinteo.webrtc.refusal",be="application/vinteo.webrtc.maincam",Zt="application/vinteo.webrtc.mic",en="application/vinteo.webrtc.uselic",tn="X-WEBRTC-USE-LICENSE",nn="X-WEBRTC-PARTICIPANT-NAME",ye="X-WEBRTC-INPUT-CHANNELS",we="X-WEBRTC-OUTPUT-CHANNELS",sn="X-WEBRTC-MAINCAM",rn="X-WEBRTC-MIC",Ue="X-WEBRTC-SYNC",on="X-WEBRTC-MAINCAM-RESOLUTION",an="X-WEBRTC-MEDIA-STATE",cn="X-Vinteo-Media-Type",_n="X-Vinteo-MainCam-State",En="X-Vinteo-Mic-State",ln="application/vinteo.webrtc.partstate",hn="X-WEBRTC-PARTSTATE",dn="application/vinteo.webrtc.notify",Tn="X-VINTEO-NOTIFY",I="x-webrtc-share-state",un=`${I}: LETMESTARTPRESENTATION`,Sn=`${I}: STOPPRESENTATION`,dt="YOUCANRECEIVECONTENT",Tt="CONTENTEND",ut="YOUMUSTSTOPSENDCONTENT",Cn=`${I}: ${ut}`,Nn=`${I}: ${dt}`,gn=`${I}: ${Tt}`,An="X-WEBRTC-REQUEST-ENABLE-MEDIA-DEVICE",Rn=`${An}: LETMESTARTMAINCAM`,Oe="sip-connector",D=B(Oe),In=()=>{B.enable(Oe)},mn=()=>{B.enable(`-${Oe}`)};var R=(r=>(r.PAUSE_MAIN_CAM="PAUSEMAINCAM",r.RESUME_MAIN_CAM="RESUMEMAINCAM",r.MAX_MAIN_CAM_RESOLUTION="MAXMAINCAMRESOLUTION",r.ADMIN_STOP_MAIN_CAM="ADMINSTOPMAINCAM",r.ADMIN_START_MAIN_CAM="ADMINSTARTMAINCAM",r))(R||{}),H=(r=>(r.ADMIN_STOP_MIC="ADMINSTOPMIC",r.ADMIN_START_MIC="ADMINSTARTMIC",r))(H||{}),W=(r=>(r.ADMIN_SYNC_FORCED="1",r.ADMIN_SYNC_NOT_FORCED="0",r))(W||{}),St=(r=>(r.AUDIO="AUDIO",r.VIDEO="VIDEO",r.AUDIOPLUSPRESENTATION="AUDIOPLUSPRESENTATION",r))(St||{});function pn(r){return e=>`sip:${e}@${r}`}const Pn=(r,e)=>()=>Math.floor(Math.random()*(e-r))+r,Le=r=>r.trim().replaceAll(" ","_"),fn=Pn(1e5,99999999),k=(r,{videoMode:e,audioMode:t}={})=>{if(!r||e==="recvonly"&&t==="recvonly")return;const n=t==="recvonly"?[]:r.getAudioTracks(),s=e==="recvonly"?[]:r.getVideoTracks(),o=[...n,...s],a=new MediaStream(o);return a.getTracks=()=>[...a.getAudioTracks(),...a.getVideoTracks()],a},On=r=>r.some(t=>{const{kind:n}=t;return n==="video"}),Dn="Error decline with 603",Mn=1006,vn=r=>typeof r=="object"&&r!==null&&"code"in r&&r.code===Mn,bn=r=>r.message===Dn,yn=(r,e)=>r.find(t=>t.track&&e.getTracks().includes(t.track)),Ct=1,Nt=r=>(e,t)=>t!==void 0&&e!==t||t===void 0&&e!==r,wn=Nt(Ct),Un=(r,e)=>{const t=r===void 0?void 0:Math.max(r,Ct);if(t!==void 0&&wn(t,e))return t},Ln=Nt(),Hn=(r,e)=>{if(Ln(r,e))return r},gt=async(r,e,t)=>{const n=r.getParameters();(n.encodings===void 0||n.encodings.length===0)&&(n.encodings=[{}]);const[s]=n.encodings,o=s.scaleResolutionDownBy,a=Un(e.scaleResolutionDownBy,o);let c=!1;a!==void 0&&(n.encodings[0].scaleResolutionDownBy=a,c=!0);const _=s.maxBitrate,E=Hn(e.maxBitrate,_);return E!==void 0&&(n.encodings[0].maxBitrate=E,c=!0),c?(t&&t(n),r.setParameters(n).then(()=>({parameters:n,isChanged:c}))):{parameters:n,isChanged:c}},Wn=async(r,e,t)=>{const n=yn(r,e);if(n)return gt(n,{maxBitrate:t})},qn=486,kn=487,F="local",He="remote",Fn=3,Bn=1,Vn=(r=new Error)=>{const{originator:e,cause:t}=r;return C.isCanceledError(r)?!0:typeof t=="string"?t===We||t===V||e===F&&(t===Fe||t===ke):!1},g="SipConnector",Yn="channels",xn="WebcastStarted",Gn="WebcastStopped",$n="accountChanged",Xn="accountDeleted",Jn="addedToListModerators",zn="removedFromListModerators",Qn="ParticipationRequestAccepted",jn="ParticipationRequestRejected",Kn="ParticipantMovedToWebcast",Zn="ConferenceParticipantTokenIssued";class es{constructor({JsSIP:e}){i(this,"_isRegisterConfig",!1);i(this,"_connectionConfiguration",{});i(this,"_remoteStreams",{});i(this,"JsSIP");i(this,"_sessionEvents");i(this,"_uaEvents");i(this,"_cancelableConnect");i(this,"_cancelableConnectWithRepeatedCalls");i(this,"_cancelableSendPresentationWithRepeatedCalls");i(this,"_cancelableInitUa");i(this,"_cancelableDisconnect");i(this,"_cancelableSet");i(this,"_cancelableCall");i(this,"_cancelableAnswer");i(this,"_cancelableSendDTMF");i(this,"getSipServerUrl",e=>e);i(this,"promisePendingStartPresentation");i(this,"promisePendingStopPresentation");i(this,"ua");i(this,"session");i(this,"incomingSession");i(this,"_streamPresentationCurrent");i(this,"socket");i(this,"connect",async(e,t)=>(this._cancelRequests(),this._connectWithDuplicatedCalls(e,t)));i(this,"initUa",async e=>this._cancelableInitUa.request(e));i(this,"set",async e=>this._cancelableSet.request(e));i(this,"call",async e=>this._cancelableCall.request(e));i(this,"disconnect",async()=>(this._cancelRequests(),this._disconnectWithoutCancelRequests()));i(this,"answerToIncomingCall",async e=>this._cancelableAnswer.request(e));i(this,"sendDTMF",async e=>this._cancelableSendDTMF.request(e));i(this,"hangUp",async()=>(this._cancelRequests(),this._hangUpWithoutCancelRequests()));i(this,"tryRegister",async()=>{if(!this.isRegisterConfig)throw new Error("Config is not registered");this._uaEvents.trigger(q,void 0);try{await this.unregister()}catch(e){D("tryRegister",e)}return this.register()});i(this,"declineToIncomingCall",async({statusCode:e=kn}={})=>new Promise((t,n)=>{if(!this.isAvailableIncomingCall){n(new Error("no incomingSession"));return}const s=this.incomingSession,o=this.remoteCallerData;this._cancelableCall.cancelRequest(),this._cancelableAnswer.cancelRequest(),this.removeIncomingSession(),this._uaEvents.trigger(x,o),t(s.terminate({status_code:e}))}));i(this,"busyIncomingCall",async()=>this.declineToIncomingCall({statusCode:qn}));i(this,"removeIncomingSession",()=>{delete this.incomingSession});i(this,"_connectWithDuplicatedCalls",async(e,{callLimit:t=Fn}={})=>{let n=!0;const s=async()=>(n=!1,this._cancelableConnect.request(e)),o=a=>{var l;const c=!!((l=this.ua)!=null&&l.isConnected()),_=!n&&c&&this.hasEqualConnectionConfiguration(e),E=!!a&&!vn(a);return _||E};return this._cancelableConnectWithRepeatedCalls=ve.repeatedCallsAsync({targetFunction:s,isComplete:o,callLimit:t,isRejectAsValid:!0,onAfterCancel:()=>{this._cancelableConnect.cancelRequest()}}),this._cancelableConnectWithRepeatedCalls.then(a=>{if(a instanceof this.JsSIP.UA)return a;throw a})});i(this,"handleNewRTCSession",({originator:e,session:t})=>{if(e===He){this.incomingSession=t;const n=this.remoteCallerData;t.on(A,s=>{this.removeIncomingSession(),s.originator===F?this._uaEvents.trigger($,n):this._uaEvents.trigger(G,n)}),this._uaEvents.trigger(Y,n)}});i(this,"_connect",async e=>this.initUa(e).then(async()=>this._start()));i(this,"_initUa",async({user:e,password:t,sipServerUrl:n,sipWebSocketServerURL:s,remoteAddress:o,sessionTimers:a,registerExpires:c,connectionRecoveryMinInterval:_,connectionRecoveryMaxInterval:E,userAgent:l,displayName:d="",register:h=!1,extraHeaders:T=[]})=>{if(!n)throw new Error("sipServerUrl is required");if(!s)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:S,helpers:N}=this.createUaConfiguration({user:e,sipServerUrl:n,sipWebSocketServerURL:s,password:t,displayName:d,register:h,sessionTimers:a,registerExpires:c,connectionRecoveryMinInterval:_,connectionRecoveryMaxInterval:E,userAgent:l});this.getSipServerUrl=N.getSipServerUrl,this.socket=N.socket,this.ua&&await this._disconnectWithoutCancelRequests(),this._isRegisterConfig=!!h,this.ua=this._createUa(S),this._uaEvents.eachTriggers((Rt,It)=>{const De=me.find(mt=>mt===It);De&&this.ua&&this.ua.on(De,Rt)});const At=[...$t(o),...T];return this.ua.registrator().setExtraHeaders(At),this.ua});i(this,"_createUa",e=>new this.JsSIP.UA(e));i(this,"_start",async()=>new Promise((e,t)=>{const{ua:n}=this;if(!n){t(new Error("this.ua is not initialized"));return}const s=()=>{c(),e(n)},o=_=>{c(),t(_)},a=()=>{this.isRegisterConfig?(this.on(p,s),this.on(P,o)):this.on(m,s),this.on(u,o)},c=()=>{this.off(p,s),this.off(P,o),this.off(m,s),this.off(u,o)};a(),this.on(M,this.handleNewRTCSession),n.start()}));i(this,"_set",async({displayName:e,password:t})=>new Promise((n,s)=>{const{ua:o}=this;if(!o){s(new Error("this.ua is not initialized"));return}let a=!1,c=!1;e!==void 0&&e!==this._connectionConfiguration.displayName&&(a=o.set("display_name",Le(e)),this._connectionConfiguration.displayName=e),t!==void 0&&t!==this._connectionConfiguration.password&&(c=o.set("password",t),this._connectionConfiguration.password=t);const _=a||c;c&&this.isRegisterConfig?this.register().then(()=>{n(_)}).catch(E=>{s(E)}):_?n(_):s(new Error("nothing changed"))}));i(this,"_disconnectWithoutCancelRequests",async()=>this._cancelableDisconnect.request());i(this,"_disconnect",async()=>{this.off(M,this.handleNewRTCSession);const e=new Promise(t=>{this.once(u,()=>{delete this.ua,t()})});return this.ua?(await this._hangUpWithoutCancelRequests(),this.ua?this.ua.stop():this._uaEvents.trigger(u,void 0)):this._uaEvents.trigger(u,void 0),e});i(this,"_call",async({number:e,mediaStream:t,extraHeaders:n=[],ontrack:s,iceServers:o,videoMode:a,audioMode:c,degradationPreference:_,offerToReceiveAudio:E=!0,offerToReceiveVideo:l=!0})=>new Promise((d,h)=>{const{ua:T}=this;if(!T){h(new Error("this.ua is not initialized"));return}this._connectionConfiguration.number=e,this._connectionConfiguration.answer=!1,this._handleCall({ontrack:s}).then(d).catch(S=>{h(S)}),this.session=T.call(this.getSipServerUrl(e),{extraHeaders:n,mediaStream:k(t,{videoMode:a,audioMode:c}),eventHandlers:this._sessionEvents.triggers,videoMode:a,audioMode:c,degradationPreference:_,pcConfig:{iceServers:o},rtcOfferConstraints:{offerToReceiveAudio:E,offerToReceiveVideo:l}})}));i(this,"_answer",async({mediaStream:e,ontrack:t,extraHeaders:n=[],iceServers:s,videoMode:o,audioMode:a,degradationPreference:c})=>new Promise((_,E)=>{if(!this.isAvailableIncomingCall){E(new Error("no incomingSession"));return}this.session=this.incomingSession,this.removeIncomingSession();const{session:l}=this;if(!l){E(new Error("No session established"));return}this._sessionEvents.eachTriggers((h,T)=>{const S=pe.find(N=>N===T);S&&l.on(S,h)}),this._connectionConfiguration.answer=!0,this._connectionConfiguration.number=l.remote_identity.uri.user,this._handleCall({ontrack:t}).then(_).catch(h=>{E(h)});const d=k(e,{videoMode:o,audioMode:a});l.answer({extraHeaders:n,videoMode:o,audioMode:a,degradationPreference:c,mediaStream:d,pcConfig:{iceServers:s}})}));i(this,"_handleCall",async({ontrack:e})=>new Promise((t,n)=>{const s=()=>{this.onSession(U,l),this.onSession(w,d)},o=()=>{this.offSession(U,l),this.offSession(w,d)},a=()=>{this.onSession(A,_),this.onSession(f,_)},c=()=>{this.offSession(A,_),this.offSession(f,_)},_=h=>{o(),c(),n(h)};let E;const l=({peerconnection:h})=>{E=h,E.ontrack=T=>{this._sessionEvents.trigger(te,E),e&&e(T)}},d=()=>{E&&this._sessionEvents.trigger(ee,E),o(),c(),t(E)};s(),a()}));i(this,"_restoreSession",()=>{this._cancelRequestsAndResetPresentation(),delete this._connectionConfiguration.number,delete this.session,this._remoteStreams={}});i(this,"_sendDTMF",async e=>new Promise((t,n)=>{const{session:s}=this;if(!s){n(new Error("No session established"));return}this.onceSession(Ae,({originator:o})=>{o===F&&t()}),s.sendDTMF(e,{duration:120,interToneGap:600})}));i(this,"_hangUpWithoutCancelRequests",async()=>{if(this.ua&&this.session){const{session:e}=this;if(this._streamPresentationCurrent)try{await this.stopPresentation()}catch(t){D("error stop presentation: ",t)}if(this._restoreSession(),!e.isEnded())return e.terminateAsync()}});i(this,"_handleShareState",e=>{switch(e){case dt:{this._sessionEvents.trigger(z,void 0);break}case Tt:{this._sessionEvents.trigger(Q,void 0);break}case ut:{this._sessionEvents.trigger(j,void 0);break}}});i(this,"_maybeTriggerChannels",e=>{const t=e.getHeader(ye),n=e.getHeader(we);if(t&&n){const s={inputChannels:t,outputChannels:n};this._sessionEvents.trigger(b,s)}});i(this,"_handleNotify",e=>{switch(e.cmd){case Yn:{const t=e;this._triggerChannelsNotify(t);break}case xn:{const t=e;this._triggerWebcastStartedNotify(t);break}case Gn:{const t=e;this._triggerWebcastStoppedNotify(t);break}case Jn:{const t=e;this._triggerAddedToListModeratorsNotify(t);break}case zn:{const t=e;this._triggerRemovedFromListModeratorsNotify(t);break}case Qn:{const t=e;this._triggerParticipationAcceptingWordRequest(t);break}case jn:{const t=e;this._triggerParticipationCancellingWordRequest(t);break}case Kn:{const t=e;this._triggerParticipantMoveRequestToStream(t);break}case $n:{this._triggerAccountChangedNotify();break}case Xn:{this._triggerAccountDeletedNotify();break}case Zn:{const t=e;this._triggerConferenceParticipantTokenIssued(t);break}default:D("unknown cmd",e.cmd)}});i(this,"_triggerRemovedFromListModeratorsNotify",({conference:e})=>{const t={conference:e};this._uaEvents.trigger(Ee,t)});i(this,"_triggerAddedToListModeratorsNotify",({conference:e})=>{const t={conference:e};this._uaEvents.trigger(_e,t)});i(this,"_triggerWebcastStartedNotify",({body:{conference:e,type:t}})=>{const n={conference:e,type:t};this._uaEvents.trigger(ue,n)});i(this,"_triggerWebcastStoppedNotify",({body:{conference:e,type:t}})=>{const n={conference:e,type:t};this._uaEvents.trigger(Se,n)});i(this,"_triggerAccountChangedNotify",()=>{this._uaEvents.trigger(Ce,void 0)});i(this,"_triggerAccountDeletedNotify",()=>{this._uaEvents.trigger(Ne,void 0)});i(this,"_triggerConferenceParticipantTokenIssued",({body:{conference:e,participant:t,jwt:n}})=>{const s={conference:e,participant:t,jwt:n};this._uaEvents.trigger(ge,s)});i(this,"_triggerChannelsNotify",e=>{const t=e.input,n=e.output,s={inputChannels:t,outputChannels:n};this._uaEvents.trigger(ne,s)});i(this,"_triggerParticipationAcceptingWordRequest",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(de,t)});i(this,"_triggerParticipationCancellingWordRequest",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(Te,t)});i(this,"_triggerParticipantMoveRequestToStream",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(le,t)});i(this,"_triggerEnterRoom",e=>{const t=e.getHeader(Jt),n=e.getHeader(nn);this._sessionEvents.trigger(K,{room:t,participantName:n})});i(this,"_triggerShareState",e=>{const t=e.getHeader(I);this._sessionEvents.trigger(v,t)});i(this,"_maybeTriggerParticipantMoveRequestToSpectators",e=>{e.getHeader(hn)===Et&&this._sessionEvents.trigger(he,void 0)});i(this,"_triggerMainCamControl",e=>{const t=e.getHeader(sn),n=e.getHeader(Ue),s=n===W.ADMIN_SYNC_FORCED;if(t===R.ADMIN_START_MAIN_CAM){this._sessionEvents.trigger(oe,{isSyncForced:s});return}if(t===R.ADMIN_STOP_MAIN_CAM){this._sessionEvents.trigger(re,{isSyncForced:s});return}(t===R.RESUME_MAIN_CAM||t===R.PAUSE_MAIN_CAM)&&n&&this._sessionEvents.trigger(y,{isSyncForced:s});const o=e.getHeader(on);this._sessionEvents.trigger(ie,{mainCam:t,resolutionMainCam:o})});i(this,"_triggerMicControl",e=>{const t=e.getHeader(rn),s=e.getHeader(Ue)===W.ADMIN_SYNC_FORCED;t===H.ADMIN_START_MIC?this._sessionEvents.trigger(ce,{isSyncForced:s}):t===H.ADMIN_STOP_MIC&&this._sessionEvents.trigger(ae,{isSyncForced:s})});i(this,"_triggerUseLicense",e=>{const t=e.getHeader(tn);this._sessionEvents.trigger(Z,t)});i(this,"_handleNewInfo",e=>{const{originator:t}=e;if(t!=="remote")return;const{request:n}=e,s=n.getHeader(Xt);if(s)switch(s){case zt:{this._triggerEnterRoom(n),this._maybeTriggerChannels(n);break}case dn:{this._maybeHandleNotify(n);break}case O:{this._triggerShareState(n);break}case be:{this._triggerMainCamControl(n);break}case Zt:{this._triggerMicControl(n);break}case en:{this._triggerUseLicense(n);break}case ln:{this._maybeTriggerParticipantMoveRequestToSpectators(n);break}}});i(this,"_handleSipEvent",({request:e})=>{this._maybeHandleNotify(e)});i(this,"_maybeHandleNotify",e=>{const t=e.getHeader(Tn);if(t){const n=JSON.parse(t);this._handleNotify(n)}});i(this,"_handleEnded",e=>{const{originator:t}=e;t===He&&this._sessionEvents.trigger(se,e),this._restoreSession()});this.JsSIP=e,this._sessionEvents=new Me(fe),this._uaEvents=new Me(Pe),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(v,this._handleShareState),this.onSession(Re,this._handleNewInfo),this.on(J,this._handleSipEvent),this.onSession(A,this._handleEnded),this.onSession(f,this._handleEnded)}async register(){return new Promise((e,t)=>{this.isRegisterConfig&&this.ua?(this.ua.on(p,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((s,o)=>{try{this.ua.sendOptions(e,t,{extraHeaders:n,eventHandlers:{succeeded:()=>{s()},failed:o}})}catch(a){o(a)}})}async ping(e,t){var s;if(!((s=this.ua)!=null&&s.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:s}){return new Promise((o,a)=>{const{configuration:c}=this.createUaConfiguration({sipWebSocketServerURL:s,displayName:t,userAgent:e,sipServerUrl:n}),_=this._createUa(c),E=()=>{const d=new Error("Telephony is not available");a(d)};_.once(u,E);const l=()=>{_.removeAllListeners(),_.once(u,o),_.stop()};_.once(m,l),_.start()})}async replaceMediaStream(e,t){if(!this.session)throw new Error("No session established");return this.session.replaceMediaStream(e,t)}async askPermissionToEnableCam(e={}){if(!this.session)throw new Error("No session established");const t=[Rn];return this.session.sendInfo(be,void 0,{noTerminateWhenError:!0,...e,extraHeaders:t}).catch(n=>{if(bn(n))throw n})}get isPendingPresentation(){return!!this.promisePendingStartPresentation||!!this.promisePendingStopPresentation}async _sendPresentationWithDuplicatedCalls({session:e,stream:t,presentationOptions:n,options:s={callLimit:Bn}}){const o=async()=>this._sendPresentation(e,t,n),a=()=>!!this._streamPresentationCurrent;return this._cancelableSendPresentationWithRepeatedCalls=ve.repeatedCallsAsync({targetFunction:o,isComplete:a,isRejectAsValid:!0,...s}),this._cancelableSendPresentationWithRepeatedCalls.then(c=>{if(c instanceof MediaStream)return c;throw c})}hasEqualConnectionConfiguration(e){var s;const{configuration:t}=this.createUaConfiguration(e),n=(s=this.ua)==null?void 0:s.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:s="",sipServerUrl:o,register:a=!1,sessionTimers:c=!1,registerExpires:_=60*5,connectionRecoveryMinInterval:E=2,connectionRecoveryMaxInterval:l=6,userAgent:d}){if(a&&!t)throw new Error("password is required for authorized connection");const h=a&&e?e.trim():`${fn()}`,T=pn(o),S=T(h),N=new this.JsSIP.WebSocketInterface(n);return{configuration:{password:t,register:a,uri:S,display_name:Le(s),user_agent:d,sdp_semantics:"unified-plan",sockets:[N],session_timers:c,register_expires:_,connection_recovery_min_interval:E,connection_recovery_max_interval:l},helpers:{socket:N,getSipServerUrl:T}}}async _sendPresentation(e,t,{maxBitrate:n,degradationPreference:s,isNeedReinvite:o=!0,isP2P:a=!1}){const c=k(t);this._streamPresentationCurrent=c;const _=a?[Nn]:[un],E=e.sendInfo(O,void 0,{extraHeaders:_}).then(async()=>e.startPresentation(c,o,s)).then(async()=>{const{connection:l}=this;if(!l||n===void 0)return;const d=l.getSenders();await Wn(d,t,n)}).then(()=>t).catch(l=>{throw this._removeStreamPresentationCurrent(),this._sessionEvents.trigger(L,l),l});return this.promisePendingStartPresentation=E,E.finally(()=>{this.promisePendingStartPresentation=void 0})}async startPresentation(e,{isNeedReinvite:t=!0,isP2P:n=!1,maxBitrate:s,degradationPreference:o}={},a){const c=this.establishedSession;if(!c)throw new Error("No session established");if(this._streamPresentationCurrent)throw new Error("Presentation is already started");return n&&await this.sendMustStopPresentation(c),this._sendPresentationWithDuplicatedCalls({session:c,stream:e,presentationOptions:{isNeedReinvite:t,isP2P:n,maxBitrate:s,degradationPreference:o},options:a})}async sendMustStopPresentation(e){await e.sendInfo(O,void 0,{extraHeaders:[Cn]})}async stopPresentation({isP2P:e=!1}={}){this._cancelSendPresentationWithRepeatedCalls();const t=this._streamPresentationCurrent;let n=this.promisePendingStartPresentation??Promise.resolve();const s=e?[gn]:[Sn],o=this.establishedSession;return o&&t&&(n=n.then(async()=>o.sendInfo(O,void 0,{extraHeaders:s})).then(async()=>o.stopPresentation(t)).catch(a=>{throw this._sessionEvents.trigger(L,a),a})),!o&&t&&this._sessionEvents.trigger(Ie,t),this.promisePendingStopPresentation=n,n.finally(()=>{this._resetPresentation()})}async updatePresentation(e,{isP2P:t=!1,maxBitrate:n,degradationPreference:s}={}){const o=this.establishedSession;if(!o)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(o,e,{isP2P:t,maxBitrate:n,degradationPreference:s,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 On(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,s,o,a;return{displayName:(t=(e=this.incomingSession)==null?void 0:e.remote_identity)==null?void 0:t.display_name,host:(s=(n=this.incomingSession)==null?void 0:n.remote_identity)==null?void 0:s.uri.host,incomingNumber:(a=(o=this.incomingSession)==null?void 0:o.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,s=this._remoteStreams[n]||new MediaStream;return t&&s.addTrack(t),s.addTrack(e),this._remoteStreams[n]=s,s}_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,s)=>{if(n.kind==="audio")return;const o=n,a=e[s-1];let c;a&&a.kind==="audio"&&(c=a);const _=this._generateStream(o,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(y)}async sendChannels({inputChannels:e,outputChannels:t}){if(!this.session)throw new Error("No session established");const n=`${ye}: ${e}`,s=`${we}: ${t}`,o=[n,s];return this.session.sendInfo(Qt,void 0,{extraHeaders:o})}async sendMediaState({cam:e,mic:t},n={}){if(!this.session)throw new Error("No session established");const s=`${an}: currentstate`,o=`${_n}: ${Number(e)}`,a=`${En}: ${Number(t)}`,c=[s,o,a];return this.session.sendInfo(jt,void 0,{noTerminateWhenError:!0,...n,extraHeaders:c})}async _sendRefusalToTurnOn(e,t={}){if(!this.session)throw new Error("No session established");const c=[`${cn}: ${e==="mic"?0:1}`];return this.session.sendInfo(Kt,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=Be;exports.EEventsMainCAM=R;exports.EEventsMic=H;exports.EEventsSyncMediaState=W;exports.EUseLicense=St;exports.NOT_FOUND=qe;exports.REJECTED=V;exports.SESSION_EVENT_NAMES=fe;exports.SipConnector=es;exports.UA_EVENT_NAMES=Pe;exports.causes=Yt;exports.constants=xt;exports.disableDebug=mn;exports.enableDebug=In;exports.eventNames=Gt;exports.hasCanceledCallError=Vn;exports.logger=D;exports.setEncodingsToSender=gt;
|