merge pull request #29 from levina-lab/issue-13-issues_report
push commit from beta branch
This commit is contained in:
commit
2f7770c7a2
@ -31,6 +31,7 @@
|
|||||||
- YouTube/Local/Live/m3u8 stream support
|
- YouTube/Local/Live/m3u8 stream support
|
||||||
- Inline Search support
|
- Inline Search support
|
||||||
- Control With Button support
|
- Control With Button support
|
||||||
|
- Userbot Auto Join
|
||||||
|
|
||||||
## 🛠 Commands:
|
## 🛠 Commands:
|
||||||
- `/play (query)` - play music from youtube
|
- `/play (query)` - play music from youtube
|
||||||
|
5
main.py
5
main.py
@ -1,8 +1,6 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
from driver.veez import bot, call_py
|
|
||||||
from pytgcalls import idle
|
from pytgcalls import idle
|
||||||
|
from driver.veez import call_py, bot
|
||||||
|
|
||||||
async def mulai_bot():
|
async def mulai_bot():
|
||||||
print("[INFO]: STARTING BOT CLIENT")
|
print("[INFO]: STARTING BOT CLIENT")
|
||||||
@ -13,6 +11,5 @@ async def mulai_bot():
|
|||||||
print("[INFO]: STOPPING BOT")
|
print("[INFO]: STOPPING BOT")
|
||||||
await bot.stop()
|
await bot.stop()
|
||||||
|
|
||||||
|
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
loop.run_until_complete(mulai_bot())
|
loop.run_until_complete(mulai_bot())
|
||||||
|
125
program/music.py
125
program/music.py
@ -2,15 +2,16 @@
|
|||||||
# Commit Start Date 20/10/2021
|
# Commit Start Date 20/10/2021
|
||||||
# Finished On 28/10/2021
|
# Finished On 28/10/2021
|
||||||
|
|
||||||
import asyncio
|
|
||||||
import re
|
import re
|
||||||
|
import asyncio
|
||||||
|
|
||||||
from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL
|
|
||||||
from driver.filters import command, other_filters
|
|
||||||
from driver.queues import QUEUE, add_to_queue
|
|
||||||
from driver.veez import call_py
|
|
||||||
from pyrogram import Client
|
from pyrogram import Client
|
||||||
|
from driver.veez import call_py, user, bot
|
||||||
|
from driver.queues import QUEUE, add_to_queue
|
||||||
|
from driver.filters import command, other_filters
|
||||||
|
from pyrogram.errors import UserAlreadyParticipant, UserNotParticipant
|
||||||
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
|
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
|
||||||
|
from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL, ASSISTANT_NAME
|
||||||
from pytgcalls import StreamType
|
from pytgcalls import StreamType
|
||||||
from pytgcalls.types.input_stream import AudioPiped
|
from pytgcalls.types.input_stream import AudioPiped
|
||||||
from youtubesearchpython import VideosSearch
|
from youtubesearchpython import VideosSearch
|
||||||
@ -64,7 +65,62 @@ async def play(_, m: Message):
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
popo = await bot.get_me()
|
||||||
|
papa = popo
|
||||||
|
pepe = papa.id
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"error:\n\n{e}")
|
||||||
|
chat_title = m.chat.title
|
||||||
|
a = await bot.get_chat_member(m.chat.id, pepe)
|
||||||
|
if a.status != "administrator":
|
||||||
|
await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
|
||||||
|
return
|
||||||
|
if not a.can_manage_voice_chats:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Manage voice chat__")
|
||||||
|
return
|
||||||
|
if not a.can_delete_messages:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Delete messages__")
|
||||||
|
return
|
||||||
|
if not a.can_invite_users:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Add users__")
|
||||||
|
return
|
||||||
|
if not a.can_restrict_members:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Ban users__")
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
uber = await user.get_me()
|
||||||
|
grab = uber
|
||||||
|
good = grab.id
|
||||||
|
b = await bot.get_chat_member(m.chat.id, good)
|
||||||
|
if b.status == "kicked":
|
||||||
|
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
|
||||||
|
return
|
||||||
|
except UserNotParticipant:
|
||||||
|
if m.chat.username:
|
||||||
|
try:
|
||||||
|
await user.join_chat(f"{m.chat.username}")
|
||||||
|
except Exception as e:
|
||||||
|
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
pope = await bot.export_chat_invite_link(m.chat.id)
|
||||||
|
pepo = await bot.revoke_chat_invite_link(m.chat.id, pope)
|
||||||
|
await user.join_chat(pepo.invite_link)
|
||||||
|
except UserAlreadyParticipant:
|
||||||
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
replied = m.reply_to_message
|
replied = m.reply_to_message
|
||||||
chat_id = m.chat.id
|
chat_id = m.chat.id
|
||||||
if replied:
|
if replied:
|
||||||
@ -215,7 +271,62 @@ async def stream(_, m: Message):
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
popo = await bot.get_me()
|
||||||
|
papa = popo
|
||||||
|
pepe = papa.id
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"error:\n\n{e}")
|
||||||
|
chat_title = m.chat.title
|
||||||
|
a = await bot.get_chat_member(m.chat.id, pepe)
|
||||||
|
if a.status != "administrator":
|
||||||
|
await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
|
||||||
|
return
|
||||||
|
if not a.can_manage_voice_chats:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Manage voice chat__")
|
||||||
|
return
|
||||||
|
if not a.can_delete_messages:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Delete messages__")
|
||||||
|
return
|
||||||
|
if not a.can_invite_users:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Add users__")
|
||||||
|
return
|
||||||
|
if not a.can_restrict_members:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Ban users__")
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
uber = await user.get_me()
|
||||||
|
grab = uber
|
||||||
|
good = grab.id
|
||||||
|
b = await bot.get_chat_member(m.chat.id, good)
|
||||||
|
if b.status == "kicked":
|
||||||
|
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
|
||||||
|
return
|
||||||
|
except UserNotParticipant:
|
||||||
|
if m.chat.username:
|
||||||
|
try:
|
||||||
|
await user.join_chat(f"{m.chat.username}")
|
||||||
|
except Exception as e:
|
||||||
|
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
pope = await bot.export_chat_invite_link(m.chat.id)
|
||||||
|
pepo = await bot.revoke_chat_invite_link(m.chat.id, pope)
|
||||||
|
await user.join_chat(pepo.invite_link)
|
||||||
|
except UserAlreadyParticipant:
|
||||||
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
chat_id = m.chat.id
|
chat_id = m.chat.id
|
||||||
if len(m.command) < 2:
|
if len(m.command) < 2:
|
||||||
await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
|
await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
|
||||||
|
153
program/video.py
153
program/video.py
@ -2,15 +2,16 @@
|
|||||||
# Commit Start Date 20/10/2021
|
# Commit Start Date 20/10/2021
|
||||||
# Finished On 28/10/2021
|
# Finished On 28/10/2021
|
||||||
|
|
||||||
import asyncio
|
|
||||||
import re
|
import re
|
||||||
|
import asyncio
|
||||||
|
|
||||||
from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL
|
|
||||||
from driver.filters import command, other_filters
|
|
||||||
from driver.queues import QUEUE, add_to_queue
|
|
||||||
from driver.veez import call_py
|
|
||||||
from pyrogram import Client
|
from pyrogram import Client
|
||||||
|
from driver.veez import call_py, user, bot
|
||||||
|
from driver.queues import QUEUE, add_to_queue
|
||||||
|
from driver.filters import command, other_filters
|
||||||
|
from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL, ASSISTANT_NAME
|
||||||
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
|
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
|
||||||
|
from pyrogram.errors import UserAlreadyParticipant, UserNotParticipant
|
||||||
from pytgcalls import StreamType
|
from pytgcalls import StreamType
|
||||||
from pytgcalls.types.input_stream import AudioVideoPiped
|
from pytgcalls.types.input_stream import AudioVideoPiped
|
||||||
from pytgcalls.types.input_stream.quality import (
|
from pytgcalls.types.input_stream.quality import (
|
||||||
@ -56,7 +57,7 @@ async def ytdl(link):
|
|||||||
|
|
||||||
|
|
||||||
@Client.on_message(command(["vplay", f"vplay@{BOT_USERNAME}"]) & other_filters)
|
@Client.on_message(command(["vplay", f"vplay@{BOT_USERNAME}"]) & other_filters)
|
||||||
async def vplay(client, m: Message):
|
async def vplay(_, m: Message):
|
||||||
|
|
||||||
keyboard = InlineKeyboardMarkup(
|
keyboard = InlineKeyboardMarkup(
|
||||||
[
|
[
|
||||||
@ -70,7 +71,62 @@ async def vplay(client, m: Message):
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
popo = await bot.get_me()
|
||||||
|
papa = popo
|
||||||
|
pepe = papa.id
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"error:\n\n{e}")
|
||||||
|
chat_title = m.chat.title
|
||||||
|
a = await _.get_chat_member(m.chat.id, pepe)
|
||||||
|
if a.status != "administrator":
|
||||||
|
await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
|
||||||
|
return
|
||||||
|
if not a.can_manage_voice_chats:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Manage voice chat__")
|
||||||
|
return
|
||||||
|
if not a.can_delete_messages:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Delete messages__")
|
||||||
|
return
|
||||||
|
if not a.can_invite_users:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Add users__")
|
||||||
|
return
|
||||||
|
if not a.can_restrict_members:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Ban users__")
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
uber = await user.get_me()
|
||||||
|
grab = uber
|
||||||
|
good = grab.id
|
||||||
|
b = await _.get_chat_member(m.chat.id, good)
|
||||||
|
if b.status == "kicked":
|
||||||
|
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
|
||||||
|
return
|
||||||
|
except UserNotParticipant:
|
||||||
|
if m.chat.username:
|
||||||
|
try:
|
||||||
|
await user.join_chat(f"{m.chat.username}")
|
||||||
|
except Exception as e:
|
||||||
|
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
pope = await _.export_chat_invite_link(m.chat.id)
|
||||||
|
pepo = await _.revoke_chat_invite_link(m.chat.id, pope)
|
||||||
|
await user.join_chat(pepo.invite_link)
|
||||||
|
except UserAlreadyParticipant:
|
||||||
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
replied = m.reply_to_message
|
replied = m.reply_to_message
|
||||||
chat_id = m.chat.id
|
chat_id = m.chat.id
|
||||||
if replied:
|
if replied:
|
||||||
@ -100,9 +156,10 @@ async def vplay(client, m: Message):
|
|||||||
if chat_id in QUEUE:
|
if chat_id in QUEUE:
|
||||||
pos = add_to_queue(chat_id, songname, dl, link, "Video", Q)
|
pos = add_to_queue(chat_id, songname, dl, link, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_1}",
|
photo=f"{IMG_1}",
|
||||||
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
|
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
@ -123,9 +180,10 @@ async def vplay(client, m: Message):
|
|||||||
)
|
)
|
||||||
add_to_queue(chat_id, songname, dl, link, "Video", Q)
|
add_to_queue(chat_id, songname, dl, link, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_2}",
|
photo=f"{IMG_2}",
|
||||||
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
|
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({link})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
@ -153,9 +211,10 @@ async def vplay(client, m: Message):
|
|||||||
chat_id, songname, ytlink, url, "Video", Q
|
chat_id, songname, ytlink, url, "Video", Q
|
||||||
)
|
)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_1}",
|
photo=f"{IMG_1}",
|
||||||
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
|
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
@ -171,9 +230,10 @@ async def vplay(client, m: Message):
|
|||||||
)
|
)
|
||||||
add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
|
add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_2}",
|
photo=f"{IMG_2}",
|
||||||
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
|
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
except Exception as ep:
|
except Exception as ep:
|
||||||
@ -202,9 +262,10 @@ async def vplay(client, m: Message):
|
|||||||
if chat_id in QUEUE:
|
if chat_id in QUEUE:
|
||||||
pos = add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
|
pos = add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_1}",
|
photo=f"{IMG_1}",
|
||||||
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
|
caption=f"💡 **Track added to the queue**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
@ -220,9 +281,10 @@ async def vplay(client, m: Message):
|
|||||||
)
|
)
|
||||||
add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
|
add_to_queue(chat_id, songname, ytlink, url, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_2}",
|
photo=f"{IMG_2}",
|
||||||
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
|
caption=f"💡 **video streaming started.**\n\n🏷 **Name:** [{songname}]({url})\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
except Exception as ep:
|
except Exception as ep:
|
||||||
@ -230,7 +292,7 @@ async def vplay(client, m: Message):
|
|||||||
|
|
||||||
|
|
||||||
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & other_filters)
|
@Client.on_message(command(["vstream", f"vstream@{BOT_USERNAME}"]) & other_filters)
|
||||||
async def vstream(client, m: Message):
|
async def vstream(_, m: Message):
|
||||||
|
|
||||||
keyboard = InlineKeyboardMarkup(
|
keyboard = InlineKeyboardMarkup(
|
||||||
[
|
[
|
||||||
@ -244,7 +306,62 @@ async def vstream(client, m: Message):
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
popo = await bot.get_me()
|
||||||
|
papa = popo
|
||||||
|
pepe = papa.id
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"error:\n\n{e}")
|
||||||
|
chat_title = m.chat.title
|
||||||
|
a = await _.get_chat_member(m.chat.id, pepe)
|
||||||
|
if a.status != "administrator":
|
||||||
|
await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
|
||||||
|
return
|
||||||
|
if not a.can_manage_voice_chats:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Manage voice chat__")
|
||||||
|
return
|
||||||
|
if not a.can_delete_messages:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Delete messages__")
|
||||||
|
return
|
||||||
|
if not a.can_invite_users:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Add users__")
|
||||||
|
return
|
||||||
|
if not a.can_restrict_members:
|
||||||
|
await m.reply_text(
|
||||||
|
"missing required permission:"
|
||||||
|
+ "\n\n» ❌ __Ban users__")
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
uber = await user.get_me()
|
||||||
|
grab = uber
|
||||||
|
good = grab.id
|
||||||
|
b = await _.get_chat_member(m.chat.id, good)
|
||||||
|
if b.status == "kicked":
|
||||||
|
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
|
||||||
|
return
|
||||||
|
except UserNotParticipant:
|
||||||
|
if m.chat.username:
|
||||||
|
try:
|
||||||
|
await user.join_chat(f"{m.chat.username}")
|
||||||
|
except Exception as e:
|
||||||
|
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
pope = await _.export_chat_invite_link(m.chat.id)
|
||||||
|
pepo = await _.revoke_chat_invite_link(m.chat.id, pope)
|
||||||
|
await user.join_chat(pepo.invite_link)
|
||||||
|
except UserAlreadyParticipant:
|
||||||
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
return await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
chat_id = m.chat.id
|
chat_id = m.chat.id
|
||||||
if len(m.command) < 2:
|
if len(m.command) < 2:
|
||||||
await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
|
await m.reply("» give me a live-link/m3u8 url/youtube link to stream.")
|
||||||
@ -282,9 +399,10 @@ async def vstream(client, m: Message):
|
|||||||
if chat_id in QUEUE:
|
if chat_id in QUEUE:
|
||||||
pos = add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q)
|
pos = add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_1}",
|
photo=f"{IMG_1}",
|
||||||
caption=f"💡 **Track added to the queue**\n\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {m.from_user.mention()}\n🔢 **At position »** `{pos}`",
|
caption=f"💡 **Track added to the queue**\n\n💭 **Chat:** `{chat_id}`\n🎧 **Request by:** {requester}\n🔢 **At position »** `{pos}`",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
@ -306,9 +424,10 @@ async def vstream(client, m: Message):
|
|||||||
)
|
)
|
||||||
add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q)
|
add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q)
|
||||||
await loser.delete()
|
await loser.delete()
|
||||||
|
requester = f"[{m.from_user.first_name}](tg://user?id={m.from_user.id})"
|
||||||
await m.reply_photo(
|
await m.reply_photo(
|
||||||
photo=f"{IMG_2}",
|
photo=f"{IMG_2}",
|
||||||
caption=f"💡 **[Live stream video]({link}) started.**\n\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {m.from_user.mention()}",
|
caption=f"💡 **[Live stream video]({link}) started.**\n\n💭 **Chat:** `{chat_id}`\n💡 **Status:** `Playing`\n🎧 **Request by:** {requester}",
|
||||||
reply_markup=keyboard,
|
reply_markup=keyboard,
|
||||||
)
|
)
|
||||||
except Exception as ep:
|
except Exception as ep:
|
||||||
|
@ -3,6 +3,7 @@ asyncio
|
|||||||
ffmpeg-python
|
ffmpeg-python
|
||||||
py-tgcalls==0.8.1rc1
|
py-tgcalls==0.8.1rc1
|
||||||
git+https://github.com/pyrogram/pyrogram@master
|
git+https://github.com/pyrogram/pyrogram@master
|
||||||
|
git+https://github.com/yt-dlp/yt-dlp@master
|
||||||
youtube-search-python
|
youtube-search-python
|
||||||
youtube-search
|
youtube-search
|
||||||
httpx==0.13.3
|
httpx==0.13.3
|
||||||
@ -13,4 +14,3 @@ requests
|
|||||||
psutil
|
psutil
|
||||||
future
|
future
|
||||||
wget
|
wget
|
||||||
yt-dlp
|
|
||||||
|
Loading…
Reference in New Issue
Block a user