File size: 14,997 Bytes
db78256 |
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 |
from base64 import b64encode
from re import match as re_match
from aiofiles.os import path as aiopath
from bot.core.config_manager import Config
from .. import DOWNLOAD_DIR, LOGGER, bot_loop, task_dict_lock
from ..helper.ext_utils.bot_utils import (
COMMAND_USAGE,
arg_parser,
get_content_type,
sync_to_async,
)
from ..helper.ext_utils.exceptions import DirectDownloadLinkException
from ..helper.ext_utils.links_utils import (
is_gdrive_id,
is_gdrive_link,
is_mega_link,
is_magnet,
is_rclone_path,
is_telegram_link,
is_url,
)
from ..helper.ext_utils.task_manager import pre_task_check
from ..helper.listeners.task_listener import TaskListener
from ..helper.mirror_leech_utils.download_utils.aria2_download import (
add_aria2_download,
)
from ..helper.mirror_leech_utils.download_utils.direct_downloader import (
add_direct_download,
)
from ..helper.mirror_leech_utils.download_utils.direct_link_generator import (
direct_link_generator,
)
from ..helper.mirror_leech_utils.download_utils.gd_download import add_gd_download
from ..helper.mirror_leech_utils.download_utils.jd_download import add_jd_download
from ..helper.mirror_leech_utils.download_utils.mega_download import add_mega_download
from ..helper.mirror_leech_utils.download_utils.nzb_downloader import add_nzb
from ..helper.mirror_leech_utils.download_utils.qbit_download import add_qb_torrent
from ..helper.mirror_leech_utils.download_utils.rclone_download import (
add_rclone_download,
)
from ..helper.mirror_leech_utils.download_utils.telegram_download import (
TelegramDownloadHelper,
)
from ..helper.telegram_helper.message_utils import (
auto_delete_message,
delete_links,
get_tg_link_message,
send_message,
)
class Uphoster(TaskListener):
def __init__(
self,
client,
message,
same_dir=None,
bulk=None,
multi_tag=None,
options="",
**kwargs,
):
if same_dir is None:
same_dir = {}
if bulk is None:
bulk = []
self.message = message
self.client = client
self.multi_tag = multi_tag
self.options = options
self.same_dir = same_dir
self.bulk = bulk
super().__init__()
self.is_uphoster = True
async def new_event(self):
text = self.message.text.split("\n")
input_list = text[0].split(" ")
check_msg, check_button = await pre_task_check(self.message)
if check_msg:
await delete_links(self.message)
await auto_delete_message(
await send_message(self.message, check_msg, check_button)
)
return
args = {
"-doc": False,
"-med": False,
"-d": False,
"-j": False,
"-s": False,
"-b": False,
"-e": False,
"-z": False,
"-sv": False,
"-ss": False,
"-f": False,
"-fd": False,
"-fu": False,
"-hl": False,
"-bt": False,
"-ut": False,
"-yt": False,
"-i": 0,
"-sp": 0,
"link": "",
"-n": "",
"-m": "",
"-meta": "",
"-up": "",
"-rcf": "",
"-au": "",
"-ap": "",
"-h": "",
"-t": "",
"-ca": "",
"-cv": "",
"-ns": "",
"-tl": "",
"-ff": set(),
}
arg_parser(input_list[1:], args)
if Config.DISABLE_BULK and args.get("-b", False):
await send_message(self.message, "Bulk downloads are currently disabled.")
return
if Config.DISABLE_MULTI and int(args.get("-i", 1)) > 1:
await send_message(
self.message,
"Multi-downloads are currently disabled. Please try without the -i flag.",
)
return
if Config.DISABLE_SEED and args.get("-d", False):
await send_message(
self.message,
"Seeding is currently disabled. Please try without the -d flag.",
)
return
if Config.DISABLE_FF_MODE and args.get("-ff"):
await send_message(self.message, "FFmpeg commands are currently disabled.")
return
self.select = args["-s"]
self.seed = args["-d"]
self.name = args["-n"]
self.up_dest = args["-up"]
self.rc_flags = args["-rcf"]
self.link = args["link"]
self.compress = args["-z"]
self.extract = args["-e"]
self.join = args["-j"]
self.thumb = args["-t"]
self.split_size = args["-sp"]
self.sample_video = args["-sv"]
self.screen_shots = args["-ss"]
self.force_run = args["-f"]
self.force_download = args["-fd"]
self.force_upload = args["-fu"]
self.convert_audio = args["-ca"]
self.convert_video = args["-cv"]
self.name_swap = args["-ns"]
self.hybrid_leech = args["-hl"]
self.thumbnail_layout = args["-tl"]
self.as_doc = args["-doc"]
self.as_med = args["-med"]
self.folder_name = f"/{args['-m']}".rstrip("/") if len(args["-m"]) > 0 else ""
self.bot_trans = args["-bt"]
self.user_trans = args["-ut"]
self.is_yt = args["-yt"]
self.metadata_dict = self.default_metadata_dict.copy()
self.audio_metadata_dict = self.audio_metadata_dict.copy()
self.video_metadata_dict = self.video_metadata_dict.copy()
self.subtitle_metadata_dict = self.subtitle_metadata_dict.copy()
if args["-meta"]:
meta = self.metadata_processor.parse_string(args["-meta"])
self.metadata_dict = self.metadata_processor.merge_dicts(
self.metadata_dict, meta
)
headers = args["-h"]
is_bulk = args["-b"]
bulk_start = 0
bulk_end = 0
ratio = None
seed_time = None
reply_to = None
file_ = None
session = ""
try:
self.multi = int(args["-i"])
except Exception:
self.multi = 0
try:
if args["-ff"]:
if isinstance(args["-ff"], set):
self.ffmpeg_cmds = args["-ff"]
else:
self.ffmpeg_cmds = eval(args["-ff"])
except Exception as e:
self.ffmpeg_cmds = None
LOGGER.error(e)
if not isinstance(self.seed, bool):
dargs = self.seed.split(":")
ratio = dargs[0] or None
if len(dargs) == 2:
seed_time = dargs[1] or None
self.seed = True
if not isinstance(is_bulk, bool):
dargs = is_bulk.split(":")
bulk_start = dargs[0] or 0
if len(dargs) == 2:
bulk_end = dargs[1] or 0
is_bulk = True
if not is_bulk:
if self.multi > 0:
if self.folder_name:
async with task_dict_lock:
if self.folder_name in self.same_dir:
self.same_dir[self.folder_name]["tasks"].add(self.mid)
for fd_name in self.same_dir:
if fd_name != self.folder_name:
self.same_dir[fd_name]["total"] -= 1
elif self.same_dir:
self.same_dir[self.folder_name] = {
"total": self.multi,
"tasks": {self.mid},
}
for fd_name in self.same_dir:
if fd_name != self.folder_name:
self.same_dir[fd_name]["total"] -= 1
else:
self.same_dir = {
self.folder_name: {
"total": self.multi,
"tasks": {self.mid},
}
}
elif self.same_dir:
async with task_dict_lock:
for fd_name in self.same_dir:
self.same_dir[fd_name]["total"] -= 1
else:
await self.init_bulk(input_list, bulk_start, bulk_end, Uphoster)
return
if len(self.bulk) != 0:
del self.bulk[0]
await self.run_multi(input_list, Uphoster)
await self.get_tag(text)
path = f"{DOWNLOAD_DIR}{self.mid}{self.folder_name}"
if not self.link and (reply_to := self.message.reply_to_message):
if reply_to.text:
self.link = reply_to.text.split("\n", 1)[0].strip()
if is_telegram_link(self.link):
try:
reply_to, session = await get_tg_link_message(self.link)
except Exception as e:
await send_message(self.message, f"ERROR: {e}")
await self.remove_from_same_dir()
await delete_links(self.message)
return
if isinstance(reply_to, list):
self.bulk = reply_to
b_msg = input_list[:1]
self.options = " ".join(input_list[1:])
b_msg.append(f"{self.bulk[0]} -i {len(self.bulk)} {self.options}")
nextmsg = await send_message(self.message, " ".join(b_msg))
nextmsg = await self.client.get_messages(
chat_id=self.message.chat.id, message_ids=nextmsg.id
)
if self.message.from_user:
nextmsg.from_user = self.user
else:
nextmsg.sender_chat = self.user
await Uphoster(
self.client,
nextmsg,
self.same_dir,
self.bulk,
self.multi_tag,
self.options,
).new_event()
return
if reply_to:
file_ = (
reply_to.document
or reply_to.photo
or reply_to.video
or reply_to.audio
or reply_to.voice
or reply_to.video_note
or reply_to.sticker
or reply_to.animation
or None
)
self.file_details = {"caption": reply_to.caption}
if file_ is None:
if reply_text := reply_to.text:
self.link = reply_text.split("\n", 1)[0].strip()
else:
reply_to = None
elif reply_to.document and (
file_.mime_type == "application/x-bittorrent"
or file_.file_name.endswith((".torrent", ".dlc", ".nzb"))
):
self.link = await reply_to.download()
file_ = None
if (
not self.link
and file_ is None
or is_telegram_link(self.link)
and reply_to is None
or file_ is None
and not is_url(self.link)
and not is_magnet(self.link)
and not await aiopath.exists(self.link)
and not is_rclone_path(self.link)
and not is_gdrive_id(self.link)
and not is_gdrive_link(self.link)
and not is_mega_link(self.link)
):
await send_message(
self.message, COMMAND_USAGE["mirror"][0], COMMAND_USAGE["mirror"][1]
)
await self.remove_from_same_dir()
await delete_links(self.message)
return
if len(self.link) > 0:
LOGGER.info(self.link)
try:
await self.before_start()
except Exception as e:
await send_message(self.message, e)
await self.remove_from_same_dir()
await delete_links(self.message)
return
self._set_mode_engine()
if (
not self.is_jd
and not self.is_nzb
and not self.is_qbit
and not is_magnet(self.link)
and not is_rclone_path(self.link)
and not is_gdrive_link(self.link)
and not self.link.endswith(".torrent")
and file_ is None
and not is_gdrive_id(self.link)
and not is_mega_link(self.link)
):
content_type = await get_content_type(self.link)
if content_type is None or re_match(r"text/html|text/plain", content_type):
try:
self.link = await sync_to_async(direct_link_generator, self.link)
if isinstance(self.link, tuple):
self.link, headers = self.link
elif isinstance(self.link, str):
LOGGER.info(f"Generated link: {self.link}")
except DirectDownloadLinkException as e:
e = str(e)
if "This link requires a password!" not in e:
LOGGER.info(e)
if e.startswith("ERROR:"):
await send_message(self.message, e)
await self.remove_from_same_dir()
await delete_links(self.message)
return
except Exception as e:
await send_message(self.message, e)
await self.remove_from_same_dir()
await delete_links(self.message)
return
await delete_links(self.message)
if file_ is not None:
await TelegramDownloadHelper(self).add_download(
reply_to, f"{path}/", session
)
elif isinstance(self.link, dict):
await add_direct_download(self, path)
elif self.is_jd:
await add_jd_download(self, path)
elif self.is_qbit:
await add_qb_torrent(self, path, ratio, seed_time)
elif self.is_nzb:
await add_nzb(self, path)
elif is_rclone_path(self.link):
await add_rclone_download(self, f"{path}/")
elif is_gdrive_link(self.link) or is_gdrive_id(self.link):
await add_gd_download(self, path)
elif is_mega_link(self.link):
await add_mega_download(self, f"{path}/")
else:
ussr = args["-au"]
pssw = args["-ap"]
if ussr or pssw:
auth = f"{ussr}:{pssw}"
headers += (
f" authorization: Basic {b64encode(auth.encode()).decode('ascii')}"
)
await add_aria2_download(self, path, headers, ratio, seed_time)
async def uphoster(client, message):
bot_loop.create_task(Uphoster(client, message).new_event())
|