mirror of
https://github.com/TeamPGM/PagerMaid_Plugins_Pyro.git
synced 2024-11-16 08:59:00 +00:00
1360fe05e2
Co-authored-by: Sourcery AI <>
27 lines
966 B
Python
27 lines
966 B
Python
from pyrogram import Client
|
|
from pagermaid.listener import listener
|
|
from pagermaid.utils import Message, client
|
|
|
|
|
|
@listener(command="whois",
|
|
description="查看域名是否已被注册、注册日期、过期日期、域名状态、DNS解析服务器等。")
|
|
async def whois(_: Client, context: Message):
|
|
try:
|
|
message = context.arguments
|
|
except ValueError:
|
|
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
|
return
|
|
req = await client.get(
|
|
f"https://namebeta.com/api/search/check?query={message}"
|
|
)
|
|
|
|
if req.status_code == 200:
|
|
try:
|
|
data = req.json()["whois"]["whois"].split("For more information")[0].rstrip()
|
|
except:
|
|
await context.edit("出错了呜呜呜 ~ 可能是域名不正确。")
|
|
return
|
|
await context.edit(f"<code>{data}</code>")
|
|
else:
|
|
await context.edit("出错了呜呜呜 ~ 无法访问到 API 服务器 。")
|