2020-02-19 15:31:39 +00:00
|
|
|
|
""" Message related utilities. """
|
|
|
|
|
|
2020-04-01 11:04:56 +00:00
|
|
|
|
import requests
|
|
|
|
|
import json
|
2020-02-19 15:31:39 +00:00
|
|
|
|
from telethon.tl.functions.messages import DeleteChatUserRequest
|
2020-04-02 12:42:38 +00:00
|
|
|
|
from telethon.tl.functions.channels import LeaveChannelRequest, GetParticipantsRequest
|
2020-04-02 12:34:19 +00:00
|
|
|
|
from telethon.tl.types import ChannelParticipantsAdmins
|
2020-02-19 15:31:39 +00:00
|
|
|
|
from telethon.errors.rpcerrorlist import ChatIdInvalidError
|
|
|
|
|
from distutils2.util import strtobool
|
|
|
|
|
from pagermaid import bot, log, config
|
|
|
|
|
from pagermaid.listener import listener
|
|
|
|
|
|
|
|
|
|
|
2020-06-06 14:40:52 +00:00
|
|
|
|
@listener(outgoing=True, command="id",
|
|
|
|
|
description="获取一条消息的各种信息。")
|
2020-02-19 15:31:39 +00:00
|
|
|
|
async def userid(context):
|
|
|
|
|
""" Query the UserID of the sender of the message you replied to. """
|
2020-06-06 14:40:52 +00:00
|
|
|
|
try:
|
|
|
|
|
message = await context.get_reply_message()
|
|
|
|
|
except:
|
|
|
|
|
pass
|
2020-06-14 02:07:12 +00:00
|
|
|
|
text = "**以下是当前对话的信息:** \n\n**ChatID**:`" + str(context.chat_id) + "`"
|
2020-02-19 15:31:39 +00:00
|
|
|
|
if message:
|
2020-05-17 03:21:05 +00:00
|
|
|
|
user_id = message.sender.id
|
|
|
|
|
if message.sender.username:
|
|
|
|
|
target = "@" + message.sender.username
|
|
|
|
|
else:
|
|
|
|
|
try:
|
|
|
|
|
target = "**" + message.sender.first_name + "**"
|
|
|
|
|
except TypeError:
|
|
|
|
|
target = "**" + "死号" + "**"
|
2020-05-17 03:18:08 +00:00
|
|
|
|
if not message.forward:
|
2020-06-14 02:07:12 +00:00
|
|
|
|
text1 = "\n\n**以下是被回复消息的信息:** \n\n**道纹:** " + target + " \n" + "**用户ID:** `" + str(user_id) + "`"
|
2020-02-19 15:31:39 +00:00
|
|
|
|
else:
|
2020-05-17 03:18:08 +00:00
|
|
|
|
try:
|
|
|
|
|
user_f_id = message.forward.sender.id
|
|
|
|
|
if message.forward.sender.username:
|
|
|
|
|
target_f = "@" + message.forward.sender.username
|
|
|
|
|
else:
|
|
|
|
|
target_f = "*" + message.forward.sender.first_name + "*"
|
2020-06-14 02:07:12 +00:00
|
|
|
|
text1 = "\n\n**以下是被回复消息的信息:** \n\n**道纹:** " + target + " \n" + "**用户ID:** `" + str(user_id) + "` \n\n**以下是转发来源信息:** \n\n" + "**道纹:** " + target_f + " \n" + "**用户ID:** `" + str(user_f_id) + "`"
|
2020-05-17 03:18:08 +00:00
|
|
|
|
except:
|
2020-06-14 02:07:12 +00:00
|
|
|
|
text1 = "\n\n**以下是被回复消息的信息:** \n\n**道纹:** " + target + " \n" + "**用户ID:** `" + str(user_id) + "` \n\n**此消息没有包含被转发用户的信息** \n\n"
|
2020-02-19 15:31:39 +00:00
|
|
|
|
else:
|
2020-06-14 02:07:12 +00:00
|
|
|
|
text1 = " "
|
2020-06-06 14:40:52 +00:00
|
|
|
|
text = text + text1
|
|
|
|
|
await context.edit(text)
|
2020-02-19 15:31:39 +00:00
|
|
|
|
|
|
|
|
|
|
2020-03-20 12:15:45 +00:00
|
|
|
|
@listener(outgoing=True, command="uslog",
|
2020-02-19 15:31:39 +00:00
|
|
|
|
description="转发一条消息到日志。",
|
|
|
|
|
parameters="<string>")
|
2020-03-20 12:15:45 +00:00
|
|
|
|
async def uslog(context):
|
2020-02-19 15:31:39 +00:00
|
|
|
|
""" Forwards a message into log group """
|
|
|
|
|
if strtobool(config['log']):
|
|
|
|
|
if context.reply_to_msg_id:
|
|
|
|
|
reply_msg = await context.get_reply_message()
|
|
|
|
|
await reply_msg.forward_to(int(config['log_chatid']))
|
|
|
|
|
elif context.arguments:
|
|
|
|
|
await log(context.arguments)
|
|
|
|
|
else:
|
|
|
|
|
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
|
|
|
|
return
|
|
|
|
|
await context.edit("已记录。")
|
|
|
|
|
else:
|
|
|
|
|
await context.edit("出错了呜呜呜 ~ 日志记录已禁用。")
|
|
|
|
|
|
|
|
|
|
|
2020-03-13 08:48:50 +00:00
|
|
|
|
@listener(outgoing=True, command="log",
|
|
|
|
|
description="静默转发一条消息到日志。",
|
|
|
|
|
parameters="<string>")
|
|
|
|
|
async def log(context):
|
|
|
|
|
""" Forwards a message into log group """
|
|
|
|
|
if strtobool(config['log']):
|
|
|
|
|
if context.reply_to_msg_id:
|
|
|
|
|
reply_msg = await context.get_reply_message()
|
|
|
|
|
await reply_msg.forward_to(int(config['log_chatid']))
|
|
|
|
|
elif context.arguments:
|
|
|
|
|
await log(context.arguments)
|
|
|
|
|
else:
|
|
|
|
|
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
|
|
|
|
return
|
|
|
|
|
await context.delete()
|
|
|
|
|
else:
|
|
|
|
|
await context.edit("出错了呜呜呜 ~ 日志记录已禁用。")
|
|
|
|
|
|
|
|
|
|
|
2020-03-13 14:08:28 +00:00
|
|
|
|
@listener(outgoing=True, command="re",
|
2020-04-05 03:26:51 +00:00
|
|
|
|
description="在当前会话复读回复的消息。(需要回复一条消息)",
|
2020-04-05 10:01:41 +00:00
|
|
|
|
parameters="<次数>")
|
2020-03-20 12:15:45 +00:00
|
|
|
|
async def re(context):
|
2020-04-05 03:26:51 +00:00
|
|
|
|
""" Forwards a message into this group """
|
|
|
|
|
reply = await context.get_reply_message()
|
|
|
|
|
if reply:
|
|
|
|
|
if context.arguments == '':
|
|
|
|
|
num = 1
|
|
|
|
|
else:
|
|
|
|
|
try:
|
|
|
|
|
num = int(context.arguments)
|
|
|
|
|
if num > 100:
|
|
|
|
|
await context.edit('呜呜呜出错了...这个数字太大惹')
|
|
|
|
|
return True
|
|
|
|
|
except:
|
2020-05-23 12:40:28 +00:00
|
|
|
|
await context.edit('呜呜呜出错了...可能参数包含了数字以外的符号')
|
2020-04-05 03:26:51 +00:00
|
|
|
|
return True
|
2020-04-06 13:39:32 +00:00
|
|
|
|
await context.delete()
|
2020-04-05 03:26:51 +00:00
|
|
|
|
for nums in range(0, num):
|
|
|
|
|
await reply.forward_to(int(context.chat_id))
|
2020-03-13 14:08:28 +00:00
|
|
|
|
else:
|
2020-04-05 03:26:51 +00:00
|
|
|
|
await context.edit("出错了呜呜呜 ~ 您好像没有回复一条消息。")
|
2020-03-13 14:08:28 +00:00
|
|
|
|
|
|
|
|
|
|
2020-02-19 15:31:39 +00:00
|
|
|
|
@listener(outgoing=True, command="leave",
|
2020-05-23 12:40:28 +00:00
|
|
|
|
description="说 “再见” 然后离开会话。")
|
2020-02-19 15:31:39 +00:00
|
|
|
|
async def leave(context):
|
|
|
|
|
""" It leaves you from the group. """
|
|
|
|
|
if context.is_group:
|
|
|
|
|
await context.edit("贵群真是浪费我的时间,再见。")
|
|
|
|
|
try:
|
|
|
|
|
await bot(DeleteChatUserRequest(chat_id=context.chat_id,
|
|
|
|
|
user_id=context.sender_id
|
|
|
|
|
))
|
|
|
|
|
except ChatIdInvalidError:
|
2020-04-02 01:18:28 +00:00
|
|
|
|
await bot(LeaveChannelRequest(context.chat_id))
|
2020-02-19 15:31:39 +00:00
|
|
|
|
else:
|
2020-04-05 10:01:41 +00:00
|
|
|
|
await context.edit("出错了呜呜呜 ~ 当前聊天似乎不是群聊。")
|
2020-02-19 15:31:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@listener(outgoing=True, command="meter2feet",
|
|
|
|
|
description="将米转换为英尺。",
|
|
|
|
|
parameters="<meters>")
|
|
|
|
|
async def meter2feet(context):
|
|
|
|
|
""" Convert meter to feet. """
|
|
|
|
|
if not len(context.parameter) == 1:
|
|
|
|
|
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
|
|
|
|
return
|
|
|
|
|
meter = float(context.parameter[0])
|
|
|
|
|
feet = meter / .3048
|
|
|
|
|
await context.edit(f"将 {str(meter)} 米装换为了 {str(feet)} 英尺。")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@listener(outgoing=True, command="feet2meter",
|
|
|
|
|
description="将英尺转换为米。",
|
|
|
|
|
parameters="<feet>")
|
|
|
|
|
async def feet2meter(context):
|
|
|
|
|
""" Convert feet to meter. """
|
|
|
|
|
if not len(context.parameter) == 1:
|
|
|
|
|
await context.edit("出错了呜呜呜 ~ 无效的参数。")
|
|
|
|
|
return
|
|
|
|
|
feet = float(context.parameter[0])
|
|
|
|
|
meter = feet * .3048
|
|
|
|
|
await context.edit(f"将 {str(feet)} 英尺转换为了 {str(meter)} 米。")
|
|
|
|
|
|
|
|
|
|
|
2020-04-01 11:04:56 +00:00
|
|
|
|
@listener(outgoing=True, command="hitokoto",
|
2020-05-23 12:40:28 +00:00
|
|
|
|
description="每日一言")
|
2020-04-01 11:04:56 +00:00
|
|
|
|
async def hitokoto(context):
|
|
|
|
|
""" Get hitokoto.cn """
|
2020-05-16 15:10:12 +00:00
|
|
|
|
hitokoto_while = 1
|
|
|
|
|
try:
|
|
|
|
|
hitokoto_json = json.loads(requests.get("https://v1.hitokoto.cn/?charset=utf-8").content.decode("utf-8"))
|
|
|
|
|
except (ValueError):
|
|
|
|
|
while hitokoto_while < 10:
|
|
|
|
|
hitokoto_while += 1
|
|
|
|
|
try:
|
|
|
|
|
hitokoto_json = json.loads(requests.get("https://v1.hitokoto.cn/?charset=utf-8").content.decode("utf-8"))
|
|
|
|
|
break
|
|
|
|
|
except:
|
|
|
|
|
continue
|
2020-04-01 11:04:56 +00:00
|
|
|
|
if hitokoto_json['type'] == 'a':
|
|
|
|
|
hitokoto_type = '动画'
|
|
|
|
|
elif hitokoto_json['type'] == 'b':
|
|
|
|
|
hitokoto_type = '漫画'
|
|
|
|
|
elif hitokoto_json['type'] == 'c':
|
|
|
|
|
hitokoto_type = '游戏'
|
|
|
|
|
elif hitokoto_json['type'] == 'd':
|
|
|
|
|
hitokoto_type = '文学'
|
|
|
|
|
elif hitokoto_json['type'] == 'e':
|
|
|
|
|
hitokoto_type = '原创'
|
|
|
|
|
elif hitokoto_json['type'] == 'f':
|
|
|
|
|
hitokoto_type = '来自网络'
|
|
|
|
|
elif hitokoto_json['type'] == 'g':
|
|
|
|
|
hitokoto_type = '其他'
|
|
|
|
|
elif hitokoto_json['type'] == 'h':
|
|
|
|
|
hitokoto_type = '影视'
|
|
|
|
|
elif hitokoto_json['type'] == 'i':
|
|
|
|
|
hitokoto_type = '诗词'
|
|
|
|
|
elif hitokoto_json['type'] == 'j':
|
|
|
|
|
hitokoto_type = '网易云'
|
|
|
|
|
elif hitokoto_json['type'] == 'k':
|
|
|
|
|
hitokoto_type = '哲学'
|
|
|
|
|
elif hitokoto_json['type'] == 'l':
|
|
|
|
|
hitokoto_type = '抖机灵'
|
2020-04-05 10:01:41 +00:00
|
|
|
|
await context.edit(f"{hitokoto_json['hitokoto']} - {hitokoto_json['from']}({str(hitokoto_type)})")
|
2020-04-01 11:04:56 +00:00
|
|
|
|
|
|
|
|
|
|
2020-02-19 15:31:39 +00:00
|
|
|
|
@listener(outgoing=True, command="source",
|
|
|
|
|
description="显示原始 PagerMaid git 存储库的URL。")
|
|
|
|
|
async def source(context):
|
|
|
|
|
""" Outputs the git repository URL. """
|
|
|
|
|
await context.edit("https://git.stykers.moe/scm/~stykers/pagermaid.git")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@listener(outgoing=True, command="site",
|
|
|
|
|
description="显示原始 PagerMaid 项目主页的URL。")
|
|
|
|
|
async def site(context):
|
|
|
|
|
""" Outputs the site URL. """
|
2020-05-16 15:10:12 +00:00
|
|
|
|
await context.edit("https://katonkeyboard.moe/pagermaid.html")
|