Oof
This commit is contained in:
parent
3801f4b283
commit
55b95c5b47
|
|
@ -13,6 +13,7 @@ def _watch(bot: Bot, update, isTar=False):
|
||||||
mssg = update.message.text
|
mssg = update.message.text
|
||||||
message_args = mssg.split(' ')
|
message_args = mssg.split(' ')
|
||||||
name_args = mssg.split('|')
|
name_args = mssg.split('|')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
link = message_args[1]
|
link = message_args[1]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
|
|
@ -23,6 +24,7 @@ def _watch(bot: Bot, update, isTar=False):
|
||||||
msg += "This file will be downloaded in 720p quality and it's name will be <b>Slam</b>"
|
msg += "This file will be downloaded in 720p quality and it's name will be <b>Slam</b>"
|
||||||
sendMessage(msg, bot, update)
|
sendMessage(msg, bot, update)
|
||||||
return
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if "|" in mssg:
|
if "|" in mssg:
|
||||||
mssg = mssg.split("|")
|
mssg = mssg.split("|")
|
||||||
|
|
@ -35,11 +37,12 @@ def _watch(bot: Bot, update, isTar=False):
|
||||||
qual = f'bestvideo[height<={qual}]+bestaudio/best[height<={qual}]'
|
qual = f'bestvideo[height<={qual}]+bestaudio/best[height<={qual}]'
|
||||||
except IndexError:
|
except IndexError:
|
||||||
qual = "bestvideo+bestaudio/best"
|
qual = "bestvideo+bestaudio/best"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
name = name_args[1]
|
name = name_args[1]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
name = ""
|
name = ""
|
||||||
reply_to = update.message.reply_to_message
|
|
||||||
pswd = ""
|
pswd = ""
|
||||||
listener = MirrorListener(bot, update, pswd, isTar)
|
listener = MirrorListener(bot, update, pswd, isTar)
|
||||||
ydl = YoutubeDLHelper(listener)
|
ydl = YoutubeDLHelper(listener)
|
||||||
|
|
@ -55,9 +58,18 @@ def watch(update, context):
|
||||||
_watch(context.bot, update)
|
_watch(context.bot, update)
|
||||||
|
|
||||||
|
|
||||||
mirror_handler = CommandHandler(BotCommands.WatchCommand, watch,
|
mirror_handler = CommandHandler(
|
||||||
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user, run_async=True)
|
BotCommands.WatchCommand,
|
||||||
tar_mirror_handler = CommandHandler(BotCommands.TarWatchCommand, watchTar,
|
watch,
|
||||||
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user, run_async=True)
|
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user,
|
||||||
|
run_async=True,
|
||||||
|
)
|
||||||
|
tar_mirror_handler = CommandHandler(
|
||||||
|
BotCommands.TarWatchCommand,
|
||||||
|
watchTar,
|
||||||
|
filters=CustomFilters.authorized_chat | CustomFilters.authorized_user,
|
||||||
|
run_async=True,
|
||||||
|
)
|
||||||
|
|
||||||
dispatcher.add_handler(mirror_handler)
|
dispatcher.add_handler(mirror_handler)
|
||||||
dispatcher.add_handler(tar_mirror_handler)
|
dispatcher.add_handler(tar_mirror_handler)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue