mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-04-03 16:10:35 +08:00
添加命令行选项
This commit is contained in:
parent
036c462485
commit
2999b83ae8
@ -21,6 +21,10 @@
|
|||||||
```sh
|
```sh
|
||||||
python3 main.py
|
python3 main.py
|
||||||
```
|
```
|
||||||
|
或者可以指定host和端口号:
|
||||||
|
```sh
|
||||||
|
python3 main.py --host 127.0.0.1 --port 80
|
||||||
|
```
|
||||||
3. 用浏览器打开[http://localhost](http://localhost),输入房间号,进入,复制房间URL(其实就是http://localhost/room/<房间ID>)
|
3. 用浏览器打开[http://localhost](http://localhost),输入房间号,进入,复制房间URL(其实就是http://localhost/room/<房间ID>)
|
||||||
4. (可选)在[https://chatv2.septapus.com/](https://chatv2.septapus.com/)生成样式,复制CSS
|
4. (可选)在[https://chatv2.septapus.com/](https://chatv2.septapus.com/)生成样式,复制CSS
|
||||||
5. 在OBS中添加浏览器源,输入URL和自定义CSS
|
5. 在OBS中添加浏览器源,输入URL和自定义CSS
|
||||||
|
20
chat.py
20
chat.py
@ -22,15 +22,15 @@ class Command(enum.IntEnum):
|
|||||||
ADD_VIP = 3
|
ADD_VIP = 3
|
||||||
|
|
||||||
|
|
||||||
http_session = aiohttp.ClientSession()
|
_http_session = aiohttp.ClientSession()
|
||||||
_avatar_url_cache: Dict[int, str] = {}
|
_avatar_url_cache: Dict[int, str] = {}
|
||||||
|
|
||||||
|
|
||||||
async def get_avatar_url(user_id):
|
async def get_avatar_url(user_id):
|
||||||
if user_id in _avatar_url_cache:
|
if user_id in _avatar_url_cache:
|
||||||
return _avatar_url_cache[user_id]
|
return _avatar_url_cache[user_id]
|
||||||
async with http_session.get('https://api.bilibili.com/x/space/acc/info',
|
async with _http_session.get('https://api.bilibili.com/x/space/acc/info',
|
||||||
params={'mid': user_id}) as r:
|
params={'mid': user_id}) as r:
|
||||||
data = await r.json()
|
data = await r.json()
|
||||||
url = data['data']['face']
|
url = data['data']['face']
|
||||||
if not url.endswith('noface.gif'):
|
if not url.endswith('noface.gif'):
|
||||||
@ -48,7 +48,7 @@ class Room(blivedm.BLiveClient):
|
|||||||
_COMMAND_HANDLERS = blivedm.BLiveClient._COMMAND_HANDLERS.copy()
|
_COMMAND_HANDLERS = blivedm.BLiveClient._COMMAND_HANDLERS.copy()
|
||||||
|
|
||||||
def __init__(self, room_id):
|
def __init__(self, room_id):
|
||||||
super().__init__(room_id, session=http_session)
|
super().__init__(room_id, session=_http_session)
|
||||||
self.future = None
|
self.future = None
|
||||||
self.clients: List['ChatHandler'] = []
|
self.clients: List['ChatHandler'] = []
|
||||||
self.owner_id = None
|
self.owner_id = None
|
||||||
@ -139,8 +139,8 @@ class RoomManager:
|
|||||||
room.start()
|
room.start()
|
||||||
room.clients.append(client)
|
room.clients.append(client)
|
||||||
|
|
||||||
# 测试用
|
if client.application.settings['debug']:
|
||||||
# self.__send_test_message(room)
|
self.__send_test_message(room)
|
||||||
|
|
||||||
def del_client(self, room_id, client: 'ChatHandler'):
|
def del_client(self, room_id, client: 'ChatHandler'):
|
||||||
if room_id not in self._rooms:
|
if room_id not in self._rooms:
|
||||||
@ -231,6 +231,8 @@ class ChatHandler(tornado.websocket.WebSocketHandler):
|
|||||||
if self.room_id is not None:
|
if self.room_id is not None:
|
||||||
room_manager.del_client(self.room_id, self)
|
room_manager.del_client(self.room_id, self)
|
||||||
|
|
||||||
# 测试用
|
# 跨域测试用
|
||||||
# def check_origin(self, origin):
|
def check_origin(self, origin):
|
||||||
# return True
|
if self.application.settings['debug']:
|
||||||
|
return True
|
||||||
|
return super().check_origin(origin)
|
||||||
|
30
main.py
30
main.py
@ -1,5 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
import argparse
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
|
||||||
@ -21,21 +22,32 @@ class MainHandler(tornado.web.StaticFileHandler):
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
parser = argparse.ArgumentParser(description='用于OBS的仿YouTube风格的bilibili直播聊天层')
|
||||||
|
parser.add_argument('--host', help='服务器host,默认为127.0.0.1', default='127.0.0.1')
|
||||||
|
parser.add_argument('--port', help='服务器端口,默认为80', type=int, default=80)
|
||||||
|
parser.add_argument('--debug', help='调试模式', action='store_true')
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
format='{asctime} {levelname} [{name}]: {message}',
|
format='{asctime} {levelname} [{name}]: {message}',
|
||||||
datefmt='%Y-%m-%d %H:%M:%S',
|
datefmt='%Y-%m-%d %H:%M:%S',
|
||||||
style='{',
|
style='{',
|
||||||
level=logging.INFO
|
level=logging.INFO if not args.debug else logging.DEBUG
|
||||||
)
|
)
|
||||||
|
|
||||||
app = tornado.web.Application([
|
app = tornado.web.Application(
|
||||||
(r'/chat', chat.ChatHandler),
|
[
|
||||||
(r'/((css|img|js)/.*)', tornado.web.StaticFileHandler, {'path': WEB_ROOT}),
|
(r'/chat', chat.ChatHandler),
|
||||||
(r'/(favicon\.ico)', tornado.web.StaticFileHandler, {'path': WEB_ROOT}),
|
(r'/((css|img|js)/.*)', tornado.web.StaticFileHandler, {'path': WEB_ROOT}),
|
||||||
(r'/.*', MainHandler, {'path': WEB_ROOT})
|
(r'/(favicon\.ico)', tornado.web.StaticFileHandler, {'path': WEB_ROOT}),
|
||||||
], websocket_ping_interval=30)
|
(r'/.*', MainHandler, {'path': WEB_ROOT})
|
||||||
app.listen(80, '127.0.0.1')
|
],
|
||||||
logger.info('服务器启动:127.0.0.1:80')
|
websocket_ping_interval=30,
|
||||||
|
debug=args.debug,
|
||||||
|
autoreload=False
|
||||||
|
)
|
||||||
|
app.listen(args.port, args.host)
|
||||||
|
logger.info('服务器启动:%s:%d', args.host, args.port)
|
||||||
tornado.ioloop.IOLoop.current().start()
|
tornado.ioloop.IOLoop.current().start()
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user