mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2026-01-02 18:44:51 +00:00
- AutoFix Code Using DeepSource - Fix os not defined when got error - Fix Set Chat Photo (Only support photo) - Fix Admins Permission Error - Fix KeyError in Scraper - Fix Help Module in Eval - Fix Media Caption Too Long in IMDB - Remove heroku support - Some minor fix..
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
import asyncio
|
|
from logging import getLogger
|
|
|
|
from pyrogram.errors import (
|
|
ChatAdminRequired,
|
|
ChatWriteForbidden,
|
|
FloodWait,
|
|
MessageDeleteForbidden,
|
|
MessageEmpty,
|
|
MessageIdInvalid,
|
|
MessageNotModified,
|
|
)
|
|
|
|
LOGGER = getLogger(__name__)
|
|
|
|
# handler for TG function, so need write exception in every code
|
|
|
|
|
|
# Send MSG Pyro
|
|
async def kirimPesan(msg, text, **kwargs):
|
|
try:
|
|
return await msg.reply(text, **kwargs)
|
|
except FloodWait as e:
|
|
LOGGER.warning(str(e))
|
|
await asyncio.sleep(e.value)
|
|
return await kirimPesan(msg, text, **kwargs)
|
|
except (ChatWriteForbidden, ChatAdminRequired):
|
|
LOGGER.info(f"Leaving from {msg.chat.title} [{msg.chat.id}] because doesn't have admin permission.")
|
|
return await msg.chat.leave()
|
|
except Exception as e:
|
|
LOGGER.error(str(e))
|
|
return
|
|
|
|
|
|
# Edit MSG Pyro
|
|
async def editPesan(msg, text, **kwargs):
|
|
try:
|
|
return await msg.edit(text, **kwargs)
|
|
except FloodWait as e:
|
|
LOGGER.warning(str(e))
|
|
await asyncio.sleep(e.value)
|
|
return await editPesan(msg, text, **kwargs)
|
|
except (MessageNotModified, MessageIdInvalid, MessageEmpty):
|
|
return
|
|
except (ChatWriteForbidden, ChatAdminRequired):
|
|
LOGGER.info(f"Leaving from {msg.chat.title} [{msg.chat.id}] because doesn't have admin permission.")
|
|
return await msg.chat.leave()
|
|
except Exception as e:
|
|
LOGGER.error(str(e))
|
|
return
|
|
|
|
|
|
async def hapusPesan(msg):
|
|
try:
|
|
return await msg.delete()
|
|
except (MessageDeleteForbidden, ChatAdminRequired):
|
|
return
|
|
except FloodWait as e:
|
|
LOGGER.warning(str(e))
|
|
await asyncio.sleep(e.value)
|
|
return await hapusPesan(msg)
|
|
except Exception as e:
|
|
LOGGER.error(str(e))
|