Ejemplo n.º 1
0
def gbanlist(bot: Bot, update: Update):

    banned_users = sql.get_gban_list()

    if not banned_users:

        update.effective_message.reply_text(
            "There aren't any gbanned users! You're kinder than I expected...")

        return

    banfile = 'Screw these guys.\n'

    for user in banned_users:

        banfile += "[x] {} - {}\n".format(user["name"], user["user_id"])

        if user["reason"]:

            banfile += "Reason: {}\n".format(user["reason"])

    with BytesIO(str.encode(banfile)) as output:

        output.name = "gbanlist.txt"

        update.effective_message.reply_document(
            document=output,
            filename="gbanlist.txt",
            caption="Here is the list of currently gbanned users.")
Ejemplo n.º 2
0
def gbancleanup(bot: Bot, update: Update):
    banned = sql.get_gban_list()

    for user in banned:
        user_id = user["user_id"]
        time.sleep(0.1)
        try:
            bot.get_chat(user_id)
        except BadRequest:
            sql.ungban_user(user_id)
    bot.sendMessage(update.effective_chat.id, "OwO! Done!")
Ejemplo n.º 3
0
def clear_gbans(bot: Bot, update: Update):
    banned = sql.get_gban_list()
    deleted = 0
    update.message.reply_text(
        "*Beginning to cleanup deleted users from global ban database...*\nThis process might take a while...",
        parse_mode=ParseMode.MARKDOWN)
    for user in banned:
        id = user["user_id"]
        time.sleep(0.1)  # Reduce floodwait
        try:
            bot.get_chat(id)
        except BadRequest:
            deleted += 1
            sql.ungban_user(id)
    update.message.reply_text("Done! {} deleted accounts were removed " \
    "from the gbanlist.".format(deleted), parse_mode=ParseMode.MARKDOWN)
Ejemplo n.º 4
0
def get_invalid_gban(bot: Bot, update: Update, remove: bool = False):
    banned = gban_sql.get_gban_list()
    ungbanned_users = 0
    ungban_list = []

    for user in banned:
        user_id = user["user_id"]
        sleep(0.1)
        try:
            bot.get_chat(user_id)
        except BadRequest:
            ungbanned_users += 1
            ungban_list.append(user_id)
        except:
            pass

    if not remove:
        return ungbanned_users
    else:
        for user_id in ungban_list:
            sleep(0.1)
            gban_sql.ungban_user(user_id)
        return ungbanned_users