2019-02-19 23:15:00 +08:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
2019-02-20 00:25:14 +08:00
|
|
|
|
import asyncio
|
2019-02-14 18:36:37 +08:00
|
|
|
|
import json
|
2019-02-20 14:53:50 +08:00
|
|
|
|
import logging
|
2019-02-19 23:15:00 +08:00
|
|
|
|
import struct
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
from enum import IntEnum
|
|
|
|
|
# noinspection PyProtectedMember
|
|
|
|
|
from ssl import _create_unverified_context
|
|
|
|
|
|
2018-06-03 14:06:00 +08:00
|
|
|
|
import aiohttp
|
2018-05-13 21:57:36 +08:00
|
|
|
|
|
2019-02-20 14:53:50 +08:00
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
2019-04-22 19:47:05 +08:00
|
|
|
|
ROOM_INIT_URL = 'https://api.live.bilibili.com/room/v1/Room/room_init'
|
|
|
|
|
WEBSOCKET_URL = 'wss://broadcastlv.chat.bilibili.com:2245/sub'
|
2018-05-13 21:57:36 +08:00
|
|
|
|
|
2019-04-22 19:47:05 +08:00
|
|
|
|
HEADER_STRUCT = struct.Struct('>I2H2I')
|
|
|
|
|
HeaderTuple = namedtuple('HeaderTuple', ('pack_len', 'raw_header_size', 'ver', 'operation', 'seq_id'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# go-common\app\service\main\broadcast\model\operation.go
|
2019-02-19 23:15:00 +08:00
|
|
|
|
class Operation(IntEnum):
|
2019-04-22 19:47:05 +08:00
|
|
|
|
HANDSHAKE = 0
|
|
|
|
|
HANDSHAKE_REPLY = 1
|
|
|
|
|
HEARTBEAT = 2
|
|
|
|
|
HEARTBEAT_REPLY = 3
|
|
|
|
|
SEND_MSG = 4
|
|
|
|
|
SEND_MSG_REPLY = 5
|
|
|
|
|
DISCONNECT_REPLY = 6
|
2019-02-19 23:15:00 +08:00
|
|
|
|
AUTH = 7
|
2019-04-22 19:47:05 +08:00
|
|
|
|
AUTH_REPLY = 8
|
|
|
|
|
RAW = 9
|
|
|
|
|
PROTO_READY = 10
|
|
|
|
|
PROTO_FINISH = 11
|
|
|
|
|
CHANGE_ROOM = 12
|
|
|
|
|
CHANGE_ROOM_REPLY = 13
|
|
|
|
|
REGISTER = 14
|
|
|
|
|
REGISTER_REPLY = 15
|
|
|
|
|
UNREGISTER = 16
|
|
|
|
|
UNREGISTER_REPLY = 17
|
|
|
|
|
# B站业务自定义OP
|
|
|
|
|
# MinBusinessOp = 1000
|
|
|
|
|
# MaxBusinessOp = 10000
|
2018-05-13 21:57:36 +08:00
|
|
|
|
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
class BLiveClient:
|
2019-03-23 23:58:02 +08:00
|
|
|
|
_COMMAND_HANDLERS = {
|
|
|
|
|
# 收到弹幕
|
2019-04-22 19:47:05 +08:00
|
|
|
|
# go-common\app\service\live\live-dm\service\v1\send.go
|
2019-03-23 23:58:02 +08:00
|
|
|
|
'DANMU_MSG': lambda client, command: client._on_get_danmaku(
|
|
|
|
|
command['info'][1], command['info'][2][1]
|
|
|
|
|
),
|
|
|
|
|
# 有人送礼
|
|
|
|
|
'SEND_GIFT': lambda client, command: client._on_gift(
|
|
|
|
|
command['data']['giftName'], command['data']['num'], command['data']['uname']
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
for cmd in ( # 其他已知命令
|
|
|
|
|
# 从前端扒来的
|
2019-05-29 22:28:10 +08:00
|
|
|
|
'66FFFF', 'SYS_MSG', 'SYS_GIFT', 'GUARD_MSG', 'LIVE', 'PREPARING', 'END', 'CLOSE',
|
|
|
|
|
'BLOCK', 'ROUND', 'WELCOME', 'REFRESH', 'ACTIVITY_RED_PACKET', 'ROOM_LIMIT',
|
|
|
|
|
'PK_PRE', 'PK_END', 'PK_SETTLE', 'PK_MIC_END',
|
2019-03-23 23:58:02 +08:00
|
|
|
|
# 其他遇到的
|
2019-05-29 22:28:10 +08:00
|
|
|
|
'COMBO_SEND', 'COMBO_END', 'ROOM_RANK', 'NOTICE_MSG', 'WELCOME_GUARD', 'GUARD_BUY',
|
2019-03-23 23:58:02 +08:00
|
|
|
|
'WISH_BOTTLE', 'RAFFLE_START', 'ENTRY_EFFECT', 'ROOM_REAL_TIME_MESSAGE_UPDATE'
|
|
|
|
|
):
|
|
|
|
|
_COMMAND_HANDLERS[cmd] = None
|
|
|
|
|
|
2019-02-20 00:25:14 +08:00
|
|
|
|
def __init__(self, room_id, ssl=True, loop=None, session: aiohttp.ClientSession=None,
|
|
|
|
|
uid=0):
|
2019-02-19 23:15:00 +08:00
|
|
|
|
"""
|
|
|
|
|
:param room_id: URL中的房间ID
|
|
|
|
|
:param ssl: True表示用默认的SSLContext验证,False表示不验证,也可以传入SSLContext
|
|
|
|
|
:param loop: 协程事件循环
|
2019-02-20 00:25:14 +08:00
|
|
|
|
:param session: cookie、连接池
|
|
|
|
|
:param uid: B站用户ID,0表示未登录
|
2019-02-19 23:15:00 +08:00
|
|
|
|
"""
|
|
|
|
|
self._short_id = room_id
|
|
|
|
|
self._room_id = None
|
2019-02-20 00:25:14 +08:00
|
|
|
|
self._uid = uid
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
2019-02-20 14:12:11 +08:00
|
|
|
|
if loop is not None:
|
|
|
|
|
self._loop = loop
|
|
|
|
|
elif session is not None:
|
|
|
|
|
self._loop = session.loop
|
|
|
|
|
else:
|
|
|
|
|
self._loop = asyncio.get_event_loop()
|
|
|
|
|
self._is_running = False
|
2019-02-20 00:25:14 +08:00
|
|
|
|
|
|
|
|
|
if session is None:
|
|
|
|
|
self._session = aiohttp.ClientSession(loop=self._loop)
|
|
|
|
|
self._own_session = True
|
|
|
|
|
else:
|
|
|
|
|
self._session = session
|
|
|
|
|
self._own_session = False
|
|
|
|
|
if self._session.loop is not self._loop:
|
|
|
|
|
raise RuntimeError('BLiveClient and session has to use same event loop')
|
2019-02-19 23:15:00 +08:00
|
|
|
|
self._ssl = ssl if ssl else _create_unverified_context()
|
|
|
|
|
self._websocket = None
|
|
|
|
|
|
2019-02-20 14:12:11 +08:00
|
|
|
|
@property
|
|
|
|
|
def is_running(self):
|
|
|
|
|
return self._is_running
|
|
|
|
|
|
2019-02-20 00:25:14 +08:00
|
|
|
|
async def close(self):
|
|
|
|
|
"""
|
|
|
|
|
如果session是自己创建的则关闭session
|
|
|
|
|
"""
|
|
|
|
|
if self._own_session:
|
|
|
|
|
await self._session.close()
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
2019-02-20 14:12:11 +08:00
|
|
|
|
def run(self):
|
2019-02-19 23:15:00 +08:00
|
|
|
|
"""
|
|
|
|
|
创建相关的协程,不会执行事件循环
|
2019-02-20 14:12:11 +08:00
|
|
|
|
:return: 协程的future
|
2019-02-19 23:15:00 +08:00
|
|
|
|
"""
|
2019-02-20 14:12:11 +08:00
|
|
|
|
if self._is_running:
|
|
|
|
|
raise RuntimeError('This client is already running')
|
|
|
|
|
self._is_running = True
|
|
|
|
|
return asyncio.ensure_future(self._message_loop(), loop=self._loop)
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
async def _get_room_id(self):
|
2019-04-22 19:47:05 +08:00
|
|
|
|
async with self._session.get(ROOM_INIT_URL,
|
2019-02-20 14:12:11 +08:00
|
|
|
|
params={'id': self._short_id},
|
|
|
|
|
ssl=self._ssl) as res:
|
|
|
|
|
if res.status == 200:
|
|
|
|
|
data = await res.json()
|
|
|
|
|
if data['code'] == 0:
|
|
|
|
|
self._room_id = data['data']['room_id']
|
2019-02-20 00:25:14 +08:00
|
|
|
|
else:
|
2019-02-20 14:12:11 +08:00
|
|
|
|
raise ConnectionAbortedError('获取房间ID失败:' + data['msg'])
|
|
|
|
|
else:
|
|
|
|
|
raise ConnectionAbortedError('获取房间ID失败:' + res.reason)
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
def _make_packet(self, data, operation):
|
|
|
|
|
body = json.dumps(data).encode('utf-8')
|
2019-04-22 19:47:05 +08:00
|
|
|
|
header = HEADER_STRUCT.pack(
|
|
|
|
|
HEADER_STRUCT.size + len(body),
|
|
|
|
|
HEADER_STRUCT.size,
|
2019-02-19 23:15:00 +08:00
|
|
|
|
1,
|
|
|
|
|
operation,
|
|
|
|
|
1
|
|
|
|
|
)
|
|
|
|
|
return header + body
|
|
|
|
|
|
|
|
|
|
async def _send_auth(self):
|
|
|
|
|
auth_params = {
|
|
|
|
|
'uid': self._uid,
|
|
|
|
|
'roomid': self._room_id,
|
|
|
|
|
'protover': 1,
|
|
|
|
|
'platform': 'web',
|
|
|
|
|
'clientver': '1.4.0'
|
|
|
|
|
}
|
2019-02-20 00:25:14 +08:00
|
|
|
|
await self._websocket.send_bytes(self._make_packet(auth_params, Operation.AUTH))
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
async def _message_loop(self):
|
|
|
|
|
# 获取房间ID
|
|
|
|
|
if self._room_id is None:
|
|
|
|
|
await self._get_room_id()
|
|
|
|
|
|
2018-05-14 01:02:53 +08:00
|
|
|
|
while True:
|
2019-02-20 14:12:11 +08:00
|
|
|
|
heartbeat_future = None
|
2019-02-19 23:15:00 +08:00
|
|
|
|
try:
|
|
|
|
|
# 连接
|
2019-04-22 19:47:05 +08:00
|
|
|
|
async with self._session.ws_connect(WEBSOCKET_URL,
|
2019-02-20 00:25:14 +08:00
|
|
|
|
ssl=self._ssl) as websocket:
|
2019-02-19 23:15:00 +08:00
|
|
|
|
self._websocket = websocket
|
|
|
|
|
await self._send_auth()
|
2019-02-20 14:12:11 +08:00
|
|
|
|
heartbeat_future = asyncio.ensure_future(self._heartbeat_loop(), loop=self._loop)
|
2018-05-14 01:02:53 +08:00
|
|
|
|
|
2019-02-19 23:15:00 +08:00
|
|
|
|
# 处理消息
|
2019-02-20 00:25:14 +08:00
|
|
|
|
async for message in websocket: # type: aiohttp.WSMessage
|
|
|
|
|
if message.type == aiohttp.WSMsgType.BINARY:
|
|
|
|
|
await self._handle_message(message.data)
|
|
|
|
|
else:
|
2019-02-20 14:53:50 +08:00
|
|
|
|
logger.warning('未知的websocket消息:type=%s %s', message.type, message.data)
|
2018-05-13 23:49:32 +08:00
|
|
|
|
|
2019-02-20 00:25:14 +08:00
|
|
|
|
except asyncio.CancelledError:
|
2019-02-19 23:15:00 +08:00
|
|
|
|
break
|
2019-04-21 12:21:12 +08:00
|
|
|
|
except (aiohttp.ClientConnectorError, asyncio.TimeoutError):
|
2019-02-19 23:15:00 +08:00
|
|
|
|
# 重连
|
2019-02-20 14:53:50 +08:00
|
|
|
|
logger.warning('掉线重连中')
|
2019-02-19 23:15:00 +08:00
|
|
|
|
try:
|
2019-02-20 00:25:14 +08:00
|
|
|
|
await asyncio.sleep(5)
|
|
|
|
|
except asyncio.CancelledError:
|
2019-02-17 17:01:52 +08:00
|
|
|
|
break
|
2019-02-19 23:15:00 +08:00
|
|
|
|
finally:
|
2019-02-20 14:12:11 +08:00
|
|
|
|
if heartbeat_future is not None:
|
|
|
|
|
heartbeat_future.cancel()
|
|
|
|
|
try:
|
|
|
|
|
await heartbeat_future
|
|
|
|
|
except asyncio.CancelledError:
|
|
|
|
|
break
|
2019-02-19 23:15:00 +08:00
|
|
|
|
self._websocket = None
|
|
|
|
|
|
2019-02-20 14:12:11 +08:00
|
|
|
|
self._is_running = False
|
|
|
|
|
|
2019-02-19 23:15:00 +08:00
|
|
|
|
async def _heartbeat_loop(self):
|
|
|
|
|
while True:
|
|
|
|
|
try:
|
2019-04-22 19:47:05 +08:00
|
|
|
|
await self._websocket.send_bytes(self._make_packet({}, Operation.HEARTBEAT))
|
2019-02-20 14:12:11 +08:00
|
|
|
|
await asyncio.sleep(30)
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
2019-02-20 14:12:11 +08:00
|
|
|
|
except (asyncio.CancelledError, aiohttp.ClientConnectorError):
|
2019-02-19 23:15:00 +08:00
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
async def _handle_message(self, message):
|
|
|
|
|
offset = 0
|
|
|
|
|
while offset < len(message):
|
|
|
|
|
try:
|
2019-04-22 19:47:05 +08:00
|
|
|
|
header = HeaderTuple(*HEADER_STRUCT.unpack_from(message, offset))
|
2019-02-19 23:15:00 +08:00
|
|
|
|
except struct.error:
|
|
|
|
|
break
|
|
|
|
|
|
2019-04-22 19:47:05 +08:00
|
|
|
|
if header.operation == Operation.HEARTBEAT_REPLY:
|
|
|
|
|
popularity = int.from_bytes(message[offset + HEADER_STRUCT.size:
|
|
|
|
|
offset + HEADER_STRUCT.size + 4],
|
2019-02-19 23:15:00 +08:00
|
|
|
|
'big')
|
|
|
|
|
await self._on_get_popularity(popularity)
|
|
|
|
|
|
2019-04-22 19:47:05 +08:00
|
|
|
|
elif header.operation == Operation.SEND_MSG_REPLY:
|
|
|
|
|
body = message[offset + HEADER_STRUCT.size: offset + header.pack_len]
|
2019-02-19 23:15:00 +08:00
|
|
|
|
body = json.loads(body.decode('utf-8'))
|
|
|
|
|
await self._handle_command(body)
|
|
|
|
|
|
2019-04-22 19:47:05 +08:00
|
|
|
|
elif header.operation == Operation.AUTH_REPLY:
|
|
|
|
|
await self._websocket.send_bytes(self._make_packet({}, Operation.HEARTBEAT))
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
else:
|
2019-04-22 19:47:05 +08:00
|
|
|
|
body = message[offset + HEADER_STRUCT.size: offset + header.pack_len]
|
2019-02-20 14:53:50 +08:00
|
|
|
|
logger.warning('未知包类型:operation=%d %s%s', header.operation, header, body)
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
2019-04-22 19:47:05 +08:00
|
|
|
|
offset += header.pack_len
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
async def _handle_command(self, command):
|
|
|
|
|
if isinstance(command, list):
|
|
|
|
|
for one_command in command:
|
|
|
|
|
await self._handle_command(one_command)
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
cmd = command['cmd']
|
2019-05-29 22:28:10 +08:00
|
|
|
|
pos = cmd.find(':') # 2019-5-29 B站弹幕升级新增了参数
|
|
|
|
|
if pos != -1:
|
|
|
|
|
cmd = cmd[:pos]
|
2019-03-23 23:58:02 +08:00
|
|
|
|
if cmd in self._COMMAND_HANDLERS:
|
|
|
|
|
handler = self._COMMAND_HANDLERS[cmd]
|
|
|
|
|
if handler is not None:
|
|
|
|
|
await handler(self, command)
|
2019-02-17 17:01:52 +08:00
|
|
|
|
else:
|
2019-02-20 14:53:50 +08:00
|
|
|
|
logger.warning('未知命令:cmd=%s %s', cmd, command)
|
2019-02-19 23:15:00 +08:00
|
|
|
|
|
|
|
|
|
async def _on_get_popularity(self, popularity):
|
|
|
|
|
"""
|
|
|
|
|
获取到人气值
|
|
|
|
|
:param popularity: 人气值
|
|
|
|
|
"""
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
async def _on_get_danmaku(self, content, user_name):
|
|
|
|
|
"""
|
|
|
|
|
获取到弹幕
|
|
|
|
|
:param content: 弹幕内容
|
|
|
|
|
:param user_name: 弹幕作者
|
|
|
|
|
"""
|
|
|
|
|
pass
|
2019-03-23 23:58:02 +08:00
|
|
|
|
|
|
|
|
|
async def _on_gift(self, gift_name, gift_num, user_name):
|
|
|
|
|
"""
|
|
|
|
|
有人送礼
|
|
|
|
|
:param gift_name: 礼物名
|
|
|
|
|
:param gift_num: 礼物数
|
|
|
|
|
:param user_name: 送礼人
|
|
|
|
|
"""
|
|
|
|
|
pass
|