mirror of
https://github.com/xfgryujk/blivechat.git
synced 2024-12-26 21:00:15 +08:00
前端封装消息模型,防止以后加新的字段时漏改
This commit is contained in:
parent
fd1518db1d
commit
26afe6c2c4
@ -1,6 +1,7 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
import * as chat from '.'
|
import * as chat from '.'
|
||||||
|
import * as chatModels from './models'
|
||||||
import * as base from './ChatClientOfficialBase'
|
import * as base from './ChatClientOfficialBase'
|
||||||
import ChatClientOfficialBase from './ChatClientOfficialBase'
|
import ChatClientOfficialBase from './ChatClientOfficialBase'
|
||||||
|
|
||||||
@ -54,13 +55,13 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
let msg = `code=${res.code}, message=${res.message}, request_id=${res.request_id}`
|
let msg = `code=${res.code}, message=${res.message}, request_id=${res.request_id}`
|
||||||
if (res.code === 7007) {
|
if (res.code === 7007) {
|
||||||
// 身份码错误
|
// 身份码错误
|
||||||
throw new chat.ChatClientFatalError(chat.FATAL_ERROR_TYPE_AUTH_CODE_ERROR, msg)
|
throw new chatModels.ChatClientFatalError(chatModels.FATAL_ERROR_TYPE_AUTH_CODE_ERROR, msg)
|
||||||
}
|
}
|
||||||
throw Error(msg)
|
throw Error(msg)
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('startGame failed:', e)
|
console.error('startGame failed:', e)
|
||||||
if (e instanceof chat.ChatClientFatalError) {
|
if (e instanceof chatModels.ChatClientFatalError) {
|
||||||
throw e
|
throw e
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
@ -148,9 +149,6 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async dmCallback(command) {
|
async dmCallback(command) {
|
||||||
if (!this.onAddText) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
|
|
||||||
let authorType
|
let authorType
|
||||||
@ -167,7 +165,7 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
emoticon = data.emoji_img_url
|
emoticon = data.emoji_img_url
|
||||||
}
|
}
|
||||||
|
|
||||||
data = {
|
data = new chatModels.AddTextMsg({
|
||||||
avatarUrl: chat.processAvatarUrl(data.uface),
|
avatarUrl: chat.processAvatarUrl(data.uface),
|
||||||
timestamp: data.timestamp,
|
timestamp: data.timestamp,
|
||||||
authorName: data.uname,
|
authorName: data.uname,
|
||||||
@ -175,27 +173,20 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
content: data.msg,
|
content: data.msg,
|
||||||
privilegeType: data.guard_level,
|
privilegeType: data.guard_level,
|
||||||
isGiftDanmaku: chat.isGiftDanmakuByContent(data.msg),
|
isGiftDanmaku: chat.isGiftDanmakuByContent(data.msg),
|
||||||
authorLevel: 1,
|
|
||||||
isNewbie: false,
|
|
||||||
isMobileVerified: true,
|
|
||||||
medalLevel: data.fans_medal_wearing_status ? data.fans_medal_level : 0,
|
medalLevel: data.fans_medal_wearing_status ? data.fans_medal_level : 0,
|
||||||
id: data.msg_id,
|
id: data.msg_id,
|
||||||
translation: '',
|
|
||||||
emoticon: emoticon,
|
emoticon: emoticon,
|
||||||
}
|
})
|
||||||
this.onAddText(data)
|
this.msgHandler.onAddText(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
sendGiftCallback(command) {
|
sendGiftCallback(command) {
|
||||||
if (!this.onAddGift) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
if (!data.paid) { // 丢人
|
if (!data.paid) { // 丢人
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
data = {
|
data = new chatModels.AddGiftMsg({
|
||||||
id: data.msg_id,
|
id: data.msg_id,
|
||||||
avatarUrl: chat.processAvatarUrl(data.uface),
|
avatarUrl: chat.processAvatarUrl(data.uface),
|
||||||
timestamp: data.timestamp,
|
timestamp: data.timestamp,
|
||||||
@ -203,54 +194,42 @@ export default class ChatClientDirectOpenLive extends ChatClientOfficialBase {
|
|||||||
totalCoin: data.price * data.gift_num,
|
totalCoin: data.price * data.gift_num,
|
||||||
giftName: data.gift_name,
|
giftName: data.gift_name,
|
||||||
num: data.gift_num
|
num: data.gift_num
|
||||||
}
|
})
|
||||||
this.onAddGift(data)
|
this.msgHandler.onAddGift(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
async guardCallback(command) {
|
async guardCallback(command) {
|
||||||
if (!this.onAddMember) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
data = {
|
data = new chatModels.AddMemberMsg({
|
||||||
id: data.msg_id,
|
id: data.msg_id,
|
||||||
avatarUrl: chat.processAvatarUrl(data.user_info.uface),
|
avatarUrl: chat.processAvatarUrl(data.user_info.uface),
|
||||||
timestamp: data.timestamp,
|
timestamp: data.timestamp,
|
||||||
authorName: data.user_info.uname,
|
authorName: data.user_info.uname,
|
||||||
privilegeType: data.guard_level
|
privilegeType: data.guard_level
|
||||||
}
|
})
|
||||||
this.onAddMember(data)
|
this.msgHandler.onAddMember(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
superChatCallback(command) {
|
superChatCallback(command) {
|
||||||
if (!this.onAddSuperChat) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
data = {
|
data = new chatModels.AddSuperChatMsg({
|
||||||
id: data.message_id.toString(),
|
id: data.message_id.toString(),
|
||||||
avatarUrl: chat.processAvatarUrl(data.uface),
|
avatarUrl: chat.processAvatarUrl(data.uface),
|
||||||
timestamp: data.start_time,
|
timestamp: data.start_time,
|
||||||
authorName: data.uname,
|
authorName: data.uname,
|
||||||
price: data.rmb,
|
price: data.rmb,
|
||||||
content: data.message,
|
content: data.message,
|
||||||
translation: ''
|
})
|
||||||
}
|
this.msgHandler.onAddSuperChat(data)
|
||||||
this.onAddSuperChat(data)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
superChatDelCallback(command) {
|
superChatDelCallback(command) {
|
||||||
if (!this.onDelSuperChat) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let ids = []
|
let ids = []
|
||||||
for (let id of command.data.message_ids) {
|
for (let id of command.data.message_ids) {
|
||||||
ids.push(id.toString())
|
ids.push(id.toString())
|
||||||
}
|
}
|
||||||
this.onDelSuperChat({ ids })
|
let data = new chatModels.DelSuperChatMsg({ ids })
|
||||||
|
this.msgHandler.onDelSuperChat(data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
import { getUuid4Hex } from '@/utils'
|
|
||||||
import * as chat from '.'
|
import * as chat from '.'
|
||||||
|
import * as chatModels from './models'
|
||||||
import * as base from './ChatClientOfficialBase'
|
import * as base from './ChatClientOfficialBase'
|
||||||
import ChatClientOfficialBase from './ChatClientOfficialBase'
|
import ChatClientOfficialBase from './ChatClientOfficialBase'
|
||||||
|
|
||||||
@ -62,9 +62,6 @@ export default class ChatClientDirectWeb extends ChatClientOfficialBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async danmuMsgCallback(command) {
|
async danmuMsgCallback(command) {
|
||||||
if (!this.onAddText) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let info = command.info
|
let info = command.info
|
||||||
|
|
||||||
let roomId, medalLevel
|
let roomId, medalLevel
|
||||||
@ -91,7 +88,7 @@ export default class ChatClientDirectWeb extends ChatClientOfficialBase {
|
|||||||
|
|
||||||
let authorName = info[2][1]
|
let authorName = info[2][1]
|
||||||
let content = info[1]
|
let content = info[1]
|
||||||
let data = {
|
let data = new chatModels.AddTextMsg({
|
||||||
avatarUrl: await chat.getAvatarUrl(uid, authorName),
|
avatarUrl: await chat.getAvatarUrl(uid, authorName),
|
||||||
timestamp: info[0][4] / 1000,
|
timestamp: info[0][4] / 1000,
|
||||||
authorName: authorName,
|
authorName: authorName,
|
||||||
@ -103,78 +100,59 @@ export default class ChatClientDirectWeb extends ChatClientOfficialBase {
|
|||||||
isNewbie: info[2][5] < 10000,
|
isNewbie: info[2][5] < 10000,
|
||||||
isMobileVerified: Boolean(info[2][6]),
|
isMobileVerified: Boolean(info[2][6]),
|
||||||
medalLevel: roomId === this.roomId ? medalLevel : 0,
|
medalLevel: roomId === this.roomId ? medalLevel : 0,
|
||||||
id: getUuid4Hex(),
|
|
||||||
translation: '',
|
|
||||||
emoticon: info[0][13].url || null,
|
emoticon: info[0][13].url || null,
|
||||||
}
|
})
|
||||||
this.onAddText(data)
|
this.msgHandler.onAddText(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
sendGiftCallback(command) {
|
sendGiftCallback(command) {
|
||||||
if (!this.onAddGift) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
if (data.coin_type !== 'gold') { // 丢人
|
if (data.coin_type !== 'gold') { // 丢人
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
data = {
|
data = new chatModels.AddGiftMsg({
|
||||||
id: getUuid4Hex(),
|
|
||||||
avatarUrl: chat.processAvatarUrl(data.face),
|
avatarUrl: chat.processAvatarUrl(data.face),
|
||||||
timestamp: data.timestamp,
|
timestamp: data.timestamp,
|
||||||
authorName: data.uname,
|
authorName: data.uname,
|
||||||
totalCoin: data.total_coin,
|
totalCoin: data.total_coin,
|
||||||
giftName: data.giftName,
|
giftName: data.giftName,
|
||||||
num: data.num
|
num: data.num
|
||||||
}
|
})
|
||||||
this.onAddGift(data)
|
this.msgHandler.onAddGift(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
async guardBuyCallback(command) {
|
async guardBuyCallback(command) {
|
||||||
if (!this.onAddMember) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
data = {
|
data = new chatModels.AddMemberMsg({
|
||||||
id: getUuid4Hex(),
|
|
||||||
avatarUrl: await chat.getAvatarUrl(data.uid, data.username),
|
avatarUrl: await chat.getAvatarUrl(data.uid, data.username),
|
||||||
timestamp: data.start_time,
|
timestamp: data.start_time,
|
||||||
authorName: data.username,
|
authorName: data.username,
|
||||||
privilegeType: data.guard_level
|
privilegeType: data.guard_level
|
||||||
}
|
})
|
||||||
this.onAddMember(data)
|
this.msgHandler.onAddMember(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
superChatMessageCallback(command) {
|
superChatMessageCallback(command) {
|
||||||
if (!this.onAddSuperChat) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = command.data
|
let data = command.data
|
||||||
data = {
|
data = new chatModels.AddSuperChatMsg({
|
||||||
id: data.id.toString(),
|
id: data.id.toString(),
|
||||||
avatarUrl: chat.processAvatarUrl(data.user_info.face),
|
avatarUrl: chat.processAvatarUrl(data.user_info.face),
|
||||||
timestamp: data.start_time,
|
timestamp: data.start_time,
|
||||||
authorName: data.user_info.uname,
|
authorName: data.user_info.uname,
|
||||||
price: data.price,
|
price: data.price,
|
||||||
content: data.message,
|
content: data.message,
|
||||||
translation: ''
|
})
|
||||||
}
|
this.msgHandler.onAddSuperChat(data)
|
||||||
this.onAddSuperChat(data)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
superChatMessageDeleteCallback(command) {
|
superChatMessageDeleteCallback(command) {
|
||||||
if (!this.onDelSuperChat) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let ids = []
|
let ids = []
|
||||||
for (let id of command.data.ids) {
|
for (let id of command.data.ids) {
|
||||||
ids.push(id.toString())
|
ids.push(id.toString())
|
||||||
}
|
}
|
||||||
this.onDelSuperChat({ ids })
|
let data = new chatModels.DelSuperChatMsg({ ids })
|
||||||
|
this.msgHandler.onDelSuperChat(data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ import { BrotliDecode } from './brotli_decode'
|
|||||||
import { inflate } from 'pako'
|
import { inflate } from 'pako'
|
||||||
|
|
||||||
import * as chat from '..'
|
import * as chat from '..'
|
||||||
|
import * as chatModels from '../models'
|
||||||
|
|
||||||
const HEADER_SIZE = 16
|
const HEADER_SIZE = 16
|
||||||
|
|
||||||
@ -45,14 +46,7 @@ export default class ChatClientOfficialBase {
|
|||||||
constructor() {
|
constructor() {
|
||||||
this.CMD_CALLBACK_MAP = {}
|
this.CMD_CALLBACK_MAP = {}
|
||||||
|
|
||||||
this.onAddText = null
|
this.msgHandler = chat.getDefaultMsgHandler()
|
||||||
this.onAddGift = null
|
|
||||||
this.onAddMember = null
|
|
||||||
this.onAddSuperChat = null
|
|
||||||
this.onDelSuperChat = null
|
|
||||||
this.onUpdateTranslation = null
|
|
||||||
|
|
||||||
this.onFatalError = null
|
|
||||||
|
|
||||||
this.needInitRoom = true
|
this.needInitRoom = true
|
||||||
this.websocket = null
|
this.websocket = null
|
||||||
@ -126,8 +120,8 @@ export default class ChatClientOfficialBase {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
res = false
|
res = false
|
||||||
console.error('initRoom exception:', e)
|
console.error('initRoom exception:', e)
|
||||||
if (e instanceof chat.ChatClientFatalError && this.onFatalError) {
|
if (e instanceof chatModels.ChatClientFatalError) {
|
||||||
this.onFatalError(e)
|
this.msgHandler.onFatalError(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import * as chat from '.'
|
import * as chat from '.'
|
||||||
|
import * as chatModels from './models'
|
||||||
|
|
||||||
const COMMAND_HEARTBEAT = 0
|
const COMMAND_HEARTBEAT = 0
|
||||||
const COMMAND_JOIN_ROOM = 1
|
const COMMAND_JOIN_ROOM = 1
|
||||||
@ -20,14 +21,7 @@ export default class ChatClientRelay {
|
|||||||
this.roomKey = roomKey
|
this.roomKey = roomKey
|
||||||
this.autoTranslate = autoTranslate
|
this.autoTranslate = autoTranslate
|
||||||
|
|
||||||
this.onAddText = null
|
this.msgHandler = chat.getDefaultMsgHandler()
|
||||||
this.onAddGift = null
|
|
||||||
this.onAddMember = null
|
|
||||||
this.onAddSuperChat = null
|
|
||||||
this.onDelSuperChat = null
|
|
||||||
this.onUpdateTranslation = null
|
|
||||||
|
|
||||||
this.onFatalError = null
|
|
||||||
|
|
||||||
this.websocket = null
|
this.websocket = null
|
||||||
this.retryCount = 0
|
this.retryCount = 0
|
||||||
@ -122,10 +116,6 @@ export default class ChatClientRelay {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_ADD_TEXT: {
|
case COMMAND_ADD_TEXT: {
|
||||||
if (!this.onAddText) {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
let emoticon = null
|
let emoticon = null
|
||||||
let contentType = data[13]
|
let contentType = data[13]
|
||||||
let contentTypeParams = data[14]
|
let contentTypeParams = data[14]
|
||||||
@ -134,7 +124,7 @@ export default class ChatClientRelay {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let content = data[4]
|
let content = data[4]
|
||||||
data = {
|
data = new chatModels.AddTextMsg({
|
||||||
avatarUrl: data[0],
|
avatarUrl: data[0],
|
||||||
timestamp: data[1],
|
timestamp: data[1],
|
||||||
authorName: data[2],
|
authorName: data[2],
|
||||||
@ -149,51 +139,41 @@ export default class ChatClientRelay {
|
|||||||
id: data[11],
|
id: data[11],
|
||||||
translation: data[12],
|
translation: data[12],
|
||||||
emoticon: emoticon
|
emoticon: emoticon
|
||||||
}
|
})
|
||||||
this.onAddText(data)
|
this.msgHandler.onAddText(data)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_ADD_GIFT: {
|
case COMMAND_ADD_GIFT: {
|
||||||
if (this.onAddGift) {
|
data = new chatModels.AddGiftMsg(data)
|
||||||
this.onAddGift(data)
|
this.msgHandler.onAddGift(data)
|
||||||
}
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_ADD_MEMBER: {
|
case COMMAND_ADD_MEMBER: {
|
||||||
if (this.onAddMember) {
|
data = new chatModels.AddMemberMsg(data)
|
||||||
this.onAddMember(data)
|
this.msgHandler.onAddMember(data)
|
||||||
}
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_ADD_SUPER_CHAT: {
|
case COMMAND_ADD_SUPER_CHAT: {
|
||||||
if (this.onAddSuperChat) {
|
data = new chatModels.AddSuperChatMsg(data)
|
||||||
this.onAddSuperChat(data)
|
this.msgHandler.onAddSuperChat(data)
|
||||||
}
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_DEL_SUPER_CHAT: {
|
case COMMAND_DEL_SUPER_CHAT: {
|
||||||
if (this.onDelSuperChat) {
|
data = new chatModels.DelSuperChatMsg(data)
|
||||||
this.onDelSuperChat(data)
|
this.msgHandler.onDelSuperChat(data)
|
||||||
}
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_UPDATE_TRANSLATION: {
|
case COMMAND_UPDATE_TRANSLATION: {
|
||||||
if (!this.onUpdateTranslation) {
|
data = new chatModels.UpdateTranslationMsg({
|
||||||
break
|
|
||||||
}
|
|
||||||
data = {
|
|
||||||
id: data[0],
|
id: data[0],
|
||||||
translation: data[1]
|
translation: data[1]
|
||||||
}
|
})
|
||||||
this.onUpdateTranslation(data)
|
this.msgHandler.onUpdateTranslation(data)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_FATAL_ERROR: {
|
case COMMAND_FATAL_ERROR: {
|
||||||
if (!this.onFatalError) {
|
let error = new chatModels.ChatClientFatalError(data.type, data.msg)
|
||||||
break
|
this.msgHandler.onFatalError(error)
|
||||||
}
|
|
||||||
let error = new chat.ChatClientFatalError(data.type, data.msg)
|
|
||||||
this.onFatalError(error)
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { getUuid4Hex } from '@/utils'
|
|
||||||
import * as constants from '@/components/ChatRenderer/constants'
|
import * as constants from '@/components/ChatRenderer/constants'
|
||||||
import * as chat from '.'
|
import * as chat from '.'
|
||||||
|
import * as chatModels from './models'
|
||||||
|
|
||||||
const NAMES = [
|
const NAMES = [
|
||||||
'光羊',
|
'光羊',
|
||||||
@ -102,21 +102,16 @@ const MESSAGE_GENERATORS = [
|
|||||||
value() {
|
value() {
|
||||||
return {
|
return {
|
||||||
type: constants.MESSAGE_TYPE_TEXT,
|
type: constants.MESSAGE_TYPE_TEXT,
|
||||||
message: {
|
message: new chatModels.AddTextMsg({
|
||||||
...randGuardInfo(),
|
...randGuardInfo(),
|
||||||
avatarUrl: chat.DEFAULT_AVATAR_URL,
|
|
||||||
timestamp: new Date().getTime() / 1000,
|
|
||||||
authorName: randomChoose(NAMES),
|
authorName: randomChoose(NAMES),
|
||||||
content: randomChoose(CONTENTS),
|
content: randomChoose(CONTENTS),
|
||||||
isGiftDanmaku: randInt(1, 10) <= 1,
|
isGiftDanmaku: randInt(1, 10) <= 1,
|
||||||
authorLevel: randInt(0, 60),
|
authorLevel: randInt(1, 60),
|
||||||
isNewbie: randInt(1, 10) <= 1,
|
isNewbie: randInt(1, 10) <= 1,
|
||||||
isMobileVerified: randInt(1, 10) <= 9,
|
isMobileVerified: randInt(1, 10) <= 9,
|
||||||
medalLevel: randInt(0, 40),
|
medalLevel: randInt(0, 40),
|
||||||
id: getUuid4Hex(),
|
})
|
||||||
translation: '',
|
|
||||||
emoticon: null,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -126,21 +121,15 @@ const MESSAGE_GENERATORS = [
|
|||||||
value() {
|
value() {
|
||||||
return {
|
return {
|
||||||
type: constants.MESSAGE_TYPE_TEXT,
|
type: constants.MESSAGE_TYPE_TEXT,
|
||||||
message: {
|
message: new chatModels.AddTextMsg({
|
||||||
...randGuardInfo(),
|
...randGuardInfo(),
|
||||||
avatarUrl: chat.DEFAULT_AVATAR_URL,
|
|
||||||
timestamp: new Date().getTime() / 1000,
|
|
||||||
authorName: randomChoose(NAMES),
|
authorName: randomChoose(NAMES),
|
||||||
content: '',
|
authorLevel: randInt(1, 60),
|
||||||
isGiftDanmaku: false,
|
|
||||||
authorLevel: randInt(0, 60),
|
|
||||||
isNewbie: randInt(1, 10) <= 1,
|
isNewbie: randInt(1, 10) <= 1,
|
||||||
isMobileVerified: randInt(1, 10) <= 9,
|
isMobileVerified: randInt(1, 10) <= 9,
|
||||||
medalLevel: randInt(0, 40),
|
medalLevel: randInt(0, 40),
|
||||||
id: getUuid4Hex(),
|
|
||||||
translation: '',
|
|
||||||
emoticon: randomChoose(EMOTICONS),
|
emoticon: randomChoose(EMOTICONS),
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -150,14 +139,10 @@ const MESSAGE_GENERATORS = [
|
|||||||
value() {
|
value() {
|
||||||
return {
|
return {
|
||||||
type: constants.MESSAGE_TYPE_GIFT,
|
type: constants.MESSAGE_TYPE_GIFT,
|
||||||
message: {
|
message: new chatModels.AddGiftMsg({
|
||||||
...randomChoose(GIFT_INFO_LIST),
|
...randomChoose(GIFT_INFO_LIST),
|
||||||
id: getUuid4Hex(),
|
|
||||||
avatarUrl: chat.DEFAULT_AVATAR_URL,
|
|
||||||
timestamp: new Date().getTime() / 1000,
|
|
||||||
authorName: randomChoose(NAMES),
|
authorName: randomChoose(NAMES),
|
||||||
num: 1
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -167,15 +152,11 @@ const MESSAGE_GENERATORS = [
|
|||||||
value() {
|
value() {
|
||||||
return {
|
return {
|
||||||
type: constants.MESSAGE_TYPE_SUPER_CHAT,
|
type: constants.MESSAGE_TYPE_SUPER_CHAT,
|
||||||
message: {
|
message: new chatModels.AddSuperChatMsg({
|
||||||
id: getUuid4Hex(),
|
|
||||||
avatarUrl: chat.DEFAULT_AVATAR_URL,
|
|
||||||
timestamp: new Date().getTime() / 1000,
|
|
||||||
authorName: randomChoose(NAMES),
|
authorName: randomChoose(NAMES),
|
||||||
price: randomChoose(SC_PRICES),
|
price: randomChoose(SC_PRICES),
|
||||||
content: randomChoose(CONTENTS),
|
content: randomChoose(CONTENTS),
|
||||||
translation: ''
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -185,13 +166,10 @@ const MESSAGE_GENERATORS = [
|
|||||||
value() {
|
value() {
|
||||||
return {
|
return {
|
||||||
type: constants.MESSAGE_TYPE_MEMBER,
|
type: constants.MESSAGE_TYPE_MEMBER,
|
||||||
message: {
|
message: new chatModels.AddMemberMsg({
|
||||||
id: getUuid4Hex(),
|
|
||||||
avatarUrl: chat.DEFAULT_AVATAR_URL,
|
|
||||||
timestamp: new Date().getTime() / 1000,
|
|
||||||
authorName: randomChoose(NAMES),
|
authorName: randomChoose(NAMES),
|
||||||
privilegeType: randInt(1, 3)
|
privilegeType: randInt(1, 3)
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -231,14 +209,7 @@ function randInt(min, max) {
|
|||||||
|
|
||||||
export default class ChatClientTest {
|
export default class ChatClientTest {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.onAddText = null
|
this.msgHandler = chat.getDefaultMsgHandler()
|
||||||
this.onAddGift = null
|
|
||||||
this.onAddMember = null
|
|
||||||
this.onAddSuperChat = null
|
|
||||||
this.onDelSuperChat = null
|
|
||||||
this.onUpdateTranslation = null
|
|
||||||
|
|
||||||
this.onFatalError = null
|
|
||||||
|
|
||||||
this.timerId = null
|
this.timerId = null
|
||||||
}
|
}
|
||||||
@ -274,16 +245,16 @@ export default class ChatClientTest {
|
|||||||
let { type, message } = randomChoose(MESSAGE_GENERATORS)()
|
let { type, message } = randomChoose(MESSAGE_GENERATORS)()
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case constants.MESSAGE_TYPE_TEXT:
|
case constants.MESSAGE_TYPE_TEXT:
|
||||||
this.onAddText(message)
|
this.msgHandler.onAddText(message)
|
||||||
break
|
break
|
||||||
case constants.MESSAGE_TYPE_GIFT:
|
case constants.MESSAGE_TYPE_GIFT:
|
||||||
this.onAddGift(message)
|
this.msgHandler.onAddGift(message)
|
||||||
break
|
break
|
||||||
case constants.MESSAGE_TYPE_MEMBER:
|
case constants.MESSAGE_TYPE_MEMBER:
|
||||||
this.onAddMember(message)
|
this.msgHandler.onAddMember(message)
|
||||||
break
|
break
|
||||||
case constants.MESSAGE_TYPE_SUPER_CHAT:
|
case constants.MESSAGE_TYPE_SUPER_CHAT:
|
||||||
this.onAddSuperChat(message)
|
this.msgHandler.onAddSuperChat(message)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,16 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
export const FATAL_ERROR_TYPE_AUTH_CODE_ERROR = 1
|
export function getDefaultMsgHandler() {
|
||||||
|
let dummyFunc = () => {}
|
||||||
|
return {
|
||||||
|
onAddText: dummyFunc,
|
||||||
|
onAddGift: dummyFunc,
|
||||||
|
onAddMember: dummyFunc,
|
||||||
|
onAddSuperChat: dummyFunc,
|
||||||
|
onDelSuperChat: dummyFunc,
|
||||||
|
onUpdateTranslation: dummyFunc,
|
||||||
|
|
||||||
export class ChatClientFatalError extends Error {
|
onFatalError: dummyFunc,
|
||||||
constructor(type, message) {
|
|
||||||
super(message)
|
|
||||||
this.type = type
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
120
frontend/src/api/chat/models.js
Normal file
120
frontend/src/api/chat/models.js
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
import { getUuid4Hex } from '@/utils'
|
||||||
|
import * as constants from '@/components/ChatRenderer/constants'
|
||||||
|
import * as chat from '.'
|
||||||
|
|
||||||
|
export class AddTextMsg {
|
||||||
|
constructor({
|
||||||
|
avatarUrl = chat.DEFAULT_AVATAR_URL,
|
||||||
|
timestamp = new Date().getTime() / 1000,
|
||||||
|
authorName = '',
|
||||||
|
authorType = constants.AUTHOR_TYPE_NORMAL,
|
||||||
|
content = '',
|
||||||
|
privilegeType = 0,
|
||||||
|
isGiftDanmaku = false,
|
||||||
|
authorLevel = 1,
|
||||||
|
isNewbie = false,
|
||||||
|
isMobileVerified = true,
|
||||||
|
medalLevel = 0,
|
||||||
|
id = getUuid4Hex(),
|
||||||
|
translation = '',
|
||||||
|
emoticon = null,
|
||||||
|
} = {}) {
|
||||||
|
this.avatarUrl = avatarUrl
|
||||||
|
this.timestamp = timestamp
|
||||||
|
this.authorName = authorName
|
||||||
|
this.authorType = authorType
|
||||||
|
this.content = content
|
||||||
|
this.privilegeType = privilegeType
|
||||||
|
this.isGiftDanmaku = isGiftDanmaku
|
||||||
|
this.authorLevel = authorLevel
|
||||||
|
this.isNewbie = isNewbie
|
||||||
|
this.isMobileVerified = isMobileVerified
|
||||||
|
this.medalLevel = medalLevel
|
||||||
|
this.id = id
|
||||||
|
this.translation = translation
|
||||||
|
this.emoticon = emoticon
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AddGiftMsg {
|
||||||
|
constructor({
|
||||||
|
id = getUuid4Hex(),
|
||||||
|
avatarUrl = chat.DEFAULT_AVATAR_URL,
|
||||||
|
timestamp = new Date().getTime() / 1000,
|
||||||
|
authorName = '',
|
||||||
|
totalCoin = 0,
|
||||||
|
giftName = '',
|
||||||
|
num = 1,
|
||||||
|
} = {}) {
|
||||||
|
this.id = id
|
||||||
|
this.avatarUrl = avatarUrl
|
||||||
|
this.timestamp = timestamp
|
||||||
|
this.authorName = authorName
|
||||||
|
this.totalCoin = totalCoin
|
||||||
|
this.giftName = giftName
|
||||||
|
this.num = num
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AddMemberMsg {
|
||||||
|
constructor({
|
||||||
|
id = getUuid4Hex(),
|
||||||
|
avatarUrl = chat.DEFAULT_AVATAR_URL,
|
||||||
|
timestamp = new Date().getTime() / 1000,
|
||||||
|
authorName = '',
|
||||||
|
privilegeType = 1,
|
||||||
|
} = {}) {
|
||||||
|
this.id = id
|
||||||
|
this.avatarUrl = avatarUrl
|
||||||
|
this.timestamp = timestamp
|
||||||
|
this.authorName = authorName
|
||||||
|
this.privilegeType = privilegeType
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AddSuperChatMsg {
|
||||||
|
constructor({
|
||||||
|
id = getUuid4Hex(),
|
||||||
|
avatarUrl = chat.DEFAULT_AVATAR_URL,
|
||||||
|
timestamp = new Date().getTime() / 1000,
|
||||||
|
authorName = '',
|
||||||
|
price = 0,
|
||||||
|
content = '',
|
||||||
|
translation = '',
|
||||||
|
} = {}) {
|
||||||
|
this.id = id
|
||||||
|
this.avatarUrl = avatarUrl
|
||||||
|
this.timestamp = timestamp
|
||||||
|
this.authorName = authorName
|
||||||
|
this.price = price
|
||||||
|
this.content = content
|
||||||
|
this.translation = translation
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class DelSuperChatMsg {
|
||||||
|
constructor({
|
||||||
|
ids = [],
|
||||||
|
} = {}) {
|
||||||
|
this.ids = ids
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class UpdateTranslationMsg {
|
||||||
|
constructor({
|
||||||
|
id = getUuid4Hex(),
|
||||||
|
translation = '',
|
||||||
|
} = {}) {
|
||||||
|
this.id = id
|
||||||
|
this.translation = translation
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const FATAL_ERROR_TYPE_AUTH_CODE_ERROR = 1
|
||||||
|
|
||||||
|
export class ChatClientFatalError extends Error {
|
||||||
|
constructor(type, message) {
|
||||||
|
super(message)
|
||||||
|
this.type = type
|
||||||
|
}
|
||||||
|
}
|
@ -9,6 +9,7 @@ import * as trie from '@/utils/trie'
|
|||||||
import * as pronunciation from '@/utils/pronunciation'
|
import * as pronunciation from '@/utils/pronunciation'
|
||||||
import * as chatConfig from '@/api/chatConfig'
|
import * as chatConfig from '@/api/chatConfig'
|
||||||
import * as chat from '@/api/chat'
|
import * as chat from '@/api/chat'
|
||||||
|
import * as chatModels from '@/api/chat/models'
|
||||||
import ChatRenderer from '@/components/ChatRenderer'
|
import ChatRenderer from '@/components/ChatRenderer'
|
||||||
import * as constants from '@/components/ChatRenderer/constants'
|
import * as constants from '@/components/ChatRenderer/constants'
|
||||||
|
|
||||||
@ -198,13 +199,8 @@ export default {
|
|||||||
this.chatClient = new ChatClientDirectOpenLive(this.roomKeyValue)
|
this.chatClient = new ChatClientDirectOpenLive(this.roomKeyValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.chatClient.onAddText = this.onAddText
|
|
||||||
this.chatClient.onAddGift = this.onAddGift
|
this.chatClient.msgHandler = this
|
||||||
this.chatClient.onAddMember = this.onAddMember
|
|
||||||
this.chatClient.onAddSuperChat = this.onAddSuperChat
|
|
||||||
this.chatClient.onDelSuperChat = this.onDelSuperChat
|
|
||||||
this.chatClient.onUpdateTranslation = this.onUpdateTranslation
|
|
||||||
this.chatClient.onFatalError = this.onFatalError
|
|
||||||
this.chatClient.start()
|
this.chatClient.start()
|
||||||
},
|
},
|
||||||
async initTextEmoticons() {
|
async initTextEmoticons() {
|
||||||
@ -236,6 +232,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/** @param {chatModels.AddTextMsg} data */
|
||||||
onAddText(data) {
|
onAddText(data) {
|
||||||
if (!this.config.showDanmaku || !this.filterTextMessage(data) || this.mergeSimilarText(data.content)) {
|
if (!this.config.showDanmaku || !this.filterTextMessage(data) || this.mergeSimilarText(data.content)) {
|
||||||
return
|
return
|
||||||
@ -255,6 +252,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.$refs.renderer.addMessage(message)
|
this.$refs.renderer.addMessage(message)
|
||||||
},
|
},
|
||||||
|
/** @param {chatModels.AddGiftMsg} data */
|
||||||
onAddGift(data) {
|
onAddGift(data) {
|
||||||
if (!this.config.showGift) {
|
if (!this.config.showGift) {
|
||||||
return
|
return
|
||||||
@ -279,6 +277,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.$refs.renderer.addMessage(message)
|
this.$refs.renderer.addMessage(message)
|
||||||
},
|
},
|
||||||
|
/** @param {chatModels.AddMemberMsg} data */
|
||||||
onAddMember(data) {
|
onAddMember(data) {
|
||||||
if (!this.config.showGift || !this.filterNewMemberMessage(data)) {
|
if (!this.config.showGift || !this.filterNewMemberMessage(data)) {
|
||||||
return
|
return
|
||||||
@ -295,6 +294,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.$refs.renderer.addMessage(message)
|
this.$refs.renderer.addMessage(message)
|
||||||
},
|
},
|
||||||
|
/** @param {chatModels.AddSuperChatMsg} data */
|
||||||
onAddSuperChat(data) {
|
onAddSuperChat(data) {
|
||||||
if (!this.config.showGift || !this.filterSuperChatMessage(data)) {
|
if (!this.config.showGift || !this.filterSuperChatMessage(data)) {
|
||||||
return
|
return
|
||||||
@ -315,15 +315,18 @@ export default {
|
|||||||
}
|
}
|
||||||
this.$refs.renderer.addMessage(message)
|
this.$refs.renderer.addMessage(message)
|
||||||
},
|
},
|
||||||
|
/** @param {chatModels.DelSuperChatMsg} data */
|
||||||
onDelSuperChat(data) {
|
onDelSuperChat(data) {
|
||||||
this.$refs.renderer.delMessages(data.ids)
|
this.$refs.renderer.delMessages(data.ids)
|
||||||
},
|
},
|
||||||
|
/** @param {chatModels.UpdateTranslationMsg} data */
|
||||||
onUpdateTranslation(data) {
|
onUpdateTranslation(data) {
|
||||||
if (!this.config.autoTranslate) {
|
if (!this.config.autoTranslate) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.$refs.renderer.updateMessage(data.id, { translation: data.translation })
|
this.$refs.renderer.updateMessage(data.id, { translation: data.translation })
|
||||||
},
|
},
|
||||||
|
/** @param {chatModels.ChatClientFatalError} error */
|
||||||
onFatalError(error) {
|
onFatalError(error) {
|
||||||
this.$message.error({
|
this.$message.error({
|
||||||
message: error.toString(),
|
message: error.toString(),
|
||||||
@ -331,7 +334,7 @@ export default {
|
|||||||
})
|
})
|
||||||
this.chatClient.stop()
|
this.chatClient.stop()
|
||||||
|
|
||||||
if (error.type === chat.FATAL_ERROR_TYPE_AUTH_CODE_ERROR) {
|
if (error.type === chatModels.FATAL_ERROR_TYPE_AUTH_CODE_ERROR) {
|
||||||
// Read The Fucking Manual
|
// Read The Fucking Manual
|
||||||
this.$router.push({ name: 'help' })
|
this.$router.push({ name: 'help' })
|
||||||
}
|
}
|
||||||
@ -391,7 +394,7 @@ export default {
|
|||||||
getRichContent(data) {
|
getRichContent(data) {
|
||||||
let richContent = []
|
let richContent = []
|
||||||
|
|
||||||
// B站官方表情
|
// 官方的非文本表情
|
||||||
if (data.emoticon !== null) {
|
if (data.emoticon !== null) {
|
||||||
richContent.push({
|
richContent.push({
|
||||||
type: constants.CONTENT_TYPE_IMAGE,
|
type: constants.CONTENT_TYPE_IMAGE,
|
||||||
|
Loading…
Reference in New Issue
Block a user