Beispiel #1
0
def ungmute(bot: Bot, update: Update, args: List[str]):

    message = update.effective_message  # type: Optional[Message]

    user_id = extract_user(message, args)

    if not user_id:

        message.reply_text("You don't seem to be referring to a user.")

        return

    user_chat = bot.get_chat(user_id)

    if user_chat.type != 'private':

        message.reply_text("That's not a user!")

        return

    if not sql.is_user_gmuted(user_id):

        message.reply_text("This user is not gmuted!")

        return

    muter = update.effective_user  # type: Optional[User]

    message.reply_text("I'll let {} speak again, globally.".format(
        user_chat.first_name))

    send_to_list(bot,
                 SUDO_USERS + SUPPORT_USERS,
                 "{} has ungmuted user {}".format(
                     mention_html(muter.id, muter.first_name),
                     mention_html(user_chat.id, user_chat.first_name)),
                 html=True)

    chats = get_all_chats()

    for chat in chats:

        chat_id = chat.chat_id

        # Check if this group has disabled gmutes

        if not sql.does_chat_gban(chat_id):

            continue

        try:

            member = bot.get_chat_member(chat_id, user_id)

            if member.status == 'restricted':

                bot.restrict_chat_member(chat_id,
                                         int(user_id),
                                         can_send_messages=True,
                                         can_send_media_messages=True,
                                         can_send_other_messages=True,
                                         can_add_web_page_previews=True)

        except BadRequest as excp:

            if excp.message == "User is an administrator of the chat":

                pass

            elif excp.message == "Chat not found":

                pass

            elif excp.message == "Not enough rights to restrict/unrestrict chat member":

                pass

            elif excp.message == "User_not_participant":

                pass

            elif excp.message == "Method is available for supergroup and channel chats only":

                pass

            elif excp.message == "Not in the chat":

                pass

            elif excp.message == "Channel_private":

                pass

            elif excp.message == "Chat_admin_required":

                pass

            else:

                message.reply_text("Could not un-gmute due to: {}".format(
                    excp.message))

                bot.send_message(
                    OWNER_ID,
                    "Could not un-gmute due to: {}".format(excp.message))

                return

        except TelegramError:

            pass

    sql.ungmute_user(user_id)

    send_to_list(bot, SUDO_USERS + SUPPORT_USERS, "un-gmute complete!")

    message.reply_text("Person has been un-gmuted.")
Beispiel #2
0
def gban(bot: Bot, update: Update, args: List[str]):

    message = update.effective_message  # type: Optional[Message]

    user_id, reason = extract_user_and_text(message, args)

    if not user_id:

        message.reply_text("You don't seem to be referring to a person.")

        return

    if int(user_id) in SUDO_USERS:

        message.reply_text(
            "I spy, with my little eye... a sudo user war! Why are you guys turning on each other?"
        )

        return

    if int(user_id) in SUPPORT_USERS:

        message.reply_text(
            "OOOH someone's trying to gban a support user! *grabs popcorn*")

        return

    if user_id == bot.id:

        message.reply_text(
            "-_- So funny, lets gban myself why don't I? Nice try. Earth That is my price!"
        )

        return

    try:

        user_chat = bot.get_chat(user_id)

    except BadRequest as excp:

        message.reply_text(excp.message)

        return

    if user_chat.type != 'private':

        message.reply_text("That's not a user!")

        return

    if sql.is_user_gbanned(user_id):

        if not reason:

            message.reply_text(
                "This person is already gbanned; I'd change the reason, but you haven't given me one..."
            )

            return

        old_reason = sql.update_gban_reason(
            user_id, user_chat.username or user_chat.first_name, reason)

        if old_reason:

            message.reply_text(
                "This person is already gbanned, for the following reason:\n"
                "<code>{}</code>\n"
                "I've gone and updated it with your new reason!".format(
                    html.escape(old_reason)),
                parse_mode=ParseMode.HTML)

        else:

            message.reply_text(
                "This person is already gbanned, but had no reason set; I've gone and updated it!"
            )

        return

    ok123 = mention_html(user_chat.id, user_chat.first_name)

    text12 = f"*Summoning all infinity stones* The end is near. ☠️ {ok123}."

    update.effective_message.reply_text(text12, parse_mode=ParseMode.HTML)

    banner = update.effective_user  # type: Optional[User]

    send_to_list(bot, SUDO_USERS + SUPPORT_USERS,

                 "<b>Global Ban</b>" \

                 "\n#GBAN" \

                 "\n<b>Status:</b> <code>Enforcing</code>" \

                 "\n<b>Sudo Admin:</b> {}" \

                 "\n<b>User:</b> {}" \

                 "\n<b>ID:</b> <code>{}</code>" \

                 "\n<b>Reason:</b> {}".format(mention_html(banner.id, banner.first_name),

                                              mention_html(user_chat.id, user_chat.first_name),

                                                           user_chat.id, reason or "No reason given"),

                html=True)

    sql.gban_user(user_id, user_chat.username or user_chat.first_name, reason)

    chats = get_all_chats()

    for chat in chats:

        chat_id = chat.chat_id

        # Check if this group has disabled gbans

        if not sql.does_chat_gban(chat_id):

            continue

        try:

            bot.kick_chat_member(chat_id, user_id)

        except BadRequest as excp:

            if excp.message in GBAN_ERRORS:

                pass

            else:

                message.reply_text("Could not gban due to: {}".format(
                    excp.message))

                send_to_list(bot, SUDO_USERS + SUPPORT_USERS,
                             "Could not gban due to: {}".format(excp.message))

                sql.ungban_user(user_id)

                return

        except TelegramError:

            pass

    send_to_list(bot,
                 SUDO_USERS + SUPPORT_USERS,
                 "{} has been successfully gbanned!".format(
                     mention_html(user_chat.id, user_chat.first_name)),
                 html=True)

    text13 = f"Justice has been done with {ok123} 😉 'Peace'."

    update.effective_message.reply_text(text13, parse_mode=ParseMode.HTML)
