File size: 14,337 Bytes
21bc372 |
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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
import asyncio
import contextlib
import math
import os
import shlex
import shutil
import textwrap
import time
from io import BytesIO
from typing import Tuple
import cv2
import requests
from bs4 import BeautifulSoup as bs
from git import Repo
from git.exc import GitCommandError, InvalidGitRepositoryError, NoSuchPathError
from PIL import Image, ImageDraw, ImageFont
from pymediainfo import MediaInfo
from pyrogram import *
from pyrogram.enums import *
from pyrogram.errors import *
from pyrogram.raw.functions.messages import *
from pyrogram.raw.types import *
from pyrogram.types import *
from pyrogram.types import Message
from akn.utils.formatter import humanbytes, readable_time
DEVS = [1191668125]
def global_no_spam_title(message: Message):
chat = message.chat
if chat is not None and hasattr(chat, "title") and chat.title is not None:
if (
"#nodevs" in chat.title.lower()
and message.from_user.status
not in [enums.ChatMemberStatus.ADMINISTRATOR, enums.ChatMemberStatus.OWNER]
and message.from_user.id not in DEVS
):
return True
async def add_text_img(image_path, text):
font_size = 12
stroke_width = 1
if ";" in text:
upper_text, lower_text = text.split(";")
else:
upper_text = text
lower_text = ""
img = Image.open(image_path).convert("RGBA")
img_info = img.info
image_width, image_height = img.size
font = ImageFont.truetype(
font="resources/fonts/default.ttf",
size=int(image_height * font_size) // 100,
)
draw = ImageDraw.Draw(img)
char_width, char_height = font.getsize("A")
chars_per_line = image_width // char_width
top_lines = textwrap.wrap(upper_text, width=chars_per_line)
bottom_lines = textwrap.wrap(lower_text, width=chars_per_line)
if top_lines:
y = 10
for line in top_lines:
line_width, line_height = font.getsize(line)
x = (image_width - line_width) / 2
draw.text(
(x, y),
line,
fill="white",
font=font,
stroke_width=stroke_width,
stroke_fill="black",
)
y += line_height
if bottom_lines:
y = image_height - char_height * len(bottom_lines) - 15
for line in bottom_lines:
line_width, line_height = font.getsize(line)
x = (image_width - line_width) / 2
draw.text(
(x, y),
line,
fill="white",
font=font,
stroke_width=stroke_width,
stroke_fill="black",
)
y += line_height
final_image = os.path.join("memify.webp")
img.save(final_image, **img_info)
return final_image
# https://github.com/TeamUltroid/pyUltroid/blob/31c271cf4d35ab700e5880e952e54c82046812c2/pyUltroid/functions/helper.py#L154
async def bash(cmd):
process = await asyncio.create_subprocess_shell(
cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
stdout, stderr = await process.communicate()
err = stderr.decode().strip()
out = stdout.decode().strip()
return out, err
async def resize_media(media: str, video: bool, fast_forward: bool) -> str:
if video:
info_ = Media_Info.data(media)
width = info_["pixel_sizes"][0]
height = info_["pixel_sizes"][1]
sec = info_["duration_in_ms"]
s = round(float(sec)) / 1000
if height == width:
height, width = 512, 512
elif height > width:
height, width = 512, -1
elif width > height:
height, width = -1, 512
resized_video = f"{media}.webm"
if fast_forward:
if s > 3:
fract_ = 3 / s
ff_f = round(fract_, 2)
set_pts_ = ff_f - 0.01 if ff_f > fract_ else ff_f
cmd_f = f"-filter:v 'setpts={set_pts_}*PTS',scale={width}:{height}"
else:
cmd_f = f"-filter:v scale={width}:{height}"
else:
cmd_f = f"-filter:v scale={width}:{height}"
fps_ = float(info_["frame_rate"])
fps_cmd = "-r 30 " if fps_ > 30 else ""
cmd = f"ffmpeg -i {media} {cmd_f} -ss 00:00:00 -to 00:00:03 -an -c:v libvpx-vp9 {fps_cmd}-fs 256K {resized_video}"
_, error, __, ___ = await run_cmd(cmd)
os.remove(media)
return resized_video
image = Image.open(media)
maxsize = 512
scale = maxsize / max(image.width, image.height)
new_size = (int(image.width * scale), int(image.height * scale))
image = image.resize(new_size, Image.LANCZOS)
resized_photo = "sticker.png"
image.save(resized_photo)
os.remove(media)
return resized_photo
def get_text(message: Message) -> [None, str]:
"""Extract Text From Commands"""
text_to_return = message.text
if message.text is None:
return None
if " " in text_to_return:
try:
return message.text.split(None, 1)[1]
except IndexError:
return None
else:
return None
def get_arg(message: Message):
msg = message.text
msg = msg.replace(" ", "", 1) if msg[1] == " " else msg
split = msg[1:].replace("\n", " \n").split(" ")
if " ".join(split[1:]).strip() == "":
return ""
return " ".join(split[1:])
def get_args(message: Message):
try:
message = message.text
except AttributeError:
pass
if not message:
return False
message = message.split(maxsplit=1)
if len(message) <= 1:
return []
message = message[1]
try:
split = shlex.split(message)
except ValueError:
return message
return list(filter(lambda x: len(x) > 0, split))
async def run_cmd(cmd: str) -> Tuple[str, str, int, int]:
"""Run Commands"""
args = shlex.split(cmd)
process = await asyncio.create_subprocess_exec(
*args, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
)
stdout, stderr = await process.communicate()
return (
stdout.decode("utf-8", "replace").strip(),
stderr.decode("utf-8", "replace").strip(),
process.returncode,
process.pid,
)
async def convert_to_image(message, client) -> [None, str]:
"""Convert Most Media Formats To Raw Image"""
if not message:
return None
if not message.reply_to_message:
return None
final_path = None
if not (
message.reply_to_message.video
or message.reply_to_message.photo
or message.reply_to_message.sticker
or message.reply_to_message.media
or message.reply_to_message.animation
or message.reply_to_message.audio
):
return None
if message.reply_to_message.photo:
final_path = await message.reply_to_message.download()
elif message.reply_to_message.sticker:
if message.reply_to_message.sticker.mime_type == "image/webp":
final_path = "webp_to_png_s_proton.png"
path_s = await message.reply_to_message.download()
im = Image.open(path_s)
im.save(final_path, "PNG")
else:
path_s = await client.download_media(message.reply_to_message)
final_path = "lottie_proton.png"
cmd = (
f"lottie_convert.py --frame 0 -if lottie -of png {path_s} {final_path}"
)
await run_cmd(cmd)
elif message.reply_to_message.audio:
thumb = message.reply_to_message.audio.thumbs[0].file_id
final_path = await client.download_media(thumb)
elif message.reply_to_message.video or message.reply_to_message.animation:
final_path = "fetched_thumb.png"
vid_path = await client.download_media(message.reply_to_message)
await run_cmd(f"ffmpeg -i {vid_path} -filter:v scale=500:500 -an {final_path}")
return final_path
async def get_ub_chats(
client: Client,
chat_types: list = [
enums.ChatType.GROUP,
enums.ChatType.SUPERGROUP,
enums.ChatType.CHANNEL,
],
is_id_only=True,
):
ub_chats = []
async for dialog in client.get_dialogs():
if dialog.chat.type in chat_types:
if is_id_only:
ub_chats.append(dialog.chat.id)
else:
ub_chats.append(dialog.chat)
else:
continue
return ub_chats
def ReplyCheck(message: Message):
reply_id = None
if message.reply_to_message:
reply_id = message.reply_to_message.id
elif not message.from_user.is_self:
reply_id = message.id
return reply_id
def SpeedConvert(size):
power = 2**10
zero = 0
units = {0: "", 1: "Kbit/s", 2: "Mbit/s", 3: "Gbit/s", 4: "Tbit/s"}
while size > power:
size /= power
zero += 1
return f"{round(size, 2)} {units[zero]}"
def GetFromUserID(message: Message):
return message.from_user.id
def GetChatID(message: Message):
return message.chat.id
def GetUserMentionable(user: User):
if user.username:
username = "@{}".format(user.username)
else:
if user.last_name:
name_string = "{} {}".format(user.first_name, user.last_name)
else:
name_string = "{}".format(user.first_name)
username = "<a href='tg://user?id={}'>{}</a>".format(user.id, name_string)
return username
def resize_image(image):
im = Image.open(image)
maxsize = (512, 512)
if (im.width and im.height) < 512:
size1 = im.width
size2 = im.height
if im.width > im.height:
scale = 512 / size1
size1new = 512
size2new = size2 * scale
else:
scale = 512 / size2
size1new = size1 * scale
size2new = 512
size1new = math.floor(size1new)
size2new = math.floor(size2new)
sizenew = (size1new, size2new)
im = im.resize(sizenew)
else:
im.thumbnail(maxsize)
file_name = "Sticker.png"
im.save(file_name, "PNG")
if os.path.exists(image):
os.remove(image)
return file_name
class Media_Info:
def data(media: str) -> dict:
"Get downloaded media's information"
found = False
media_info = MediaInfo.parse(media)
for track in media_info.tracks:
if track.track_type == "Video":
found = True
type_ = track.track_type
format_ = track.format
duration_1 = track.duration
other_duration_ = track.other_duration
duration_2 = (
f"{other_duration_[0]} - ({other_duration_[3]})"
if other_duration_
else None
)
pixel_ratio_ = [track.width, track.height]
aspect_ratio_1 = track.display_aspect_ratio
other_aspect_ratio_ = track.other_display_aspect_ratio
aspect_ratio_2 = other_aspect_ratio_[0] if other_aspect_ratio_ else None
fps_ = track.frame_rate
fc_ = track.frame_count
media_size_1 = track.stream_size
other_media_size_ = track.other_stream_size
media_size_2 = (
[
other_media_size_[1],
other_media_size_[2],
other_media_size_[3],
other_media_size_[4],
]
if other_media_size_
else None
)
dict_ = (
{
"media_type": type_,
"format": format_,
"duration_in_ms": duration_1,
"duration": duration_2,
"pixel_sizes": pixel_ratio_,
"aspect_ratio_in_fraction": aspect_ratio_1,
"aspect_ratio": aspect_ratio_2,
"frame_rate": fps_,
"frame_count": fc_,
"file_size_in_bytes": media_size_1,
"file_size": media_size_2,
}
if found
else None
)
return dict_
async def get_files_from_directory(directory: str):
all_files = []
for path, _, files in os.walk(directory):
for file in files:
all_files.append(os.path.join(path, file))
return all_files
async def runcmd(cmd: str) -> Tuple[str, str, int, int]:
args = shlex.split(cmd)
process = await asyncio.create_subprocess_exec(
*args, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
)
stdout, stderr = await process.communicate()
return (
stdout.decode("utf-8", "replace").strip(),
stderr.decode("utf-8", "replace").strip(),
process.returncode,
process.pid,
)
async def update_dotenv(key: str, value: str) -> None:
with open(".env", "r") as file:
data = file.readlines()
for index, line in enumerate(data):
if line.startswith(f"{key}="):
data[index] = f"{key}={value}\n"
break
with open(".env", "w") as file:
file.writelines(data)
async def gen_changelogs(repo: Repo, branch: str) -> str:
changelogs = ""
commits = list(repo.iter_commits(branch))[:5]
for index, commit in enumerate(commits):
changelogs += f"**{index + 1}.** `{commit.summary}`\n"
return changelogs
async def initialize_git(git_repo: str):
force = False
try:
repo = Repo()
except NoSuchPathError as pathErr:
repo.__del__()
return False, pathErr, force
except GitCommandError as gitErr:
repo.__del__()
return False, gitErr, force
except InvalidGitRepositoryError:
repo = Repo.init()
origin = repo.create_remote("upstream", f"https://github.com/{git_repo}")
origin.fetch()
repo.create_head("master", origin.refs.master)
repo.heads.master.set_tracking_branch(origin.refs.master)
repo.heads.master.checkout(True)
force = True
with contextlib.suppress(BaseException):
repo.create_remote("upstream", f"https://github.com/{git_repo}")
return True, repo, force
|