mirror of
https://github.com/Xtao-Labs/misskey2telegram.git
synced 2024-11-22 22:05:58 +00:00
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
from typing import Optional
|
|
|
|
from mipac.manager import MiFile
|
|
from pyrogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton
|
|
|
|
from misskey_init import misskey_bot
|
|
|
|
|
|
class ReadySend:
|
|
def __init__(
|
|
self,
|
|
content: str,
|
|
reply_id: Optional[str] = None,
|
|
files: Optional[list[str]] = None,
|
|
):
|
|
self.content = content
|
|
self.reply_id = reply_id
|
|
self.files = files
|
|
|
|
async def confirm(self, msg: Message):
|
|
msg = await msg.reply(
|
|
"确认发送?",
|
|
quote=True,
|
|
reply_markup=InlineKeyboardMarkup(
|
|
[
|
|
[
|
|
InlineKeyboardButton(text="发送", callback_data="send"),
|
|
InlineKeyboardButton(text="拒绝", callback_data="delete")
|
|
]
|
|
]
|
|
),
|
|
)
|
|
ready_send[msg.id] = self
|
|
|
|
async def send(self, msg: Message):
|
|
try:
|
|
await misskey_bot.core.api.note.action.send(
|
|
content=self.content,
|
|
reply_id=self.reply_id,
|
|
files=self.files,
|
|
)
|
|
except Exception as e:
|
|
await msg.edit(f"发送失败:{e}")
|
|
else:
|
|
await msg.edit("发送成功")
|
|
finally:
|
|
del ready_send[msg.id]
|
|
|
|
|
|
ready_send = {}
|