Beispiel #3
0
def ungban(bot: Bot, update: Update, args: List[str]):

    message = update.effective_message  # type: Optional[Message]

    user_id = extract_user(message, args)

    if not user_id:

        message.reply_text("You don't seem to be referring to a person.")

        return

    user_chat = bot.get_chat(user_id)

    if user_chat.type != 'private':

        message.reply_text("That's not a person!")

        return

    if not sql.is_user_gbanned(user_id):

        message.reply_text("This person is not gbanned!")

        return

    banner = update.effective_user  # type: Optional[User]

    message.reply_text(
        "I'll give {} a second chance, globally.I do not ask for your trust.I demand only your obedience."
        .format(user_chat.first_name))



    send_to_list(bot, SUDO_USERS + SUPPORT_USERS,

                 "<b>Regression of Global Ban</b>" \

                 "\n#UNGBAN" \

                 "\n<b>Status:</b> <code>Ceased</code>" \

                 "\n<b>Sudo Admin:</b> {}" \

                 "\n<b>User:</b> {}" \

                 "\n<b>ID:</b> <code>{}</code>".format(mention_html(banner.id, banner.first_name),

                                                       mention_html(user_chat.id, user_chat.first_name),

                                                                    user_chat.id),

                html=True)

    chats = get_all_chats()

    for chat in chats:

        chat_id = chat.chat_id

        # Check if this group has disabled gbans

        if not sql.does_chat_gban(chat_id):

            continue

        try:

            member = bot.get_chat_member(chat_id, user_id)

            if member.status == 'kicked':

                bot.unban_chat_member(chat_id, user_id)

        except BadRequest as excp:

            if excp.message in UNGBAN_ERRORS:

                pass

            else:

                message.reply_text("Could not un-gban due to: {}".format(
                    excp.message))

                bot.send_message(
                    OWNER_ID,
                    "Could not un-gban due to: {}".format(excp.message))

                return

        except TelegramError:

            pass

    sql.ungban_user(user_id)

    send_to_list(bot,
                 SUDO_USERS + SUPPORT_USERS,
                 "{} has been successfully un-gbanned!".format(
                     mention_html(user_chat.id, user_chat.first_name)),
                 html=True)

    message.reply_text(
        "Person has been un-gbanned.The hardest choices require the strongest wills.😐"
    )
