UNPKG

sip-call-ring

Version:

jssip freeswitch have ring call

170 lines (154 loc) 7.23 kB
## 前情提要 开发环境必须用localhost,不然浏览器权限不会给你mic权限 生产环境必须https部署前端,不然也无法获取mic权限,这是浏览器安全策略,当然开发环境可以通过给浏览器加前缀绕过,但是你无法给每个客户启动浏览器的时候加前缀所以为了良好体验和接入顺利,部署一定使用https,开发一定用localhost 安装 安装方式分两种 模块化工程化安装 当前最新版本 - npm install sip-call-ring --save - yarn install sip-call-ring --save ## 初始化 ## 检查麦克风权限 调用初始化方法 this.sipClient = new SipCall(config),建议用户登录业务系统的时候就进行初始化,要求全局唯一,切记不能每次拨打电话的时候都初始化一次。 收到回调事件「REGISTERED」表示注册成功。错误处理:监听事件,收到「DISCONNECTED」、「REGISTER_FAILED」做出相应提示 //设置配置信息用于初始化 ```js const config = { host: "xxx.xxxx.xxx", // 服务地址 IP port: "xxx", // 服务所在端口 proto: true, // 使用wss或者ws协议,true为使用wss extNo: "xxx", //分机账号 extPwd: "xxxx", //分机密码 autoRegister: true, // 初始化后是否自动注册 checkMic: true, // 自动检测mic stateEventListener: (event, data) => { // 监听事件,详细有哪些事件下面会介绍 switch (event) { case "ERROR": // 做点什么 break; case "CONNECTED": // 做点什么 break; default: } }, statusListener: (status) => {}, // 坐席状态 1: 离线, 2: 在线, 3: 响铃中, 4: 通话中, 5: 呼叫中, 6: 小休中 7:忙碌中 8:整理中} callbackInfo: (info) => {}, // 号码额外信息 groupCallNotify: (info) => {}, // type 1: 状态通知, 2: 任务进度通知 // type===1: status 1// 待开始 , 2 // 进行中, 3 // 已完成 ,4 // 暂停中, 5 // 休息中 // type===2: completedCount(已拨打), totalCount(总号码数) otherEvent: (other) => {}, }; const sipClient = new SipCall(config); // 实例初始化 ``` ## 监听的事件 下面是stateEventListener能够监听的事件 暂时无法在飞书文档外展示此内容 举个🌰 ```js const stateEventListener = (event, data) => { switch ( event // 监听事件 ) { case "DISCONNECTED": // 如果断开链接 alert("连接已经断开"); break; case "REGISTERED": // 如果注册成功 alert("服务已经注册"); break; case "UNREGISTERED": alert("服务已经注销"); break; case "MIC_ERROR": alert(data.msg); // 麦克风错误并且弹出响应信息 break; case "INCOMING_CALL": //呼入 // data.otherLegNumber 是呼入的号码 alert(`${data.otherLegNumber} 有电话呼入`); case "OUTGOING_CALL": // 呼出 alert(`正在拨打 ${data.otherLegNumber}`); break; case "IN_CALL": alert("通话中"); break; case "CALL_END": alert("通话结束"); break; case "HOLD": alert("保持中"); break; case "MUTE": alert("静音"); break; case "UNMUTE": alert("取消静音"); break; case "CONNECTED": alert("已连接"); break; case "REGISTER_FAILED": alert("注册失败"); break; default: } }; ``` ## 实例内置的方法 暂时无法在飞书文档外展示此内容 举个🌰 ```js // 注册 sipClient.micCheck(); // 检查麦克风 sipClient.register(); // 如果在初始化的时候 autoRegister 参数设置为true这一步可以不用调用 sipClient.call("12123123123"); // 呼叫 sipClient.hangup(); // 挂断 sipClient.unregister(); //取消注册 sipClient.cleanSDK(); ``` ## 小tips 判断是否正在通话可以通过回调事件配合状态管理器来达到目的 在IN_CALL事件来确定正在通话 通过CALL_END来判断电话挂断 活用事件回调能实现很多功能 下面是所有已更新的埋点信息表格: | 类 | 方法 | 埋点事件名 | 埋点参数 | | --- | --- | --- | --- | | SipSocket | constructor | sip_call_init | extNo, extPwd, content, from: 'sdk' | | SipSocket | checkLogin | sip_socket_check_login | username, extNo, from: 'sdk' | | SipSocket | login | sip_socket_login | username, extNo, from: 'sdk' | | SipSocket | heartBeat | sip_socket_heartbeat | username, extNo, from: 'sdk' | | SipSocket | logout | sip_socket_logout | username, extNo, from: 'sdk' | | SipSocket | getSipWebrtcAddr | sip_socket_get_webrtc_addr | username, extNo, from: 'sdk' | | SipSocket | onDialing | sip_socket_on_dialing | username, extNo, from: 'sdk' | | SipSocket | onResting | sip_socket_on_resting | username, extNo, from: 'sdk' | | SipSocket | onIdle | sip_socket_on_idle | username, extNo, from: 'sdk' | | SipSocket | onBusy | sip_socket_on_busy | username, extNo, from: 'sdk' | | SipSocket | transfer | sip_socket_transfer | username, extNo, transferTo, from: 'sdk' | | SipSocket | wrapUp | sip_socket_wrap_up | username, extNo, seconds, from: 'sdk' | | SipSocket | wrapUpCancel | sip_socket_wrap_up_cancel | username, extNo, from: 'sdk' | | SipSocket | getOrgOnlineAgent | sip_socket_get_org_online_agent | username, extNo, from: 'sdk' | | SipSocket | refreshToken | sip_socket_refresh_token | username, extNo, from: 'sdk' | | SipCall | constructor | sip_call_init | extNo, extPwd, content, from: 'sdk' | | SipCall | register | sip_call_register | extNo, from: 'sdk' | | SipCall | unregister | sip_call_unregister | extNo, from: 'sdk' | | SipCall | sendMessage | sip_call_send_message | extNo, target, from: 'sdk' | | SipCall | call | sip_call_call | extNo, phone, businessId, outNumber, from: 'sdk' | | SipCall | answer | sip_call_answer | extNo, otherLegNumber, direction, callId, from: 'sdk' | | SipCall | hangup | sip_call_hangup | extNo, otherLegNumber, direction, callId, from: 'sdk' | | SipCall | hold | sip_call_hold | extNo, otherLegNumber, direction, callId, from: 'sdk' | | SipCall | unhold | sip_call_unhold | extNo, otherLegNumber, direction, callId, from: 'sdk' | | SipCall | mute | sip_call_mute | extNo, otherLegNumber, direction, callId, from: 'sdk' | | SipCall | unmute | sip_call_unmute | extNo, otherLegNumber, direction, callId, from: 'sdk' | | SipCall | transfer | sip_call_transfer | extNo, otherLegNumber, transferTo, direction, callId, from: 'sdk' | | SipCall | sendDtmf | sip_call_send_dtmf | extNo, otherLegNumber, tone, direction, callId, from: 'sdk' | | SipCall | micCheck | sip_call_mic_check | extNo, from: 'sdk' | | SipCall | setResting | sip_call_set_resting | extNo, from: 'sdk' | | SipCall | setIdle | sip_call_set_idle | extNo, from: 'sdk' | | SipCall | transferCall | sip_call_transfer_call | extNo, transferTo, from: 'sdk' | | SipCall | setBusy | sip_call_set_busy | extNo, from: 'sdk' | | SipCall | getOrgOnlineAgent | sip_call_get_org_online_agent | extNo, from: 'sdk' | | SipCall | wrapUp | sip_call_wrap_up | extNo, seconds, from: 'sdk' | | SipCall | wrapUpCancel | sip_call_wrap_up_cancel | extNo, from: 'sdk' | | SipCall | playAudio | sip_call_play_audio | extNo, from: 'sdk' | | SipCall | stopAudio | sip_call_stop_audio | extNo, from: 'sdk' |