This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Telegram/modules/handlers/sponsorship.py

16 lines
576 B
Python
Raw Normal View History

2022-12-21 13:25:47 +02:00
from app import app
from pyrogram import filters
2022-12-27 14:36:54 +02:00
from pyrogram.types import Message
from pyrogram.client import Client
2022-12-22 16:05:27 +02:00
from classes.holo_user import HoloUser
2023-01-03 21:34:13 +02:00
from modules import custom_filters
2022-12-22 16:05:27 +02:00
2023-01-04 22:55:50 +02:00
@app.on_message(custom_filters.enabled_sponsorships & custom_filters.filling_sponsorship & ~filters.scheduled & filters.private)
2022-12-27 14:36:54 +02:00
async def sponsor_proof(app: Client, msg: Message):
2022-12-22 16:05:27 +02:00
if msg.via_bot is None:
holo_user = HoloUser(msg.from_user)
2023-01-04 22:55:50 +02:00
if msg.photo is not None:
await holo_user.sponsorship_next(msg.text, msg=msg, photo=msg.photo)