Beispiel #4
0
def gmute(bot: Bot, update: Update, args: List[str]):

    message = update.effective_message  # type: Optional[Message]

    user_id, reason = extract_user_and_text(message, args)

    if not user_id:

        message.reply_text("You don't seem to be referring to a person.")

        return

    if int(user_id) in SUDO_USERS:

        message.reply_text(
            "I spy, with my little eye... a sudo user war! Why are you guys turning on each other?"
        )

        return

    if int(user_id) in SUPPORT_USERS:

        message.reply_text(
            "OOOH someone's trying to gmute a support user! *grabs popcorn*")

        return

    if user_id == bot.id:

        message.reply_text(
            "-_- So funny, lets gmute myself why don't I? Nice try.")

        return

    try:

        user_chat = bot.get_chat(user_id)

    except BadRequest as excp:

        message.reply_text(excp.message)

        return

    if user_chat.type != 'private':

        message.reply_text("That's not a user!")

        return

    if sql.is_user_gmuted(user_id):

        if not reason:

            message.reply_text(
                "This user is already gmuted; I'd change the reason, but you haven't given me one..."
            )

            return

        success = sql.update_gmute_reason(
            user_id, user_chat.username or user_chat.first_name, reason)

        if success:

            message.reply_text(
                "This user is already gmuted; I've gone and updated the gmute reason though!"
            )

        else:

            message.reply_text(
                "Do you mind trying again? I thought this person was gmuted, but then they weren't? "
                "Am very confused")

        return

    message.reply_text("*Gets duct tape ready* 😉")

    muter = update.effective_user  # type: Optional[User]

    send_to_list(bot,
                 SUDO_USERS + SUPPORT_USERS,
                 "{} is gmuting user {} "
                 "because:\n{}".format(
                     mention_html(muter.id, muter.first_name),
                     mention_html(user_chat.id, user_chat.first_name), reason
                     or "No reason given"),
                 html=True)

    sql.gmute_user(user_id, user_chat.username or user_chat.first_name, reason)

    chats = get_all_chats()

    for chat in chats:

        chat_id = chat.chat_id

        # Check if this group has disabled gmutes

        if not sql.does_chat_gban(chat_id):

            continue

        try:

            bot.restrict_chat_member(chat_id, user_id, can_send_messages=False)

        except BadRequest as excp:

            if excp.message == "User is an administrator of the chat":

                pass

            elif excp.message == "Chat not found":

                pass

            elif excp.message == "Not enough rights to restrict/unrestrict chat member":

                pass

            elif excp.message == "User_not_participant":

                pass

            elif excp.message == "Peer_id_invalid":  # Suspect this happens when a group is suspended by telegram.

                pass

            elif excp.message == "Group chat was deactivated":

                pass

            elif excp.message == "Need to be inviter of a user to kick it from a basic group":

                pass

            elif excp.message == "Chat_admin_required":

                pass

            elif excp.message == "Only the creator of a basic group can kick group administrators":

                pass

            elif excp.message == "Method is available only for supergroups":

                pass

            elif excp.message == "Can't demote chat creator":

                pass

            else:

                message.reply_text("Could not gmute due to: {}".format(
                    excp.message))

                send_to_list(bot, SUDO_USERS + SUPPORT_USERS,
                             "Could not gmute due to: {}".format(excp.message))

                sql.ungmute_user(user_id)

                return

        except TelegramError:

            pass

    send_to_list(bot, SUDO_USERS + SUPPORT_USERS, "gmute complete!")

    message.reply_text("Person has been gmuted.")
