File size: 7,541 Bytes
056f521 |
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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# <============================================== IMPORTS =========================================================>
from math import ceil
from typing import Dict, List
from uuid import uuid4
import cv2
import ffmpeg
from telegram import (
Bot,
InlineKeyboardButton,
InlineKeyboardMarkup,
InlineQueryResultArticle,
InputTextMessageContent,
)
from telegram.constants import MessageLimit, ParseMode
from telegram.error import TelegramError
from Mikobot import NO_LOAD
# <=======================================================================================================>
# <================================================ FUNCTION =======================================================>
class EqInlineKeyboardButton(InlineKeyboardButton):
def __eq__(self, other):
return self.text == other.text
def __lt__(self, other):
return self.text < other.text
def __gt__(self, other):
return self.text > other.text
def split_message(msg: str) -> List[str]:
if len(msg) < MessageLimit.MAX_TEXT_LENGTH:
return [msg]
lines = msg.splitlines(True)
small_msg = ""
result = []
for line in lines:
if len(small_msg) + len(line) < MessageLimit.MAX_TEXT_LENGTH:
small_msg += line
else:
result.append(small_msg)
small_msg = line
else:
# Else statement at the end of the for loop, so append the leftover string.
result.append(small_msg)
return result
def paginate_modules(page_n: int, module_dict: Dict, prefix, chat=None) -> List:
if not chat:
modules = sorted(
[
EqInlineKeyboardButton(
x.__mod_name__,
callback_data="{}_module({})".format(
prefix, x.__mod_name__.lower()
),
)
for x in module_dict.values()
]
)
else:
modules = sorted(
[
EqInlineKeyboardButton(
x.__mod_name__,
callback_data="{}_module({},{})".format(
prefix, chat, x.__mod_name__.lower()
),
)
for x in module_dict.values()
]
)
pairs = [modules[i * 3 : (i + 1) * 3] for i in range((len(modules) + 3 - 1) // 3)]
round_num = len(modules) / 3
calc = len(modules) - round(round_num)
if calc in [1, 2]:
pairs.append((modules[-1],))
max_num_pages = ceil(len(pairs) / 6)
modulo_page = page_n % max_num_pages
# can only have a certain amount of buttons side by side
if len(pairs) > 3:
pairs = pairs[modulo_page * 6 : 6 * (modulo_page + 1)] + [
(
EqInlineKeyboardButton(
"β", callback_data="{}_prev({})".format(prefix, modulo_page)
),
EqInlineKeyboardButton(
"Β» π½πΌπΎπ Β«", callback_data="extra_command_handler"
),
EqInlineKeyboardButton(
"β·", callback_data="{}_next({})".format(prefix, modulo_page)
),
)
]
else:
pairs += [[EqInlineKeyboardButton("β¦ π½πΌπΎπ", callback_data="Miko_back")]]
return pairs
def article(
title: str = "",
description: str = "",
message_text: str = "",
thumb_url: str = None,
reply_markup: InlineKeyboardMarkup = None,
disable_web_page_preview: bool = False,
) -> InlineQueryResultArticle:
return InlineQueryResultArticle(
id=uuid4(),
title=title,
description=description,
thumb_url=thumb_url,
input_message_content=InputTextMessageContent(
message_text=message_text,
disable_web_page_preview=disable_web_page_preview,
),
reply_markup=reply_markup,
)
def send_to_list(
bot: Bot, send_to: list, message: str, markdown=False, html=False
) -> None:
if html and markdown:
raise Exception("Can only send with either markdown or HTML!")
for user_id in set(send_to):
try:
if markdown:
bot.send_message(user_id, message, parse_mode=ParseMode.MARKDOWN)
elif html:
bot.send_message(user_id, message, parse_mode=ParseMode.HTML)
else:
bot.send_message(user_id, message)
except TelegramError:
pass # ignore users who fail
def build_keyboard(buttons):
keyb = []
for btn in buttons:
if btn.same_line and keyb:
keyb[-1].append(InlineKeyboardButton(btn.name, url=btn.url))
else:
keyb.append([InlineKeyboardButton(btn.name, url=btn.url)])
return keyb
def revert_buttons(buttons):
res = ""
for btn in buttons:
if btn.same_line:
res += "\n[{}](buttonurl://{}:same)".format(btn.name, btn.url)
else:
res += "\n[{}](buttonurl://{})".format(btn.name, btn.url)
return res
def build_keyboard_parser(bot, chat_id, buttons):
keyb = []
for btn in buttons:
if btn.url == "{rules}":
btn.url = "http://t.me/{}?start={}".format(bot.username, chat_id)
if btn.same_line and keyb:
keyb[-1].append(InlineKeyboardButton(btn.name, url=btn.url))
else:
keyb.append([InlineKeyboardButton(btn.name, url=btn.url)])
return keyb
def user_bot_owner(func):
@wraps(func)
def is_user_bot_owner(bot: Bot, update: Update, *args, **kwargs):
user = update.effective_user
if user and user.id == OWNER_ID:
return func(bot, update, *args, **kwargs)
else:
pass
return is_user_bot_owner
def build_keyboard_alternate(buttons):
keyb = []
for btn in buttons:
if btn[2] and keyb:
keyb[-1].append(InlineKeyboardButton(btn[0], url=btn[1]))
else:
keyb.append([InlineKeyboardButton(btn[0], url=btn[1])])
return keyb
def is_module_loaded(name):
return name not in NO_LOAD
def convert_gif(input):
"""Function to convert mp4 to webm(vp9)"""
vid = cv2.VideoCapture(input)
height = vid.get(cv2.CAP_PROP_FRAME_HEIGHT)
width = vid.get(cv2.CAP_PROP_FRAME_WIDTH)
# check height and width to scale
if width > height:
width = 512
height = -1
elif height > width:
height = 512
width = -1
elif width == height:
width = 512
height = 512
converted_name = "kangsticker.webm"
(
ffmpeg.input(input)
.filter("fps", fps=30, round="up")
.filter("scale", width=width, height=height)
.trim(start="00:00:00", end="00:00:03", duration="3")
.output(
converted_name,
vcodec="libvpx-vp9",
**{
#'vf': 'scale=512:-1',
"crf": "30"
},
)
.overwrite_output()
.run()
)
return converted_name
def mention_username(username: str, name: str) -> str:
"""
Args:
username (:obj:`str`): The username of chat which you want to mention.
name (:obj:`str`): The name the mention is showing.
Returns:
:obj:`str`: The inline mention for the user as HTML.
"""
return f'<a href="t.me/{username}">{escape(name)}</a>'
# <================================================ END =======================================================>
|