Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/server/server.py
2021-02-19 20:20:00 +08:00

154 lines
6.4 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import json
import re
import traceback
import aiohttp
async def server(address, raw=False, showplayer=False):
matchObj = re.match(r'(.*):(.*)', address, re.M | re.I)
servers = []
if matchObj:
serip = matchObj.group(1)
port1 = matchObj.group(2)
else:
serip = address
port1 = '25565'
matchserip = re.match(r'(.*?)\.(.*?)\.(.*?)\.(.*?)', serip)
if matchserip:
print(matchserip.group(1), matchserip.group(2),
matchserip.group(3), matchserip.group(4))
try:
if matchserip.group(1) == '192':
if matchserip.group(2) == '168':
return '¿'
if matchserip.group(1) == '172':
if 16 <= int(matchserip.group(2)) <= 31:
return '¿'
if matchserip.group(1) == '10':
if 0 <= int(matchserip.group(2)) <= 255:
return '¿'
if matchserip.group(1) == '0':
if matchserip.group(2) == '0':
if matchserip.group(3) == '0':
return '¿'
except:
traceback.print_exc()
try:
url = 'http://motd.wd-api.com/java?ip=' + serip + '&port=' + port1
async with aiohttp.ClientSession() as session:
async with session.get(url, timeout=aiohttp.ClientTimeout(total=20)) as req:
if req.status != 200:
print(await req.text())
print(f"请求时发生错误:{req.status}")
else:
motd = await req.text()
file = json.loads(motd)
try:
if file['code'] == 200:
servers.append('[JE]')
jejson = file['data']
if 'description' in jejson:
description = jejson['description']
if 'text' in description:
servers.append(str(description['text']))
elif 'extra' in description:
extra = description['extra']
text = []
qwq = ''
for item in extra[:]:
text.append(str(item['text']))
servers.append(qwq.join(text))
else:
servers.append(str(description))
if 'players' in jejson:
onlinesplayer = f"在线玩家:{str(jejson['players']['online'])} / {str(jejson['players']['max'])}"
servers.append(onlinesplayer)
if showplayer:
playerlist = []
for x in jejson['players']['sample']:
playerlist.append(x['name'])
servers.append('当前在线玩家:\n' + '\n'.join(playerlist))
if 'version' in jejson:
versions = "游戏版本:" + file['data']['version']['name']
servers.append(versions)
servers.append(serip + ':' + port1)
else:
servers.append('获取JE服务器信息失败。')
except Exception:
traceback.print_exc()
servers.append("[JE]\n发生错误调用API时发生错误。")
except Exception:
servers.append('获取JE服务器信息失败。')
traceback.print_exc()
awa = '\n'
servers.append("[30秒后撤回本消息]")
print(servers)
if raw:
return awa.join(servers)
return re.sub(r'§\w', "", awa.join(servers))
async def server_be(address, raw=False):
matchObj = re.match(r'(.*):(.*)', address, re.M | re.I)
servers = []
if matchObj:
serip = matchObj.group(1)
port2 = matchObj.group(2)
else:
serip = address
port2 = '19132'
matchserip = re.match(r'(.*?)\.(.*?)\.(.*?)\.(.*?)', serip)
if matchserip:
print(matchserip.group(1), matchserip.group(2),
matchserip.group(3), matchserip.group(4))
try:
if matchserip.group(1) == '192':
if matchserip.group(2) == '168':
return '¿'
if matchserip.group(1) == '172':
if 16 <= int(matchserip.group(2)) <= 31:
return '¿'
if matchserip.group(1) == '10':
if 0 <= int(matchserip.group(2)) <= 255:
return '¿'
if matchserip.group(1) == '0':
if matchserip.group(2) == '0':
if matchserip.group(3) == '0':
return '¿'
except:
traceback.print_exc()
try:
beurl = 'http://motd.wd-api.com/bedrock?ip=' + serip + '&port=' + port2
print(beurl)
async with aiohttp.ClientSession() as session2:
async with session2.get(beurl, timeout=aiohttp.ClientTimeout(total=20)) as req:
if req.status != 200:
print(await req.text())
print(f"请求时发生错误:{req.status}")
else:
bemotd = await req.text()
bejson = json.loads(bemotd)
edition, motd_1, protocol, version_name, player_count, max_players, unique_id, motd_2, \
game_mode, game_mode_num, port_v4, port_v6, nothing_here = bejson['motd'].split(';')
bemsg = '[BE]\n' + \
motd_1 + ' - ' + motd_2 + \
'\n在线玩家:' + player_count + '/' + max_players + \
'\n游戏版本:' + edition + version_name + \
'\n游戏模式:' + game_mode
servers.append(bemsg)
except Exception:
servers.append('获取BE服务器信息失败。')
traceback.print_exc()
awa = '\n'
servers.append("[30秒后撤回本消息]")
print(servers)
if raw:
return awa.join(servers)
return re.sub(r'§\w', "", awa.join(servers))