File size: 39,576 Bytes
db78256 |
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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 |
from asyncio import (
create_subprocess_exec,
create_subprocess_shell,
gather,
sleep,
)
from functools import partial
from io import BytesIO
from os import getcwd
from time import time
from aiofiles import open as aiopen
from aiofiles.os import path as aiopath
from aiofiles.os import remove, rename
from aioshutil import rmtree
from pyrogram.filters import create
from pyrogram.handlers import MessageHandler
from .. import (
LOGGER,
aria2_options,
drives_ids,
drives_names,
index_urls,
intervals,
jd_listener_lock,
nzb_options,
qbit_options,
sabnzbd_client,
task_dict,
shortener_dict,
excluded_extensions,
auth_chats,
sudo_users,
)
from ..helper.ext_utils.bot_utils import (
SetInterval,
new_task,
)
from ..core.config_manager import Config
from ..core.tg_client import TgClient
from ..core.torrent_manager import TorrentManager
from ..core.startup import update_qb_options, update_nzb_options, update_variables
from ..helper.ext_utils.db_handler import database
from ..core.jdownloader_booter import jdownloader
from ..helper.ext_utils.task_manager import start_from_queued
from ..helper.mirror_leech_utils.rclone_utils.serve import rclone_serve_booter
from ..helper.telegram_helper.button_build import ButtonMaker
from ..helper.telegram_helper.message_utils import (
delete_message,
edit_message,
send_file,
send_message,
update_status_message,
)
from .rss import add_job
from .search import initiate_search_tools
start = 0
state = "view"
handler_dict = {}
DEFAULT_VALUES = {
"LEECH_SPLIT_SIZE": TgClient.MAX_SPLIT_SIZE,
"RSS_DELAY": 600,
"STATUS_UPDATE_INTERVAL": 15,
"SEARCH_LIMIT": 0,
"UPSTREAM_BRANCH": "master",
"DEFAULT_UPLOAD": "rc",
"BOT_MAX_TASKS": 0,
"QUEUE_ALL": 0,
"QUEUE_DOWNLOAD": 0,
"QUEUE_UPLOAD": 0,
"USER_MAX_TASKS": 0,
}
async def get_buttons(key=None, edit_type=None, edit_mode=False):
buttons = ButtonMaker()
if key is None:
buttons.data_button("Config Variables", "botset var")
buttons.data_button("Private Files", "botset private open")
buttons.data_button("Qbit Settings", "botset qbit")
buttons.data_button("Aria2c Settings", "botset aria")
buttons.data_button("Sabnzbd Settings", "botset nzb")
buttons.data_button("JDownloader Sync", "botset syncjd")
buttons.data_button("Close", "botset close")
msg = "Bot Settings:"
elif edit_type is not None:
if edit_type == "botvar":
msg = ""
buttons.data_button("Back", "botset var")
if key not in ["TELEGRAM_HASH", "TELEGRAM_API", "OWNER_ID", "BOT_TOKEN"]:
buttons.data_button("Default", f"botset resetvar {key}")
buttons.data_button("Close", "botset close")
if key in [
"CMD_SUFFIX",
"OWNER_ID",
"USER_SESSION_STRING",
"TELEGRAM_HASH",
"TELEGRAM_API",
"BOT_TOKEN",
"TG_PROXY",
]:
msg += "Restart required for this edit to take effect! You will not see the changes in bot vars, the edit will be in database only!\n\n"
msg += f"Send a valid value for {key}. Current value is '{Config.get(key)}'. Timeout: 60 sec"
elif edit_type == "ariavar":
buttons.data_button("Back", "botset aria")
if key != "newkey":
buttons.data_button("Empty String", f"botset emptyaria {key}")
buttons.data_button("Close", "botset close")
msg = (
"Send a key with value. Example: https-proxy-user:value. Timeout: 60 sec"
if key == "newkey"
else f"Send a valid value for {key}. Current value is '{aria2_options[key]}'. Timeout: 60 sec"
)
elif edit_type == "qbitvar":
buttons.data_button("Back", "botset qbit")
buttons.data_button("Empty String", f"botset emptyqbit {key}")
buttons.data_button("Close", "botset close")
msg = f"Send a valid value for {key}. Current value is '{qbit_options[key]}'. Timeout: 60 sec"
elif edit_type == "nzbvar":
buttons.data_button("Back", "botset nzb")
buttons.data_button("Default", f"botset resetnzb {key}")
buttons.data_button("Empty String", f"botset emptynzb {key}")
buttons.data_button("Close", "botset close")
msg = f"Send a valid value for {key}. Current value is '{nzb_options[key]}'.\nIf the value is list then seperate them by space or ,\nExample: .exe,info or .exe .info\nTimeout: 60 sec"
elif edit_type.startswith("nzbsevar"):
index = 0 if key == "newser" else int(edit_type.replace("nzbsevar", ""))
buttons.data_button("Back", f"botset nzbser{index}")
if key != "newser":
buttons.data_button("Empty", f"botset emptyserkey {index} {key}")
buttons.data_button("Close", "botset close")
if key == "newser":
msg = "Send one server as dictionary {}, like in config.py without []. Timeout: 60 sec"
else:
msg = f"Send a valid value for {key} in server {Config.USENET_SERVERS[index]['name']}. Current value is {Config.USENET_SERVERS[index][key]}. Timeout: 60 sec"
elif key == "var":
conf_dict = Config.get_all()
for k in list(conf_dict.keys())[start : 10 + start]:
if k == "DATABASE_URL" and state != "view":
continue
buttons.data_button(k, f"botset botvar {k}")
if state == "view":
buttons.data_button("Edit", "botset edit var")
else:
buttons.data_button("View", "botset view var")
buttons.data_button("Back", "botset back")
buttons.data_button("Close", "botset close")
for x in range(0, len(conf_dict), 10):
buttons.data_button(
f"{int(x / 10)}", f"botset start var {x}", position="footer"
)
msg = f"Config Variables | Page: {int(start / 10)} | State: {state}"
elif key == "private":
if edit_mode:
buttons.data_button("Stop Invoke File", "botset private stop", "header")
else:
buttons.data_button("Create New File", "botset private new")
buttons.data_button("Add/Delete File", "botset private edit")
buttons.data_button("Back", "botset back", position="footer")
buttons.data_button("Close", "botset close", position="footer")
txt = "\n┠ ".join(
[
f"<code>{fn}</code> → <b>{'Exists' if await aiopath.isfile(fn) else 'Not Exists'}</b>"
for fn in [
"config.py",
"token.pickle",
"rclone.conf",
"accounts.zip",
"list_drives.txt",
"shortener.txt",
"cookies.txt",
".netrc",
]
]
)
msg = f"""⌬ <b>Private File Settings</b>
┠ <b>Dashboard :</b>
┃
┠ {txt}
┃
┠ <b>Delete File</b> → Send the file name as text message, Like <code>rclone.conf</code>.
┃
┖ <b>Note:</b> Changing .netrc will not take effect for aria2c until restart."""
if edit_mode:
msg += "\n\n<i>Send the file name to delete the file, file to save the file & for new file create, follow below format.</i> \n\n<b>Format:</b> \nfile_name\n\ncontents of file</i>\n\n<b>Time Left :</b> <code>60 sec</code>"
elif key == "aria":
for k in list(aria2_options.keys())[start : 10 + start]:
if k not in ["checksum", "index-out", "out", "pause", "select-file"]:
buttons.data_button(k, f"botset ariavar {k}")
if state == "view":
buttons.data_button("Edit", "botset edit aria")
else:
buttons.data_button("View", "botset view aria")
buttons.data_button("Add new key", "botset ariavar newkey")
buttons.data_button("Back", "botset back")
buttons.data_button("Close", "botset close")
for x in range(0, len(aria2_options), 10):
buttons.data_button(
f"{int(x / 10)}", f"botset start aria {x}", position="footer"
)
msg = f"Aria2c Options | Page: {int(start / 10)} | State: {state}"
elif key == "qbit":
for k in list(qbit_options.keys())[start : 10 + start]:
buttons.data_button(k, f"botset qbitvar {k}")
if state == "view":
buttons.data_button("Edit", "botset edit qbit")
else:
buttons.data_button("View", "botset view qbit")
buttons.data_button("Sync Qbittorrent", "botset syncqbit")
buttons.data_button("Back", "botset back")
buttons.data_button("Close", "botset close")
for x in range(0, len(qbit_options), 10):
buttons.data_button(
f"{int(x / 10)}", f"botset start qbit {x}", position="footer"
)
msg = f"Qbittorrent Options | Page: {int(start / 10)} | State: {state}"
elif key == "nzb":
for k in list(nzb_options.keys())[start : 10 + start]:
buttons.data_button(k, f"botset nzbvar {k}")
if state == "view":
buttons.data_button("Edit", "botset edit nzb")
else:
buttons.data_button("View", "botset view nzb")
buttons.data_button("Servers", "botset nzbserver")
buttons.data_button("Sync Sabnzbd", "botset syncnzb")
buttons.data_button("Back", "botset back")
buttons.data_button("Close", "botset close")
for x in range(0, len(nzb_options), 10):
buttons.data_button(
f"{int(x / 10)}", f"botset start nzb {x}", position="footer"
)
msg = f"Sabnzbd Options | Page: {int(start / 10)} | State: {state}"
elif key == "nzbserver":
if len(Config.USENET_SERVERS) > 0:
for index, k in enumerate(Config.USENET_SERVERS[start : 10 + start]):
buttons.data_button(k["name"], f"botset nzbser{index}")
buttons.data_button("Add New", "botset nzbsevar newser")
buttons.data_button("Back", "botset nzb")
buttons.data_button("Close", "botset close")
if len(Config.USENET_SERVERS) > 10:
for x in range(0, len(Config.USENET_SERVERS), 10):
buttons.data_button(
f"{int(x / 10)}", f"botset start nzbser {x}", position="footer"
)
msg = f"Usenet Servers | Page: {int(start / 10)} | State: {state}"
elif key.startswith("nzbser"):
index = int(key.replace("nzbser", ""))
LOGGER.info(f"Data: {key}, {index}")
if index >= len(Config.USENET_SERVERS):
return await get_buttons("nzbserver")
for k in list(Config.USENET_SERVERS[index].keys())[start : 10 + start]:
buttons.data_button(k, f"botset nzbsevar{index} {k}")
if state == "view":
buttons.data_button("Edit", f"botset edit {key}")
else:
buttons.data_button("View", f"botset view {key}")
buttons.data_button("Remove Server", f"botset remser {index}")
buttons.data_button("Back", "botset nzbserver")
buttons.data_button("Close", "botset close")
if len(Config.USENET_SERVERS[index].keys()) > 10:
for x in range(0, len(Config.USENET_SERVERS[index]), 10):
buttons.data_button(
f"{int(x / 10)}", f"botset start {key} {x}", position="footer"
)
msg = f"Server Keys | Page: {int(start / 10)} | State: {state}"
return msg, buttons.build_menu(1 if key is None else 2)
async def update_buttons(message, key=None, edit_type=None, edit_mode=False):
msg, button = await get_buttons(key, edit_type, edit_mode)
await edit_message(message, msg, button)
@new_task
async def edit_variable(_, message, pre_message, key):
handler_dict[message.chat.id] = False
value = message.text
if value.lower() == "true":
value = True
elif value.lower() == "false":
value = False
if key == "INCOMPLETE_TASK_NOTIFIER" and Config.DATABASE_URL:
await database.trunc_table("tasks")
elif key == "STATUS_UPDATE_INTERVAL":
value = int(value)
if len(task_dict) != 0 and (st := intervals["status"]):
for cid, intvl in list(st.items()):
intvl.cancel()
intervals["status"][cid] = SetInterval(
value, update_status_message, cid
)
elif key == "TORRENT_TIMEOUT":
await TorrentManager.change_aria2_option("bt-stop-timeout", value)
value = int(value)
elif key == "LEECH_SPLIT_SIZE":
value = min(int(value), TgClient.MAX_SPLIT_SIZE)
elif key == "BASE_URL_PORT":
value = int(value)
if Config.BASE_URL:
await (await create_subprocess_exec("pkill", "-9", "-f", "gunicorn")).wait()
await create_subprocess_shell(
f"gunicorn -k uvicorn.workers.UvicornWorker -w 1 web.wserver:app --bind 0.0.0.0:{value}"
)
elif key == "EXCLUDED_EXTENSIONS":
fx = value.split()
excluded_extensions.clear()
excluded_extensions.extend(["aria2", "!qB"])
for x in fx:
x = x.lstrip(".")
excluded_extensions.append(x.strip().lower())
elif key == "GDRIVE_ID":
if drives_names and drives_names[0] == "Main":
drives_ids[0] = value
else:
drives_ids.insert(0, value)
elif key == "INDEX_URL":
if drives_names and drives_names[0] == "Main":
index_urls[0] = value
else:
index_urls.insert(0, value)
elif key == "LINKS_LOG_ID":
if value.strip():
try:
value = int(value.strip())
except ValueError:
await send_message(
message,
"Invalid value! LINKS_LOG_ID must be a valid integer chat ID.",
)
return await update_buttons(pre_message, "var")
elif key == "MIRROR_LOG_ID":
if value.strip():
try:
value = int(value.strip())
except ValueError:
await send_message(
message,
"Invalid value! MIRROR_LOG_ID must be a valid integer chat ID.",
)
return await update_buttons(pre_message, "var")
elif key == "AUTHORIZED_CHATS":
aid = value.split()
auth_chats.clear()
for id_ in aid:
chat_id, *thread_ids = id_.split("|")
chat_id = int(chat_id.strip())
if thread_ids:
thread_ids = list(map(lambda x: int(x.strip()), thread_ids))
auth_chats[chat_id] = thread_ids
else:
auth_chats[chat_id] = []
elif key == "SUDO_USERS":
sudo_users.clear()
aid = value.split()
for id_ in aid:
sudo_users.append(int(id_.strip()))
elif key == "LOGIN_PASS":
value = str(value)
elif key == "DEBRID_LINK_API":
value = str(value)
elif value.isdigit():
value = int(value)
elif value.startswith("[") and value.endswith("]"):
value = eval(value)
elif value.startswith("{") and value.endswith("}"):
value = eval(value)
Config.set(key, value)
await update_buttons(pre_message, "var")
await delete_message(message)
await database.update_config({key: value})
if key in ["SEARCH_PLUGINS", "SEARCH_API_LINK"]:
await initiate_search_tools()
elif key in ["QUEUE_ALL", "QUEUE_DOWNLOAD", "QUEUE_UPLOAD"]:
await start_from_queued()
elif key in [
"RCLONE_SERVE_URL",
"RCLONE_SERVE_PORT",
"RCLONE_SERVE_USER",
"RCLONE_SERVE_PASS",
]:
await rclone_serve_booter()
elif key in ["JD_EMAIL", "JD_PASS"]:
await jdownloader.boot()
elif key == "RSS_DELAY":
add_job()
elif key == "USET_SERVERS":
for s in value:
await sabnzbd_client.set_special_config("servers", s)
@new_task
async def edit_aria(_, message, pre_message, key):
handler_dict[message.chat.id] = False
value = message.text
if key == "newkey":
key, value = [x.strip() for x in value.split(":", 1)]
elif value.lower() == "true":
value = "true"
elif value.lower() == "false":
value = "false"
await TorrentManager.change_aria2_option(key, value)
await update_buttons(pre_message, "aria")
await delete_message(message)
await database.update_aria2(key, value)
@new_task
async def edit_qbit(_, message, pre_message, key):
handler_dict[message.chat.id] = False
value = message.text
if value.lower() == "true":
value = True
elif value.lower() == "false":
value = False
elif key == "max_ratio":
value = float(value)
elif value.isdigit():
value = int(value)
await TorrentManager.qbittorrent.app.set_preferences({key: value})
qbit_options[key] = value
await update_buttons(pre_message, "qbit")
await delete_message(message)
await database.update_qbittorrent(key, value)
@new_task
async def edit_nzb(_, message, pre_message, key):
handler_dict[message.chat.id] = False
value = message.text
if value.isdigit():
value = int(value)
elif value.startswith("[") and value.endswith("]"):
try:
value = ",".join(eval(value))
except Exception as e:
LOGGER.error(e)
await update_buttons(pre_message, "nzb")
return
res = await sabnzbd_client.set_config("misc", key, value)
nzb_options[key] = res["config"]["misc"][key]
await update_buttons(pre_message, "nzb")
await delete_message(message)
await database.update_nzb_config()
@new_task
async def edit_nzb_server(_, message, pre_message, key, index=0):
handler_dict[message.chat.id] = False
value = message.text
if key == "newser":
if value.startswith("{") and value.endswith("}"):
try:
value = eval(value)
except Exception:
await send_message(message, "Invalid dict format!")
await update_buttons(pre_message, "nzbserver")
return
res = await sabnzbd_client.add_server(value)
if not res["config"]["servers"][0]["host"]:
await send_message(message, "Invalid server!")
await update_buttons(pre_message, "nzbserver")
return
Config.USENET_SERVERS.append(value)
await update_buttons(pre_message, "nzbserver")
else:
await send_message(message, "Invalid dict format!")
await update_buttons(pre_message, "nzbserver")
return
else:
if value.isdigit():
value = int(value)
res = await sabnzbd_client.add_server(
{"name": Config.USENET_SERVERS[index]["name"], key: value}
)
if res["config"]["servers"][0][key] == "":
await send_message(message, "Invalid value")
return
Config.USENET_SERVERS[index][key] = value
await update_buttons(pre_message, f"nzbser{index}")
await delete_message(message)
await database.update_config({"USENET_SERVERS": Config.USENET_SERVERS})
async def sync_jdownloader():
async with jd_listener_lock:
if not Config.DATABASE_URL or not jdownloader.is_connected:
return
await jdownloader.device.system.exit_jd()
if await aiopath.exists("cfg.zip"):
await remove("cfg.zip")
await (
await create_subprocess_exec("7z", "a", "cfg.zip", "/JDownloader/cfg")
).wait()
await database.update_private_file("cfg.zip")
@new_task
async def update_private_file(_, message, pre_message, key, new_file=False):
handler_dict[message.chat.id] = False
if not message.media and (file_name := message.text):
if new_file:
file_name, content = file_name.split("\n", 1)
file_name = file_name.strip()
async with aiopen(file_name, "w") as f:
await f.write(content.strip())
else:
if await aiopath.isfile(file_name) and file_name != "config.py":
await remove(file_name)
if file_name == "accounts.zip":
if await aiopath.exists("accounts"):
await rmtree("accounts", ignore_errors=True)
if await aiopath.exists("rclone_sa"):
await rmtree("rclone_sa", ignore_errors=True)
Config.USE_SERVICE_ACCOUNTS = False
await database.update_config({"USE_SERVICE_ACCOUNTS": False})
elif file_name in [".netrc", "netrc"]:
await (await create_subprocess_exec("touch", ".netrc")).wait()
await (await create_subprocess_exec("chmod", "600", ".netrc")).wait()
await (
await create_subprocess_exec("cp", ".netrc", "/root/.netrc")
).wait()
await delete_message(message)
elif doc := message.document:
file_name = doc.file_name
fpath = f"{getcwd()}/{file_name}"
if await aiopath.exists(fpath):
await remove(fpath)
await message.download(file_name=fpath)
if file_name == "accounts.zip":
if await aiopath.exists("accounts"):
await rmtree("accounts", ignore_errors=True)
if await aiopath.exists("rclone_sa"):
await rmtree("rclone_sa", ignore_errors=True)
await (
await create_subprocess_exec(
"7z", "x", "-o.", "-aoa", "accounts.zip", "accounts/*.json"
)
).wait()
await (
await create_subprocess_exec("chmod", "-R", "777", "accounts")
).wait()
elif file_name in [".netrc", "netrc"]:
if file_name == "netrc":
await rename("netrc", ".netrc")
file_name = ".netrc"
await (await create_subprocess_exec("chmod", "600", ".netrc")).wait()
await (await create_subprocess_exec("cp", ".netrc", "/root/.netrc")).wait()
elif file_name == "config.py":
await load_config()
if "@github.com" in Config.UPSTREAM_REPO:
buttons = ButtonMaker()
msg = "Push to UPSTREAM_REPO ?"
buttons.data_button("Yes!", f"botset push {file_name}")
buttons.data_button("No", "botset close")
await send_message(message, msg, buttons.build_menu(2))
else:
await delete_message(message)
if file_name == "rclone.conf":
await rclone_serve_booter()
elif file_name == "list_drives.txt" and await aiopath.exists("list_drives.txt"):
drives_ids.clear()
drives_names.clear()
index_urls.clear()
if Config.GDRIVE_ID:
drives_names.append("Main")
drives_ids.append(Config.GDRIVE_ID)
index_urls.append(Config.INDEX_URL)
async with aiopen("list_drives.txt", "r+") as f:
lines = await f.readlines()
for line in lines:
temp = line.strip().split()
drives_ids.append(temp[1])
drives_names.append(temp[0].replace("_", " "))
if len(temp) > 2:
index_urls.append(temp[2])
else:
index_urls.append("")
elif file_name == "shortener.txt" and await aiopath.exists("shortener.txt"):
async with aiopen("shortener.txt", "r+") as f:
lines = await f.readlines()
for line in lines:
temp = line.strip().split()
if len(temp) == 2:
shortener_dict[temp[0]] = temp[1]
await update_buttons(pre_message, key)
await database.update_private_file(file_name)
async def event_handler(client, query, pfunc, rfunc, document=False):
chat_id = query.message.chat.id
handler_dict[chat_id] = True
start_time = update_time = time()
async def event_filter(_, __, event):
user = event.from_user or event.sender_chat
return bool(
user.id == query.from_user.id
and event.chat.id == chat_id
and (event.text or event.document and document)
)
handler = client.add_handler(
MessageHandler(pfunc, filters=create(event_filter)), group=-1
)
while handler_dict[chat_id]:
await sleep(0.5)
if time() - start_time > 60:
handler_dict[chat_id] = False
await rfunc()
elif document:
if time() - update_time > 6 and handler_dict[chat_id]:
update_time = time()
msg = await client.get_messages(chat_id, query.message.id)
text = msg.text.split("\n")
text[-1] = (
f"<b>Time Left :</b> <code>{round(60 - (time() - start_time), 2)} sec</code>"
)
await edit_message(msg, "\n".join(text), msg.reply_markup)
client.remove_handler(*handler)
@new_task
async def edit_bot_settings(client, query):
data = query.data.split()
message = query.message
handler_dict[message.chat.id] = False
if data[1] == "close":
await query.answer()
await delete_message(message.reply_to_message)
await delete_message(message)
elif data[1] == "back":
await query.answer()
globals()["start"] = 0
await update_buttons(message, None)
elif data[1] == "syncjd":
if not Config.JD_EMAIL or not Config.JD_PASS:
await query.answer(
"No Email or Password provided!",
show_alert=True,
)
return
await query.answer(
"Syncronization Started. JDownloader will get restarted. It takes up to 10 sec!",
show_alert=True,
)
await sync_jdownloader()
elif data[1] in ["var", "aria", "qbit", "nzb", "nzbserver"] or data[1].startswith(
"nzbser"
):
if data[1] == "nzbserver":
globals()["start"] = 0
await query.answer()
await update_buttons(message, data[1])
elif data[1] == "resetvar":
await query.answer()
value = ""
if data[2] in DEFAULT_VALUES:
value = DEFAULT_VALUES[data[2]]
if (
data[2] == "STATUS_UPDATE_INTERVAL"
and len(task_dict) != 0
and (st := intervals["status"])
):
for key, intvl in list(st.items()):
intvl.cancel()
intervals["status"][key] = SetInterval(
value, update_status_message, key
)
elif data[2] == "RSS_SIZE_LIMIT":
value = 0
elif data[2] == "EXCLUDED_EXTENSIONS":
excluded_extensions.clear()
excluded_extensions.extend(["aria2", "!qB"])
elif data[2] == "TORRENT_TIMEOUT":
await TorrentManager.change_aria2_option("bt-stop-timeout", "0")
await database.update_aria2("bt-stop-timeout", "0")
elif data[2] == "BASE_URL":
await (await create_subprocess_exec("pkill", "-9", "-f", "gunicorn")).wait()
elif data[2] == "BASE_URL_PORT":
value = 80
if Config.BASE_URL:
await (
await create_subprocess_exec("pkill", "-9", "-f", "gunicorn")
).wait()
await create_subprocess_shell(
f"gunicorn -k uvicorn.workers.UvicornWorker -w 1 web.wserver:app --bind 0.0.0.0:{value}"
)
elif data[2] == "GDRIVE_ID":
if drives_names and drives_names[0] == "Main":
drives_names.pop(0)
drives_ids.pop(0)
index_urls.pop(0)
elif data[2] == "INDEX_URL":
if drives_names and drives_names[0] == "Main":
index_urls[0] = ""
elif data[2] == "INCOMPLETE_TASK_NOTIFIER":
await database.trunc_table("tasks")
elif data[2] in ["JD_EMAIL", "JD_PASS"]:
await create_subprocess_exec("pkill", "-9", "-f", "java")
elif data[2] == "USENET_SERVERS":
for s in Config.USENET_SERVERS:
await sabnzbd_client.delete_config("servers", s["name"])
elif data[2] == "AUTHORIZED_CHATS":
auth_chats.clear()
elif data[2] == "SUDO_USERS":
sudo_users.clear()
Config.set(data[2], value)
await update_buttons(message, "var")
if data[2] == "DATABASE_URL":
await database.disconnect()
await database.update_config({data[2]: value})
if data[2] in ["SEARCH_PLUGINS", "SEARCH_API_LINK"]:
await initiate_search_tools()
elif data[2] in ["QUEUE_ALL", "QUEUE_DOWNLOAD", "QUEUE_UPLOAD"]:
await start_from_queued()
elif data[2] in [
"RCLONE_SERVE_URL",
"RCLONE_SERVE_PORT",
"RCLONE_SERVE_USER",
"RCLONE_SERVE_PASS",
]:
await rclone_serve_booter()
elif data[1] == "resetnzb":
await query.answer()
res = await sabnzbd_client.set_config_default(data[2])
nzb_options[data[2]] = res["config"]["misc"][data[2]]
await update_buttons(message, "nzb")
await database.update_nzb_config()
elif data[1] == "syncnzb":
if not Config.USENET_SERVERS:
return await query.answer(
"Syncronization Paused. No USENET_SERVERS is provided !"
)
await query.answer(
"Syncronization Started. It takes up to 2 sec!", show_alert=True
)
nzb_options.clear()
await update_nzb_options()
await database.update_nzb_config()
elif data[1] == "syncqbit":
await query.answer(
"Syncronization Started. It takes up to 2 sec!", show_alert=True
)
qbit_options.clear()
await update_qb_options()
await database.save_qbit_settings()
elif data[1] == "emptyaria":
await query.answer()
aria2_options[data[2]] = ""
await update_buttons(message, "aria")
await TorrentManager.change_aria2_option(data[2], "")
await database.update_aria2(data[2], "")
elif data[1] == "emptyqbit":
await query.answer()
await TorrentManager.qbittorrent.app.set_preferences({data[2]: value})
qbit_options[data[2]] = ""
await update_buttons(message, "qbit")
await database.update_qbittorrent(data[2], "")
elif data[1] == "emptynzb":
await query.answer()
res = await sabnzbd_client.set_config("misc", data[2], "")
nzb_options[data[2]] = res["config"]["misc"][data[2]]
await update_buttons(message, "nzb")
await database.update_nzb_config()
elif data[1] == "remser":
index = int(data[2])
await sabnzbd_client.delete_config(
"servers", Config.USENET_SERVERS[index]["name"]
)
del Config.USENET_SERVERS[index]
await update_buttons(message, "nzbserver")
await database.update_config({"USENET_SERVERS": Config.USENET_SERVERS})
elif data[1] == "private":
await query.answer()
if data[2] in ("open", "stop"):
await update_buttons(message, data[1])
elif data[2] in ("edit", "new"):
await update_buttons(message, data[1], edit_mode=True)
pfunc = partial(
update_private_file,
pre_message=message,
key=data[1],
new_file=data[2] == "new",
)
rfunc = partial(update_buttons, message, data[1])
await event_handler(client, query, pfunc, rfunc, True)
elif data[1] == "botvar" and state == "edit":
await query.answer()
await update_buttons(message, data[2], data[1])
pfunc = partial(edit_variable, pre_message=message, key=data[2])
rfunc = partial(update_buttons, message, "var")
await event_handler(client, query, pfunc, rfunc)
elif data[1] == "botvar" and state == "view":
value = f"{Config.get(data[2])}"
if len(value) > 200:
await query.answer()
with BytesIO(str.encode(value)) as out_file:
out_file.name = f"{data[2]}.txt"
await send_file(message, out_file)
return
elif value == "":
value = None
await query.answer(f"{value}", show_alert=True)
elif data[1] == "ariavar" and (state == "edit" or data[2] == "newkey"):
await query.answer()
await update_buttons(message, data[2], data[1])
pfunc = partial(edit_aria, pre_message=message, key=data[2])
rfunc = partial(update_buttons, message, "aria")
await event_handler(client, query, pfunc, rfunc)
elif data[1] == "ariavar" and state == "view":
value = f"{aria2_options[data[2]]}"
if len(value) > 200:
await query.answer()
with BytesIO(str.encode(value)) as out_file:
out_file.name = f"{data[2]}.txt"
await send_file(message, out_file)
return
elif value == "":
value = None
await query.answer(f"{value}", show_alert=True)
elif data[1] == "qbitvar" and state == "edit":
await query.answer()
await update_buttons(message, data[2], data[1])
pfunc = partial(edit_qbit, pre_message=message, key=data[2])
rfunc = partial(update_buttons, message, "qbit")
await event_handler(client, query, pfunc, rfunc)
elif data[1] == "qbitvar" and state == "view":
value = f"{qbit_options[data[2]]}"
if len(value) > 200:
await query.answer()
with BytesIO(str.encode(value)) as out_file:
out_file.name = f"{data[2]}.txt"
await send_file(message, out_file)
return
elif value == "":
value = None
await query.answer(f"{value}", show_alert=True)
elif data[1] == "nzbvar" and state == "edit":
await query.answer()
await update_buttons(message, data[2], data[1])
pfunc = partial(edit_nzb, pre_message=message, key=data[2])
rfunc = partial(update_buttons, message, "nzb")
await event_handler(client, query, pfunc, rfunc)
elif data[1] == "nzbvar" and state == "view":
value = f"{nzb_options[data[2]]}"
if len(value) > 200:
await query.answer()
with BytesIO(str.encode(value)) as out_file:
out_file.name = f"{data[2]}.txt"
await send_file(message, out_file)
return
elif value == "":
value = None
await query.answer(f"{value}", show_alert=True)
elif data[1] == "emptyserkey":
await query.answer()
await update_buttons(message, f"nzbser{data[2]}")
index = int(data[2])
res = await sabnzbd_client.add_server(
{"name": Config.USENET_SERVERS[index]["name"], data[3]: ""}
)
Config.USENET_SERVERS[index][data[3]] = res["config"]["servers"][0][data[3]]
await database.update_config({"USENET_SERVERS": Config.USENET_SERVERS})
elif data[1].startswith("nzbsevar") and (state == "edit" or data[2] == "newser"):
index = 0 if data[2] == "newser" else int(data[1].replace("nzbsevar", ""))
await query.answer()
await update_buttons(message, data[2], data[1])
pfunc = partial(edit_nzb_server, pre_message=message, key=data[2], index=index)
LOGGER.info(f"Query Data: {data[1]}")
rfunc = partial(update_buttons, message, data[1])
await event_handler(client, query, pfunc, rfunc)
elif data[1].startswith("nzbsevar") and state == "view":
index = int(data[1].replace("nzbsevar", ""))
value = f"{Config.USENET_SERVERS[index][data[2]]}"
if len(value) > 200:
await query.answer()
with BytesIO(str.encode(value)) as out_file:
out_file.name = f"{data[2]}.txt"
await send_file(message, out_file)
return
elif value == "":
value = None
await query.answer(f"{value}", show_alert=True)
elif data[1] == "edit":
await query.answer()
globals()["state"] = "edit"
await update_buttons(message, data[2])
elif data[1] == "view":
await query.answer()
globals()["state"] = "view"
await update_buttons(message, data[2])
elif data[1] == "start":
await query.answer()
if start != int(data[3]):
globals()["start"] = int(data[3])
await update_buttons(message, data[2])
elif data[1] == "push":
await query.answer()
filename = data[2].rsplit(".zip", 1)[0]
if await aiopath.exists(filename):
await (
await create_subprocess_shell(
f"git add -f {filename} \
&& git commit -sm botsettings -q \
&& git push origin {Config.UPSTREAM_BRANCH} -qf"
)
).wait()
else:
await (
await create_subprocess_shell(
f"git rm -r --cached {filename} \
&& git commit -sm botsettings -q \
&& git push origin {Config.UPSTREAM_BRANCH} -qf"
)
).wait()
await delete_message(message.reply_to_message)
await delete_message(message)
@new_task
async def send_bot_settings(_, message):
handler_dict[message.chat.id] = False
msg, button = await get_buttons()
globals()["start"] = 0
await send_message(message, msg, button)
async def load_config():
Config.load()
drives_ids.clear()
drives_names.clear()
index_urls.clear()
await update_variables()
if not await aiopath.exists("accounts"):
Config.USE_SERVICE_ACCOUNTS = False
if len(task_dict) != 0 and (st := intervals["status"]):
for key, intvl in list(st.items()):
intvl.cancel()
intervals["status"][key] = SetInterval(
Config.STATUS_UPDATE_INTERVAL, update_status_message, key
)
if Config.TORRENT_TIMEOUT:
await TorrentManager.change_aria2_option(
"bt-stop-timeout", f"{Config.TORRENT_TIMEOUT}"
)
await database.update_aria2("bt-stop-timeout", f"{Config.TORRENT_TIMEOUT}")
if not Config.INCOMPLETE_TASK_NOTIFIER:
await database.trunc_table("tasks")
await (await create_subprocess_exec("pkill", "-9", "-f", "gunicorn")).wait()
if Config.BASE_URL:
await create_subprocess_shell(
f"gunicorn -k uvicorn.workers.UvicornWorker -w 1 web.wserver:app --bind 0.0.0.0:{Config.BASE_URL_PORT}"
)
if Config.DATABASE_URL:
await database.connect()
config_dict = Config.get_all()
await database.update_config(config_dict)
else:
await database.disconnect()
await gather(initiate_search_tools(), start_from_queued(), rclone_serve_booter())
add_job()
|