mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-22 14:15:57 +00:00
parent
fb23fbd766
commit
4fc97dba46
17
keyword.py
17
keyword.py
@ -189,6 +189,7 @@ async def send_reply(chat_id, trigger, mode, reply_msg, context):
|
|||||||
replace_data["chat_name"] = f"{chat.first_name} {last_name}"
|
replace_data["chat_name"] = f"{chat.first_name} {last_name}"
|
||||||
update_last_time = False
|
update_last_time = False
|
||||||
could_send_msg = valid_time(chat_id)
|
could_send_msg = valid_time(chat_id)
|
||||||
|
message_list = []
|
||||||
for re_type, re_msg in reply_msg:
|
for re_type, re_msg in reply_msg:
|
||||||
try:
|
try:
|
||||||
catch_pattern = r"\$\{func_(?P<str>((?!\}).)+)\}"
|
catch_pattern = r"\$\{func_(?P<str>((?!\}).)+)\}"
|
||||||
@ -239,8 +240,8 @@ async def send_reply(chat_id, trigger, mode, reply_msg, context):
|
|||||||
reply_to = None
|
reply_to = None
|
||||||
if "reply" in type_parse:
|
if "reply" in type_parse:
|
||||||
reply_to = context.id
|
reply_to = context.id
|
||||||
await bot.send_file(chat_id, filename,
|
message_list.append(await bot.send_file(chat_id, filename,
|
||||||
reply_to=reply_to, force_document=("file" in type_parse))
|
reply_to=reply_to, force_document=("file" in type_parse)))
|
||||||
if not is_opened:
|
if not is_opened:
|
||||||
remove(filename)
|
remove(filename)
|
||||||
elif ("tgfile" in type_parse or "tgphoto" in type_parse) and len(re_msg.split()) >= 2:
|
elif ("tgfile" in type_parse or "tgphoto" in type_parse) and len(re_msg.split()) >= 2:
|
||||||
@ -271,23 +272,27 @@ async def send_reply(chat_id, trigger, mode, reply_msg, context):
|
|||||||
reply_to = None
|
reply_to = None
|
||||||
if "reply" in type_parse:
|
if "reply" in type_parse:
|
||||||
reply_to = context.id
|
reply_to = context.id
|
||||||
await bot.send_file(chat_id, file_name, reply_to=reply_to,
|
message_list.append(await bot.send_file(chat_id, file_name, reply_to=reply_to,
|
||||||
force_document=("tgfile" in type_parse))
|
force_document=("tgfile" in type_parse)))
|
||||||
remove(file_name)
|
remove(file_name)
|
||||||
elif "plain" in type_parse:
|
elif "plain" in type_parse:
|
||||||
if could_send_msg:
|
if could_send_msg:
|
||||||
update_last_time = True
|
update_last_time = True
|
||||||
await bot.send_message(chat_id, re_msg, reply_to=None)
|
message_list.append(await bot.send_message(chat_id, re_msg,
|
||||||
|
link_preview=("nopreview" not in type_parse)))
|
||||||
elif "reply" in type_parse and chat_id == real_chat_id:
|
elif "reply" in type_parse and chat_id == real_chat_id:
|
||||||
if could_send_msg:
|
if could_send_msg:
|
||||||
update_last_time = True
|
update_last_time = True
|
||||||
await bot.send_message(chat_id, re_msg, reply_to=context.id)
|
message_list.append(await bot.send_message(chat_id, re_msg, reply_to=context.id,
|
||||||
|
link_preview=("nopreview" not in type_parse)))
|
||||||
elif "op" in type_parse:
|
elif "op" in type_parse:
|
||||||
if re_msg == "delete":
|
if re_msg == "delete":
|
||||||
await context.delete()
|
await context.delete()
|
||||||
elif re_msg.split()[0] == "sleep" and len(re_msg.split()) == 2:
|
elif re_msg.split()[0] == "sleep" and len(re_msg.split()) == 2:
|
||||||
sleep_time = re_msg.split()[1]
|
sleep_time = re_msg.split()[1]
|
||||||
await asyncio.sleep(float(sleep_time))
|
await asyncio.sleep(float(sleep_time))
|
||||||
|
elif re_msg.split()[0] == "delself" and len(re_msg.split()) == 2:
|
||||||
|
await message_list[int(re_msg.split()[1])].delete()
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
chat_id = real_chat_id
|
chat_id = real_chat_id
|
||||||
|
@ -362,10 +362,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "keyword",
|
"name": "keyword",
|
||||||
"version": "2.51",
|
"version": "2.52",
|
||||||
"section": "chat",
|
"section": "chat",
|
||||||
"maintainer": "c3b2a, xtaodada",
|
"maintainer": "c3b2a, xtaodada",
|
||||||
"size": "32.9 kb",
|
"size": "33.4 kb",
|
||||||
"supported": true,
|
"supported": true,
|
||||||
"des-short": "群组关键词自动回复插件",
|
"des-short": "群组关键词自动回复插件",
|
||||||
"des": "命令: keyword, replyset, funcset。"
|
"des": "命令: keyword, replyset, funcset。"
|
||||||
|
Loading…
Reference in New Issue
Block a user