live.js 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. import { Message } from 'element-ui';
  2. import { GetLiveRoomInfo } from '@/api/live';
  3. import { rtc, publishStream, closeVideo } from '@/views/live/common';
  4. export {
  5. initSDK,
  6. sendMsg,
  7. getLiveStat,
  8. getDevice,
  9. downloadWebSDK,
  10. createScript,
  11. handsDown
  12. } from '@/views/live/common';
  13. // 分组讨论
  14. let r;
  15. export function init(data) {
  16. r = new Rtc(data);
  17. return r;
  18. }
  19. // 连麦
  20. /**
  21. * 学生端接受老师的上麦邀请,同意上麦
  22. */
  23. export function inviteAccept(object) {
  24. rtc.inviteAccept(object);
  25. }
  26. /**
  27. * 申请连麦
  28. */
  29. export function handsUp(data) {
  30. rtc.handsUp(data);
  31. }
  32. /**
  33. * 取消订阅远程流
  34. */
  35. function unSubscribeStream(stream) {
  36. rtc.unSubscribeStream({
  37. unSubStream: stream,
  38. success: function (str) {
  39. console.log('取消订阅流成功', str);
  40. },
  41. fail: function (str) {
  42. console.log(str);
  43. }
  44. });
  45. }
  46. /**
  47. * 初始化监听事件
  48. */
  49. export function initListener(vue) {
  50. rtc.on('login_success', data => {
  51. console.log('登录成功', data);
  52. Message({
  53. message: '登录成功',
  54. type: 'success'
  55. });
  56. vue.roomData = data;
  57. // 初始化画板需要的数据
  58. let canvasInitData = {
  59. allowDraw: false, // 是否具有书写画笔权限(讲师权限) true / false
  60. id: 'draw-parent',
  61. pptDisplay: 1, // 文档展示方式。默认0,按窗口 1,按宽度
  62. liveId: data.live.status === 1 ? data.live.id : '' // 如果直播已经开始,需将直播 id 传入 sdk 中
  63. };
  64. // 初始化画板
  65. rtc.canvasInit(canvasInitData);
  66. });
  67. rtc.on('login_failed', data => {
  68. console.log('登录失败', data);
  69. Message({
  70. message: '登录失败:' + JSON.stringify(data),
  71. type: 'warning'
  72. });
  73. });
  74. // 教师 必须在加入房间成功的事件回调里创建本地流
  75. rtc.on('conference_join', () => {
  76. console.log('加入房间成功');
  77. });
  78. rtc.on('conference_join_failed', err => {
  79. // 加入房间失败 err为错误原因
  80. console.log('加入房间失败', err);
  81. });
  82. // 新增订阅流事件
  83. rtc.on('allow_sub', stream => {
  84. if (stream.isMixed()) {
  85. console.log('是混合流,不订阅');
  86. } else {
  87. // 订阅远程流
  88. rtc.trySubscribeStream({
  89. tryStream: stream,
  90. success: stream => {
  91. // 订阅流成功
  92. let streamType = stream.streamType();
  93. vue.remoteStreamType = streamType;
  94. console.log('订阅流成功', streamType);
  95. let id = streamType === 0 ? 'live' : 'student';
  96. stream.show(id, 'contain'); // 将流显示到指定 id 的盒子中
  97. if (streamType === 1 || streamType === 10) {
  98. vue.connect = true;
  99. vue.callLoading = false;
  100. }
  101. },
  102. fail: function (err) {
  103. console.log('订阅流失败', err);
  104. }
  105. });
  106. }
  107. });
  108. // 推流前查询直播状态失败,导致没有推流
  109. rtc.on('local_stream_publish_failed', function () {
  110. console.log('推流前查询直播状态失败,导致没有推流');
  111. Message({
  112. message: '推流前查询直播状态失败,导致没有推流',
  113. type: 'warning'
  114. });
  115. });
  116. // 房间全量信息事件(人员进出时广播)
  117. rtc.on('room_context', roomData => {
  118. vue.roomContext = JSON.parse(roomData);
  119. vue.getLiveRoomStudentList();
  120. console.log('房间全量信息事件(人员进出时广播)', JSON.parse(roomData));
  121. });
  122. rtc.on('publish_stream', str => {
  123. console.log('直播已开启', str);
  124. Message({
  125. type: 'success',
  126. message: '直播已开启'
  127. });
  128. vue.liveStat = true;
  129. });
  130. rtc.on('end_stream', str => {
  131. console.log('直播已关闭', str);
  132. Message({
  133. type: 'success',
  134. message: '直播已关闭'
  135. });
  136. vue.liveStat = false;
  137. });
  138. // 单个用户配置监听
  139. rtc.on('switch_user_settings', settingData => {
  140. console.log('单个用户配置监听', JSON.parse(settingData));
  141. });
  142. // 人员列表事件(人员麦序变化时广播)
  143. rtc.on('speak_context', speakData => {
  144. vue.speakData = JSON.parse(speakData);
  145. console.log('人员列表事件(人员麦序变化时广播)', JSON.parse(speakData));
  146. });
  147. rtc.on('switch_settings', data => {
  148. console.log('房间设置事件', JSON.parse(data)); // 房间设置事件
  149. });
  150. rtc.on('publishStreamErr', data => {
  151. console.log('推流意外终止:' + data.streamName);
  152. // 直播开启状态下,尝试重推这条流
  153. });
  154. rtc.on('kick_out', function () {
  155. console.log('自己被踢出房间');
  156. });
  157. // 视频无法自动播放
  158. rtc.on('playError', data => {
  159. console.log('视频无法自动播放', data);
  160. });
  161. // 监听通知移除流事件
  162. rtc.on('stream_removed', function (stream) {
  163. console.log('监听通知移除流事件');
  164. vue.connect = false;
  165. vue.remoteStreamType = -1;
  166. vue.connectStudent = '';
  167. });
  168. // 停止订阅流
  169. rtc.on('unSub', function (stream) {
  170. console.log('停止订阅流');
  171. unSubscribeStream(stream);
  172. });
  173. /**
  174. * 排麦监听事件
  175. */
  176. // 监听自己被邀请事件
  177. rtc.on('inviteUp', uid => {
  178. console.log('监听自己被邀请事件', uid);
  179. vue.callLoading = true;
  180. vue.invite = true;
  181. });
  182. rtc.on('mcDown', () => {
  183. closeVideo('picture');
  184. vue.connect = false;
  185. vue.invite = false;
  186. });
  187. rtc.on('videoModeChange', data => {
  188. console.log('连麦音视频模式更新成功监听回调', data.settings.video_mode);
  189. vue.roomInfo.video_mode = data.settings.video_mode;
  190. });
  191. rtc.on('createLocalStream', () => {
  192. // 创建本地流推流
  193. GetLiveRoomInfo({ task_id: vue.task_id }).then(({ video_mode }) => {
  194. console.log('创建本地流推流');
  195. vue.roomInfo.video_mode = video_mode;
  196. const createData = {
  197. video: video_mode === 1,
  198. audio: true
  199. };
  200. rtc.createLocalStream({
  201. streamName: 'picture',
  202. createData,
  203. success: function (stream) {
  204. vue.connect = true;
  205. vue.callLoading = false;
  206. console.log('创建本地流成功', stream);
  207. // 创建本地流成功,将流展示到id为 student 的dom元素盒子中
  208. stream.show('student');
  209. publishStream('picture'); // 如果需要立即推流,执行 publish 方法
  210. },
  211. fail: function (data) {
  212. console.log('创建本地流失败,应用层处理', data);
  213. // 创建本地流失败,应用层处理
  214. Message({
  215. type: 'error',
  216. message: '创建本地流失败:' + data
  217. });
  218. }
  219. });
  220. });
  221. });
  222. /**
  223. * 监听聊天事件
  224. */
  225. rtc.on('chat_message', data => {
  226. let dat = JSON.parse(data);
  227. console.log(dat);
  228. // 敏感词过滤:如果发送的聊天消息被系统判定包含敏感词,则只有发送者能收到本条消息,房间内其他人都不会收到这条聊天消息。
  229. // 如果返回消息中有 isFilterChat 字段(消息不包含敏感词返回数据中无isFilterChat字段),且isFilterChat的值为1,则说明该消息包含敏感字,除发送者外其他人不会收到这条消息。
  230. if (dat.isFilterChat && dat.isFilterChat === 1) {
  231. return;
  232. }
  233. vue.chatList.push(dat);
  234. });
  235. rtc.on('allowChatChange', function (data) {
  236. let msg = data.settings.allow_chat ? '开言' : '禁言';
  237. Message({
  238. type: 'success',
  239. message: `全体${msg}成功`
  240. });
  241. });
  242. // 接收自定义消息
  243. rtc.on('publish_message', function (data) {
  244. // 连接中途下麦
  245. if (data.type === 'handsDown-load' && data.uid === vue.room_user_id) {
  246. vue.callLoading = false;
  247. }
  248. // 连麦信息
  249. if (data.type === 'inviteImage') {
  250. vue.connectStudent = data.connectStudent;
  251. }
  252. });
  253. }