Beispiel #5
0
def fed_ban(bot: Bot, update: Update, args: List[str]):
	chat = update.effective_chat  # type: Optional[Chat]
	user = update.effective_user  # type: Optional[User]
	fed_id = sql.get_fed_id(chat.id)

	if not fed_id:
		update.effective_message.reply_text("This group is not a part of any federation!")
		return

	info = sql.get_fed_info(fed_id)
	OW = bot.get_chat(info['owner'])
	HAHA = OW.id
	FEDADMIN = sql.all_fed_users(fed_id)
	FEDADMIN.append(int(HAHA))

	if is_user_fed_admin(fed_id, user.id) == False:
		update.effective_message.reply_text("Only federation admins can do this!")
		return

	message = update.effective_message  # type: Optional[Message]

	user_id, reason = extract_user_and_text(message, args)

	fban, fbanreason = sql.get_fban_user(fed_id, user_id)

	if not user_id:
		message.reply_text("You don't seem to be referring to a user")
		return

	if user_id == bot.id:
		message.reply_text("What is funnier than kicking the group creator? Self sacrifice.")
		return

	if is_user_fed_owner(fed_id, user_id) == True:
		message.reply_text("Why did you try the federation fban?")
		return

	if is_user_fed_admin(fed_id, user_id) == True:
		message.reply_text("He is a federation admin, I can't fban him.")
		return

	if user_id == OWNER_ID:
		message.reply_text("I don't want to block my master, that's a very stupid idea!")
		return

	if int(user_id) in SUDO_USERS:
		message.reply_text("I will not use sudo fban!")
		return

	if int(user_id) in WHITELIST_USERS:
		message.reply_text("This person is whitelisted, so they can't be fban!")
		return

	try:
		user_chat = bot.get_chat(user_id)
	except BadRequest as excp:
		message.reply_text(excp.message)
		return

	if user_chat.type != 'private':
		message.reply_text("That's not a user!")
		return

	if fban:
		user_target = mention_html(user_chat.id, user_chat.first_name)
		fed_name = info['fname']
		starting = "The reason fban is replaced for {} in the Federation <b>{}</b>.".format(user_target, fed_name)
		update.effective_message.reply_text(starting, parse_mode=ParseMode.HTML)

		if reason == "":
			reason = "No reason given."

		temp = sql.un_fban_user(fed_id, user_id)
		if not temp:
			message.reply_text("Failed to update the reason for fedban!")
			return
		x = sql.fban_user(fed_id, user_id, user_chat.first_name, user_chat.last_name, user_chat.username, reason)
		if not x:
			message.reply_text("Failed to ban from the federation! If this problem continues, contact @onepunchsupport.")
			return

		fed_chats = sql.all_fed_chats(fed_id)
		for chat in fed_chats:
			try:
				bot.kick_chat_member(chat, user_id)
			except BadRequest as excp:
				if excp.message in FBAN_ERRORS:
					pass
				else:
					LOGGER.warning("Could not fban on {} because: {}".format(chat, excp.message))
			except TelegramError:
				pass

		send_to_list(bot, FEDADMIN,
				 "<b>FedBan reason updated</b>" \
							 "\n<b>Federation:</b> {}" \
							 "\n<b>Federation Admin:</b> {}" \
							 "\n<b>User:</b> {}" \
							 "\n<b>User ID:</b> <code>{}</code>" \
							 "\n<b>Reason:</b> {}".format(fed_name, mention_html(user.id, user.first_name),
									   mention_html(user_chat.id, user_chat.first_name),
													user_chat.id, reason), 
				html=True)
		message.reply_text("FedBan reason has been updated.")
		return

	user_target = mention_html(user_chat.id, user_chat.first_name)
	fed_name = info['fname']

	starting = "Starting a federation ban for {} in the Federation <b>{}</b>.".format(user_target, fed_name)
	update.effective_message.reply_text(starting, parse_mode=ParseMode.HTML)

	if reason == "":
		reason = "No reason given."

	x = sql.fban_user(fed_id, user_id, user_chat.first_name, user_chat.last_name, user_chat.username, reason)
	if not x:
		message.reply_text("Failed to ban from the federation! If this problem continues, contact @onepunchsupport.")
		return

	fed_chats = sql.all_fed_chats(fed_id)
	for chat in fed_chats:
		try:
			bot.kick_chat_member(chat, user_id)
		except BadRequest as excp:
			if excp.message in FBAN_ERRORS:
				try:
					dispatcher.bot.getChat(chat)
				except Unauthorized:
					sql.chat_leave_fed(chat)
					LOGGER.info("Chat {} has leave fed {} because bot is kicked".format(chat, info['fname']))
					continue
			else:
				LOGGER.warning("Cannot fban on {} because: {}".format(chat, excp.message))
		except TelegramError:
			pass

	send_to_list(bot, FEDADMIN,
			 "<b>New FedBan</b>" \
			 "\n<b>Federation:</b> {}" \
			 "\n<b>Federation Admin:</b> {}" \
			 "\n<b>User:</b> {}" \
			 "\n<b>User ID:</b> <code>{}</code>" \
			 "\n<b>Reason:</b> {}".format(fed_name, mention_html(user.id, user.first_name),
								   mention_html(user_chat.id, user_chat.first_name),
												user_chat.id, reason), 
			html=True)
	message.reply_text("This person has been fbanned")