-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhbotcommand.py
105 lines (84 loc) · 3.91 KB
/
hbotcommand.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# █▀▀ ▄▀█ █▀▄▀█ █▀█ █▀▄ █▀
# █▀░ █▀█ █░▀░█ █▄█ █▄▀ ▄█
# https://t.me/famods
# 🔒 Licensed under the GNU AGPLv3
# 🌐 https://www.gnu.org/licenses/agpl-3.0.html
# ---------------------------------------------------------------------------------
# Name: HbotCommand
# Description: Дополнительная команда для твоего inline бота
# meta developer: @FAmods
# meta banner: https://github.com/FajoX1/FAmods/blob/main/assets/banners/hbotcommand.png?raw=true
# ---------------------------------------------------------------------------------
import re
import asyncio
import logging
from aiogram import types
from .. import loader, utils
from ..inline.types import BotInlineMessage
logger = logging.getLogger(__name__)
@loader.tds
class HbotCommand(loader.Module):
"""Дополнительная команда для твоего inline бота"""
strings = {
"name": "HbotCommand",
"loading_cfg": "<b><emoji document_id=5334904192622403796>🔄</emoji> Открываю настройку...</b>",
}
def __init__(self):
self.config = loader.ModuleConfig(
loader.ConfigValue(
"command_text",
"<b>Этот текст можно изменить в .cfg HbotCommand</b>",
lambda: "Текст сообщения",
),
loader.ConfigValue(
"command_image",
"https://2.bp.blogspot.com/-wkYFtsM9jf8/XD9CK8-u-rI/AAAAAAAAArI/OWAfpxubCXA4H7sG72YPDEqR8I_yR7AeACKgBGAs/w4096-h2304-c/shooting-star-sunset-anime-horizon-30-4k.jpg",
lambda: "Картинка сообщения",
),
loader.ConfigValue(
"command_button",
"""FAmods, https://t.me/famods""",
lambda: "Кнопки сообщения",
),
loader.ConfigValue(
"command_name",
"/famods",
lambda: "Команда для кастомного сообщения",
),
loader.ConfigValue(
"command_work",
True,
lambda: "Кастомное сообщение",
validator=loader.validators.Boolean()
),
)
async def client_ready(self, client, db):
self.db = db
self._client = client
@loader.command()
async def busername(self, message):
"""Посмотреть юзернейм бота"""
await utils.answer(message, f"<b><emoji document_id=5785175271011259591>🌀</emoji> Username бота: @{self.inline.bot_username}</b>")
@loader.command()
async def bcsettings(self, message):
"""Настройка команды бота"""
msg = await utils.answer(message, self.strings['loading_cfg'])
await self.invoke("config", "HbotCommand", message.peer_id)
await msg.delete()
async def aiogram_watcher(self, message: BotInlineMessage):
if self.config['command_work'] and message.text == self.config['command_name']:
markup = None
if self.config['command_button']:
markup = types.InlineKeyboardMarkup()
pattern = r'(\w+),\s(https?://\S+)'
matches = re.findall(pattern, self.config['command_button'])
if matches:
title, url = matches[0]
button = types.InlineKeyboardButton(text=title, url=url)
markup.add(button)
if self.config['command_image']:
return await message.answer_photo(photo=self.config['command_image'], caption=self.config['command_text'], reply_markup=markup)
await message.answer(
self.config['command_text'],
reply_markup=markup
)