Spaces:
Paused
Paused
File size: 12,188 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 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 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
#
# 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 config
from config import PRIVATE_BOT_MODE
from YukkiMusic.core.mongo import mongodb
channeldb = mongodb.cplaymode
commanddb = mongodb.commands
cleandb = mongodb.cleanmode
playmodedb = mongodb.playmode
playtypedb = mongodb.playtypedb
langdb = mongodb.language
authdb = mongodb.adminauth
videodb = mongodb.yukkivideocalls
onoffdb = mongodb.onoffper
suggdb = mongodb.suggestion
autoenddb = mongodb.autoend
# Shifting to memory [ mongo sucks often]
loop = {}
playtype = {}
playmode = {}
channelconnect = {}
langm = {}
pause = {}
mute = {}
audio = {}
video = {}
active = []
activevideo = []
command = []
cleanmode = []
nonadmin = {}
vlimit = []
maintenance = []
suggestion = {}
autoend = {}
# Auto End Stream
async def is_autoend() -> bool:
chat_id = 123
mode = autoend.get(chat_id)
if not mode:
user = await autoenddb.find_one({"chat_id": chat_id})
if not user:
autoend[chat_id] = False
return False
autoend[chat_id] = True
return True
return mode
async def autoend_on():
chat_id = 123
autoend[chat_id] = True
user = await autoenddb.find_one({"chat_id": chat_id})
if not user:
return await autoenddb.insert_one({"chat_id": chat_id})
async def autoend_off():
chat_id = 123
autoend[chat_id] = False
user = await autoenddb.find_one({"chat_id": chat_id})
if user:
return await autoenddb.delete_one({"chat_id": chat_id})
# SUGGESTION
async def is_suggestion(chat_id: int) -> bool:
mode = suggestion.get(chat_id)
if not mode:
user = await suggdb.find_one({"chat_id": chat_id})
if not user:
suggestion[chat_id] = True
return True
suggestion[chat_id] = False
return False
return mode
async def suggestion_on(chat_id: int):
suggestion[chat_id] = True
user = await suggdb.find_one({"chat_id": chat_id})
if user:
return await suggdb.delete_one({"chat_id": chat_id})
async def suggestion_off(chat_id: int):
suggestion[chat_id] = False
user = await suggdb.find_one({"chat_id": chat_id})
if not user:
return await suggdb.insert_one({"chat_id": chat_id})
# LOOP PLAY
async def get_loop(chat_id: int) -> int:
lop = loop.get(chat_id)
if not lop:
return 0
return lop
async def set_loop(chat_id: int, mode: int):
loop[chat_id] = mode
# Channel Play IDS
async def get_cmode(chat_id: int) -> int:
mode = channelconnect.get(chat_id)
if not mode:
mode = await channeldb.find_one({"chat_id": chat_id})
if not mode:
return None
channelconnect[chat_id] = mode["mode"]
return mode["mode"]
return mode
async def set_cmode(chat_id: int, mode: int):
channelconnect[chat_id] = mode
await channeldb.update_one(
{"chat_id": chat_id}, {"$set": {"mode": mode}}, upsert=True
)
# PLAY TYPE WHETHER ADMINS ONLY OR EVERYONE
async def get_playtype(chat_id: int) -> str:
mode = playtype.get(chat_id)
if not mode:
mode = await playtypedb.find_one({"chat_id": chat_id})
if not mode:
playtype[chat_id] = "Everyone"
return "Everyone"
playtype[chat_id] = mode["mode"]
return mode["mode"]
return mode
async def set_playtype(chat_id: int, mode: str):
playtype[chat_id] = mode
await playtypedb.update_one(
{"chat_id": chat_id}, {"$set": {"mode": mode}}, upsert=True
)
# play mode whether inline or direct query
async def get_playmode(chat_id: int) -> str:
mode = playmode.get(chat_id)
if not mode:
mode = await playmodedb.find_one({"chat_id": chat_id})
if not mode:
playmode[chat_id] = "Direct"
return "Direct"
playmode[chat_id] = mode["mode"]
return mode["mode"]
return mode
async def set_playmode(chat_id: int, mode: str):
playmode[chat_id] = mode
await playmodedb.update_one(
{"chat_id": chat_id}, {"$set": {"mode": mode}}, upsert=True
)
# language
async def get_lang(chat_id: int) -> str:
mode = langm.get(chat_id)
if not mode:
lang = await langdb.find_one({"chat_id": chat_id})
if not lang:
langm[chat_id] = "en"
return "en"
langm[chat_id] = lang["lang"]
return lang["lang"]
return mode
async def set_lang(chat_id: int, lang: str):
langm[chat_id] = lang
await langdb.update_one(
{"chat_id": chat_id}, {"$set": {"lang": lang}}, upsert=True
)
# Muted
async def is_muted(chat_id: int) -> bool:
mode = mute.get(chat_id)
if not mode:
return False
return mode
async def mute_on(chat_id: int):
mute[chat_id] = True
async def mute_off(chat_id: int):
mute[chat_id] = False
# Pause-Skip
async def is_music_playing(chat_id: int) -> bool:
mode = pause.get(chat_id)
if not mode:
return False
return mode
async def music_on(chat_id: int):
pause[chat_id] = True
async def music_off(chat_id: int):
pause[chat_id] = False
# Active Voice Chats
async def get_active_chats() -> list:
return active
async def is_active_chat(chat_id: int) -> bool:
if chat_id not in active:
return False
else:
return True
async def add_active_chat(chat_id: int):
if chat_id not in active:
active.append(chat_id)
async def remove_active_chat(chat_id: int):
if chat_id in active:
active.remove(chat_id)
# Active Video Chats
async def get_active_video_chats() -> list:
return activevideo
async def is_active_video_chat(chat_id: int) -> bool:
if chat_id not in activevideo:
return False
else:
return True
async def add_active_video_chat(chat_id: int):
if chat_id not in activevideo:
activevideo.append(chat_id)
async def remove_active_video_chat(chat_id: int):
if chat_id in activevideo:
activevideo.remove(chat_id)
# Delete command mode
async def is_commanddelete_on(chat_id: int) -> bool:
if chat_id not in command:
return True
else:
return False
async def commanddelete_off(chat_id: int):
if chat_id not in command:
command.append(chat_id)
async def commanddelete_on(chat_id: int):
try:
command.remove(chat_id)
except:
pass
# Clean Mode
async def is_cleanmode_on(chat_id: int) -> bool:
if chat_id not in cleanmode:
return True
else:
return False
async def cleanmode_off(chat_id: int):
if chat_id not in cleanmode:
cleanmode.append(chat_id)
async def cleanmode_on(chat_id: int):
try:
cleanmode.remove(chat_id)
except:
pass
# Non Admin Chat
async def check_nonadmin_chat(chat_id: int) -> bool:
user = await authdb.find_one({"chat_id": chat_id})
if not user:
return False
return True
async def is_nonadmin_chat(chat_id: int) -> bool:
mode = nonadmin.get(chat_id)
if not mode:
user = await authdb.find_one({"chat_id": chat_id})
if not user:
nonadmin[chat_id] = False
return False
nonadmin[chat_id] = True
return True
return mode
async def add_nonadmin_chat(chat_id: int):
nonadmin[chat_id] = True
is_admin = await check_nonadmin_chat(chat_id)
if is_admin:
return
return await authdb.insert_one({"chat_id": chat_id})
async def remove_nonadmin_chat(chat_id: int):
nonadmin[chat_id] = False
is_admin = await check_nonadmin_chat(chat_id)
if not is_admin:
return
return await authdb.delete_one({"chat_id": chat_id})
# Video Limit
async def is_video_allowed(chat_idd) -> str:
chat_id = 123456
if not vlimit:
dblimit = await videodb.find_one({"chat_id": chat_id})
if not dblimit:
vlimit.clear()
vlimit.append(config.VIDEO_STREAM_LIMIT)
limit = config.VIDEO_STREAM_LIMIT
else:
limit = dblimit["limit"]
vlimit.clear()
vlimit.append(limit)
else:
limit = vlimit[0]
if limit == 0:
return False
count = len(await get_active_video_chats())
if int(count) == int(limit):
if not await is_active_video_chat(chat_idd):
return False
return True
async def get_video_limit() -> str:
chat_id = 123456
if not vlimit:
dblimit = await videodb.find_one({"chat_id": chat_id})
if not dblimit:
limit = config.VIDEO_STREAM_LIMIT
else:
limit = dblimit["limit"]
else:
limit = vlimit[0]
return limit
async def set_video_limit(limt: int):
chat_id = 123456
vlimit.clear()
vlimit.append(limt)
return await videodb.update_one(
{"chat_id": chat_id}, {"$set": {"limit": limt}}, upsert=True
)
# On Off
async def is_on_off(on_off: int) -> bool:
onoff = await onoffdb.find_one({"on_off": on_off})
if not onoff:
return False
return True
async def add_on(on_off: int):
is_on = await is_on_off(on_off)
if is_on:
return
return await onoffdb.insert_one({"on_off": on_off})
async def add_off(on_off: int):
is_off = await is_on_off(on_off)
if not is_off:
return
return await onoffdb.delete_one({"on_off": on_off})
# Maintenance
async def is_maintenance():
if not maintenance:
get = await onoffdb.find_one({"on_off": 1})
if not get:
maintenance.clear()
maintenance.append(2)
return True
else:
maintenance.clear()
maintenance.append(1)
return False
else:
if 1 in maintenance:
return False
else:
return True
async def maintenance_off():
maintenance.clear()
maintenance.append(2)
is_off = await is_on_off(1)
if not is_off:
return
return await onoffdb.delete_one({"on_off": 1})
async def maintenance_on():
maintenance.clear()
maintenance.append(1)
is_on = await is_on_off(1)
if is_on:
return
return await onoffdb.insert_one({"on_off": 1})
# Audio Video Limit
from pytgcalls.types.stream.legacy.quality import (HighQualityAudio,
HighQualityVideo,
LowQualityAudio,
LowQualityVideo,
MediumQualityAudio,
MediumQualityVideo)
async def save_audio_bitrate(chat_id: int, bitrate: str):
audio[chat_id] = bitrate
async def save_video_bitrate(chat_id: int, bitrate: str):
video[chat_id] = bitrate
async def get_aud_bit_name(chat_id: int) -> str:
mode = audio.get(chat_id)
if not mode:
return "High"
return mode
async def get_vid_bit_name(chat_id: int) -> str:
mode = video.get(chat_id)
if not mode:
if PRIVATE_BOT_MODE == str(True):
return "High"
else:
return "Medium"
return mode
async def get_audio_bitrate(chat_id: int) -> str:
mode = audio.get(chat_id)
if not mode:
return MediumQualityAudio()
if str(mode) == "High":
return HighQualityAudio()
elif str(mode) == "Medium":
return MediumQualityAudio()
elif str(mode) == "Low":
return LowQualityAudio()
async def get_video_bitrate(chat_id: int) -> str:
mode = video.get(chat_id)
if not mode:
if PRIVATE_BOT_MODE == str(True):
return HighQualityVideo()
else:
return MediumQualityVideo()
if str(mode) == "High":
return HighQualityVideo()
elif str(mode) == "Medium":
return MediumQualityVideo()
elif str(mode) == "Low":
return LowQualityVideo()
|