Spaces:
Paused
Paused
File size: 9,856 Bytes
2f67506 | 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 | #
# Copyright (C) 2021-2022 by TeamYukki@Github, < https://github.com/TeamYukki >.
#
# This file is part of < https://github.com/TeamYukki/YukkiMusicBot > project,
# and is released under the "GNU v3.0 License Agreement".
# Please see < https://github.com/TeamYukki/YukkiMusicBot/blob/master/LICENSE >
#
# All rights reserved.
import asyncio
from datetime import datetime, timedelta
from pyrogram import filters
from pyrogram.errors import FloodWait
from pyrogram.raw import types
import config
from config import adminlist, chatstats, clean, userstats
from strings import get_command
from YukkiMusic import app, userbot
from YukkiMusic.misc import SUDOERS
from YukkiMusic.utils.database import (get_active_chats,
get_authuser_names, get_client,
get_particular_top,
get_served_chats,
get_served_users, get_user_top,
is_cleanmode_on, set_queries,
update_particular_top,
update_user_top)
from YukkiMusic.utils.decorators.language import language
from YukkiMusic.utils.formatters import alpha_to_int
BROADCAST_COMMAND = get_command("BROADCAST_COMMAND")
AUTO_DELETE = config.CLEANMODE_DELETE_MINS
AUTO_SLEEP = 5
IS_BROADCASTING = False
cleanmode_group = 15
@app.on_raw_update(group=cleanmode_group)
async def clean_mode(client, update, users, chats):
global IS_BROADCASTING
if IS_BROADCASTING:
return
try:
if not isinstance(update, types.UpdateReadChannelOutbox):
return
except:
return
if users:
return
if chats:
return
message_id = update.max_id
chat_id = int(f"-100{update.channel_id}")
if not await is_cleanmode_on(chat_id):
return
if chat_id not in clean:
clean[chat_id] = []
time_now = datetime.now()
put = {
"msg_id": message_id,
"timer_after": time_now + timedelta(minutes=AUTO_DELETE),
}
clean[chat_id].append(put)
await set_queries(1)
@app.on_message(filters.command(BROADCAST_COMMAND) & SUDOERS)
@language
async def braodcast_message(client, message, _):
global IS_BROADCASTING
if message.reply_to_message:
x = message.reply_to_message.message_id
y = message.chat.id
else:
if len(message.command) < 2:
return await message.reply_text(_["broad_5"])
query = message.text.split(None, 1)[1]
if "-pin" in query:
query = query.replace("-pin", "")
if "-nobot" in query:
query = query.replace("-nobot", "")
if "-pinloud" in query:
query = query.replace("-pinloud", "")
if "-assistant" in query:
query = query.replace("-assistant", "")
if "-user" in query:
query = query.replace("-user", "")
if query == "":
return await message.reply_text(_["broad_6"])
IS_BROADCASTING = True
# Bot broadcast inside chats
if "-nobot" not in message.text:
sent = 0
pin = 0
chats = []
schats = await get_served_chats()
for chat in schats:
chats.append(int(chat["chat_id"]))
for i in chats:
if i == -1001733534088:
continue
try:
m = (
await app.forward_messages(i, y, x)
if message.reply_to_message
else await app.send_message(i, text=query)
)
if "-pin" in message.text:
try:
await m.pin(disable_notification=True)
pin += 1
except Exception:
continue
elif "-pinloud" in message.text:
try:
await m.pin(disable_notification=False)
pin += 1
except Exception:
continue
sent += 1
except FloodWait as e:
flood_time = int(e.x)
if flood_time > 200:
continue
await asyncio.sleep(flood_time)
except Exception:
continue
try:
await message.reply_text(_["broad_1"].format(sent, pin))
except:
pass
# Bot broadcasting to users
if "-user" in message.text:
susr = 0
served_users = []
susers = await get_served_users()
for user in susers:
served_users.append(int(user["user_id"]))
for i in served_users:
try:
m = (
await app.forward_messages(i, y, x)
if message.reply_to_message
else await app.send_message(i, text=query)
)
susr += 1
except FloodWait as e:
flood_time = int(e.x)
if flood_time > 200:
continue
await asyncio.sleep(flood_time)
except Exception:
pass
try:
await message.reply_text(_["broad_7"].format(susr))
except:
pass
# Bot broadcasting by assistant
if "-assistant" in message.text:
aw = await message.reply_text(_["broad_2"])
text = _["broad_3"]
from YukkiMusic.core.userbot import assistants
for num in assistants:
sent = 0
client = await get_client(num)
async for dialog in client.iter_dialogs():
if dialog.chat.id == -1001733534088:
continue
try:
await client.forward_messages(
dialog.chat.id, y, x
) if message.reply_to_message else await client.send_message(
dialog.chat.id, text=query
)
sent += 1
except FloodWait as e:
flood_time = int(e.x)
if flood_time > 200:
continue
await asyncio.sleep(flood_time)
except Exception as e:
print(e)
continue
text += _["broad_4"].format(num, sent)
try:
await aw.edit_text(text)
except:
pass
IS_BROADCASTING = False
async def auto_clean():
while not await asyncio.sleep(AUTO_SLEEP):
try:
for chat_id in chatstats:
for dic in chatstats[chat_id]:
vidid = dic["vidid"]
title = dic["title"]
chatstats[chat_id].pop(0)
spot = await get_particular_top(chat_id, vidid)
if spot:
spot = spot["spot"]
next_spot = spot + 1
new_spot = {"spot": next_spot, "title": title}
await update_particular_top(
chat_id, vidid, new_spot
)
else:
next_spot = 1
new_spot = {"spot": next_spot, "title": title}
await update_particular_top(
chat_id, vidid, new_spot
)
for user_id in userstats:
for dic in userstats[user_id]:
vidid = dic["vidid"]
title = dic["title"]
userstats[user_id].pop(0)
spot = await get_user_top(user_id, vidid)
if spot:
spot = spot["spot"]
next_spot = spot + 1
new_spot = {"spot": next_spot, "title": title}
await update_user_top(
user_id, vidid, new_spot
)
else:
next_spot = 1
new_spot = {"spot": next_spot, "title": title}
await update_user_top(
user_id, vidid, new_spot
)
except:
continue
try:
for chat_id in clean:
if chat_id == config.LOG_GROUP_ID:
continue
for x in clean[chat_id]:
if datetime.now() > x["timer_after"]:
try:
await app.delete_messages(
chat_id, x["msg_id"]
)
except FloodWait as e:
await asyncio.sleep(e.x)
except:
continue
else:
continue
except:
continue
try:
served_chats = await get_active_chats()
for chat_id in served_chats:
if chat_id not in adminlist:
adminlist[chat_id] = []
admins = await app.get_chat_members(
chat_id, filter="administrators"
)
for user in admins:
if user.can_manage_voice_chats:
adminlist[chat_id].append(user.user.id)
authusers = await get_authuser_names(chat_id)
for user in authusers:
user_id = await alpha_to_int(user)
adminlist[chat_id].append(user_id)
except:
continue
asyncio.create_task(auto_clean())
|