This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 171
/
MultiRoom.py
61 lines (52 loc) · 2.72 KB
/
MultiRoom.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import random
import asyncio
from bilibili import bilibili
from printer import Printer
async def get_area_list():
response = await bilibili().req_area_list()
json_response = await response.json(content_type=None)
return [ area_info['id'] for area_info in json_response['data'] ]
async def area2room(area_id):
while True:
try:
url = "https://api.live.bilibili.com/room/v1/area/getRoomList?platform=web&parent_area_id=" + \
str(area_id) + "&cate_id=0&area_id=0&sort_type=online&page=1&page_size=30"
response = await bilibili().bili_section_get(url)
json_response = await response.json(content_type=None)
checklen = len(json_response['data'])
if not checklen:
Printer().printer(f"{area_id}号分区当前无开播房间,5分钟后重新获取", "Error", "red")
await asyncio.sleep(300)
continue
rand_num = random.randint(0, checklen-1)
new_area_id = json_response['data'][rand_num]['parent_id']
if not new_area_id == int(area_id):
continue
area_room = json_response['data'][rand_num]['roomid']
state = await bilibili().check_room_state(area_room)
if state == 1:
new_area = str(new_area_id) + json_response['data'][rand_num]['parent_name']
return [area_room, new_area]
else:
Printer().printer("检测到获取房间未开播,1秒后尝试重新获取", "Error", "red")
await asyncio.sleep(1)
except Exception as e:
Printer().printer(f"获取房间列表失败,5s后进行下次尝试 {repr(e)}", "Error", "red")
await asyncio.sleep(5)
async def check_state(area, roomid=None):
if roomid is not None:
response = await bilibili().check_room_info(roomid)
json_response = await response.json(content_type=None)
live_status = json_response['data']['live_status']
curr_area_name = json_response['data']['parent_area_name']
if live_status == 1 and curr_area_name in area:
Printer().printer(f'[{area}分区] 房间 {roomid} 直播状态正常', "Info", "green")
return [roomid, area]
elif live_status != 1:
Printer().printer(f"[{area}分区] 房间 {roomid} 已未直播!将切换监听房间", "Info", "green")
else:
# print(type(live_status), live_status, curr_area_name)
Printer().printer(f"[{area}分区] 房间 {roomid} 已切换分区[{curr_area_name}]!将切换监听房间", "Info", "green")
return await area2room(area[0])
async def get_all(area_list):
return [await area2room(i) for i in area_list]