File size: 11,045 Bytes
e7ef6c8 95befb7 e7ef6c8 0d0019f e7ef6c8 856f5a5 e7ef6c8 95befb7 0d0019f e7ef6c8 95befb7 e7ef6c8 95befb7 e7ef6c8 |
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 |
import logging
import os
import json
import time
import shutil
import asyncio
import re
from datetime import datetime
from config import Config
from plugins.functions.display_progress import humanbytes, progress_for_pyrogram
from plugins.functions.ran_text import random_char
from plugins.script import Translation
from plugins.utitles import Mdata01, Mdata02, Mdata03
# Set up logging configuration
logging.basicConfig(
level=logging.DEBUG, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger(__name__)
logging.getLogger("pyrogram").setLevel(logging.WARNING)
def find_first_matching_file_path(full_path_with_incomplete_name):
# Split the full path into directory and incomplete filename
directory, incomplete_name = os.path.split(full_path_with_incomplete_name)
# Create a regex pattern that matches the incomplete name followed by any characters
pattern = re.compile(f'^{re.escape(incomplete_name)}.*') # ^ asserts the start of the string
# Check if the directory exists
if not os.path.isdir(directory):
return None # Return None if the directory doesn't exist
# Iterate over all files in the specified directory
for filename in os.listdir(directory):
# Check if the filename matches the regex pattern
if pattern.match(filename):
# Return the full path of the first matching file
return os.path.join(directory, filename)
# Return None if no matching files are found
return None
async def youtube_dl_call_back(_bot, update):
# Constants
AD_STRING_TO_REPLACE = "please report this issue on https://github.com/kalanakt/All-Url-Uploader/issues"
cb_data = update.data
tg_send_type, youtube_dl_format, youtube_dl_ext, ranom = cb_data.split("|")
print(cb_data)
random1 = random_char(5)
save_ytdl_json_path = (
Config.DOWNLOAD_LOCATION + "/" + str(update.from_user.id) + f"{ranom}" + ".json"
)
try:
with open(save_ytdl_json_path, "r", encoding="utf8") as f:
response_json = json.load(f)
except FileNotFoundError as e:
await update.message.edit(f"Error: {e}")
await update.message.delete()
return False
youtube_dl_url = update.message.reply_to_message.text
custom_file_name = (
str(response_json.get("title")) + "_" + youtube_dl_format + "." + youtube_dl_ext
)
youtube_dl_username = os.environ.get("YTU", None)
youtube_dl_password = os.environ.get("YTP", None)
if "|" in youtube_dl_url:
url_parts = youtube_dl_url.split("|")
if len(url_parts) == 2:
youtube_dl_url, custom_file_name = map(str.strip, url_parts)
elif len(url_parts) == 4:
(
youtube_dl_url,
custom_file_name,
youtube_dl_username,
youtube_dl_password,
) = map(str.strip, url_parts)
else:
for entity in update.message.reply_to_message.entities:
if entity.type == "text_link":
youtube_dl_url = entity.url
elif entity.type == "url":
o = entity.offset
length = entity.length
youtube_dl_url = youtube_dl_url[o: o + length]
# Cleaning up inputs
youtube_dl_url, custom_file_name, youtube_dl_username, youtube_dl_password = (
map(
str.strip,
[
youtube_dl_url,
custom_file_name,
youtube_dl_username,
youtube_dl_password,
],
)
)
else:
for entity in update.message.reply_to_message.entities:
if entity.type == "text_link":
youtube_dl_url = entity.url
elif entity.type == "url":
o = entity.offset
length = entity.length
youtube_dl_url = youtube_dl_url[o: o + length]
await update.message.edit_caption(
caption=Translation.DOWNLOAD_START.format(custom_file_name)
)
description = Translation.CUSTOM_CAPTION_UL_FILE
if "fulltitle" in response_json:
description = response_json["fulltitle"][:1021]
tmp_directory_for_each_user = (
Config.DOWNLOAD_LOCATION + "/" + str(update.from_user.id) + f"{random1}"
)
if not os.path.isdir(tmp_directory_for_each_user):
os.makedirs(tmp_directory_for_each_user)
download_directory = f"{tmp_directory_for_each_user}/{custom_file_name}"
command_to_exec = []
if tg_send_type == "audio":
command_to_exec = [
"yt-dlp",
"-c",
"--max-filesize",
str(Config.TG_MAX_FILE_SIZE),
"--bidi-workaround",
"--extract-audio",
"--audio-format",
youtube_dl_ext,
"--audio-quality",
youtube_dl_format,
youtube_dl_url,
"-o",
download_directory,
]
else:
minus_f_format = youtube_dl_format
if "youtu" in youtube_dl_url:
minus_f_format = f"{youtube_dl_format}+bestaudio"
command_to_exec = [
"yt-dlp",
"-c",
"--max-filesize",
str(Config.TG_MAX_FILE_SIZE),
"--embed-subs",
"-f",
minus_f_format,
"--bidi-workaround",
youtube_dl_url,
"-o",
download_directory,
]
if Config.HTTP_PROXY != "":
command_to_exec.extend(["--proxy", Config.HTTP_PROXY])
if youtube_dl_username is not None:
command_to_exec.extend(["--username", youtube_dl_username])
if youtube_dl_password is not None:
command_to_exec.extend(["--password", youtube_dl_password])
command_to_exec.extend(["--no-warnings"])
logger.info(command_to_exec)
start = datetime.now()
process = await asyncio.create_subprocess_exec(
*command_to_exec,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
stdout, stderr = await process.communicate()
e_response = stderr.decode().strip()
t_response = stdout.decode().strip()
logger.info(e_response)
logger.info(t_response)
embed_pattern = re.compile(r'\[EmbedSubtitle\] Embedding subtitles in "(.*?)"')
final_file_match = embed_pattern.search(t_response) or embed_pattern.search(e_response)
if final_file_match:
final_file_path = final_file_match.group(1)
download_directory = final_file_path
logger.info("Final file with subtitles: %s", final_file_path)
download_directory = find_first_matching_file_path(download_directory)
if e_response and AD_STRING_TO_REPLACE in e_response:
error_message = e_response.replace(AD_STRING_TO_REPLACE, "")
await update.message.edit_caption(text=error_message)
return False
if t_response:
logger.info(t_response)
try:
os.remove(save_ytdl_json_path)
except FileNotFoundError:
pass
end_one = datetime.now()
time_taken_for_download = (end_one - start).seconds
file_size = Config.TG_MAX_FILE_SIZE + 1
try:
file_size = os.stat(download_directory).st_size
except FileNotFoundError:
download_directory = os.path.splitext(download_directory)[0] + "." + "mkv"
file_size = os.stat(download_directory).st_size
download_location = f"{Config.DOWNLOAD_LOCATION}/{update.from_user.id}.jpg"
thumb = download_location if os.path.isfile(download_location) else None
if file_size > Config.TG_MAX_FILE_SIZE:
await update.message.edit_caption(
caption=Translation.RCHD_TG_API_LIMIT.format(
time_taken_for_download, humanbytes(file_size)
)
)
else:
await update.message.edit_caption(
caption=Translation.UPLOAD_START.format(custom_file_name)
)
start_time = time.time()
if tg_send_type == "video":
width, height, duration = await Mdata01(download_directory)
await update.message.reply_video(
video=download_directory,
caption=description,
duration=duration,
width=width,
height=height,
supports_streaming=True,
thumb=thumb,
progress=progress_for_pyrogram,
progress_args=(
Translation.UPLOAD_START,
update.message,
start_time,
),
)
elif tg_send_type == "audio":
duration = await Mdata03(download_directory)
await update.message.reply_audio(
audio=download_directory,
caption=description,
duration=duration,
thumb=thumb,
progress=progress_for_pyrogram,
progress_args=(
Translation.UPLOAD_START,
update.message,
start_time,
),
)
elif tg_send_type == "vm":
width, duration = await Mdata02(download_directory)
await update.message.reply_video_note(
video_note=download_directory,
duration=duration,
length=width,
thumb=thumb,
progress=progress_for_pyrogram,
progress_args=(
Translation.UPLOAD_START,
update.message,
start_time,
),
)
else:
await update.message.reply_video(
# await update.message.reply_document(
video=download_directory,
caption=description,
thumb=thumb,
progress=progress_for_pyrogram,
progress_args=(
Translation.UPLOAD_START,
update.message,
start_time,
),
)
end_two = datetime.now()
time_taken_for_upload = (end_two - end_one).seconds
shutil.rmtree(tmp_directory_for_each_user)
await update.message.edit_caption(
caption=Translation.AFTER_SUCCESSFUL_UPLOAD_MSG_WITH_TS.format(
time_taken_for_download, time_taken_for_upload
)
)
logger.info("Downloaded in: %s", str(time_taken_for_download))
logger.info("Uploaded in: %s", str(time_taken_for_upload))
|