当前位置:   article > 正文

JsSIP+FreeSwitch+Vue实现WebRtc音视频通话_vue jssip

vue jssip

效果

让同事帮我测的,在两个电脑分别打开该页面,一个注册 1007 分机号,另一个注册 1005,然后拨打视频电话
在这里插入图片描述
在这里插入图片描述

依赖版本

  • jssip:3.6.1

  • freeswitch:1.10.5-release~64bit

  • vue:2.6.12

488错误解决

freeswitch 配置文件 sip_profiles/internal.xml 中添加:

<param name="apply-candidate-acl" value="rfc1918.auto"/>
<param name="apply-candidate-acl" value="wan.auto"/>
  • 1
  • 2

前端完整代码

<template>
  <div class="test-sip">
    <el-switch
      v-model="logFlag"
      active-text="打开日志"
      inactive-text="关闭日志"
    >
    </el-switch>
    <div class="step">
      <h2>步骤 1:输入自己的分机号(1001-1019)</h2>
      <div class="step-box">
        <el-input
          v-model="userExtension"
          placeholder="请输入自己的分机号(1001-1010)"
          class="input-box"
          :disabled="localStream !== null"
        ></el-input>
        <el-button
          type="primary"
          @click="registerUser"
          class="step-button"
          :disabled="!userExtension || isRegisted"
        >
          注册
        </el-button>
      </div>
    </div>

    <div class="step">
      <h2>步骤 2:输入要呼叫的分机号(1001-1019)</h2>
      <div class="step-box">
        <el-input
          v-model="targetExtension"
          placeholder="请输入要呼叫的分机号(1001-1010)"
          class="input-box"
          :disabled="!isRegisted"
        ></el-input>
        <el-button
          type="primary"
          @click="startCall(false)"
          class="step-button"
          :disabled="!targetExtension || currentSession !== null"
        >
          拨打语音电话
        </el-button>
        <el-button
          type="primary"
          @click="startCall(true)"
          class="step-button"
          :disabled="!targetExtension || currentSession !== null"
        >
          拨打视频电话
        </el-button>
      </div>
    </div>

    <div class="step">
      <h2>其他操作</h2>
      <div class="step-box">
        <el-button
          type="primary"
          @click="hangUpCall"
          class="step-button"
          :disabled="currentSession == null"
        >
          挂断
        </el-button>
        <el-button
          type="primary"
          @click="unregisterUser"
          class="step-button"
          :disabled="!isRegisted"
        >
          取消注册
        </el-button>
        <el-button
          v-if="!localStream"
          type="primary"
          class="step-button"
          @click="captureLocalMedia"
          :disabled="currentSession !== null"
        >
          测试本地设备
        </el-button>
        <el-button
          v-else
          type="primary"
          class="step-button"
          @click="stopLocalMedia"
          :disabled="currentSession"
        >
          停止测试本地设备
        </el-button>
      </div>
    </div>

    <div class="step">
      <h2>音频:</h2>
      <div class="step-box">
        <audio id="audio" autoplay></audio>
      </div>
    </div>

    <div class="step">
      <h2>视频:</h2>
      <div class="step-box">
        <video id="meVideo" playsinline autoplay></video>
        <video id="remoteVideo" playsinline autoplay></video>
      </div>
    </div>
  </div>
</template>

<script>
import JsSIP from "jssip";

