import { getRandomString } from 'billd-utils'; import { onUnmounted, ref, watch } from 'vue'; import { useRoute } from 'vue-router'; import { commentAuthTip, loginTip } from '@/hooks/use-login'; import { useFlvPlay, useHlsPlay } from '@/hooks/use-play'; import { useWebsocket } from '@/hooks/use-websocket'; import { DanmuMsgTypeEnum, LiveLineEnum, WsMessageMsgIsFileEnum, } from '@/interface'; import { useAppStore } from '@/store/app'; import { usePiniaCacheStore } from '@/store/cache'; import { useNetworkStore } from '@/store/network'; import { ILiveRoom, LiveRoomTypeEnum } from '@/types/ILiveRoom'; import { WsMessageType, WsMsgTypeEnum } from '@/types/websocket'; import { createVideo, videoToCanvas } from '@/utils'; export function usePull(roomId: string) { const route = useRoute(); const networkStore = useNetworkStore(); const cacheStore = usePiniaCacheStore(); const appStore = useAppStore(); const localStream = ref(); const danmuStr = ref(''); const msgIsFile = ref(WsMessageMsgIsFileEnum.no); const danmuMsgType = ref(DanmuMsgTypeEnum.danmu); const autoplayVal = ref(false); const videoLoading = ref(false); const isPlaying = ref(false); const flvurl = ref(''); const hlsurl = ref(''); const videoWrapRef = ref(); const videoHeight = ref(); const videoElArr = ref([]); const remoteVideo = ref([]); const { mySocketId, initWs, roomLiving, anchorInfo, liveUserList, damuList, handleSendGetLiveUser, } = useWebsocket(); const { flvVideoEl, flvIsPlaying, startFlvPlay, destroyFlv } = useFlvPlay(); const { hlsVideoEl, hlsIsPlaying, startHlsPlay, destroyHls } = useHlsPlay(); const stopDrawingArr = ref([]); onUnmounted(() => { handleStopDrawing(); }); function handleStopDrawing() { destroyFlv(); destroyHls(); stopDrawingArr.value.forEach((cb) => cb()); stopDrawingArr.value = []; remoteVideo.value.forEach((el) => el.remove()); remoteVideo.value = []; } watch(hlsVideoEl, () => { stopDrawingArr.value = []; stopDrawingArr.value.forEach((cb) => cb()); if (videoWrapRef.value) { const rect = videoWrapRef.value.getBoundingClientRect(); const { canvas, stopDrawing } = videoToCanvas({ wrapSize: { width: rect.width, height: rect.height, }, videoEl: hlsVideoEl.value!, videoResize: ({ w, h }) => { videoHeight.value = `${w}x${h}`; }, }); stopDrawingArr.value.push(stopDrawing); remoteVideo.value.push(canvas); videoLoading.value = false; } }); function handleHlsPlay(url: string) { console.log('handleHlsPlay', url); handleStopDrawing(); videoLoading.value = true; appStore.setLiveLine(LiveLineEnum.hls); startHlsPlay({ hlsurl: url, }); } watch(flvVideoEl, () => { stopDrawingArr.value = []; stopDrawingArr.value.forEach((cb) => cb()); if (videoWrapRef.value) { const rect = videoWrapRef.value.getBoundingClientRect(); const { canvas, stopDrawing } = videoToCanvas({ wrapSize: { width: rect.width, height: rect.height, }, videoEl: flvVideoEl.value!, videoResize: ({ w, h }) => { videoHeight.value = `${w}x${h}`; }, }); stopDrawingArr.value.push(stopDrawing); remoteVideo.value.push(canvas); videoLoading.value = false; } }); function handleFlvPlay() { console.log('handleFlvPlay'); handleStopDrawing(); videoLoading.value = true; appStore.setLiveLine(LiveLineEnum.flv); startFlvPlay({ flvurl: flvurl.value, }); } function handlePlay(data: ILiveRoom) { roomLiving.value = true; flvurl.value = data.flv_url!; hlsurl.value = data.hls_url!; switch (data.type) { case LiveRoomTypeEnum.srs: if (appStore.liveLine === LiveLineEnum.flv) { handleFlvPlay(); } else if (appStore.liveLine === LiveLineEnum.hls) { handleHlsPlay(data.hls_url!); } break; case LiveRoomTypeEnum.obs: if (appStore.liveLine === LiveLineEnum.flv) { handleFlvPlay(); } else if (appStore.liveLine === LiveLineEnum.hls) { handleHlsPlay(data.hls_url!); } break; case LiveRoomTypeEnum.msr: if (appStore.liveLine === LiveLineEnum.flv) { handleFlvPlay(); } else if (appStore.liveLine === LiveLineEnum.hls) { handleHlsPlay(data.hls_url!); } break; case LiveRoomTypeEnum.system: if (appStore.liveLine === LiveLineEnum.flv) { handleFlvPlay(); } else if (appStore.liveLine === LiveLineEnum.hls) { handleHlsPlay(data.hls_url!); } break; case LiveRoomTypeEnum.pk: if (appStore.liveLine === LiveLineEnum.flv) { handleFlvPlay(); } else if (appStore.liveLine === LiveLineEnum.hls) { handleHlsPlay(data.hls_url!); } break; case LiveRoomTypeEnum.wertc_live: appStore.setLiveLine(LiveLineEnum.rtc); break; } } watch( [() => roomLiving.value, () => appStore.liveRoomInfo], ([val, liveRoomInfo]) => { if (val && liveRoomInfo) { if ( [ LiveRoomTypeEnum.system, LiveRoomTypeEnum.msr, LiveRoomTypeEnum.srs, LiveRoomTypeEnum.obs, LiveRoomTypeEnum.tencent_css, LiveRoomTypeEnum.tencent_css_pk, ].includes(liveRoomInfo.type!) ) { handlePlay(liveRoomInfo!); } else if (LiveRoomTypeEnum.pk === liveRoomInfo.type!) { if (!route.query.pkKey) { handlePlay(liveRoomInfo!); } } } else { closeRtc(); handleStopDrawing(); } }, { deep: true, immediate: true, } ); watch( () => appStore.liveLine, (newVal) => { console.log('liveLine变了', newVal); if (!roomLiving.value) { return; } switch (newVal) { case LiveLineEnum.flv: handleFlvPlay(); break; case LiveLineEnum.hls: handleHlsPlay(hlsurl.value); break; case LiveLineEnum.rtc: break; } } ); watch( () => cacheStore.muted, (newVal) => { videoElArr.value.forEach((el) => { el.muted = newVal; }); if (!newVal) { cacheStore.setVolume(cacheStore.volume || appStore.normalVolume); } else { cacheStore.setVolume(0); } } ); watch( () => cacheStore.volume, (newVal) => { videoElArr.value.forEach((el) => { el.volume = newVal / 100; }); if (!newVal) { cacheStore.setMuted(true); } else { cacheStore.setMuted(false); } } ); watch( () => appStore.play, (newVal) => { videoElArr.value.forEach((el) => { if (newVal) { el.play(); } else { el.pause(); } }); } ); watch( () => hlsIsPlaying.value, (newVal) => { isPlaying.value = newVal; } ); watch( () => flvIsPlaying.value, (newVal) => { isPlaying.value = newVal; } ); watch( () => localStream.value, (val) => { if (val) { console.log('localStream变了'); console.log('音频轨:', val?.getAudioTracks()); console.log('视频轨:', val?.getVideoTracks()); if (appStore.liveRoomInfo?.type === LiveRoomTypeEnum.wertc_live) { videoElArr.value.forEach((dom) => { dom.remove(); }); val?.getVideoTracks().forEach((track) => { console.log('视频轨enabled:', track.id, track.enabled); const video = createVideo({}); video.setAttribute('track-id', track.id); video.srcObject = new MediaStream([track]); remoteVideo.value.push(video); videoElArr.value.push(video); }); val?.getAudioTracks().forEach((track) => { console.log('音频轨enabled:', track.id, track.enabled); const video = createVideo({}); video.setAttribute('track-id', track.id); video.srcObject = new MediaStream([track]); remoteVideo.value.push(video); videoElArr.value.push(video); }); videoLoading.value = false; } else { videoElArr.value.forEach((dom) => { dom.remove(); }); val?.getVideoTracks().forEach((track) => { console.log('视频轨enabled:', track.id, track.enabled); const video = createVideo({}); video.setAttribute('track-id', track.id); video.srcObject = new MediaStream([track]); remoteVideo.value.push(video); videoElArr.value.push(video); }); val?.getAudioTracks().forEach((track) => { console.log('音频轨enabled:', track.id, track.enabled); const video = createVideo({}); video.setAttribute('track-id', track.id); video.srcObject = new MediaStream([track]); remoteVideo.value.push(video); videoElArr.value.push(video); }); videoLoading.value = false; } } else { videoElArr.value?.forEach((item) => { item.remove(); }); } }, { deep: true } ); function initPull(autolay = true) { autoplayVal.value = autolay; if (autoplayVal.value) { videoLoading.value = true; } initWs({ roomId, isAnchor: false, }); } function closeWs() { networkStore.wsMap.forEach((ws) => { networkStore.removeWs(ws.roomId); }); } function closeRtc() { networkStore.rtcMap.forEach((rtc) => { networkStore.removeRtc(rtc.receiver); }); } function keydownDanmu(event: KeyboardEvent) { const key = event.key.toLowerCase(); if (key === 'enter') { event.preventDefault(); sendDanmu(); } } function sendDanmu() { if (!loginTip()) { return; } if (!commentAuthTip()) { return; } if (!danmuStr.value.trim().length) { window.$message.warning('请输入弹幕内容!'); return; } const instance = networkStore.wsMap.get(roomId); if (!instance) return; const requestId = getRandomString(8); const messageData: WsMessageType['data'] = { socket_id: '', msg: danmuStr.value, msgType: danmuMsgType.value, live_room_id: Number(roomId), msgIsFile: msgIsFile.value, send_msg_time: +new Date(), user_agent: navigator.userAgent, }; instance.send({ requestId, msgType: WsMsgTypeEnum.message, data: messageData, }); danmuStr.value = ''; } return { videoWrapRef, handlePlay, handleStopDrawing, initPull, closeWs, closeRtc, keydownDanmu, sendDanmu, handleSendGetLiveUser, danmuMsgType, isPlaying, msgIsFile, mySocketId, videoHeight, remoteVideo, roomLiving, autoplayVal, videoLoading, damuList, liveUserList, danmuStr, anchorInfo, }; }