misskey2telegram/modules/renote.py

24 lines
859 B
Python
Raw Normal View History

2022-12-24 13:06:37 +00:00
from mipac.errors import NoSuchNoteError
2022-12-24 08:31:16 +00:00
from pyrogram import Client, filters
from pyrogram.types import CallbackQuery
from misskey_init import misskey_bot
# renote:note_id
@Client.on_callback_query(filters.regex(r"^renote:(\w+)$"))
async def renote_callback(_: Client, callback_query: CallbackQuery):
note_id = callback_query.matches[0].group(1)
try:
await misskey_bot.core.api.note.action.create_renote(
note_id=note_id,
)
2022-12-24 13:06:37 +00:00
except NoSuchNoteError:
await callback_query.answer("该嘟文不存在", show_alert=True)
2022-12-24 08:31:16 +00:00
except Exception as e:
if callback_query.message:
await callback_query.message.reply(f"转发失败:{e}", quote=True)
await callback_query.answer("转发失败", show_alert=True)
else:
await callback_query.answer("转发成功", show_alert=True)