export default {
  name: "TestSip",
  data() {
    return {
      logFlag: false, // 是否打开日志
      userExtension: "", // 当前用户分机号
      targetExtension: "", // 目标用户分机号
      userAgent: null, // 用户代理实例
      password: "xxxx", // 密码
      serverIp: "xxxx.xxxx.x", // 服务器ip
      isRegisted: false, // 是否已注册
      localStream: null, // 本地流
      incomingSession: null, // 呼入的会话
      outgoingSession: null, // 呼出的会话
      currentSession: null, // 当前会话
      myHangup: false, // 是否我方挂断

      audio: null, // 音频
      meVideo: null, // 我方视频
      remoteVideo: null, // 对方视频
      constraints: {
        audio: true,
        video: {
          width: { max: 1280 },
          height: { max: 720 },
        },
      },
    };
  },
  computed: {
    ws_url() {
      return `ws://${this.serverIp}:5066`;
    },
  },
  watch: {
    logFlag: {
      handler(nV, oV) {
        nV ? JsSIP.debug.enable("JsSIP:*") : JsSIP.debug.disable("JsSIP:*");
      },
      immediate: true,
    },
  },
  mounted() {
    this.audio = document.getElementById("audio");
    this.meVideo = document.getElementById("meVideo");
    this.remoteVideo = document.getElementById("remoteVideo");
  },
  methods: {
    // 获取本地媒体设备
    captureLocalMedia() {
      console.log("获取到本地音频/视频");
      navigator.mediaDevices
        .getUserMedia(this.constraints)
        .then((stream) => {
          console.log("获取到本地媒体流");
          this.localStream = stream;

          // 连接本地麦克风
          if ("srcObject" in this.audio) {
            this.audio.srcObject = stream;
          } else {
            this.audio.src = window.URL.createObjectURL(stream);
          }
          // 如果有视频流,则连接本地摄像头
          if (stream.getVideoTracks().length > 0) {
            if ("srcObject" in this.meVideo) {
              this.meVideo.srcObject = stream;
            } else {
              this.meVideo.src = window.URL.createObjectURL(stream);
            }
          }
        })
        .catch((e) => {
          this.$modal.msgError("获取用户媒体设备错误: " + e.name);
        });
    },
    // 停止本地媒体设备
    stopLocalMedia() {
      if (this.localStream) {
        this.localStream.getTracks().forEach((track) => track.stop());
        this.localStream = null;
        // 清空音频和视频的 srcObject
        this.clearMedia("audio");
        this.clearMedia("meVideo");
      }
    },
    // 验证分机号,因为 freeswitch 默认会创建这些分机号
    isValidExtension(extension) {
      const extNumber = parseInt(extension, 10);
      return extNumber >= 1001 && extNumber <= 1019;
    },
    // 注册
    registerUser() {
      if (!this.isValidExtension(this.userExtension)) {
        this.$modal.msgError("分机号无效,请输入1001-1019之间的分机号");
        return;
      }

      const configuration = {
        sockets: [new JsSIP.WebSocketInterface(this.ws_url)],
        uri: `sip:${this.userExtension}@${this.serverIp};transport=ws`,
        password: this.password,
        contact_uri: `sip:${this.userExtension}@${this.serverIp};transport=ws`,
        display_name: this.userExtension,
        register: true, //指示启动时JsSIP用户代理是否应自动注册
        session_timers: false, //关闭会话计时器(根据RFC 4028)
      };
      this.userAgent = new JsSIP.UA(configuration);

      this.userAgent.on("connecting", () => console.log("WebSocket 连接中"));
      this.userAgent.on("connected", () => console.log("WebSocket 连接成功"));
      this.userAgent.on("disconnected", () =>
        console.log("WebSocket 断开连接")
      );
      this.userAgent.on("registered", () => {
        this.isRegisted = true;
        console.log("用户代理注册成功");
      });
      this.userAgent.on("unregistered", () => {
        this.isRegisted = false;
        console.log("用户代理取消注册");
      });
      this.userAgent.on("registrationFailed", (e) => {
        this.$modal.msgError(`用户代理注册失败: ${e.cause}`);
      });
      // this.userAgent.on("registrationExpiring", (e) => {
      //   /*
      //     在注册到期前几秒钟触发。拦截默认重新注册事件。

      //   */
      //   console.warn("registrationExpiring");
      // });
      this.userAgent.on("newRTCSession", (e) => {
        console.log("新会话: ", e);
        if (e.originator == "remote") {
          console.log("接听到来电");
          this.incomingSession = e.session;
          this.sipEventBind(e);
        } else {
          console.log("打电话");
          this.outgoingSession = e.session;

          this.outgoingSession.on("connecting", (data) => {
            console.info("onConnecting - ", data.request);
            this.currentSession = this.outgoingSession;
            this.outgoingSession = null;
          });

          this.outgoingSession.connection.addEventListener("track", (event) => {
            console.log("接收到远端track:", event.track);
            this.trackHandle(event.track, event.streams[0]);
          });
        }
      });
      this.userAgent.start();
      console.log("用户代理启动");
    },
    sipEventBind(remotedata, callbacks) {
      //接受呼叫时激发
      remotedata.session.on("accepted", () => {
        console.log("onAccepted - ", remotedata);
        if (remotedata.originator == "remote" && this.currentSession == null) {
          this.currentSession = this.incomingSession;
          this.incomingSession = null;
          console.log("setCurrentSession:", this.currentSession);
        }
      });

      remotedata.session.on("sdp", (data) => {
        console.log("onSDP, type - ", data.type, " sdp - ", data.sdp);
      });

      remotedata.session.on("progress", () => {
        console.log(remotedata);
        console.log("onProgress - ", remotedata.originator);
        if (remotedata.originator == "remote") {
          console.log("onProgress, response - ", remotedata.response);

          const isVideoCall = remotedata.request.body.includes("m=video");
          this.$modal
            .confirm(
              `检测到${remotedata.request.from.display_name}${
                isVideoCall ? "视频" : "语音"
              }来电,是否接听?`
            )
            .then(() => {
              //如果同一电脑两个浏览器测试则video改为false,这样被呼叫端可以看到视频,两台电脑测试让双方都看到改为true
              remotedata.session.answer({
                mediaConstraints: { audio: true, video: isVideoCall },
              });
            })
            .catch(() => {
              this.hangUpCall();
              return;
            });
        }
      });

      remotedata.session.on("peerconnection", () => {
        console.log("onPeerconnection - ", remotedata.peerconnection);

        if (remotedata.originator == "remote" && this.currentSession == null) {
          remotedata.session.connection.addEventListener("track", (event) => {
            console.info("接收到远端track:", event.track);
            this.trackHandle(event.track, event.streams[0]);
          });
        }
      });

      //确认呼叫后激发
      remotedata.session.on("confirmed", () => {
        console.log("onConfirmed - ", remotedata);
        if (remotedata.originator == "remote" && this.currentSession == null) {
          this.currentSession = this.incomingSession;
          this.incomingSession = null;
          console.log("setCurrentSession - ", this.currentSession);
        }
      });

      // 挂断处理
      remotedata.session.on("ended", () => {
        this.endedHandle();
        console.log("call ended:", remotedata);
      });

      remotedata.session.on("failed", (e) => {
        this.$modal.msgError("会话失败");
        console.error("会话失败:", e);
      });
    },
    trackHandle(track, stream) {
      const showVideo = () => {
        navigator.mediaDevices
          .getUserMedia({
            ...this.constraints,
            audio: false, // 不播放本地声音
          })
          .then((stream) => {
            this.meVideo.srcObject = stream;
          })
          .catch((error) => {
            that.$modal.msgError(`${error.name}${error.message}`);
          });
      };
      // 根据轨道类型选择播放元素
      if (track.kind === "video") {
        // 使用 video 元素播放视频轨道
        this.remoteVideo.srcObject = stream;
        showVideo();
      } else if (track.kind === "audio") {
        // 使用 audio 元素播放音频轨道
        this.audio.srcObject = stream;
      }
    },
    endedHandle() {
      this.clearMedia("meVideo");
      this.clearMedia("remoteVideo");
      this.clearMedia("audio");
      if (this.myHangup) {
        this.$modal.msgSuccess("通话结束");
      } else {
        this.$modal.msgWarning("对方已挂断!");
      }
      this.myHangup = false;

      this.currentSession = null;
    },
    startCall(isVideo = false) {
      if (!this.isValidExtension(this.targetExtension)) {
        this.$modal.msgError("分机号无效,请输入1001-1019之间的分机号");
        return;
      }

      if (this.userAgent) {
        try {
          const eventHandlers = {
            progress: (e) => console.log("call is in progress"),
            failed: (e) => {
              console.error(e);
              this.$modal.msgError(`call failed with cause: ${e.cause}`);
            },
            ended: (e) => {
              this.endedHandle();
              console.log(`call ended with cause: ${e.cause}`);
            },
            confirmed: (e) => console.log("call confirmed"),
          };
          console.log("this.userAgent.call");
          this.outgoingSession = this.userAgent.call(
            `sip:${this.targetExtension}@${this.serverIp}`, // :5060
            {
              mediaConstraints: { audio: true, video: isVideo },
              eventHandlers,
            }
          );
        } catch (error) {
          this.$modal.msgError("呼叫失败");
          console.error("呼叫失败:", error);
        }
      } else {
        this.$modal.msgError("用户代理未初始化");
      }
    },
    hangUpCall() {
      this.myHangup = true;
      this.outgoingSession = this.userAgent.terminateSessions();
      this.currentSession = null;
    },
    clearMedia(mediaNameOrStream) {
      let mediaSrcObject = this[mediaNameOrStream].srcObject;
      if (mediaSrcObject) {
        let tracks = mediaSrcObject.getTracks();
        for (let i = 0; i < tracks.length; i++) {
          tracks[i].stop();
        }
      }
      this[mediaNameOrStream].srcObject = null;
    },
    unregisterUser() {
      console.log("取消注册");
      this.userAgent.unregister();
      this.resetState();
    },
    resetState() {
      this.userExtension = "";
      this.targetExtension = "";
      this.isRegisted = false;
    },
  },
};
</script>

<style lang="scss" scoped>
.test-sip {
  padding: 30px;

  .step {
    margin-bottom: 20px;

    .step-box {
      display: flex;
      align-items: flex-start;
      gap: 20px;

      .input-box {
        width: 350px;
      }

      .step-button {
        align-self: flex-start;
      }

      #meVideo,
      #remoteVideo {
        width: 360px;
        background-color: #333;
      }

      #meVideo {
        border: 2px solid red;
      }

      #remoteVideo {
        border: 2px solid blue;
      }
    }
  }
}
</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
  

闽ICP备14008679号