File size: 37,679 Bytes
c7dfe8b |
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 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
# <============================================== IMPORTS =========================================================>
import html
from telegram import (
ChatMemberAdministrator,
InlineKeyboardButton,
InlineKeyboardMarkup,
Update,
)
from telegram.constants import ChatID, ChatMemberStatus, ChatType, ParseMode
from telegram.error import BadRequest
from telegram.ext import CallbackQueryHandler, CommandHandler, ContextTypes, filters
from telegram.helpers import mention_html
from Mikobot import DRAGONS, function
from Mikobot.plugins.disable import DisableAbleCommandHandler
from Mikobot.plugins.helper_funcs.alternate import send_message
from Mikobot.plugins.helper_funcs.chat_status import (
ADMIN_CACHE,
check_admin,
connection_status,
)
from Mikobot.plugins.helper_funcs.extraction import extract_user, extract_user_and_text
from Mikobot.plugins.log_channel import loggable
# <=======================================================================================================>
# <================================================ FUNCTION =======================================================>
@connection_status
@loggable
@check_admin(permission="can_promote_members", is_both=True)
async def promote(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
args = context.args
message = update.effective_message
chat = update.effective_chat
user = update.effective_user
user_id = await extract_user(message, context, args)
await chat.get_member(user.id)
if message.from_user.id == ChatID.ANONYMOUS_ADMIN:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to promote admin.",
callback_data=f"admin_=promote={user_id}",
),
],
],
),
)
return
if not user_id:
await message.reply_text(
"You don't seem to be referring to a user, or the ID specified is incorrect.",
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if (
user_member.status == ChatMemberStatus.ADMINISTRATOR
or user_member.status == ChatMemberStatus.OWNER
):
await message.reply_text("How can I promote someone who is already an admin?")
return
if user_id == bot.id:
await message.reply_text(
"I can't promote myself! Get an admin to do it for me."
)
return
# Set the same permissions as the bot - the bot can't assign higher permissions than itself!
bot_member = await chat.get_member(bot.id)
if isinstance(bot_member, ChatMemberAdministrator):
try:
await bot.promoteChatMember(
chat.id,
user_id,
can_change_info=bot_member.can_change_info,
can_post_messages=bot_member.can_post_messages,
can_edit_messages=bot_member.can_edit_messages,
can_delete_messages=bot_member.can_delete_messages,
can_invite_users=bot_member.can_invite_users,
can_restrict_members=bot_member.can_restrict_members,
can_pin_messages=bot_member.can_pin_messages,
can_manage_chat=bot_member.can_manage_chat,
can_manage_video_chats=bot_member.can_manage_video_chats,
can_manage_topics=bot_member.can_manage_topics,
)
except BadRequest as err:
if err.message == "User_not_mutual_contact":
await message.reply_text(
"I can't promote someone who isn't in the group."
)
else:
await message.reply_text("An error occurred while promoting.")
return
await bot.sendMessage(
chat.id,
f"Successfully promoted {user_member.user.first_name or user_id}!",
parse_mode=ParseMode.HTML,
message_thread_id=message.message_thread_id if chat.is_forum else None,
)
log_message = (
f"{html.escape(chat.title)}:\n"
"#Promoted\n"
f"ADMIN: {mention_html(user.id, user.first_name)}\n"
f"USER: {mention_html(user_member.user.id, user_member.user.first_name)}"
)
return log_message
@connection_status
@loggable
@check_admin(permission="can_promote_members", is_both=True)
async def fullpromote(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
args = context.args
message = update.effective_message
chat = update.effective_chat
user = update.effective_user
user_id = await extract_user(message, context, args)
await chat.get_member(user.id)
if message.from_user.id == ChatID.ANONYMOUS_ADMIN:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to promote admin.",
callback_data=f"admin_=promote={user_id}",
),
],
],
),
)
return
if not user_id:
await message.reply_text(
"You don't seem to be referring to a user, or the ID specified is incorrect.",
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if (
user_member.status == ChatMemberStatus.ADMINISTRATOR
or user_member.status == ChatMemberStatus.OWNER
):
await message.reply_text("How can I promote someone who is already an admin?")
return
if user_id == bot.id:
await message.reply_text(
"I can't promote myself! Get an admin to do it for me."
)
return
# Set the same permissions as the bot - the bot can't assign higher perms than itself!
bot_member = await chat.get_member(bot.id)
if isinstance(bot_member, ChatMemberAdministrator):
try:
await bot.promoteChatMember(
chat.id,
user_id,
can_change_info=bot_member.can_change_info,
can_post_messages=bot_member.can_post_messages,
can_edit_messages=bot_member.can_edit_messages,
can_delete_messages=bot_member.can_delete_messages,
can_invite_users=bot_member.can_invite_users,
can_promote_members=bot_member.can_promote_members,
can_restrict_members=bot_member.can_restrict_members,
can_pin_messages=bot_member.can_pin_messages,
can_manage_chat=bot_member.can_manage_chat,
can_manage_video_chats=bot_member.can_manage_video_chats,
can_manage_topics=bot_member.can_manage_topics,
)
except BadRequest as err:
if err.message == "User_not_mutual_contact":
await message.reply_text(
"I can't promote someone who isn't in the group."
)
else:
await message.reply_text("An error occurred while promoting.")
return
await bot.sendMessage(
chat.id,
f"Successfully promoted {user_member.user.first_name or user_id}!",
parse_mode=ParseMode.HTML,
message_thread_id=message.message_thread_id if chat.is_forum else None,
)
log_message = (
f"{html.escape(chat.title)}:\n"
"#FULLPROMOTED\n"
f"ADMIN: {mention_html(user.id, user.first_name)}\n"
f"USER: {mention_html(user_member.user.id, user_member.user.first_name)}"
)
return log_message
@connection_status
@loggable
@check_admin(permission="can_promote_members", is_both=True)
async def demote(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
args = context.args
chat = update.effective_chat
message = update.effective_message
user = update.effective_user
user_id = await extract_user(message, context, args)
await chat.get_member(user.id)
if message.from_user.id == ChatID.ANONYMOUS_ADMIN:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to prove admin.",
callback_data=f"admin_=demote={user_id}",
),
],
],
),
)
return
if not user_id:
await message.reply_text(
"You don't seem to be referring to a user or the id specified is incorrect..",
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if user_member.status == ChatMemberStatus.OWNER:
await message.reply_text(
"This person created the chat, How could i demote him?"
)
return
if not user_member.status == ChatMemberStatus.ADMINISTRATOR:
await message.reply_text("Can't demote who isn't promoted!")
return
if user_id == bot.id:
await message.reply_text("I can't demote myself!.")
return
try:
await bot.promote_chat_member(
chat.id,
user_id,
can_change_info=False,
can_post_messages=False,
can_edit_messages=False,
can_delete_messages=False,
can_invite_users=False,
can_restrict_members=False,
can_pin_messages=False,
can_promote_members=False,
can_manage_chat=False,
can_manage_video_chats=False,
can_manage_topics=False,
)
await bot.sendMessage(
chat.id,
f"SUCCESSFULLY DEMOTED <b>{user_member.user.first_name or user_id}</b>!",
parse_mode=ParseMode.HTML,
message_thread_id=message.message_thread_id if chat.is_forum else None,
)
log_message = (
f"<b>{html.escape(chat.title)}:</b>\n"
f"#DEMOTED\n"
f"<b>ADMIN:</b> {mention_html(user.id, user.first_name)}\n"
f"<b>USER:</b> {mention_html(user_member.user.id, user_member.user.first_name)}"
)
return log_message
except BadRequest:
await message.reply_text(
"Could not demote. I might not be admin or the admin status was appointed by another"
"Its a User, So I can't act upon them!",
)
raise
@check_admin(is_user=True)
async def refresh_admin(update, _):
try:
ADMIN_CACHE.pop(update.effective_chat.id)
except KeyError:
pass
await update.effective_message.reply_text("Admins cache refreshed!")
@connection_status
@check_admin(permission="can_promote_members", is_both=True)
async def set_title(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
args = context.args
chat = update.effective_chat
message = update.effective_message
user_id, title = await extract_user_and_text(message, context, args)
if message.from_user.id == 1087968824:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to prove admin.",
callback_data=f"admin_=title={user_id}={title}",
),
],
],
),
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if not user_id:
await message.reply_text(
"You don't seem to be referring to a user or the ID specified is incorrect..",
)
return
if user_member.status == ChatMemberStatus.OWNER:
await message.reply_text(
"This person CREATED the chat, how can I set custom title for him?",
)
return
if user_member.status != ChatMemberStatus.ADMINISTRATOR:
await message.reply_text(
"Can't set title for non-admins!\nPromote them first to set custom title!",
)
return
if user_id == bot.id:
await message.reply_text(
"I can't set my own title myself! Get the one who made me admin to do it for me.",
)
return
if not title:
await message.reply_text("Setting a blank title doesn't do anything!")
return
if len(title) > 16:
await message.reply_text(
"The title length is longer than 16 characters.\nTruncating it to 16 characters.",
)
try:
await bot.setChatAdministratorCustomTitle(chat.id, user_id, title)
except BadRequest:
await message.reply_text(
"Either they aren't promoted by me or you set a title text that is impossible to set."
)
raise
await bot.sendMessage(
chat.id,
f"Successfully set title for <code>{user_member.user.first_name or user_id}</code> "
f"to <code>{html.escape(title[:16])}</code>!",
parse_mode=ParseMode.HTML,
message_thread_id=message.message_thread_id if chat.is_forum else None,
)
@loggable
@check_admin(permission="can_pin_messages", is_both=True)
async def pin(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
bot = context.bot
args = context.args
user = update.effective_user
chat = update.effective_chat
message = update.effective_message
is_group = chat.type != "private" and chat.type != "channel"
prev_message = update.effective_message.reply_to_message
is_silent = True
if len(args) >= 1:
is_silent = not (
args[0].lower() == "notify"
or args[0].lower() == "loud"
or args[0].lower() == "violent"
)
if not prev_message:
await message.reply_text("Please reply to message which you want to pin.")
return
if message.from_user.id == 1087968824:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to prove admin.",
callback_data=f"admin_=pin={prev_message.message_id}={is_silent}",
),
],
],
),
)
return
if prev_message and is_group:
try:
await bot.pinChatMessage(
chat.id,
prev_message.message_id,
disable_notification=is_silent,
)
except BadRequest as excp:
if excp.message == "Chat_not_modified":
pass
else:
raise
log_message = (
f"{chat.title}:\n"
"#PINNED\n"
f"Admin: {mention_html(user.id, user.first_name)}"
)
return log_message
@loggable
@check_admin(permission="can_pin_messages", is_both=True)
async def unpin(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
chat = update.effective_chat
user = update.effective_user
message = update.effective_message
if message.from_user.id == 1087968824:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to prove Admin.",
callback_data=f"admin_=unpin",
),
],
],
),
)
return
try:
await bot.unpinChatMessage(chat.id)
except BadRequest as excp:
if excp.message == "Chat_not_modified":
pass
elif excp.message == "Message to unpin not found":
await message.reply_text("No pinned message found")
return
else:
raise
log_message = (
f"{chat.title}:\n"
"#UNPINNED\n"
f"Admin: {mention_html(user.id, user.first_name)}"
)
return log_message
@loggable
@check_admin(permission="can_pin_messages", is_both=True)
async def unpinall(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
chat = update.effective_chat
user = update.effective_user
message = update.effective_message
admin_member = await chat.get_member(user.id)
if message.from_user.id == 1087968824:
await message.reply_text(
text="You are an anonymous admin.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text="Click to prove admin.",
callback_data=f"admin_=unpinall",
),
],
],
),
)
return
elif not admin_member.status == ChatMemberStatus.OWNER and user.id not in DRAGONS:
await message.reply_text("Only chat OWNER can unpin all messages.")
return
try:
if chat.is_forum:
await bot.unpin_all_forum_topic_messages(chat.id, message.message_thread_id)
else:
await bot.unpin_all_chat_messages(chat.id)
except BadRequest as excp:
if excp.message == "Chat_not_modified":
pass
else:
raise
log_message = (
f"{chat.title}:\n"
"#UNPINNED_ALL\n"
f"Admin: {mention_html(user.id, user.first_name)}"
)
return log_message
@connection_status
@check_admin(permission="can_invite_users", is_bot=True)
async def invite(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
chat = update.effective_chat
if chat.username:
await update.effective_message.reply_text(f"https://t.me/{chat.username}")
elif chat.type in [ChatType.SUPERGROUP, ChatType.CHANNEL]:
bot_member = await chat.get_member(bot.id)
if (
bot_member.can_invite_users
if isinstance(bot_member, ChatMemberAdministrator)
else None
):
invitelink = await bot.exportChatInviteLink(chat.id)
await update.effective_message.reply_text(invitelink)
else:
await update.effective_message.reply_text(
"I don't have access to the invite link, try changing my permissions!",
)
else:
await update.effective_message.reply_text(
"I can only give you invite links for supergroups and channels, sorry!",
)
@connection_status
async def adminlist(update: Update, context: ContextTypes.DEFAULT_TYPE):
chat = update.effective_chat # type: Optional[Chat]
user = update.effective_user # type: Optional[User]
args = context.args
bot = context.bot
if update.effective_message.chat.type == "private":
await send_message(
update.effective_message, "This command only works in Groups."
)
return
chat = update.effective_chat
chat_id = update.effective_chat.id
chat_name = update.effective_message.chat.title
try:
msg = await update.effective_message.reply_text(
"Fetching group admins...", parse_mode=ParseMode.HTML
)
except BadRequest:
msg = await update.effective_message.reply_text(
"Fetching group admins...", quote=False, parse_mode=ParseMode.HTML
)
administrators = await bot.get_chat_administrators(chat_id)
administrators_list = list(administrators) # Convert to a list
text = "γ πππ ππ‘π¦ ππ‘ <b>{}</b>:".format(html.escape(update.effective_chat.title))
bot_admin_list = []
for admin in administrators_list:
user = admin.user
status = admin.status
custom_title = admin.custom_title
if user.first_name == "":
name = "β Deleted Account"
else:
name = "{}".format(
mention_html(
user.id, html.escape(user.first_name + " " + (user.last_name or ""))
)
)
if user.is_bot:
bot_admin_list.append(name)
administrators_list.remove(admin)
continue
if status == "creator":
text += "\n\n π <b>Creator:</b>"
text += "\n<code> β°ββ½ </code>{}\n".format(name)
if custom_title:
text += f"<code> ββ {html.escape(custom_title)}</code>\n"
text += "\nπ <b>Admins:</b>"
custom_admin_list = {}
normal_admin_list = []
for admin in administrators_list:
user = admin.user
status = admin.status
custom_title = admin.custom_title
if user.first_name == "":
name = "β Deleted Account"
else:
name = "{}".format(
mention_html(
user.id, html.escape(user.first_name + " " + (user.last_name or ""))
)
)
if status == "administrator":
if custom_title:
try:
custom_admin_list[custom_title].append(name)
except KeyError:
custom_admin_list.update({custom_title: [name]})
else:
normal_admin_list.append(name)
for admin in normal_admin_list:
text += "\n<code> β°ββ½ </code>{}".format(admin)
for admin_group in custom_admin_list.copy():
if len(custom_admin_list[admin_group]) == 1:
text += "\n<code> β°ββ½ </code>{} | <code>{}</code>".format(
custom_admin_list[admin_group][0], html.escape(admin_group)
)
custom_admin_list.pop(admin_group)
text += "\n"
for admin_group in custom_admin_list:
text += "\nπ¨ <code>{}</code>".format(admin_group)
for admin in custom_admin_list[admin_group]:
text += "\n<code> β°ββ½ </code>{}".format(admin)
text += "\n"
text += "\nπ€ <b>Bots:</b>"
for each_bot in bot_admin_list:
text += "\n<code> β°ββ½ </code>{}".format(each_bot)
try:
await msg.edit_text(text, parse_mode=ParseMode.HTML)
except BadRequest: # if the original message is deleted
return
@loggable
async def admin_callback(update: Update, context: ContextTypes.DEFAULT_TYPE):
query = update.callback_query
bot = context.bot
message = update.effective_message
chat = update.effective_chat
admin_user = query.from_user
splitter = query.data.replace("admin_", "").split("=")
if splitter[1] == "promote":
promoter = await chat.get_member(admin_user.id)
if (
not (
promoter.can_promote_members
if isinstance(promoter, ChatMemberAdministrator)
else None or promoter.status == ChatMemberStatus.OWNER
)
and admin_user.id not in DRAGONS
):
await query.answer(
"You don't have the necessary rights to do that!", show_alert=True
)
return
try:
user_id = int(splitter[2])
except ValueError:
user_id = splitter[2]
await message.edit_text(
"You don't seem to be referring to a user or the ID specified is incorrect..."
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if (
user_member.status == ChatMemberStatus.ADMINISTRATOR
or user_member.status == ChatMemberStatus.OWNER
):
await message.edit_text(
"How am I meant to promote someone that's already an admin?"
)
return
bot_member = await chat.get_member(bot.id)
if isinstance(bot_member, ChatMemberAdministrator):
try:
await bot.promoteChatMember(
chat.id,
user_id,
can_change_info=bot_member.can_change_info,
can_post_messages=bot_member.can_post_messages,
can_edit_messages=bot_member.can_edit_messages,
can_delete_messages=bot_member.can_delete_messages,
can_invite_users=bot_member.can_invite_users,
can_restrict_members=bot_member.can_restrict_members,
can_pin_messages=bot_member.can_pin_messages,
can_manage_chat=bot_member.can_manage_chat,
can_manage_video_chats=bot_member.can_manage_video_chats,
)
except BadRequest as err:
if err.message == "User_not_mutual_contact":
await message.edit_text(
"I can't promote someone who isn't in the group"
)
else:
await message.edit_text("An error occurred while promoting.")
return
await message.edit_text(
f"Successfully promoted <b>{user_member.user.first_name or user_id}</b>!",
parse_mode=ParseMode.HTML,
)
await query.answer("Done")
log_message = (
f"<b>{html.escape(chat.title)}:</b>\n"
f"#PROMOTED\n"
f"<b>Admin:</b> {mention_html(admin_user.id, admin_user.first_name)}\n"
f"<b>User:</b> {mention_html(user_member.user.id, user_member.user.first_name)}"
)
return log_message
elif splitter[1] == "demote":
demoter = await chat.get_member(admin_user.id)
if not (
demoter.can_promote_members
if isinstance(demoter, ChatMemberAdministrator)
else None or demoter.status == ChatMemberStatus.OWNER
):
await query.answer(
"You don't have the necessary rights to do that!", show_alert=True
)
return
try:
user_id = int(splitter[2])
except:
user_id = splitter[2]
await message.edit_text(
"You don't seem to be referring to a user or the ID specified is incorrect.."
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if user_member.status == ChatMemberStatus.OWNER:
await message.edit_text(
"This person CREATED the chat, how would I demote them?"
)
return
if not user_member.status == ChatMemberStatus.ADMINISTRATOR:
await message.edit_text("Can't demote what wasn't promoted!")
return
if user_id == bot.id:
await message.edit_text(
"I can't demote myself!, get an admin to do it for me."
)
return
try:
await bot.promoteChatMember(
chat.id,
user_id,
can_change_info=False,
can_post_messages=False,
can_edit_messages=False,
can_delete_messages=False,
can_invite_users=False,
can_restrict_members=False,
can_pin_messages=False,
can_promote_members=False,
can_manage_chat=False,
can_manage_video_chats=False,
)
await message.edit_text(
f"Successfully demoted <b>{user_member.user.first_name or user_id}</b>!",
parse_mode=ParseMode.HTML,
)
await query.answer("Done")
log_message = (
f"<b>{html.escape(chat.title)}:</b>\n"
f"#DEMOTE\n"
f"<b>Admin:</b> {mention_html(admin_user.id, admin_user.first_name)}\n"
f"<b>User:</b> {mention_html(user_member.user.id, user_member.user.first_name)}"
)
return log_message
except BadRequest:
await message.edit_text(
"Could not demote. I might not be admin, or the admin status was appointed by another"
" user, so I can't act upon them!"
)
return
elif splitter[1] == "title":
title = splitter[3]
admin_member = await chat.get_member(admin_user.id)
if (
not (
(
admin_member.can_promote_members
if isinstance(admin_member, ChatMemberAdministrator)
else None
)
or admin_member.status == ChatMemberStatus.OWNER
)
and admin_user.id not in DRAGONS
):
await query.answer("You don't have the necessary rights to do that!")
return
try:
user_id = int(splitter[2])
except:
await message.edit_text(
"You don't seem to be referring to a user or the ID specified is incorrect...",
)
return
try:
user_member = await chat.get_member(user_id)
except:
return
if user_member.status == ChatMemberStatus.OWNER:
await message.edit_text(
"This person CREATED the chat, how can I set a custom title for him?",
)
return
if user_member.status != ChatMemberStatus.ADMINISTRATOR:
await message.edit_text(
"Can't set a title for non-admins! Promote them first to set a custom title!",
)
return
if user_id == bot.id:
await message.edit_text(
"I can't set my own title myself! Get the one who made me admin to do it for me.",
)
return
if not title:
await message.edit_text("Setting a blank title doesn't do anything!")
return
if len(title) > 16:
await message.edit_text(
"The title length is longer than 16 characters. Truncating it to 16 characters.",
)
try:
await bot.setChatAdministratorCustomTitle(chat.id, user_id, title)
except BadRequest:
await message.edit_text(
"Either they aren't promoted by me or you set a title text that is impossible to set."
)
return
await message.edit_text(
text=f"Successfully set title for <code>{user_member.user.first_name or user_id}</code> "
f"to <code>{html.escape(title[:16])}</code>!",
parse_mode=ParseMode.HTML,
)
elif splitter[1] == "pin":
admin_member = await chat.get_member(admin_user.id)
if (
not (
(
admin_member.can_pin_messages
if isinstance(admin_member, ChatMemberAdministrator)
else None
)
or admin_member.status == ChatMemberStatus.OWNER
)
and admin_user.id not in DRAGONS
):
await query.answer(
"You don't have the necessary rights to do that!", show_alert=True
)
return
try:
message_id = int(splitter[2])
except:
return
is_silent = bool(splitter[3])
is_group = chat.type != "private" and chat.type != "channel"
if is_group:
try:
await bot.pinChatMessage(
chat.id,
message_id,
disable_notification=is_silent,
)
except BadRequest as excp:
if excp.message == "Chat_not_modified":
pass
else:
raise
await message.edit_text("Done Pinned.")
log_message = (
f"<b>{html.escape(chat.title)}</b>\n"
f"#PINNED\n"
f"<b>Admin:</b> {mention_html(admin_user.id, html.escape(admin_user.first_name))}"
)
return log_message
elif splitter[1] == "unpin":
admin_member = await chat.get_member(admin_user.id)
if (
not (
(
admin_member.can_pin_messages
if isinstance(admin_member, ChatMemberAdministrator)
else None
)
or admin_member.status == ChatMemberStatus.OWNER
)
and admin_user.id not in DRAGONS
):
await query.answer(
"You don't have the necessary rights to do that!",
show_alert=True,
)
return
try:
await bot.unpinChatMessage(chat.id)
except BadRequest as excp:
if excp.message == "Chat_not_modified":
pass
elif excp.message == "Message_to_unpin_not_found":
await message.edit_text("No pinned message found")
return
else:
raise
log_message = (
f"<b>{html.escape(chat.title)}:</b>\n"
f"#UNPINNED\n"
f"<b>Admin:</b> {mention_html(admin_user.id, html.escape(admin_user.first_name))}"
)
return log_message
elif splitter[1] == "unpinall":
admin_member = await chat.get_member(admin_user.id)
if (
not admin_member.status == ChatMemberStatus.OWNER
and admin_user.id not in DRAGONS
):
await query.answer("Only chat OWNER can unpin all messages.")
return
try:
if chat.is_forum:
await bot.unpin_all_forum_topic_messages(
chat.id, message.message_thread_id
)
else:
await bot.unpin_all_chat_messages(chat.id)
except BadRequest as excp:
if excp.message == "Chat_not_modified":
pass
else:
raise
await message.edit_text("Done unpinning all messages.")
log_message = (
f"<b>{html.escape(chat.title)}:</b>\n"
f"#UNPINNED-ALL\n"
f"<b>ADMIN:</b> {mention_html(admin_user.id, html.escape(admin_user.first_name))}"
)
return log_message
# <=================================================== HELP ====================================================>
__help__ = """
Β» /adminlist: List of admins in the chat.
β *Admins only:*
Β» /pin: Silently pins the message replied to. Add 'loud' or 'notify' to give notifications to users.
Β» /unpin: Unpins the currently pinned message.
Β» /unpinall: Unpins all the pinned messages. Works in topics too (only OWNER can do this).
Β» /invitelink: Get an invite link.
Β» /promote: Promotes the user replied to.
Β» /fullpromote: FullPromotes the user replied to.
Β» /demote: Demotes the user replied to.
Β» /title <Title here>: Sets a custom title for an admin that the bot promoted.
Β» /admincache: Force refresh the admins list.
"""
# <================================================ HANDLER =======================================================>
ADMINLIST_HANDLER = DisableAbleCommandHandler("adminlist", adminlist, block=False)
PIN_HANDLER = CommandHandler("pin", pin, filters=filters.ChatType.GROUPS, block=False)
UNPIN_HANDLER = CommandHandler(
"unpin", unpin, filters=filters.ChatType.GROUPS, block=False
)
UNPINALL_HANDLER = CommandHandler(
"unpinall", unpinall, filters=filters.ChatType.GROUPS, block=False
)
INVITE_HANDLER = DisableAbleCommandHandler("invitelink", invite, block=False)
PROMOTE_HANDLER = DisableAbleCommandHandler("promote", promote, block=False)
FULLPROMOTE_HANDLER = DisableAbleCommandHandler("fullpromote", fullpromote, block=False)
DEMOTE_HANDLER = DisableAbleCommandHandler("demote", demote, block=False)
SET_TITLE_HANDLER = CommandHandler("title", set_title, block=False)
ADMIN_REFRESH_HANDLER = CommandHandler(
"admincache", refresh_admin, filters=filters.ChatType.GROUPS, block=False
)
ADMIN_CALLBACK_HANDLER = CallbackQueryHandler(
admin_callback, block=False, pattern=r"admin_"
)
function(ADMINLIST_HANDLER)
function(PIN_HANDLER)
function(UNPIN_HANDLER)
function(UNPINALL_HANDLER)
function(INVITE_HANDLER)
function(PROMOTE_HANDLER)
function(FULLPROMOTE_HANDLER)
function(DEMOTE_HANDLER)
function(SET_TITLE_HANDLER)
function(ADMIN_REFRESH_HANDLER)
function(ADMIN_CALLBACK_HANDLER)
__mod_name__ = "ADMIN"
__command_list__ = [
"adminlist",
"admins",
"invitelink",
"promote",
"demote",
"admincache",
"fullpromote",
"setgpic",
"delgpic",
]
__handlers__ = [
ADMINLIST_HANDLER,
PIN_HANDLER,
UNPIN_HANDLER,
INVITE_HANDLER,
PROMOTE_HANDLER,
DEMOTE_HANDLER,
SET_TITLE_HANDLER,
ADMIN_REFRESH_HANDLER,
]
# <================================================ END =======================================================>
|