fixes
This commit is contained in:
parent
713e34f43d
commit
896e592498
184
program/video.py
184
program/video.py
@ -76,55 +76,57 @@ async def vplay(_, m: Message):
|
|||||||
popo = await bot.get_me()
|
popo = await bot.get_me()
|
||||||
papa = popo
|
papa = popo
|
||||||
pepe = papa.id
|
pepe = papa.id
|
||||||
chat_title = m.chat.title
|
except Exception as e:
|
||||||
a = await bot.get_chat_member(m.chat.id, pepe)
|
return await m.reply_text(f"error:\n\n{e}")
|
||||||
if a.status != "administrator":
|
chat_title = m.chat.title
|
||||||
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**")
|
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
|
return
|
||||||
if not a.can_manage_voice_chats:
|
except UserNotParticipant:
|
||||||
await m.reply_text(
|
if m.chat.username:
|
||||||
"missing required permission:"
|
try:
|
||||||
+ "\n\n» ❌ __Manage voice chat__")
|
await user.join_chat(f"{m.chat.username}")
|
||||||
return
|
except Exception as e:
|
||||||
if not a.can_delete_messages:
|
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
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
|
return
|
||||||
except UserNotParticipant:
|
else:
|
||||||
if m.chat.username:
|
|
||||||
try:
|
try:
|
||||||
await user.join_chat(f"{m.chat.username}")
|
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:
|
except Exception as e:
|
||||||
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
return 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:
|
||||||
@ -309,55 +311,57 @@ async def vstream(_, m: Message):
|
|||||||
popo = await bot.get_me()
|
popo = await bot.get_me()
|
||||||
papa = popo
|
papa = popo
|
||||||
pepe = papa.id
|
pepe = papa.id
|
||||||
chat_title = m.chat.title
|
except Exception as e:
|
||||||
a = await bot.get_chat_member(m.chat.id, pepe)
|
return await m.reply_text(f"error:\n\n{e}")
|
||||||
if a.status != "administrator":
|
chat_title = m.chat.title
|
||||||
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**")
|
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
|
return
|
||||||
if not a.can_manage_voice_chats:
|
except UserNotParticipant:
|
||||||
await m.reply_text(
|
if m.chat.username:
|
||||||
"missing required permission:"
|
try:
|
||||||
+ "\n\n» ❌ __Manage voice chat__")
|
await user.join_chat(f"{m.chat.username}")
|
||||||
return
|
except Exception as e:
|
||||||
if not a.can_delete_messages:
|
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
||||||
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
|
return
|
||||||
except UserNotParticipant:
|
else:
|
||||||
if m.chat.username:
|
|
||||||
try:
|
try:
|
||||||
await user.join_chat(f"{m.chat.username}")
|
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:
|
except Exception as e:
|
||||||
await m.reply_text(f"❌ **userbot failed to join**\n\n**reason**:{e}")
|
return 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.")
|
||||||
|
Loading…
Reference in New Issue
Block a user