TelegramPoster/plugins/commands/general.py

48 lines
1.3 KiB
Python
Raw Normal View History

from os import makedirs
from pathlib import Path
2023-03-20 14:55:42 +02:00
from time import time
2023-02-14 12:38:54 +02:00
from libbot import json_write
2023-01-10 13:52:44 +02:00
from pyrogram import filters
from pyrogram.client import Client
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
2023-02-14 12:38:54 +02:00
from classes.pyroclient import PyroClient
from modules.utils import USERS_WITH_CONTEXT
2023-01-10 13:52:44 +02:00
2023-02-14 12:38:54 +02:00
@Client.on_message(
~filters.scheduled & filters.command(["shutdown"], prefixes=["", "/"])
)
async def cmd_kill(app: PyroClient, msg: Message):
if msg.from_user.id not in app.admins:
return
2023-06-28 11:37:18 +03:00
user = await app.find_user(msg.from_user)
if len(USERS_WITH_CONTEXT) > 0:
await msg.reply_text(
2023-06-28 11:37:18 +03:00
app._("shutdown_confirm", "message", locale=user.locale).format(
len(USERS_WITH_CONTEXT)
),
reply_markup=InlineKeyboardMarkup(
[
2023-03-20 14:55:42 +02:00
[
InlineKeyboardButton(
2023-06-28 11:37:18 +03:00
app._("shutdown", "button", locale=user.locale),
callback_data="shutdown",
)
2023-03-20 14:55:42 +02:00
]
]
2023-03-20 14:55:42 +02:00
),
)
return
makedirs(app.config["locations"]["cache"], exist_ok=True)
await json_write(
{"timestamp": time()},
Path(f"{app.config['locations']['cache']}/shutdown_time"),
)
exit()