Exemplo n.º 1
0
async def is_user_in_chat(chat_id: int, user_id: int):
    status = False
    async for user in telethn.iter_participants(chat_id):
        if user_id == user.id:
            status = True
            break
    return status
Exemplo n.º 2
0
async def is_user_admin(user_id: int, chat_id):
    status = False
    async for user in telethn.iter_participants(
            chat_id, filter=ChannelParticipantsAdmins):
        if user_id == user.id or user_id in IMMUNE_USERS:
            status = True
            break
    return status
Exemplo n.º 3
0
async def haruka_is_admin(chat_id: int):
    status = False
    haruka = await telethn.get_me()
    async for user in telethn.iter_participants(
            chat_id, filter=ChannelParticipantsAdmins):
        if haruka.id == user.id:
            status = True
            break
    return status
Exemplo n.º 4
0
async def user_is_ban_protected(user_id: int, message):
    status = False
    if message.is_private or user_id in (IMMUNE_USERS):
        return True

    async for user in telethn.iter_participants(
            message.chat_id, filter=ChannelParticipantsAdmins):
        if user_id == user.id:
            status = True
            break
    return status
Exemplo n.º 5
0
async def user_is_admin(user_id: int, message):
    status = False
    if message.is_private:
        return True

    async for user in telethn.iter_participants(
            message.chat_id, filter=ChannelParticipantsAdmins):
        if user_id == user.id or user_id in DRAGONS:
            status = True
            break
    return status