コード例 #1
0
def locks(client, message, redis):
    type = message.chat.type
    userID = message.from_user.id
    userFN = Name(message.from_user.first_name)
    chatID = message.chat.id
    rank = isrank(redis, userID, chatID)
    text = message.text
    title = message.chat.title
    lang = Glang(redis, chatID)
    moduleCMD = "lang." + lang + "-cmd"
    moduleREPLY = "lang." + lang + "-reply"
    c = importlib.import_module(moduleCMD)
    r = importlib.import_module(moduleREPLY)
    T = text.split(" ")[1]
    if text == c.Lurl:
        get = redis.sismember("{}Nbot:Llink".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Llink", T, redis)
        else:
            save = redis.sadd("{}Nbot:Llink".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Llink", T, redis)

    if text == c.Uurl:
        get = redis.sismember("{}Nbot:Llink".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Llink".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Llink", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Llink", T, redis)

    if text == c.Lphoto:
        get = redis.sismember("{}Nbot:Lphoto".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lphoto", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lphoto".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lphoto", T, redis)

    if text == c.Uphoto:
        get = redis.sismember("{}Nbot:Lphoto".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lphoto".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lphoto", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lphoto", T, redis)

    if text == c.Lusername:
        get = redis.sismember("{}Nbot:Lusername".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lusername", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lusername".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lusername", T, redis)

    if text == c.Uusername:
        get = redis.sismember("{}Nbot:Lusername".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lusername".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lusername", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lusername", T, redis)

    if text == c.Ltag:
        get = redis.sismember("{}Nbot:Ltag".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Ltag", T, redis)
        else:
            save = redis.sadd("{}Nbot:Ltag".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Ltag", T, redis)

    if text == c.Utag:
        get = redis.sismember("{}Nbot:Ltag".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Ltag".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Ltag", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Ltag", T, redis)

    if text == c.Lvideo:
        get = redis.sismember("{}Nbot:Lvideo".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lvideo", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lvideo".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lvideo", T, redis)

    if text == c.Uvideo:
        get = redis.sismember("{}Nbot:Lvideo".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lvideo".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lvideo", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lvideo", T, redis)

    if text == c.Lgifs:
        get = redis.sismember("{}Nbot:Lgifs".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lgifs", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lgifs".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lgifs", T, redis)

    if text == c.Ugifs:
        get = redis.sismember("{}Nbot:Lgifs".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lgifs".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lgifs", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lgifs", T, redis)

    if text == c.Lsticker:
        get = redis.sismember("{}Nbot:Lsticker".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lsticker", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lsticker".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lsticker", T, redis)

    if text == c.Usticker:
        get = redis.sismember("{}Nbot:Lsticker".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lsticker".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lsticker", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lsticker", T, redis)

    if text == c.Lfiles:
        get = redis.sismember("{}Nbot:Lfiles".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lfiles", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lfiles".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lfiles", T, redis)

    if text == c.Ufiles:
        get = redis.sismember("{}Nbot:Lfiles".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lfiles".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lfiles", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lfiles", T, redis)

    if text == c.Lmusic:
        get = redis.sismember("{}Nbot:Lmusic".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lmusic", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lmusic".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lmusic", T, redis)

    if text == c.Umusic:
        get = redis.sismember("{}Nbot:Lmusic".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lmusic".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lmusic", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lmusic", T, redis)

    if text == c.Lfwd:
        get = redis.sismember("{}Nbot:Lfwd".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lfwd", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lfwd".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lfwd", T, redis)

    if text == c.Ufwd:
        get = redis.sismember("{}Nbot:Lfwd".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lfwd".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lfwd", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lfwd", T, redis)

    if text == c.Lvoice:
        get = redis.sismember("{}Nbot:Lvoice".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lvoice", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lvoice".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lvoice", T, redis)

    if text == c.Uvoice:
        get = redis.sismember("{}Nbot:Lvoice".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lvoice".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lvoice", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lvoice", T, redis)

    if text == c.Lcontact:
        get = redis.sismember("{}Nbot:Lcontact".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lcontact", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lcontact".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lcontact", T, redis)

    if text == c.Ucontact:
        get = redis.sismember("{}Nbot:Lcontact".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lcontact".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lcontact", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lcontact", T, redis)

    if text == c.Lmarkdown:
        get = redis.sismember("{}Nbot:Lmarkdown".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lmarkdown", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lmarkdown".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lmarkdown", T, redis)

    if text == c.Umarkdown:
        get = redis.sismember("{}Nbot:Lmarkdown".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lmarkdown".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lmarkdown", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lmarkdown", T, redis)

    if text == c.Lbots:
        get = redis.sismember("{}Nbot:Lbots".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lbots", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lbots".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lbots", T, redis)

    if text == c.Ubots:
        get = redis.sismember("{}Nbot:Lbots".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lbots".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lbots", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lbots", T, redis)

    if text == c.Ledits:
        get = redis.sismember("{}Nbot:Ledits".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Ledits", T, redis)
        else:
            save = redis.sadd("{}Nbot:Ledits".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Ledits", T, redis)

    if text == c.Uedits:
        get = redis.sismember("{}Nbot:Ledits".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Ledits".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Ledits", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Ledits", T, redis)

    if text == c.Larabic:
        get = redis.sismember("{}Nbot:Larabic".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Larabic", T, redis)
        else:
            save = redis.sadd("{}Nbot:Larabic".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Larabic", T, redis)

    if text == c.Uarabic:
        get = redis.sismember("{}Nbot:Larabic".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Larabic".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Larabic", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Larabic", T, redis)

    if text == c.Lenglish:
        get = redis.sismember("{}Nbot:Lenglish".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lenglish", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lenglish".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lenglish", T, redis)

    if text == c.Uenglish:
        get = redis.sismember("{}Nbot:Lenglish".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lenglish".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lenglish", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lenglish", T, redis)

    if text == c.Linline:
        get = redis.sismember("{}Nbot:Linline".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Linline", T, redis)
        else:
            save = redis.sadd("{}Nbot:Linline".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Linline", T, redis)

    if text == c.Uinline:
        get = redis.sismember("{}Nbot:Linline".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Linline".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Linline", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Linline", T, redis)

    if text == c.Lchat:
        Bot("setChatPermissions", {"chat_id": chatID})
        send_msg("LUN", client, message, r.lock, "Lchat", T, redis)

    if text == c.Uchat:
        Bot(
            "setchatpermissions", {
                "chat_id":
                chatID,
                "permissions":
                json.dumps({
                    "can_send_messages": True,
                    "can_send_media_messages": True,
                    "can_send_polls": True,
                    "can_send_other_messages": True,
                    "can_invite_users": True,
                    "can_add_web_page_previews": True
                })
            })
        send_msg("LUN", client, message, r.unlock, "Lchat", T, redis)

    if text == c.Ljoin:
        get = redis.sismember("{}Nbot:Ljoin".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Ljoin", T, redis)
        else:
            save = redis.sadd("{}Nbot:Ljoin".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Ljoin", T, redis)

    if text == c.Ujoin:
        get = redis.sismember("{}Nbot:Ljoin".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Ljoin".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Ljoin", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Ljoin", T, redis)

    if text == c.Llongtext:
        get = redis.sismember("{}Nbot:Llongtext".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Llongtext", T, redis)
        else:
            save = redis.sadd("{}Nbot:Llongtext".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Llongtext", T, redis)

    if text == c.Ulongtext:
        get = redis.sismember("{}Nbot:Llongtext".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Llongtext".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Llongtext", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Llongtext", T, redis)

    if text == c.Lall:
        get = redis.sismember("{}Nbot:Lall".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lall", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lall".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lall", T, redis)

    if text == c.Uall:
        get = redis.sismember("{}Nbot:Lall".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lall".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lall", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lall", T, redis)

    if text == c.Lnote:
        get = redis.sismember("{}Nbot:Lnote".format(BOT_ID), chatID)
        if get:
            send_msg("LUN", client, message, r.locked, "Lnote", T, redis)
        else:
            save = redis.sadd("{}Nbot:Lnote".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.lock, "Lnote", T, redis)

    if text == c.Unote:
        get = redis.sismember("{}Nbot:Lnote".format(BOT_ID), chatID)
        if get:
            save = redis.srem("{}Nbot:Lnote".format(BOT_ID), chatID)
            send_msg("LU", client, message, r.unlock, "Lnote", T, redis)
        else:
            send_msg("LUN", client, message, r.unlocked, "Lnote", T, redis)
    if rank != "admin" and rank != "owner":
        if text == c.Lpin:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:Lpin".format(BOT_ID), chatID)
            if get:
                save = redis.srem("{}Nbot:Lpin".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Upin:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:Lpin".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:Lpin".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

    if rank != "admin":
        if text == c.LwelcomeSend:
            R = text.split(" ")[1]
            get = redis.sismember("{}Nbot:welcomeSend".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:welcomeSend".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.UwelcomeSend:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:welcomeSend".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:welcomeSend".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

    if rank != "admin":
        if text == c.Lbancheck:
            R = text.split(" ")[1]
            get = redis.sismember("{}Nbot:bancheck".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:bancheck".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Ubancheck:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:bancheck".format(BOT_ID), chatID)
            if get:
                save = redis.srem("{}Nbot:bancheck".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Lreply:
            R = text.split(" ")[1]
            get = redis.sismember("{}Nbot:ReplySend".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:ReplySend".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Ureply:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:ReplySend".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:ReplySend".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.LreplyBOT:
            R = text.split(" ")[1]
            get = redis.sismember("{}Nbot:ReplySendBOT".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:ReplySendBOT".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.UreplyBOT:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:ReplySendBOT".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:ReplySendBOT".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Lkickme:
            R = text.split(" ")[1]
            get = redis.sismember("{}Nbot:kickme".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:kickme".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Ukickme:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:kickme".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:kickme".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.LID:
            R = text.split(" ")[1]
            get = redis.sismember("{}Nbot:IDSend".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:IDSend".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.UID:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:IDSend".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:IDSend".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if re.search(c.LIDPH, text):
            R = text.replace(c.stAd, "")
            get = redis.sismember("{}Nbot:IDSendPH".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:IDSendPH".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if re.search(c.UIDPH, text):
            R = text.replace(c.stUd, "")
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:IDSendPH".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:IDSendPH".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Lflood:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:Lflood".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:Lflood".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if text == c.Uflood:
            R = text.split(" ")[1]
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:Lflood".format(BOT_ID), chatID)
            if get:
                save = redis.srem("{}Nbot:Lflood".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if re.search(c.LIDpt, text):
            R = text.replace(c.stAd, "")
            get = redis.sismember("{}Nbot:IDpt".format(BOT_ID), chatID)
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            if get:
                save = redis.srem("{}Nbot:IDpt".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.ADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })

        if re.search(c.UIDpt, text):
            R = text.replace(c.stUd, "")
            BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID, userFN)
            get = redis.sismember("{}Nbot:IDpt".format(BOT_ID), chatID)
            if get:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADDed.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
            else:
                save = redis.sadd("{}Nbot:IDpt".format(BOT_ID), chatID)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.unADD.format(BY, R),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "disable_web_page_preview": True
                    })
コード例 #2
0
def delete(client, message, redis):
    #print(message)
    type = message.chat.type
    userID = message.from_user.id
    userFN = message.from_user.first_name
    chatID = message.chat.id
    rank = isrank(redis, userID, chatID)
    if message.text:
        text = message.text
    elif message.caption:
        text = message.caption
    else:
        text = 0
    lang = Glang(redis, chatID)
    moduleCMD = "lang." + lang + "-cmd"
    moduleREPLY = "lang." + lang + "-reply"
    c = importlib.import_module(moduleCMD)
    r = importlib.import_module(moduleREPLY)
    if redis.sismember("{}Nbot:restricteds".format(BOT_ID), userID):
        Bot(
            "restrictChatMember", {
                "chat_id": chatID,
                "user_id": userId,
                "can_send_messages": 0,
                "can_send_media_messages": 0,
                "can_send_other_messages": 0,
                "can_send_polls": 0,
                "can_change_info": 0,
                "can_add_web_page_previews": 0,
                "can_pin_messages": 0,
                "can_invite_users": 0,
            })
    if redis.sismember("{}Nbot:bans".format(BOT_ID), userID):
        Bot("kickChatMember", {"chat_id": chatID, "user_id": userID})

    if text:
        if text == c.kickme and not redis.sismember(
                "{}Nbot:kickme".format(BOT_ID), chatID):
            GetGprank = GPranks(userID, chatID)
            if GetGprank == "member":
                reply_markup = InlineKeyboardMarkup([[
                    InlineKeyboardButton(r.yes,
                                         callback_data=json.dumps(
                                             ["kickme-yes", "", userID])),
                    InlineKeyboardButton(r.no,
                                         callback_data=json.dumps(
                                             ["kickme-no", "", userID])),
                ]])
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.kickme,
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "reply_markup": reply_markup
                    })

        if re.findall(
                "[Hh][Tt][Tt][Pp][Ss]:/|[Hh][Tt][Tt][Pp]://|.[Ii][Rr]|.[Cc][Oo][Mm]|.[Oo][Rr][Gg]|.[Ii][Nn][Ff][Oo]|[Ww][Ww][Ww]|.[Tt][Kk]|.[Mm][Ee]",
                text):
            if redis.sismember("{}Nbot:Llink".format(BOT_ID), chatID):  #1
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Llink:res".format(BOT_ID), chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        if re.findall('@', text):
            if redis.sismember("{}Nbot:Lusername".format(BOT_ID), chatID):  #2
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Lusername:res".format(BOT_ID),
                                   chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        if message.forward_date:
            if redis.sismember("{}Nbot:Lfwd".format(BOT_ID), chatID):  #18
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Lfwd:res".format(BOT_ID), chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        if re.findall('#', text):
            if redis.sismember("{}Nbot:Ltag".format(BOT_ID), chatID):  #3
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Ltag:res".format(BOT_ID), chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        if re.findall("[a-zA-Z0-9$@$!%*?&#^-_. +]+", text):
            if redis.sismember("{}Nbot:Lenglish".format(BOT_ID), chatID):  #4
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Lenglish:res".format(BOT_ID),
                                   chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        if re.findall("[ا-ي٠-٩]", text):
            if redis.sismember("{}Nbot:Larabic".format(BOT_ID), chatID):  #5
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Larabic:res".format(BOT_ID),
                                   chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        Nlongtext = (redis.get("{}Nbot:Nlongtext".format(BOT_ID)) or 250)
        if len(text) >= Nlongtext:
            if redis.sismember("{}Nbot:Llongtext".format(BOT_ID), chatID):  #2
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                if redis.sismember("{}Nbot:Llongtext:res".format(BOT_ID),
                                   chatID):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })

        li = redis.smembers("{}Nbot:{}:blockTEXTs".format(BOT_ID, chatID))
        for word in li:
            if re.findall(word, text):
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })
                break


# text ^

    if message.entities:
        if redis.sismember("{}Nbot:Lmarkdown".format(BOT_ID), chatID):  #6
            for entitie in message.entities:
                if entitie.type is "text_link":
                    Bot("deleteMessage", {
                        "chat_id": chatID,
                        "message_id": message.message_id
                    })
                    if redis.sismember("{}Nbot:Lmarkdown:res".format(BOT_ID),
                                       chatID):
                        Bot(
                            "restrictChatMember", {
                                "chat_id": chatID,
                                "user_id": userId,
                                "can_send_messages": 0,
                                "can_send_media_messages": 0,
                                "can_send_other_messages": 0,
                                "can_send_polls": 0,
                                "can_change_info": 0,
                                "can_add_web_page_previews": 0,
                                "can_pin_messages": 0,
                                "can_invite_users": 0,
                            })

                    break

    if message.via_bot:
        if redis.sismember("{}Nbot:Linline".format(BOT_ID), chatID):  #7
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Linline:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.reply_markup:
        if redis.sismember("{}Nbot:Linline".format(BOT_ID), chatID):
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Linline:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.sticker:
        if redis.sismember("{}Nbot:Lsticker".format(BOT_ID), chatID):  #8
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lsticker:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

        elif redis.sismember("{}Nbot:{}:blockSTICKERs".format(BOT_ID, chatID),
                             message.sticker.file_id):
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })

    if message.animation:
        if redis.sismember("{}Nbot:Lgifs".format(BOT_ID), chatID):  #9
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lgifs:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

        elif redis.sismember(
                "{}Nbot:{}:blockanimations".format(BOT_ID, chatID),
                message.animation.file_id):
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })

    if message.audio:
        if redis.sismember("{}Nbot:Lmusic".format(BOT_ID), chatID):  #10
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lmusic:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.voice:
        if redis.sismember("{}Nbot:Lvoice".format(BOT_ID), chatID):  #11
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lvoice:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.video:
        if redis.sismember("{}Nbot:Lvideo".format(BOT_ID), chatID):  #12
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lvideo:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.document:
        if redis.sismember("{}Nbot:Lfiles".format(BOT_ID), chatID):  #13
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lfiles:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.photo:
        if redis.sismember("{}Nbot:Lphoto".format(BOT_ID), chatID):  #14
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lphoto:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

        elif redis.sismember("{}Nbot:{}:blockphotos".format(BOT_ID, chatID),
                             message.photo.file_id):
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })

    if message.contact:
        if redis.sismember("{}Nbot:Lcontact".format(BOT_ID), chatID):  #15
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lcontact:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.new_chat_members:
        if message.new_chat_members[0].is_bot:
            if redis.sismember("{}Nbot:Lbots".format(BOT_ID), chatID):  #16
                first_name = message.new_chat_members[0].first_name
                username = message.new_chat_members[0].username
                Bot("kickChatMember", {
                    "chat_id": chatID,
                    "user_id": message.new_chat_members[0].id
                })
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.kickbotadd.format(username, first_name),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })
        if redis.sismember("{}Nbot:Ljoin".format(BOT_ID), chatID):  #17
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })

    if message.forward_date:
        if redis.sismember("{}Nbot:Lfwd".format(BOT_ID), chatID):  #18
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lfwd:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if message.video_note:
        if redis.sismember("{}Nbot:Lnote".format(BOT_ID), chatID):  #19
            Bot("deleteMessage", {
                "chat_id": chatID,
                "message_id": message.message_id
            })
            if redis.sismember("{}Nbot:Lnote:res".format(BOT_ID), chatID):
                Bot(
                    "restrictChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_send_messages": 0,
                        "can_send_media_messages": 0,
                        "can_send_other_messages": 0,
                        "can_send_polls": 0,
                        "can_change_info": 0,
                        "can_add_web_page_previews": 0,
                        "can_pin_messages": 0,
                        "can_invite_users": 0,
                    })

    if redis.sismember("{}Nbot:Lflood".format(BOT_ID), chatID):  #20
        Max_msg = int((redis.hget("{}Nbot:max_msg".format(BOT_ID), chatID)
                       or 10))
        Time_ck = int((redis.hget("{}Nbot:time_ck".format(BOT_ID), chatID)
                       or 3))
        User_msg = int(
            (redis.get("{}Nbot:{}:{}:flood".format(BOT_ID, chatID, userID))
             or 1))
        if User_msg > Max_msg:
            GetGprank = GPranks(userID, chatID)
            if GetGprank == "member":

                if redis.hexists("{}Nbot:floodset".format(BOT_ID), chatID):
                    get = redis.hget("{}Nbot:floodset".format(BOT_ID), chatID)
                else:
                    get = "res"
                if get == "res":
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                            "can_invite_users": 0,
                        })
                if get == "ban":
                    Bot("kickChatMember", {
                        "chat_id": chatID,
                        "user_id": userID
                    })

                redis.sadd("{}Nbot:{}:restricteds".format(BOT_ID, chatID),
                           userID)
                BY = "<a href=\"tg://user?id={}\">{}</a>".format(
                    userID, Name(userFN))
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.TKflood.format(BY, Max_msg, Time_ck),
                        "parse_mode": "html"
                    })
        redis.setex("{}Nbot:{}:{}:flood".format(BOT_ID, chatID, userID),
                    Time_ck, User_msg + 1)
コード例 #3
0
ファイル: all.py プロジェクト: NewBotMD/NB
def allGP(client, message,redis):
  type = message.chat.type
  userID = message.from_user.id
  chatID = message.chat.id
  username = message.from_user.username
  if username is None:
    username = "******"
  userFN = message.from_user.first_name
  title = message.chat.title
  rank = isrank(redis,userID,chatID)
  text = message.text

  lang = Glang(redis,chatID)

  moduleCMD = "lang."+lang+"-cmd"
  moduleREPLY = "lang."+lang+"-reply"
  c = importlib.import_module(moduleCMD)
  r = importlib.import_module(moduleREPLY)
  redis.hincrby("{}Nbot:{}:msgs".format(BOT_ID,chatID),userID)
  if text :
    if re.search(c.setGPadmin,text):
      if re.search("@",text):
        user = text.split("@")[1]
      if re.search(c.setGPadmin2,text):
        user = int(re.search(r'\d+', text).group())
      if message.reply_to_message:
        user = message.reply_to_message.from_user.id
      if 'user' not in locals():return False
      if GPranks(userID,chatID) == "member":return False
      Getus = Bot("getChatMember",{"chat_id":chatID,"user_id":userID})["result"]
      if Getus["status"] == "administrator" and not Getus["can_promote_members"]:return False
      try:
        getUser = client.get_users(user)
        userId = getUser.id
        userFn = getUser.first_name
        if GPranks(userId,chatID) != "member":return False
        pr = Bot("promoteChatMember",{"chat_id":chatID,"user_id":userId,"can_change_info":1,"can_delete_messages":1,"can_invite_users":1,"can_restrict_members":1,"can_pin_messages":1})
        if pr["ok"]:
          T ="<a href=\"tg://user?id={}\">{}</a>".format(userId,Name(userFn))
          Bot("sendMessage",{"chat_id":chatID,"text":r.prGPadmin.format(T),"reply_to_message_id":message.message_id,"parse_mode":"html"})
      except Exception as e:
        Bot("sendMessage",{"chat_id":chatID,"text":r.userNocc,"reply_to_message_id":message.message_id,"parse_mode":"html"})

    if re.search(c.sors,text):
      kb = InlineKeyboardMarkup([[InlineKeyboardButton(r.MoreInfo, url="t.me/nbbot")]])
      Botuser = client.get_me().username
      Bot("sendMessage",{"chat_id":chatID,"text":r.sors.format("@"+Botuser),"disable_web_page_preview":True,"reply_to_message_id":message.message_id,"parse_mode":"markdown","reply_markup":kb})
    
    if re.search(c.dellink,text):
      kb = InlineKeyboardMarkup([[InlineKeyboardButton(c.dellink2, url="https://telegram.org/deactivate")]])
      Botuser = client.get_me().username
      Bot("sendMessage",{"chat_id":chatID,"text":r.dellink,"disable_web_page_preview":True,"reply_to_message_id":message.message_id,"parse_mode":"markdown","reply_markup":kb})

    if re.search(c.ShowO,text) and (rank is not False or rank is not  0 or rank != "vip"):
      reply_markup = getOR(rank,r,userID)
      Bot("sendMessage",{"chat_id":chatID,"text":r.Showall,"reply_to_message_id":message.message_id,"parse_mode":"html","disable_web_page_preview":True,"reply_markup":reply_markup})

    if text == c.ID and not redis.sismember("{}Nbot:IDSend".format(BOT_ID),chatID) and not message.reply_to_message:
      Ch = True
      if redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
        t = IDrank(redis,userID,chatID,r)
        msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID,chatID),userID) or 0)
        edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID,chatID),userID) or 0)
        rate = int(msgs)*100/20000
        age = getAge(userID,r)
        if redis.hget("{}Nbot:SHOWid".format(BOT_ID),chatID):
          tx = redis.hget("{}Nbot:SHOWid".format(BOT_ID),chatID)
        else:
          tx = r.IDnPT
        if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID),chatID):
          get = Bot("getUserProfilePhotos",{"user_id":userID,"offset":0,"limit":1})
          if get["ok"] == False: 
            Ch = True
          elif get["result"]["total_count"] == 0:
            Ch = True
          else:
            Ch = False
            file_id = get["result"]["photos"][0][0]["file_id"]
            Bot("sendPhoto",{"chat_id":chatID,"photo":file_id,"caption":tx.format(us=("@"+username or "None"),id=userID,rk=t,msgs=msgs,edits=edits,age=age,rate=str(rate)+"%"),"reply_to_message_id":message.message_id,"parse_mode":"html"})
        if Ch == True:
          Bot("sendMessage",{"chat_id":chatID,"text":tx.format(us=("@"+username or "None"),id=userID,rk=t,msgs=msgs,edits=edits,age=age,rate=str(rate)+"%"),"reply_to_message_id":message.message_id,"parse_mode":"html"})

      if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID),chatID) and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
        get = Bot("getUserProfilePhotos",{"user_id":userID,"offset":0,"limit":1})
        if get["ok"] == False: 
          Ch = True
        elif get["result"]["total_count"] == 0:
          Ch = True
        else:
          Ch = False
          reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.RIDPHs,callback_data=json.dumps(["ShowDateUser","",userID]))]])
          file_id = get["result"]["photos"][0][0]["file_id"]
          Bot("sendPhoto",{"chat_id":chatID,"photo":file_id,"caption":r.RID.format(userID),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":reply_markup})
      if Ch == True and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
        reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.RIDPHs,callback_data=json.dumps(["ShowDateUser","",userID]))]])
        Bot("sendMessage",{"chat_id":chatID,"text":r.RID.format(userID),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":reply_markup})



    if text == c.ID and not redis.sismember("{}Nbot:IDSend".format(BOT_ID),chatID) and message.reply_to_message:
      us = message.reply_to_message.from_user.id
      rusername = message.reply_to_message.from_user.username
      if rusername is None:
        rusername = "******"
      t = IDrank(redis,us,chatID,r)
      msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID,chatID),us) or 0)
      edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID,chatID),us) or 0)
      rate = int(msgs)*100/20000
      age = getAge(us,r)
      tx = r.ReIDnPT
      Bot("sendMessage",{"chat_id":chatID,"text":tx.format(Reus=("@"+rusername or "None"),ReID=us,Rerank=t,Remsgs=msgs,Reedits=edits,Rage=age,Rerate=str(rate)+"%"),"reply_to_message_id":message.message_id,"parse_mode":"html"})
    if re.search(c.idus,text) and not redis.sismember("{}Nbot:IDSend".format(BOT_ID),chatID):
      user = text.split("@")[1]
      try:
        getUser = client.get_users(user)
        us = getUser.id
        rusername = user
        if rusername is None:
          rusername = "******"
        age = getAge(us,r)
        t = IDrank(redis,us,chatID,r)
        msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID,chatID),us) or 0)
        edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID,chatID),us) or 0)
        rate = int(msgs)*100/20000
        tx = r.ReIDnPT
        Bot("sendMessage",{"chat_id":chatID,"text":tx.format(Reus=("@"+rusername or "None"),ReID=us,Rerank=t,Remsgs=msgs,Reedits=edits,Rage=age,Rerate=str(rate)+"%"),"reply_to_message_id":message.message_id,"parse_mode":"html"})
      except Exception as e:
        print(e)

    if re.search(c.ShowSudos, text):
      tx = (redis.get("{}Nbot:SHOWsudos".format(BOT_ID)) or "")
      Bot("sendMessage",{"chat_id":chatID,"text":tx,"reply_to_message_id":message.message_id,"parse_mode":"html"})
    if text == c.mymsgs:
      get = redis.hget("{}Nbot:{}:msgs".format(BOT_ID,chatID),userID)
      Bot("sendMessage",{"chat_id":chatID,"text":r.yourmsgs.format((get or 0)),"reply_to_message_id":message.message_id,"parse_mode":"html"})
    if text == c.link:
      get = (redis.hget("{}Nbot:links".format(BOT_ID),chatID) or GetLink(chatID) or "none")
      Bot("sendMessage",{"chat_id":chatID,"text":r.showGPlk.format(get),"reply_to_message_id":message.message_id,"parse_mode":"html","disable_web_page_preview":True})

    if text == c.myedits:
      get = redis.hget("{}Nbot:{}:edits".format(BOT_ID,chatID),userID)
      Bot("sendMessage",{"chat_id":chatID,"text":r.youredits.format((get or 0)),"reply_to_message_id":message.message_id,"parse_mode":"html"})

    if text == c.myaddcontact:
      get = redis.hget("{}Nbot:{}:addcontact".format(BOT_ID,chatID),userID)
      Bot("sendMessage",{"chat_id":chatID,"text":r.youraddcontact.format((get or 0)),"reply_to_message_id":message.message_id,"parse_mode":"html"})
    
    
    if not redis.sismember("{}Nbot:ReplySendBOT".format(BOT_ID),chatID):
      if redis.hexists("{}Nbot:TXreplys".format(BOT_ID),text):
        tx = redis.hget("{}Nbot:TXreplys".format(BOT_ID),text)
        try:
          Bot("sendMessage",{"chat_id":chatID,"text":tx.format(fn=Name(userFN),us=("@"+username or "n"),id=userID,rk=IDrank(redis,userID,chatID,r),cn=title),"reply_to_message_id":message.message_id,"parse_mode":"html"})
        except Exception as e:
          Bot("sendMessage",{"chat_id":chatID,"text":tx,"reply_to_message_id":message.message_id,"parse_mode":"html"})
          
      if redis.hexists("{}Nbot:STreplys".format(BOT_ID),text):
        ID = redis.hget("{}Nbot:STreplys".format(BOT_ID),text)
        Bot("sendSticker",{"chat_id":chatID,"sticker":ID,"reply_to_message_id":message.message_id})
      
      if redis.hexists("{}Nbot:GFreplys".format(BOT_ID),text):
        ID = redis.hget("{}Nbot:GFreplys".format(BOT_ID),text)
        Bot("sendanimation",{"chat_id":chatID,"animation":ID,"reply_to_message_id":message.message_id})

      if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:VOreplys".format(BOT_ID),text)
        Bot("sendvoice",{"chat_id":chatID,"voice":ID,"reply_to_message_id":message.message_id})

      if redis.hexists("{}Nbot:PHreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:PHreplys".format(BOT_ID),text)
        Bot("sendphoto",{"chat_id":chatID,"photo":ID,"reply_to_message_id":message.message_id})

      if redis.hexists("{}Nbot:DOreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:DOreplys".format(BOT_ID),text)
        Bot("sendDocument",{"chat_id":chatID,"document":ID,"reply_to_message_id":message.message_id})



    if not redis.sismember("{}Nbot:ReplySend".format(BOT_ID),chatID):
      if redis.hexists("{}Nbot:{}:TXreplys".format(BOT_ID,chatID),text):
        tx = redis.hget("{}Nbot:{}:TXreplys".format(BOT_ID,chatID),text)
        try:
          Bot("sendMessage",{"chat_id":chatID,"text":tx.format(fn=Name(userFN),us=("@"+username or "n"),id=userID,rk=IDrank(redis,userID,chatID,r),cn=title),"reply_to_message_id":message.message_id,"parse_mode":"html"})
        except Exception as e:
          Bot("sendMessage",{"chat_id":chatID,"text":tx,"reply_to_message_id":message.message_id,"parse_mode":"html"})

      if redis.hexists("{}Nbot:{}:STreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:{}:STreplys".format(BOT_ID,chatID),text)
        Bot("sendSticker",{"chat_id":chatID,"sticker":ID,"reply_to_message_id":message.message_id})
      
      if redis.hexists("{}Nbot:{}:GFreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:{}:GFreplys".format(BOT_ID,chatID),text)
        Bot("sendanimation",{"chat_id":chatID,"animation":ID,"reply_to_message_id":message.message_id})

      if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:{}:VOreplys".format(BOT_ID,chatID),text)
        Bot("sendvoice",{"chat_id":chatID,"voice":ID,"reply_to_message_id":message.message_id})
 
      if redis.hexists("{}Nbot:{}:PHreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:{}:PHreplys".format(BOT_ID,chatID),text)
        Bot("sendphoto",{"chat_id":chatID,"photo":ID,"reply_to_message_id":message.message_id})

      if redis.hexists("{}Nbot:{}:DOreplys".format(BOT_ID,chatID),text):
        ID = redis.hget("{}Nbot:{}:DOreplys".format(BOT_ID,chatID),text)
        Bot("sendDocument",{"chat_id":chatID,"document":ID,"reply_to_message_id":message.message_id})

  if redis.smembers("{}Nbot:botfiles".format(BOT_ID)):
    onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
    filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
    for f in onlyfiles:
      if f in filesR:
        fi = f.replace(".py","")
        UpMs= "files."+fi
        try:
          U = importlib.import_module(UpMs)
          t = threading.Thread(target=U.updateMsgs,args=(client, message,redis))
          t.daemon = True
          t.start()
          importlib.reload(U)
        except Exception as e:
          pass
コード例 #4
0
ファイル: all.py プロジェクト: ghost11886/TshakeV2
def allGP(client, message, redis):
    type = message.chat.type
    userID = message.from_user.id
    chatID = message.chat.id
    username = message.from_user.username
    if username is None:
        username = "******"
    userFN = message.from_user.first_name
    title = message.chat.title
    rank = isrank(redis, userID, chatID)
    text = message.text
    c = importlib.import_module("lang.arcmd")
    r = importlib.import_module("lang.arreply")
    redis.hincrby("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
    if text:
        if re.search(c.setGPadmin, text):
            if re.search("@", text):
                user = text.split("@")[1]
            if re.search(c.setGPadmin2, text):
                user = int(re.search(r'\d+', text).group())
            if message.reply_to_message:
                user = message.reply_to_message.from_user.id
            if 'user' not in locals(): return False
            if GPranks(userID, chatID) == "member": return False
            Getus = Bot("getChatMember", {
                "chat_id": chatID,
                "user_id": userID
            })["result"]
            if Getus["status"] == "administrator" and not Getus[
                    "can_promote_members"]:
                return False
            try:
                getUser = client.get_users(user)
                userId = getUser.id
                userFn = getUser.first_name
                if GPranks(userId, chatID) != "member": return False
                pr = Bot(
                    "promoteChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_change_info": 1,
                        "can_delete_messages": 1,
                        "can_invite_users": 1,
                        "can_restrict_members": 1,
                        "can_pin_messages": 1
                    })
                if pr["ok"]:
                    T = "<a href=\"tg://user?id={}\">{}</a>".format(
                        userId, Name(userFn))
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": r.prGPadmin.format(T),
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })
            except Exception as e:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.userNocc,
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })

        if re.search(c.sors, text):
            kb = InlineKeyboardMarkup(
                [[InlineKeyboardButton("قناه السورس 📢", url="t.me/zx_xx")],
                 [InlineKeyboardButton("تواصل السورس 💬", url="t.me/A_5bot")],
                 [
                     InlineKeyboardButton("شروحات السورس 📑",
                                          url="t.me/tshaketeam")
                 ]])
            Botuser = client.get_me().username
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.sors.format("@" + Botuser),
                    "disable_web_page_preview": True,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "markdown",
                    "reply_markup": kb
                })

        if re.search(c.dellink, text):
            kb = InlineKeyboardMarkup([[
                InlineKeyboardButton(c.dellink2,
                                     url="https://telegram.org/deactivate")
            ]])
            Botuser = client.get_me().username
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.dellink,
                    "disable_web_page_preview": True,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "markdown",
                    "reply_markup": kb
                })

        if re.search(c.ShowO, text) and (rank is not False or rank is not 0
                                         or rank != "vip"):
            reply_markup = getOR(rank, r, userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.Showall,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True,
                    "reply_markup": reply_markup
                })

        if text == "عدد الكروب" and (rank is not False or rank is not 0):
            from pyrogram.api.functions.channels import GetFullChannel
            chat = client.resolve_peer(chatID)
            full_chat = client.send(GetFullChannel(channel=chat)).full_chat
            Bot(
                "sendMessage", {
                    "chat_id":
                    chatID,
                    "text":
                    r.gpinfo.format(
                        message.chat.title, full_chat.participants_count,
                        full_chat.admins_count, full_chat.kicked_count,
                        full_chat.banned_count, message.message_id),
                    "reply_to_message_id":
                    message.message_id,
                    "parse_mode":
                    "html",
                    "disable_web_page_preview":
                    True
                })
        if text == c.ID and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID),
                chatID) and not message.reply_to_message:
            Ch = True
            # if redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
            t = IDrank(redis, userID, chatID, r)
            msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
                    or 0)
            edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID),
                                userID) or 0)
            rate = int(msgs) * 100 / 20000
            age = getAge(userID, r)
            if redis.hget("{}Nbot:SHOWid".format(BOT_ID), chatID):
                tx = redis.hget("{}Nbot:SHOWid".format(BOT_ID), chatID)
                rep = {
                    "#age": "{age}",
                    "#name": "{name}",
                    "#id": "{id}",
                    "#username": "******",
                    "#msgs": "{msgs}",
                    "#stast": "{stast}",
                    "#edits": "{edits}",
                    "#rate": "{rate}",
                    "{us}": "{username}",
                    "#us": "{username}"
                }
                for v in rep.keys():
                    tx = tx.replace(v, rep[v])
            else:
                tx = r.IDnPT
            if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID), chatID):
                get = Bot("getUserProfilePhotos", {
                    "user_id": userID,
                    "offset": 0,
                    "limit": 1
                })
                if get["ok"] == False:
                    Ch = True
                elif get["result"]["total_count"] == 0:
                    Ch = True
                else:
                    Ch = False
                    file_id = get["result"]["photos"][0][0]["file_id"]
                    Bot(
                        "sendPhoto", {
                            "chat_id":
                            chatID,
                            "photo":
                            file_id,
                            "caption":
                            tx.format(username=("@" + username or "None"),
                                      id=userID,
                                      stast=t,
                                      msgs=msgs,
                                      edits=edits,
                                      age=age,
                                      rate=str(rate) + "%"),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })
            if Ch == True:
                Bot(
                    "sendMessage", {
                        "chat_id":
                        chatID,
                        "text":
                        tx.format(username=("@" + username or "None"),
                                  id=userID,
                                  stast=t,
                                  msgs=msgs,
                                  edits=edits,
                                  age=age,
                                  rate=str(rate) + "%"),
                        "reply_to_message_id":
                        message.message_id,
                        "parse_mode":
                        "html"
                    })

            # if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID),chatID) and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
            #   get = Bot("getUserProfilePhotos",{"user_id":userID,"offset":0,"limit":1})
            #   if get["ok"] == False:
            #     Ch = True
            #   elif get["result"]["total_count"] == 0:
            #     Ch = True
            #   else:
            #     Ch = False
            #     reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.RIDPHs,callback_data=json.dumps(["ShowDateUser","",userID]))]])
            #     file_id = get["result"]["photos"][0][0]["file_id"]
            #     Bot("sendPhoto",{"chat_id":chatID,"photo":file_id,"caption":r.RID.format(userID),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":reply_markup})
            # if Ch == True and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
            #   reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.RIDPHs,callback_data=json.dumps(["ShowDateUser","",userID]))]])
            #   Bot("sendMessage",{"chat_id":chatID,"text":r.RID.format(userID),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":reply_markup})
        if text and re.search("^الاسرع$", text) and not redis.sismember(
                "{}Nbot:gpgames".format(BOT_ID), chatID):
            KlamSpeed = [
                "سحور", "سياره", "استقبال", "قنفه", "ايفون", "بزونه", "مطبخ",
                "كرستيانو", "دجاجه", "مدرسه", "الوان", "غرفه", "ثلاجه", "كهوه",
                "سفينه", "العراق", "محطه", "طياره", "رادار", "منزل", "مستشفى",
                "كهرباء", "تفاحه", "اخطبوط", "سلمون", "فرنسا", "برتقاله",
                "تفاح", "مطرقه", "بتيته", "لهانه", "شباك", "باص", "سمكه",
                "ذباب", "تلفاز", "حاسوب", "انترنيت", "ساحه", "جسر"
            ]
            name = random.choice(KlamSpeed)
            temp = redis.set("{}Nbot:Klmspeed".format(BOT_ID), name)
            name = str.replace(name, "سحور", "س ر و ح")
            name = str.replace(name, "سياره", "ه ر س ي ا")
            name = str.replace(name, "استقبال", "ل ب ا ت ق س ا")
            name = str.replace(name, "قنفه", "ه ق ن ف")
            name = str.replace(name, "ايفون", "و ن ف ا")
            name = str.replace(name, "بزونه", "ز و ه ن")
            name = str.replace(name, "مطبخ", "خ ب ط م")
            name = str.replace(name, "كرستيانو", "س ت ا ن و ك ر ي")
            name = str.replace(name, "دجاجه", "ج ج ا د ه")
            name = str.replace(name, "مدرسه", "ه م د ر س")
            name = str.replace(name, "الوان", "ن ا و ا ل")
            name = str.replace(name, "غرفه", "غ ه ر ف")
            name = str.replace(name, "ثلاجه", "ج ه ث ل ا")
            name = str.replace(name, "كهوه", "ه ك ه و")
            name = str.replace(name, "سفينه", "ه ن ف ي س")
            name = str.replace(name, "العراق", "ق ع ا ل ر ا")
            name = str.replace(name, "محطه", "ه ط م ح")
            name = str.replace(name, "طياره", "ر ا ط ي ه")
            name = str.replace(name, "رادار", "ر ا ر ا د")
            name = str.replace(name, "منزل", "ن ز م ل")
            name = str.replace(name, "مستشفى", "ى ش س ف ت م")
            name = str.replace(name, "كهرباء", "ر ب ك ه ا ء")
            name = str.replace(name, "تفاحه", "ح ه ا ت ف")
            name = str.replace(name, "اخطبوط", "ط ب و ا خ ط")
            name = str.replace(name, "سلمون", "ن م و ل س")
            name = str.replace(name, "فرنسا", "ن ف ر س ا")
            name = str.replace(name, "برتقاله", "ر ت ق ب ا ه ل")
            name = str.replace(name, "تفاح", "ح ف ا ت")
            name = str.replace(name, "مطرقه", "ه ط م ر ق")
            name = str.replace(name, "بتيته", "ب ت ت ي ه")
            name = str.replace(name, "لهانه", "ه ن ل ه ل")
            name = str.replace(name, "شباك", "ب ش ا ك")
            name = str.replace(name, "باص", "ص ا ب")
            name = str.replace(name, "سمكه", "ك س م ه")
            name = str.replace(name, "ذباب", "ب ا ب ذ")
            name = str.replace(name, "تلفاز", "ت ف ل ز ا")
            name = str.replace(name, "حاسوب", "س ا ح و ب")
            name = str.replace(name, "انترنيت", "ا ت ن ر ن ي ت")
            name = str.replace(name, "ساحه", "ح ا ه س")
            name = str.replace(name, "جسر", "ر ج س")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": name,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if re.search(str(redis.get("{}Nbot:Klmspeed".format(BOT_ID))), text):
            textmsg = "🎁┇مبروك. لقد حصلت على 5 نقاط زيادة كمكافأة لك للعب مرة اخرى ارسل {الاسرع}"
            redis.hincrby("{}Nbot:{}:points".format(BOT_ID, chatID), userID, 5)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": textmsg,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
            redis.delete("{}Nbot:Klmspeed".format(BOT_ID))
        if text and re.search("^سمايلات$", text) and not redis.sismember(
                "{}Nbot:gpgames".format(BOT_ID), chatID):
            Random = [
                "🍏", "🍎", "🍐", "🍊", "🍋", "🍉", "🍇", "🍓", "🍈", "🍒", "🍑", "🍍",
                "🥥", "🥝", "🍅", "🍆", "🥑", "🥦", "🥒", "🌶", "🌽", "🥕", "🥔", "🥖",
                "🥐", "🍞", "🥨", "🍟", "🧀", "🥚", "🍳", "🥓", "🥩", "🍗", "🍖", "🌭",
                "🍔", "🍠", "🍕", "🥪", "🥙", "☕️", "🍵", "🥤", "🍶", "🍺", "🍻", "🏀",
                "⚽️", "🏈", "⚾️", "🎾", "🏐", "🏉", "🎱", "🏓", "🏸", "🥅", "🎰", "🎮",
                "🎳", "🎯", "🎲", "🎻", "🎸", "🎺", "🥁", "🎹", "🎼", "🎧", "🎤", "🎬",
                "🎨", "🎭", "🎪", "🎟", "🎫", "🎗", "🏵", "🎖", "🏆", "🥌", "🛷", "🚗",
                "🚌", "🏎", "🚓", "🚑", "🚚", "🚛", "🚜", "🇮🇶", "⚔", "🛡", "🔮", "🌡",
                "💣", "📌", "📍", "📓", "📗", "📂", "📅", "📪", "📫", "📬", "📭", "⏰",
                "📺", "🎚", "☎️", "📡"
            ]
            SM = random.choice(Random)
            tempSM = redis.set("{}Nbot:smiles".format(BOT_ID), SM)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"🔰┇ اسرع واحد يرسل هذا السمايل : {SM} ",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if re.search(str(redis.get("{}Nbot:smiles".format(BOT_ID))), text):
            textmsg = "🎁┇مبروك. لقد حصلت على 7 نقاط زيادة كمكافأة لك للعب مرة اخرى ارسل {سمايلات}"
            redis.hincrby("{}Nbot:{}:points".format(BOT_ID, chatID), userID, 7)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": textmsg,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
            redis.delete("{}Nbot:smiles".format(BOT_ID))
        if text and re.search("^حزوره$", text) and not redis.sismember(
                "{}Nbot:gpgames".format(BOT_ID), chatID):
            Hzora = [
                "الجرس", "عقرب الساعه", "السمك", "المطر", "5", "الكتاب",
                "البسمار", "7", "الكعبه", "بيت الشعر", "لهانه", "انا", "امي",
                "الابره", "الساعه", "22", "غلط", "كم الساعه", "البيتنجان",
                "البيض", "المرايه", "الضوء", "الهواء", "الضل", "العمر",
                "القلم", "المشط", "الحفره", "البحر", "الثلج", "الاسفنج",
                "الصوت", "بلم"
            ]
            name = random.choice(Hzora)
            temp = redis.set("{}Nbot:Hzor".format(BOT_ID), name)
            name = str.replace(name, "الجرس", "شيئ اذا لمسته صرخ ما هوه ؟")
            name = str.replace(
                name, "عقرب الساعه",
                "اخوان لا يستطيعان تمضيه اكثر من دقيقه معا فما هما ؟")
            name = str.replace(
                name, "السمك",
                "ما هو الحيوان الذي لم يصعد الى سفينة نوح عليه السلام ؟")
            name = str.replace(
                name, "المطر",
                "شيئ يسقط على رأسك من الاعلى ولا يجرحك فما هو ؟")
            name = str.replace(
                name, "5",
                "ما العدد الذي اذا ضربته بنفسه واضفت عليه 5 يصبح ثلاثين ")
            name = str.replace(name, "الكتاب",
                               "ما الشيئ الذي له اوراق وليس له جذور ؟")
            name = str.replace(name, "البسمار",
                               "ما هو الشيئ الذي لا يمشي الا بالضرب ؟")
            name = str.replace(
                name, "7",
                "عائله مؤلفه من 6 بنات واخ لكل منهن .فكم عدد افراد العائله ")
            name = str.replace(name, "الكعبه", "ما هو الشيئ الموجود وسط مكة ؟")
            name = str.replace(name, "بيت الشعر",
                               "ما هو البيت الذي ليس فيه ابواب ولا نوافذ ؟ ")
            name = str.replace(name, "لهانه",
                               "وحده حلوه ومغروره تلبس مية تنوره .من هيه ؟ ")
            name = str.replace(
                name, "انا",
                "ابن امك وابن ابيك وليس باختك ولا باخيك فمن يكون ؟")
            name = str.replace(name, "امي", "اخت خالك وليست خالتك من تكون ؟ ")
            name = str.replace(
                name, "الابره",
                "ما هو الشيئ الذي كلما خطا خطوه فقد شيئا من ذيله ؟ ")
            name = str.replace(
                name, "الساعه",
                "ما هو الشيئ الذي يقول الصدق ولكنه اذا جاع كذب ؟")
            name = str.replace(
                name, "22",
                "كم مره ينطبق عقربا الساعه على بعضهما في اليوم الواحد ")
            name = str.replace(name, "غلط",
                               "ما هي الكلمه الوحيده التي تلفض غلط دائما ؟ ")
            name = str.replace(name, "كم الساعه",
                               "ما هو السؤال الذي تختلف اجابته دائما ؟")
            name = str.replace(name, "البيتنجان",
                               "جسم اسود وقلب ابيض وراس اخظر فما هو ؟")
            name = str.replace(name, "البيض",
                               "ماهو الشيئ الذي اسمه على لونه ؟")
            name = str.replace(name, "المرايه",
                               "ارى كل شيئ من دون عيون من اكون ؟ ")
            name = str.replace(name, "الضوء",
                               "ما هو الشيئ الذي يخترق الزجاج ولا يكسره ؟")
            name = str.replace(name, "الهواء",
                               "ما هو الشيئ الذي يسير امامك ولا تراه ؟")
            name = str.replace(name, "الضل",
                               "ما هو الشيئ الذي يلاحقك اينما تذهب ؟ ")
            name = str.replace(name, "العمر",
                               "ما هو الشيء الذي كلما طال قصر ؟ ")
            name = str.replace(name, "القلم",
                               "ما هو الشيئ الذي يكتب ولا يقرأ ؟")
            name = str.replace(name, "المشط", "له أسنان ولا يعض ما هو ؟ ")
            name = str.replace(name, "الحفره",
                               "ما هو الشيئ اذا أخذنا منه ازداد وكبر ؟")
            name = str.replace(
                name, "البحر",
                "ما هو الشيئ الذي يرفع اثقال ولا يقدر يرفع مسمار ؟")
            name = str.replace(
                name, "الثلج",
                "انا ابن الماء فان تركوني في الماء مت فمن انا ؟")
            name = str.replace(name, "الاسفنج",
                               "كلي ثقوب ومع ذالك احفض الماء فمن اكون ؟")
            name = str.replace(
                name, "الصوت",
                "اسير بلا رجلين ولا ادخل الا بالاذنين فمن انا ؟")
            name = str.replace(name, "بلم",
                               "حامل ومحمول نصف ناشف ونصف مبلول فمن اكون ؟ ")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"🔰┇ اسرع واحد يحل الحزوره : {name}",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
        if re.search(str(redis.get("{}Nbot:Hzor".format(BOT_ID))), text):
            textmsg = "🎁┇مبروك. لقد حصلت على 8 نقاط زيادة كمكافأة لك للعب مرة اخرى ارسل {حزوره}"
            redis.hincrby("{}Nbot:{}:points".format(BOT_ID, chatID), userID, 8)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": textmsg,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
            redis.delete("{}Nbot:Hzor".format(BOT_ID))
        if text and re.search("^معاني$", text) and not redis.sismember(
                "{}Nbot:gpgames".format(BOT_ID), chatID):
            Maany_Rand = [
                "قرد", "دجاجه", "بطريق", "ضفدع", "بومه", "نحله", "ديك", "جمل",
                "بقره", "دولفين", "تمساح", "قرش", "نمر", "اخطبوط", "سمكه",
                "خفاش", "اسد", "فأر", "ذئب", "فراشه", "عقرب", "زرافه", "قنفذ",
                "تفاحه", "باذنجان"
            ]
            name = random.choice(Maany_Rand)
            temp = redis.set("{}Nbot:MaanyRand".format(BOT_ID), name)
            name = str.replace(name, "قرد", "🐒")
            name = str.replace(name, "دجاجه", "🐔")
            name = str.replace(name, "بطريق", "🐧")
            name = str.replace(name, "ضفدع", "🐸")
            name = str.replace(name, "بومه", "🦉")
            name = str.replace(name, "نحله", "🐝")
            name = str.replace(name, "ديك", "🐓")
            name = str.replace(name, "جمل", "🐫")
            name = str.replace(name, "بقره", "🐄")
            name = str.replace(name, "دولفين", "🐬")
            name = str.replace(name, "تمساح", "🐊")
            name = str.replace(name, "قرش", "🦈")
            name = str.replace(name, "نمر", "🐅")
            name = str.replace(name, "اخطبوط", "🐙")
            name = str.replace(name, "سمكه", "🐟")
            name = str.replace(name, "خفاش", "🦇")
            name = str.replace(name, "اسد", "🦁")
            name = str.replace(name, "فأر", "🐭")
            name = str.replace(name, "ذئب", "🐺")
            name = str.replace(name, "فراشه", "🦋")
            name = str.replace(name, "عقرب", "🦂")
            name = str.replace(name, "زرافه", "🦒")
            name = str.replace(name, "قنفذ", "🦔")
            name = str.replace(name, "تفاحه", "🍎")
            name = str.replace(name, "باذنجان", "🍆")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"🔰┇ اسرع واحد يدز معنى السمايل : {name}",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
        if re.search(str(redis.get("{}Nbot:MaanyRand".format(BOT_ID))), text):
            textmsg = "🎁┇مبروك. لقد حصلت على 6 نقاط زيادة كمكافأة لك للعب مرة اخرى ارسل {معاني}"
            redis.hincrby("{}Nbot:{}:points".format(BOT_ID, chatID), userID, 6)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": textmsg,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
            redis.delete("{}Nbot:MaanyRand".format(BOT_ID))
        if text and re.search("^العكس$", text) and not redis.sismember(
                "{}Nbot:gpgames".format(BOT_ID), chatID):
            katu = [
                "باي", "فهمت", "موزين", "اسمعك", "احبك", "موحلو", "نضيف",
                "حاره", "ناصي", "جوه", "سريع", "ونسه", "طويل", "سمين", "ضعيف",
                "شريف", "شجاع", "رحت", "عدل", "نشيط", "شبعان", "موعطشان",
                "خوش ولد", "اني", "هادئ"
            ]
            name = random.choice(katu)
            temp = redis.set("{}Nbot:opissite".format(BOT_ID), name)
            name = str.replace(name, "باي", "هلو")
            name = str.replace(name, "فهمت", "مافهمت")
            name = str.replace(name, "موزين", "زين")
            name = str.replace(name, "اسمعك", "ماسمعك")
            name = str.replace(name, "احبك", "ماحبك")
            name = str.replace(name, "موحلو", "حلو")
            name = str.replace(name, "نضيف", "وصخ")
            name = str.replace(name, "حاره", "بارده")
            name = str.replace(name, "ناصي", "عالي")
            name = str.replace(name, "جوه", "فوك")
            name = str.replace(name, "سريع", "بطيء")
            name = str.replace(name, "ونسه", "ضوجه")
            name = str.replace(name, "طويل", "قزم")
            name = str.replace(name, "سمين", "ضعيف")
            name = str.replace(name, "ضعيف", "قوي")
            name = str.replace(name, "شريف", "كواد")
            name = str.replace(name, "شجاع", "جبان")
            name = str.replace(name, "رحت", "اجيت")
            name = str.replace(name, "عدل", "ميت")
            name = str.replace(name, "نشيط", "كسول")
            name = str.replace(name, "شبعان", "جوعان")
            name = str.replace(name, "موعطشان", "عطشان")
            name = str.replace(name, "خوش ولد", "موخوش ولد")
            name = str.replace(name, "اني", "مطي")
            name = str.replace(name, "هادئ", "عصبي")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"🔰┇ اسرع واحد يدز العكس : {name}",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if re.search(str(redis.get("{}Nbot:opissite".format(BOT_ID))), text):
            textmsg = "🎁┇مبروك. لقد حصلت على 10 نقاط زيادة كمكافأة لك للعب مرة اخرى ارسل {العكس}"
            redis.hincrby("{}Nbot:{}:points".format(BOT_ID, chatID), userID,
                          10)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": textmsg,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
            redis.delete("{}Nbot:opissite".format(BOT_ID))

        if text and re.search("^امثله$", text) and not redis.sismember(
                "{}Nbot:gpgames".format(BOT_ID), chatID):
            mthal = [
                "جوز", "ضراطه", "الحبل", "الحافي", "شقره", "بيدك", "سلايه",
                "النخله", "الخيل", "حداد", "المبلل", "يركص", "قرد", "العنب",
                "العمه", "الخبز", "بالحصاد", "شهر", "شكه", "يكحله"
            ]
            name = random.choice(mthal)
            temp = redis.set("{}Nbot:amthila".format(BOT_ID), name)
            name = str.replace(name, "جوز", "ينطي____للماعده سنون")
            name = str.replace(name, "ضراطه", "الي يسوق المطي يتحمل___")
            name = str.replace(name, "بيدك", "اكل___محد يفيدك")
            name = str.replace(name, "الحافي", "تجدي من___نعال")
            name = str.replace(name, "شقره", "مع الخيل يا___")
            name = str.replace(name, "النخله", "الطول طول___والعقل عقل الصخلة")
            name = str.replace(name, "سلايه", "بالوجه امراية وبالظهر___")
            name = str.replace(name, "الخيل", "من قلة___شدو على الچلاب سروج")
            name = str.replace(name, "حداد", "موكل من صخم وجهه كال آني___")
            name = str.replace(name, "المبلل", "___ما يخاف من المطر")
            name = str.replace(name, "الحبل",
                               "اللي تلدغة الحية يخاف من جرة___")
            name = str.replace(name, "يركص", "المايعرف___يكول الكاع عوجه")
            name = str.replace(name, "العنب", "المايلوح___يكول حامض")
            name = str.replace(name, "العمه",
                               "___إذا حبت الچنة ابليس يدخل الجنة")
            name = str.replace(name, "الخبز", "انطي___للخباز حتى لو ياكل نصه")
            name = str.replace(name, "باحصاد", "اسمة___ومنجله مكسور")
            name = str.replace(name, "شهر", "امشي__ولا تعبر نهر")
            name = str.replace(name, "شكه",
                               "يامن تعب يامن__يا من على الحاضر لكة")
            name = str.replace(name, "القرد", "__بعين امه غزال")
            name = str.replace(name, "يكحله", "اجه___عماها")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"🔰┇ اسرع واحد يكمل المثل : {name}",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
        if re.search(str(redis.get("{}Nbot:amthila".format(BOT_ID))), text):
            textmsg = "🎁┇مبروك. لقد حصلت على 10 نقاط زيادة كمكافأة لك للعب مرة اخرى ارسل {امثله}"
            redis.hincrby("{}Nbot:{}:points".format(BOT_ID, chatID), userID,
                          10)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": textmsg,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })
            redis.delete("{}Nbot:amthila".format(BOT_ID))
        if text and re.search("بوبي", text):
            namebot = [
                "عمري فداك  بوبي", " ها حبيبي 🌚♥️ ", "كول حبيبي ؟ ",
                " ها حبي وياك مكتب ئلسيد ", " الو الو رد مخنوك ",
                "ها يحلو كول", " عمري الحلو ",
                " صاعد اتصال ويا الحب دقيقة وجيك 😘💘 ", " مشغول حالياً 🌚🌸 ",
                " لابسك لتلح ", " هايروحي؟ "
            ]
            randomresponse = random.choice(namebot)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": randomresponse,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if text and re.search("^بيع نقاطي$", text):
            msgsCount = int(
                (redis.hget("{}Nbot:{}:points".format(BOT_ID, chatID), userID)
                 or 0)) * 2
            if msgsCount == 0:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": f"📮┇عذرا لا يوجد لديك عدد كاف من النقاط ",
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })
            else:
                redis.hincrby("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID,
                              msgsCount)
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text":
                        f"✅꒐تم بيع جميع نقاطك مقابل {msgsCount} رسالة ",
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })
                redis.delete("{}Nbot:{}:points".format(BOT_ID, chatID), userID)

        if text == "رتبتي":
            t = IDrank(redis, userID, chatID, r)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"⏏️꒐ موقعك : {t}",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.ID and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID),
                chatID) and message.reply_to_message:
            us = message.reply_to_message.from_user.id
            rusername = message.reply_to_message.from_user.username
            if rusername is None:
                rusername = "******"
            t = IDrank(redis, us, chatID, r)
            msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), us)
                    or 0)
            edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID), us)
                     or 0)
            rate = int(msgs) * 100 / 20000
            age = getAge(us, r)
            tx = r.ReIDnPT
            Bot(
                "sendMessage", {
                    "chat_id":
                    chatID,
                    "text":
                    tx.format(Reus=("@" + rusername or "None"),
                              ReID=us,
                              Rerank=t,
                              Remsgs=msgs,
                              Reedits=edits,
                              Rage=age,
                              Rerate=str(rate) + "%"),
                    "reply_to_message_id":
                    message.message_id,
                    "parse_mode":
                    "html"
                })
        if re.search(c.idus, text) and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID), chatID):
            user = text.split("@")[1]
            try:
                getUser = client.get_users(user)
                us = getUser.id
                rusername = user
                if rusername is None:
                    rusername = "******"
                age = getAge(us, r)
                t = IDrank(redis, us, chatID, r)
                msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), us)
                        or 0)
                edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID),
                                    us) or 0)
                rate = int(msgs) * 100 / 20000
                tx = r.ReIDnPT
                Bot(
                    "sendMessage", {
                        "chat_id":
                        chatID,
                        "text":
                        tx.format(Reus=("@" + rusername or "None"),
                                  ReID=us,
                                  Rerank=t,
                                  Remsgs=msgs,
                                  Reedits=edits,
                                  Rage=age,
                                  Rerate=str(rate) + "%"),
                        "reply_to_message_id":
                        message.message_id,
                        "parse_mode":
                        "html"
                    })
            except Exception as e:
                print(e)

        if re.search(c.ShowSudos, text):
            tx = (redis.get("{}Nbot:SHOWsudos".format(BOT_ID)) or "")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": tx,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.mymsgs:
            get = redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.yourmsgs.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.link and not redis.sismember(
                "{}Nbot:showlink".format(BOT_ID), chatID):
            get = (redis.hget("{}Nbot:links".format(BOT_ID), chatID)
                   or GetLink(chatID) or "none")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.showGPlk.format(get),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if text == c.myedits:
            get = redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID), userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.youredits.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })

        if text == c.myaddcontact:
            get = redis.hget("{}Nbot:{}:addcontact".format(BOT_ID, chatID),
                             userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.youraddcontact.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })

        if not redis.sismember("{}Nbot:ReplySendBOT".format(BOT_ID), chatID):
            if redis.hexists("{}Nbot:TXreplys".format(BOT_ID), text):
                tx = redis.hget("{}Nbot:TXreplys".format(BOT_ID), text)
                try:
                    rep = {
                        "#cn": "{cn}",
                        "#age": "{age}",
                        "#fn": "{fn}",
                        "#id": "{id}",
                        "#username": "******",
                        "#msgs": "{msgs}",
                        "#stast": "{stast}",
                        "#edits": "{edits}",
                        "#rate": "{rate}",
                        "{us}": "{username}",
                        "#us": "{username}"
                    }
                    for v in rep.keys():
                        tx = tx.replace(v, rep[v])
                    Bot(
                        "sendMessage", {
                            "chat_id":
                            chatID,
                            "text":
                            tx.format(fn=userFN,
                                      username=("@" + username or "n"),
                                      id=userID,
                                      stast=IDrank(redis, userID, chatID, r),
                                      cn=title),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })
                except Exception as e:
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": tx,
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })

            if redis.hexists("{}Nbot:STreplys".format(BOT_ID), text):
                ID = redis.hget("{}Nbot:STreplys".format(BOT_ID), text)
                Bot(
                    "sendSticker", {
                        "chat_id": chatID,
                        "sticker": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:GFreplys".format(BOT_ID), text):
                ID = redis.hget("{}Nbot:GFreplys".format(BOT_ID), text)
                Bot(
                    "sendanimation", {
                        "chat_id": chatID,
                        "animation": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:VOreplys".format(BOT_ID), text)
                Bot(
                    "sendvoice", {
                        "chat_id": chatID,
                        "voice": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:PHreplys".format(BOT_ID, chatID), text):
                ID = redis.hget("{}Nbot:PHreplys".format(BOT_ID), text)
                Bot(
                    "sendphoto", {
                        "chat_id": chatID,
                        "photo": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:DOreplys".format(BOT_ID, chatID), text):
                ID = redis.hget("{}Nbot:DOreplys".format(BOT_ID), text)
                Bot(
                    "sendDocument", {
                        "chat_id": chatID,
                        "document": ID,
                        "reply_to_message_id": message.message_id
                    })

        if not redis.sismember("{}Nbot:ReplySend".format(BOT_ID), chatID):
            if redis.hexists("{}Nbot:{}:TXreplys".format(BOT_ID, chatID),
                             text):
                tx = redis.hget("{}Nbot:{}:TXreplys".format(BOT_ID, chatID),
                                text)
                try:
                    rep = {
                        "#cn": "{cn}",
                        "#age": "{age}",
                        "#fn": "{fn}",
                        "#id": "{id}",
                        "#username": "******",
                        "#msgs": "{msgs}",
                        "#stast": "{stast}",
                        "#edits": "{edits}",
                        "#rate": "{rate}",
                        "{us}": "{username}",
                        "#us": "{username}"
                    }
                    for v in rep.keys():
                        tx = tx.replace(v, rep[v])
                    Bot(
                        "sendMessage", {
                            "chat_id":
                            chatID,
                            "text":
                            tx.format(fn=userFN,
                                      username=("@" + username or "n"),
                                      id=userID,
                                      stast=IDrank(redis, userID, chatID, r),
                                      cn=title),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })
                except Exception as e:
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": tx,
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })

            if redis.hexists("{}Nbot:{}:STreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:STreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendSticker", {
                        "chat_id": chatID,
                        "sticker": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:GFreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:GFreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendanimation", {
                        "chat_id": chatID,
                        "animation": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendvoice", {
                        "chat_id": chatID,
                        "voice": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:AUreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:AUreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendaudio", {
                        "chat_id": chatID,
                        "audio": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:PHreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:PHreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendphoto", {
                        "chat_id": chatID,
                        "photo": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:DOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:DOreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendDocument", {
                        "chat_id": chatID,
                        "document": ID,
                        "reply_to_message_id": message.message_id
                    })

    if redis.smembers("{}Nbot:botfiles".format(BOT_ID)):
        onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
        filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
        for f in onlyfiles:
            if f in filesR:
                fi = f.replace(".py", "")
                UpMs = "files." + fi
                try:
                    U = importlib.import_module(UpMs)
                    t = threading.Thread(target=U.updateMsgs,
                                         args=(client, message, redis))
                    t.daemon = True
                    t.start()
                    importlib.reload(U)
                except Exception as e:
                    import traceback
                    traceback.print_exc()
                    print(e)
                    pass
コード例 #5
0
def updateCallback(client, callback_query,redis):
  try:
    json.loads(callback_query.data)
  except Exception as e:
    if redis.smembers("{}Nbot:botfiles".format(BOT_ID)):
      onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
      filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
      for f in onlyfiles:
        if f in filesR:
          fi = f.replace(".py","")
          UpMs= "files."+fi
          try:
            U = importlib.import_module(UpMs)
            t = threading.Thread(target=U.updateCb,args=(client, callback_query,redis))
            t.setDaemon(True)
            t.start()
            importlib.reload(U)
          except Exception as e:
            pass
      return False
    
    
  if callback_query.inline_message_id:
    if redis.smembers("{}Nbot:botfiles".format(BOT_ID)):
      onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
      filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
      for f in onlyfiles:
        if f in filesR:
          fi = f.replace(".py","")
          UpMs= "files."+fi
          try:
            U = importlib.import_module(UpMs)
            t = threading.Thread(target=U.updateCb,args=(client, callback_query,redis))
            t.setDaemon(True)
            t.start()
            importlib.reload(U)
          except Exception as e:
            pass
    return False
    
  userID = callback_query.from_user.id
  
  chatID = callback_query.message.chat.id
  userFN = callback_query.from_user.first_name
  title = callback_query.message.chat.title
  message_id = callback_query.message.message_id
  date = json.loads(callback_query.data)
  
  group = redis.sismember("{}Nbot:groups".format(BOT_ID),chatID)
  lang = Glang(redis,chatID)
  moduleCMD = "lang."+lang+"-cmd"
  moduleREPLY = "lang."+lang+"-reply"
  c = importlib.import_module(moduleCMD)
  r = importlib.import_module(moduleREPLY)
  

  if date[0] == "Cordertow":
    rank = isrank(redis,userID,chatID)
    if (rank is "sudo" or rank is "sudos" or rank is "creator" or rank is "owner"):
      if redis.sismember("{}Nbot:{}:bans".format(BOT_ID,chatID),date[1]):
        GetGprank = GPranks(date[1],chatID)
        if GetGprank == "kicked":
          Bot("unbanChatMember",{"chat_id":chatID,"user_id":date[1]})
        redis.srem("{}Nbot:{}:bans".format(BOT_ID,chatID),date[1])
        Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
      else:
        Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
    return False
  if date[0] == "delBL":
    Hash = date[1]
    chat = date[3]
    if redis.sismember("{}Nbot:groups".format(BOT_ID),chat):
      redis.delete("{}Nbot:{}:{}".format(BOT_ID,chat,Hash))
      Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})
  if re.search("del(.*)replys$",date[0]):
    t = date[0].replace("del","")
    if date[1] != "kb":
      redis.delete("{}Nbot:{}:{}".format(BOT_ID,date[1],t))
      Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})
    else:
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
      redis.delete("{}Nbot:{}:{}".format(BOT_ID,chatID,t))
      Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
  
  if re.search("del(.*)replysBOT",date[0]):
    rank = isrank(redis,userID,chatID)
    if rank == "sudo":
      t = date[0].replace("del","")
      t = t.replace("BOT","")
      if date[1] != "kb":
        redis.delete("{}Nbot:{}".format(BOT_ID,t))
        Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
        redis.delete("{}Nbot:{}".format(BOT_ID,t))
        Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
    else:
      Bot("answerCallbackQuery",{"callback_query_id":callback_query.id,"text":r.SudoOnle,"show_alert":True})
  if date[0] == "delfromb":
    Hash = date[1]
    chat = date[3]
    if redis.sismember("{}Nbot:groups".format(BOT_ID),chat):
      if Hash == "blockanimations":
        ID = callback_query.message.animation.file_id
        redis.srem("{}Nbot:{}:{}".format(BOT_ID,chat,Hash),ID)
        Bot("deleteMessage",{"chat_id":chatID,"message_id":message_id})
      if Hash == "blockSTICKERs":
        ID = callback_query.message.sticker.file_id
        redis.srem("{}Nbot:{}:{}".format(BOT_ID,chat,Hash),ID)
        Bot("deleteMessage",{"chat_id":chatID,"message_id":message_id})
      if Hash == "blockphotos":
        ID = callback_query.message.photo.file_id
        redis.srem("{}Nbot:{}:{}".format(BOT_ID,chat,Hash),ID)
        Bot("deleteMessage",{"chat_id":chatID,"message_id":message_id})

  User_click = int((redis.get("{}Nbot:{}:floodClick".format(BOT_ID,userID)) or 1))
  if User_click > 10:
    BY = "<a href=\"tg://user?id={}\">{}</a>".format(userID,userFN)
    Bot("sendMessage",{"chat_id":chatID,"text":r.banclick.format(BY),"disable_web_page_preview":True,"parse_mode":"html"})
    redis.setex("{}Nbot:floodUsers:{}".format(BOT_ID,userID),60*2,"Ban")
    redis.delete("{}Nbot:{}:floodClick".format(BOT_ID,userID))
  if chatID == userID:
    group = True
  if group is True and int(date[2]) == userID and not redis.get("{}Nbot:floodUsers:{}".format(BOT_ID,userID)):
    if date[0] == "delcheck":
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.notcertain, callback_data=json.dumps(["kickcheck","",userID])),InlineKeyboardButton(r.certain, callback_data=json.dumps(["certain","",userID]))]])
        random.shuffle(reply_markup.inline_keyboard[0])
        Bot("editMessageText",{"chat_id":chatID,"text":r.ucertain,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})

    if date[0] == "certain":
      Bot("restrictChatMember",{"chat_id": chatID,"user_id":userID,"can_send_messages": 1,"can_send_media_messages": 1,"can_send_other_messages": 1,"can_send_polls": 1,"can_change_info": 1,"can_add_web_page_previews": 1,"can_pin_messages": 1,})
      T ="<a href=\"tg://user?id={}\">{}</a>".format(userID,Name(userFN))
      Bot("editMessageText",{"chat_id":chatID,"text":r.unrestricted.format(T),"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      

    if date[0] == "kickcheck":
      Bot("kickChatMember",{"chat_id":chatID,"user_id":userID})
      T ="<a href=\"tg://user?id={}\">{}</a>".format(userID,Name(userFN))
      crid = redis.get("{}Nbot:{}:creator".format(BOT_ID,chatID))
      redis.sadd("{}Nbot:{}:bans".format(BOT_ID,chatID),userID)
      reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.Corder, callback_data=json.dumps(["Cordertow",userID]))]])
      Bot("editMessageText",{"chat_id":chatID,"text":r.bancheck.format(T),"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html","reply_markup":reply_markup})
      

    if date[0] == "addor":
      cpKey = date[1]
      kbList = {"vip":{
        "cb":"^%(tx)s$|^%(tx)s @(.*)$|%(tx)s [0-9]+$",
        "cb2":"^%(tx)s [0-9]+$",
        "rp":c.orvip,
      },"owner":{
        "cb":"^%(tx)s$|^%(tx)s @(.*)$|%(tx)s [0-9]+$",
        "cb2":"^%(tx)s [0-9]+$",
        "rp":c.orow,
      },"admin":{
        "cb":"^%(tx)s$|^%(tx)s @(.*)$|%(tx)s [0-9]+$",
        "cb2":"^%(tx)s [0-9]+$",
        "rp":c.orad,
      },"ban":{
        "cb":"^%(tx)s$|^%(tx)s @(.*)$|%(tx)s [0-9]+$",
        "cb2":"^%(tx)s [0-9]+$",
        "rp":c.orban,
      },"tk":{
        "cb":"^%(tx)s$|^%(tx)s @(.*)$|%(tx)s [0-9]+$",
        "cb2":"^%(tx)s [0-9]+$",
        "rp":c.ortk,
      }
      }
      cc = re.findall(c.addor,callback_query.message.reply_to_message.text)
      F = kbList[cpKey]
      cb = F["cb"] % {'tx': cc[0]}
      cb2 = F["cb2"] % {'tx': cc[0]}
      print(cb,cb2)
      redis.hset("{}Nbot:{}or:cb".format(BOT_ID,cpKey),chatID,cb)
      redis.hset("{}Nbot:{}or:cb2".format(BOT_ID,cpKey),chatID,cb2)
      callback_query.message.edit_text(r.Daddor.format(cc[0],F["rp"]))

    if date[0] == "delF":
      File = date[1]
      os.system("rm ./files/"+File)
      Bot("editMessageText",{"chat_id":chatID,"text":r.Delfile.format(File),"message_id":message_id,"parse_mode":"html","disable_web_page_preview":True})

    if date[0] == "delFa":
      os.system("rm -rf ./files/*")
      Bot("editMessageText",{"chat_id":chatID,"text":r.Delfiles,"message_id":message_id,"parse_mode":"html","disable_web_page_preview":True})


    if date[0] == "dlf":
      File = date[1]
      os.system("rm ./files/"+File)
      url = "https://raw.githubusercontent.com/NitroMD/NB-files/master/"+File
      out = requests.get(url).text
      f = open("./files/"+File,"w+")
      f.write(out)
      f.close()
      Bot("editMessageText",{"chat_id":chatID,"text":r.Dua.format(File),"message_id":message_id,"parse_mode":"html","disable_web_page_preview":True})

    if date[0] == "au":
      File = date[1]
      if redis.sismember("{}Nbot:botfiles".format(BOT_ID),File):
        redis.srem("{}Nbot:botfiles".format(BOT_ID),File)
      else:
        redis.sadd("{}Nbot:botfiles".format(BOT_ID),File)
      onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
      filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
      array = []
      for f in onlyfiles:
        if f in filesR:
          s = r.true
        else:
          s = r.false
        array.append([InlineKeyboardButton(f+" "+s,callback_data=json.dumps(["au",f,userID]))])
      kb = InlineKeyboardMarkup(array)
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":kb})

    if date[0] == "twostepset":
      get = date[1] 
      if get == "eq":
        redis.hset("{}Nbot:bancheck:t".format(BOT_ID),chatID,"two")
        tx = r.Ttwo
        g= "two"
      if get == "two":
        redis.hdel("{}Nbot:bancheck:t".format(BOT_ID),chatID)
        
        g= "eq"
        tx =  r.Teq
      kb = InlineKeyboardMarkup([[InlineKeyboardButton(r.tset.format(tx),callback_data=json.dumps(["twostepset",g,userID]))]])
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":kb})
      


    if date[0] == "floodset":
      get = date[1] 
      if get == "ban":
        redis.hset("{}Nbot:floodset".format(BOT_ID),chatID,"res")
        tx = r.Tres
        g= "res"
      if get == "res":
        redis.hset("{}Nbot:floodset".format(BOT_ID),chatID,"ban")
        g= "ban"
        tx =  r.Tban
      kb = InlineKeyboardMarkup([[InlineKeyboardButton(r.fset.format(tx),callback_data=json.dumps(["floodset",g,userID]))]])
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":kb})
      
    if date[0] == "delmsgclick":
      Bot("deleteMessage",{"chat_id":chatID,"message_id":message_id})
      Bot("deleteMessage",{"chat_id":chatID,"message_id":callback_query.message.reply_to_message.message_id})

    if date[0] == "ckGPs":
      rank = isrank(redis,userID,chatID)
      if rank == "sudo":
        Bot("editMessageText",{"chat_id":chatID,"text":r.ckpr,"message_id":message_id,"parse_mode":"html","disable_web_page_preview":True})
        IDS = redis.smembers("{}Nbot:groups".format(BOT_ID))
        i = 0
        for ID in IDS:
          get = Bot("getChat",{"chat_id":ID})
          if get["ok"] == False:
            redis.srem("{}Nbot:groups".format(BOT_ID),ID)
            redis.sadd("{}Nbot:disabledgroups".format(BOT_ID),ID)
            NextDay_Date = datetime.datetime.today() + datetime.timedelta(days=1)
            redis.hset("{}Nbot:disabledgroupsTIME".format(BOT_ID),ID,str(NextDay_Date))
            i+=1
          time.sleep(0.3)
        pr = redis.scard("{}Nbot:privates".format(BOT_ID))
        gp = redis.scard("{}Nbot:groups".format(BOT_ID))
        Bot("editMessageText",{"chat_id":chatID,"text":r.showstats.format(gp,pr)+r.Dckg.format(i),"message_id":message_id,"parse_mode":"html","disable_web_page_preview":True})

      else:
        Bot("answerCallbackQuery",{"callback_query_id":callback_query.id,"text":r.SudoOnle,"show_alert":True})

    if date[0] == "Chlang":
      name = date[1]
      redis.srem("{}Nbot:lang:ar".format(BOT_ID),chatID)
      redis.srem("{}Nbot:lang:arem".format(BOT_ID),chatID)
      redis.srem("{}Nbot:lang:en".format(BOT_ID),chatID)
      redis.sadd("{}Nbot:lang:{}".format(BOT_ID,name),chatID)
      
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":Clang(client, callback_query,redis,r)})

    if date[0] == "ShowDateUser":
      t = IDrank(redis,userID,chatID,r)
      msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID,chatID),userID) or 0)
      edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID,chatID),userID) or 0)
      rate = int(msgs)*100/20000
      age = getAge(userID,r)
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(Name(userFN),url="t.me/vvhvvv")],[InlineKeyboardButton(r.Rrank.format(t),url="t.me/vvhvvv")],[InlineKeyboardButton(r.Rmsgs.format(msgs),url="t.me/vvhvvv")],[InlineKeyboardButton(r.Rrate.format(str(rate)+"%"),url="t.me/vvhvvv")],[InlineKeyboardButton(r.Redits.format(edits),url="t.me/vvhvvv")],[InlineKeyboardButton(r.Rage.format(age),url="t.me/vvhvvv")]])
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
    if re.search("ShowO",date[0]):
      T = date[0].replace("ShowO","")
      rank = isrank(redis,userID,chatID)
      if T == "lock":
        reply_markup = getOR(rank,r,userID)
        tx = r.LockO
      if T == "admin":
        reply_markup = getOR(rank,r,userID)
        tx = r.AdminO

      if T == "owner":
        reply_markup = getOR(rank,r,userID)
        tx = r.OwnerO

      if T == "creator":
        reply_markup = getOR(rank,r,userID)
        tx = r.CreatorO

      if T == "sudos":
        reply_markup = getOR(rank,r,userID)
        tx = r.SudosO
      if T == "sudo":
        reply_markup = getOR(rank,r,userID)
        tx = r.SudoO

      Bot("editMessageText",{"chat_id":chatID,"text":tx,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      
    if date[0] == "sendtogroups":
      Bot("editMessageText",{"chat_id":chatID,"text":r.PRsendtoGP,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      done,dont = Sendto(redis,callback_query,"groups")
      Bot("editMessageText",{"chat_id":chatID,"text":r.DsendtoGP.format(done,dont),"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      redis.delete("{}Nbot:donesend".format(BOT_ID))
      redis.delete("{}Nbot:dontsend".format(BOT_ID))
      
    if date[0] == "sendtoprivates":
      Bot("editMessageText",{"chat_id":chatID,"text":r.PRsendtoPR,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      done,dont = Sendto(redis,callback_query,"privates")
      Bot("editMessageText",{"chat_id":chatID,"text":r.DsendtoPR.format(done,dont),"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      redis.delete("{}Nbot:donesend".format(BOT_ID))
      redis.delete("{}Nbot:dontsend".format(BOT_ID))

    if date[0] == "fwdtogroups":
      Bot("editMessageText",{"chat_id":chatID,"text":r.PRsendtoGP,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      done,dont = fwdto(redis,callback_query,"groups")
      Bot("editMessageText",{"chat_id":chatID,"text":r.DsendtoGP.format(done,dont),"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      redis.delete("{}Nbot:donesend".format(BOT_ID))
      redis.delete("{}Nbot:dontsend".format(BOT_ID))
      
    if date[0] == "fwdtoprivates":
      Bot("editMessageText",{"chat_id":chatID,"text":r.PRsendtoPR,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      done,dont = fwdto(redis,callback_query,"privates")
      Bot("editMessageText",{"chat_id":chatID,"text":r.DsendtoPR.format(done,dont),"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
      redis.delete("{}Nbot:donesend".format(BOT_ID))
      redis.delete("{}Nbot:dontsend".format(BOT_ID))


    if date[0] == "kickme-yes":
      Bot("kickChatMember",{"chat_id":chatID,"user_id":userID})
      Bot("unbanChatMember",{"chat_id":chatID,"user_id":userID})
      Bot("editMessageText",{"chat_id":chatID,"text":r.Dkickme,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})
    
    if date[0] == "kickme-no":
      Bot("editMessageText",{"chat_id":chatID,"text":r.Nkickme,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html"})

    if date[0] == "delfromb":
      Hash = date[1]
      if Hash == "blockanimations":
        ID = callback_query.message.animation.file_id
        redis.srem("{}Nbot:{}:{}".format(BOT_ID,chatId,TY),ID)
        Bot("editMessageText",{"chat_id":chatID,"text":r.DoneUNblock,"message_id":message_id,"disable_web_page_preview":True})

    if date[0] == "Blocklist":
      Botuser = client.get_me().username
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(c.STword,callback_data=json.dumps(["showBlocklist","",userID])),InlineKeyboardButton(c.STgifs,url="https://telegram.me/{}?start=showBlocklist={}={}={}".format(Botuser,chatID,userID,"blockanimations")),],[InlineKeyboardButton(c.STphoto,url="https://telegram.me/{}?start=showBlocklist={}={}={}".format(Botuser,chatID,userID,"blockphotos")),InlineKeyboardButton(c.STsticker,url="https://telegram.me/{}?start=showBlocklist={}={}={}".format(Botuser,chatID,userID,"blockSTICKERs")),]])
      Bot("editMessageText",{"chat_id":chatID,"text":r.blocklist.format(r.blocklist2,title),"message_id":message_id,"parse_mode":"html","reply_markup":reply_markup})
    if date[0] == "replylist":
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(c.STword,callback_data=json.dumps(["showreplylist","",userID])),InlineKeyboardButton(c.STgifs,callback_data=json.dumps(["showGFreplylist","",userID])),],[InlineKeyboardButton(c.STvoice,callback_data=json.dumps(["showVOreplylist","",userID])),InlineKeyboardButton(c.STsticker,callback_data=json.dumps(["showSTreplylist","",userID])),]])
      Bot("editMessageText",{"chat_id":chatID,"text":r.blocklist.format(r.replylist,title),"message_id":message_id,"parse_mode":"html","reply_markup":reply_markup})
    if date[0] == "replylistBOT":
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(c.STword,callback_data=json.dumps(["showreplylistBOT","",userID])),InlineKeyboardButton(c.STgifs,callback_data=json.dumps(["showGFreplylistBOT","",userID])),],[InlineKeyboardButton(c.STvoice,callback_data=json.dumps(["showVOreplylistBOT","",userID])),InlineKeyboardButton(c.STsticker,callback_data=json.dumps(["showSTreplylistBOT","",userID])),]])
      Bot("editMessageText",{"chat_id":chatID,"text":r.blocklist.format(r.replylistBot,title),"message_id":message_id,"parse_mode":"html","reply_markup":reply_markup})
    
    if date[0] == "alllist":
      reply_markup=InlineKeyboardMarkup(
          [[InlineKeyboardButton(c.STbanall,callback_data=json.dumps(["showbanall","",userID]))
          ,InlineKeyboardButton(c.STtkall,callback_data=json.dumps(["showtkall","",userID])),]
          ])
      Bot("editMessageText",{"chat_id":chatID,"text":r.banlist,"message_id":message_id,"parse_mode":"html","reply_markup":reply_markup})
    
    if date[0] == "delallban":
      redis.delete("{}Nbot:bans".format(BOT_ID))
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["alllist","",userID])),]])
      Bot("editMessageText",{"chat_id":chatID,"text":r.Ddelbanall,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html","reply_markup":reply_markup})

    if date[0] == "delalltk":
      redis.delete("{}Nbot:restricteds".format(BOT_ID))
      reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["alllist","",userID])),]])
      Bot("editMessageText",{"chat_id":chatID,"text":r.Ddeltkall,"message_id":message_id,"disable_web_page_preview":True,"parse_mode":"html","reply_markup":reply_markup})
      
    if date[0] == "showBlocklist":
      li = redis.smembers("{}Nbot:{}:blockTEXTs".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - "+word
          i += 1
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.BlocklistRm,callback_data=json.dumps(["delListblockTEXTs","",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["Blocklist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["Blocklist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.BlocklistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
    
    if date[0] == "showbanall":
      arrays = redis.smembers("{}Nbot:bans".format(BOT_ID))
      if arrays:
        b = BYusers(arrays,chatID,redis,client)
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.allbandel,callback_data=json.dumps(["delallban","",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["alllist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":b,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup,"parse_mode":"markdown"})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["alllist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.allbanE,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})

    if date[0] == "showtkall":
      arrays = redis.smembers("{}Nbot:restricteds".format(BOT_ID))
      if arrays:
        b = BYusers(arrays,chatID,redis,client)
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.alltkdel,callback_data=json.dumps(["delalltk","",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["alllist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":b,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup,"parse_mode":"markdown"})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["alllist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.alltkE,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
    
    if date[0] == "showreplylist":
      li = redis.hkeys("{}Nbot:{}:TXreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylist={}={}={}".format(Botuser,chatID,userID,"TXreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.replylistRm,callback_data=json.dumps(["delTXreplys","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.replylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})


    if date[0] == "showSTreplylist":
      li = redis.hkeys("{}Nbot:{}:STreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylist={}={}={}".format(Botuser,chatID,userID,"STreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.STreplylistRm,callback_data=json.dumps(["delSTreplys","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.STreplylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})


    if date[0] == "showGFreplylist":
      li = redis.hkeys("{}Nbot:{}:GFreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylist={}={}={}".format(Botuser,chatID,userID,"GFreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.GFreplylistRm,callback_data=json.dumps(["delGFreplys","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.GFreplylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})

    if date[0] == "showVOreplylist":
      li = redis.hkeys("{}Nbot:{}:VOreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylist={}={}={}".format(Botuser,chatID,userID,"VOreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.VOreplylistRm,callback_data=json.dumps(["delVOreplys","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylist","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.VOreplylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})

    if date[0] == "showreplylistBOT":
      li = redis.hkeys("{}Nbot:TXreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylistBOT={}={}={}".format(Botuser,chatID,userID,"TXreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.replylistRm,callback_data=json.dumps(["delTXreplysBOT","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.replylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})


    if date[0] == "showSTreplylistBOT":
      li = redis.hkeys("{}Nbot:STreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylistBOT={}={}={}".format(Botuser,chatID,userID,"STreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.STreplylistRm,callback_data=json.dumps(["delSTreplysBOT","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.STreplylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})


    if date[0] == "showGFreplylistBOT":
      li = redis.hkeys("{}Nbot:GFreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylistBOT={}={}={}".format(Botuser,chatID,userID,"GFreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.GFreplylistRm,callback_data=json.dumps(["delGFreplysBOT","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.GFreplylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})

    if date[0] == "showVOreplylistBOT":
      li = redis.hkeys("{}Nbot:VOreplys".format(BOT_ID,chatID))
      if li:
        words = ""
        i = 1
        for word in li:
          words = words+"\n"+str(i)+" - {"+word+"}"
          i += 1
        if len(words) > 3000:
          Botuser = client.get_me().username
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.clickTOpv,url="https://telegram.me/{}?start=showreplylistBOT={}={}={}".format(Botuser,chatID,userID,"VOreplys")),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":r.Toolong,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
        else:
          reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton(r.VOreplylistRm,callback_data=json.dumps(["delVOreplysBOT","kb",userID])),],[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
          Bot("editMessageText",{"chat_id":chatID,"text":words,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})
      else:
        reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("<<",callback_data=json.dumps(["replylistBOT","",userID])),]])
        Bot("editMessageText",{"chat_id":chatID,"text":r.VOreplylistEm,"message_id":message_id,"disable_web_page_preview":True,"reply_markup":reply_markup})

    
    if date[0] == "listCH":
      if int(date[1]) != 4:
        Bot("editMessageText",{"chat_id":chatID,"text":r.settings.format(title),"message_id":message_id,"disable_web_page_preview":True,"reply_markup":st(client, callback_query,redis,int(date[1])),"parse_mode":"html"})
        #Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"reply_markup":st(client, callback_query,redis,int(date[3]))})
      else:
        T = (redis.hget("{}Nbot:time_ck".format(BOT_ID),chatID) or 3)
        m = (redis.hget("{}Nbot:max_msg".format(BOT_ID),chatID) or 10)
        Bot("editMessageText",{"chat_id":chatID,"text":r.st2.format(T,m),"message_id":message_id,"disable_web_page_preview":True,"reply_markup":st(client, callback_query,redis,int(date[1])),"parse_mode":"html"})
    if date[0] == "listCH-res":
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"reply_markup":st_res(client, callback_query,redis,int(date[1]))})


      #Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"reply_markup":st(client, callback_query,redis,int(date[1]))})
    if date[0] == 'LU-res':
      d = date[1].split("-")
      lock = d[0]
      lockres = d[0]+":"+d[1]
      if redis.sismember("{}Nbot:{}".format(BOT_ID,lockres),chatID):
        redis.srem("{}Nbot:{}".format(BOT_ID,lockres),chatID)
      else:
        redis.sadd("{}Nbot:{}".format(BOT_ID,lockres),chatID)
        redis.sadd("{}Nbot:{}".format(BOT_ID,lock),chatID)
      Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"reply_markup":st_res(client, callback_query,redis,int(date[3]))})


    
    
    if date[0] == 'LU':
      if redis.sismember("{}Nbot:{}".format(BOT_ID,date[1]),chatID):
        save = redis.srem("{}Nbot:{}".format(BOT_ID,date[1]),chatID)
      else:
        save = redis.sadd("{}Nbot:{}".format(BOT_ID,date[1]),chatID)
      if int(date[3]) != 4:
        Bot("editMessageText",{"chat_id":chatID,"text":r.settings.format(title),"message_id":message_id,"disable_web_page_preview":True,"reply_markup":st(client, callback_query,redis,int(date[3])),"parse_mode":"html"})
        #Bot("editMessageReplyMarkup",{"chat_id":chatID,"message_id":message_id,"reply_markup":st(client, callback_query,redis,int(date[3]))})
      else:
        T = (redis.hget("{}Nbot:time_ck".format(BOT_ID),chatID) or 3)
        m = (redis.hget("{}Nbot:max_msg".format(BOT_ID),chatID) or 10)
        Bot("editMessageText",{"chat_id":chatID,"text":r.st2.format(T,m),"message_id":message_id,"disable_web_page_preview":True,"reply_markup":st(client, callback_query,redis,int(date[3])),"parse_mode":"html"})

    if date[0] == "delListblockTEXTs":
      redis.delete("{}Nbot:{}:blockTEXTs".format(BOT_ID,chatID))
      Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})

    if date[0] == "delListbans":
      arrays = redis.smembers("{}Nbot:{}:bans".format(BOT_ID,chatID))
      for user in arrays:
        GetGprank = GPranks(user,chatID)
        if GetGprank == "kicked":
          Bot("unbanChatMember",{"chat_id":chatID,"user_id":user})
        redis.srem("{}Nbot:{}:bans".format(BOT_ID,chatID),user)
      Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})

    if date[0] == "delListrestricteds":
      arrays = redis.smembers("{}Nbot:{}:restricteds".format(BOT_ID,chatID))
      for user in arrays:
        GetGprank = GPranks(user,chatID)
        if GetGprank == "restricted":
          Bot("restrictChatMember",{"chat_id": chatID,"user_id": user,"can_send_messages": 1,"can_send_media_messages": 1,"can_send_other_messages": 1,"can_send_polls": 1,"can_change_info": 1,"can_add_web_page_previews": 1,"can_pin_messages": 1,})
        redis.srem("{}Nbot:{}:restricteds".format(BOT_ID,chatID),user)
      Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})

    if date[0] == "LandU":
      if date[3] == "LtoU":
        if redis.sismember("{}Nbot:{}".format(BOT_ID,date[1]),chatID):
          redis.srem("{}Nbot:{}".format(BOT_ID,date[1]),chatID)
          Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
        else:
          Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
      if date[3] == "UtoL":
        if redis.sismember("{}Nbot:{}".format(BOT_ID,date[1]),chatID):
          Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
        else:
          redis.sadd("{}Nbot:{}".format(BOT_ID,date[1]),chatID)
          Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
    
    if date[0] == "Corder":
      if date[1] == "bans":
        if date[4] == "UtoB":
          if redis.sismember("{}Nbot:{}:bans".format(BOT_ID,chatID),date[3]):
            Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
          else:
            GetGprank = GPranks(date[3],chatID)
            if GetGprank == "kicked":
              Bot("kickChatMember",{"chat_id":chatID,"user_id":date[3]})
            redis.srem("{}Nbot:{}:bans".format(BOT_ID,chatID),date[3])
            Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
        if date[4] == "BtoU":
          if redis.sismember("{}Nbot:{}:bans".format(BOT_ID,chatID),date[3]):
            GetGprank = GPranks(date[3],chatID)
            if GetGprank == "kicked":
              Bot("unbanChatMember",{"chat_id":chatID,"user_id":date[3]})
            redis.srem("{}Nbot:{}:bans".format(BOT_ID,chatID),date[3])
            Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
          else:
            Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
      
      if date[1] == "restricteds":
        if date[4] == "UtoB":
          if redis.sismember("{}Nbot:{}:restricteds".format(BOT_ID,chatID),date[3]):
            Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
          else:
            GetGprank = GPranks(date[3],chatID)
            if GetGprank == "restricted":
              Bot("restrictChatMember",{"chat_id": chatID,"user_id": date[3],"can_send_messages": 0,"can_send_media_messages": 0,"can_send_other_messages": 0,"can_send_polls": 0,"can_change_info": 0,"can_add_web_page_previews": 0,"can_pin_messages": 0,})
            redis.sadd("{}Nbot:{}:restricteds".format(BOT_ID,chatID),date[3])
            Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
        if date[4] == "BtoU":
          if redis.sismember("{}Nbot:{}:restricteds".format(BOT_ID,chatID),date[3]):
            GetGprank = GPranks(date[3],chatID)
            if GetGprank == "restricted":
              Bot("restrictChatMember",{"chat_id": chatID,"user_id": date[3],"can_send_messages": 1,"can_send_media_messages": 1,"can_send_other_messages": 1,"can_send_polls": 1,"can_change_info": 1,"can_add_web_page_previews": 1,"can_pin_messages": 1,})
            redis.srem("{}Nbot:{}:restricteds".format(BOT_ID,chatID),date[3])
            Bot("editMessageText",{"chat_id":chatID,"text":r.doneCO,"message_id":message_id,"disable_web_page_preview":True})
          else:
            Bot("editMessageText",{"chat_id":chatID,"text":r.ARdoneCO,"message_id":message_id,"disable_web_page_preview":True})
    
    if date[0] == "delList":
      H = date[1]


      if H != "sudos" and H != "creator":
        redis.delete("{}Nbot:{}:{}".format(BOT_ID,chatID,H))
        Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})
      if H == "sudos":
        redis.delete("{}Nbot:sudos".format(BOT_ID))
        Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})
      if H == "creator":
        redis.delete("{}Nbot:{}:{}".format(BOT_ID,chatID,H))
        Bot("editMessageText",{"chat_id":chatID,"text":r.DoneDelList,"message_id":message_id,"disable_web_page_preview":True})
    redis.setex("{}Nbot:{}:floodClick".format(BOT_ID,userID), 3, User_click+1)
    Bot("answerCallbackQuery",{"callback_query_id":callback_query.id})
  elif int(date[2]) != userID:
    Bot("answerCallbackQuery",{"callback_query_id":callback_query.id,"text":r.notforyou,"show_alert":True})
    redis.setex("{}Nbot:{}:floodClick".format(BOT_ID,userID), 3, User_click+1)

  if redis.smembers("{}Nbot:botfiles".format(BOT_ID)):
    onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
    filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
    for f in onlyfiles:
      if f in filesR:
        fi = f.replace(".py","")
        UpMs= "files."+fi
        try:
          U = importlib.import_module(UpMs)
          t = threading.Thread(target=U.updateCb,args=(client, callback_query,redis))
          t.setDaemon(True)
          t.start()
          importlib.reload(U)
        except Exception as e:
          pass
コード例 #6
0
ファイル: nf.py プロジェクト: NewBotMD/NB
def nf(client, message,redis):
  type = message.chat.type
  userID = message.from_user.id
  chatID = message.chat.id
  title = message.chat.title
  rank = isrank(redis,userID,chatID)
  text = message.text
  lang = Glang(redis,chatID)
  moduleCMD = "lang."+lang+"-cmd"
  moduleREPLY = "lang."+lang+"-reply"
  c = importlib.import_module(moduleCMD)
  r = importlib.import_module(moduleREPLY)
  group = redis.sismember("{}Nbot:groups".format(BOT_ID),chatID)
  rank = isrank(redis,userID,chatID)
  if group is True:

    if message.left_chat_member:
      if message.left_chat_member.id == int(BOT_ID):
        redis.srem("{}Nbot:groups".format(BOT_ID),chatID)
        redis.sadd("{}Nbot:disabledgroups".format(BOT_ID),chatID)
        NextDay_Date = datetime.datetime.today() + datetime.timedelta(days=1)
        redis.hset("{}Nbot:disabledgroupsTIME".format(BOT_ID),chatID,str(NextDay_Date))
    if message.pinned_message:
      if redis.sismember("{}Nbot:Lpin".format(BOT_ID),chatID) and rank != "creator":
        ID = redis.hget("{}Nbot:pinmsgs".format(BOT_ID),chatID)
        Bot("pinChatMessage",{"chat_id":chatID,"message_id":ID})
    
    if message.new_chat_members:

      if (rank is False or rank is 0) and GPranks(userID,chatID) == "member" and re.search("is_bot=True",str(message.new_chat_members)):
        if redis.sismember("{}Nbot:Lbots".format(BOT_ID),chatID):
          for mb in message.new_chat_members:
            first_name = mb.first_name
            username = mb.username
            isbot = mb.is_bot
            mbID = mb.id
            if isbot:
              Bot("kickChatMember",{"chat_id":chatID,"user_id":mb.id})

      if message.new_chat_members and redis.sismember("{}Nbot:bancheck".format(BOT_ID),chatID):
        if redis.hget("{}Nbot:bancheck:t".format(BOT_ID),chatID):
          for mb in message.new_chat_members:
            userFn = mb.first_name
            username = mb.username
            isbot = mb.is_bot
            userId = mb.id
            if isbot:return False
            Bot("restrictChatMember",{"chat_id": chatID,"user_id": userId,"can_send_messages": 0,"can_send_media_messages": 0,"can_send_other_messages": 0,
            "can_send_polls": 0,"can_change_info": 0,"can_add_web_page_previews": 0,"can_pin_messages": 0,"can_invite_users": 0,})
            kb = InlineKeyboardMarkup([[InlineKeyboardButton(r.no, callback_data=json.dumps(["kickcheck","",userId])),InlineKeyboardButton(r.yes, callback_data=json.dumps(["delcheck","",userId]))]])
            T ="<a href=\"tg://user?id={}\">{}</a>".format(userId,Name(userFn))
            random.shuffle(kb.inline_keyboard[0])
            Bot("sendMessage",{"chat_id":chatID,"text":r.checkmem.format(T),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":kb})
        else:
          for mb in message.new_chat_members:
            userFn = mb.first_name
            username = mb.username
            isbot = mb.is_bot
            userId = mb.id
            if isbot:return False
            q,aw,r1,r2 = eq()
            Bot("restrictChatMember",{"chat_id": chatID,"user_id": userId,"can_send_messages": 0,"can_send_media_messages": 0,"can_send_other_messages": 0,
            "can_send_polls": 0,"can_change_info": 0,"can_add_web_page_previews": 0,"can_pin_messages": 0,"can_invite_users": 0,})
            kb = InlineKeyboardMarkup([[InlineKeyboardButton(aw, callback_data=json.dumps(["certain","",userId])),InlineKeyboardButton(r1, callback_data=json.dumps(["kickcheck","",userId])),InlineKeyboardButton(r2, callback_data=json.dumps(["kickcheck","",userId]))]])
            random.shuffle(kb.inline_keyboard[0])
            T ="<a href=\"tg://user?id={}\">{}</a>".format(userId,Name(userFn))
            Bot("sendMessage",{"chat_id":chatID,"text":r.checkmem2.format(T,q),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":kb})
  

      if redis.sismember("{}Nbot:Ljoin".format(BOT_ID),chatID):#17
        Bot("deleteMessage",{"chat_id":chatID,"message_id":message.message_id})
        
      if message.new_chat_members and not redis.sismember("{}Nbot:welcomeSend".format(BOT_ID),chatID):
        wl = (redis.hget("{}Nbot:welcome".format(BOT_ID),chatID) or "")
        userId = message.new_chat_members[0].id
        userFn = message.new_chat_members[0].first_name
        T ="<a href=\"tg://user?id={}\">{}</a>".format(userId,Name(userFn))
        Bot("sendMessage",{"chat_id":chatID,"text":wl.format(us=T),"reply_to_message_id":message.message_id,"parse_mode":"html"})
        
      if message.new_chat_members:
        userId = message.new_chat_members[0].id
        if userID != userId:
          redis.hincrby("{}Nbot:{}:addcontact".format(BOT_ID,chatID),userID)

      if message.new_chat_members:
        chatID = message.chat.id
        userId = message.new_chat_members[0].id
        if redis.sismember("{}Nbot:restricteds".format(BOT_ID),userId):
          Bot("restrictChatMember",{"chat_id": chatID,"user_id": userId,"can_send_messages": 0,"can_send_media_messages": 0,"can_send_other_messages": 0,
            "can_send_polls": 0,"can_change_info": 0,"can_add_web_page_previews": 0,"can_pin_messages": 0,"can_invite_users": 0,})
        if redis.sismember("{}Nbot:bans".format(BOT_ID),userId):
          Bot("kickChatMember",{"chat_id":chatID,"user_id":userId})
コード例 #7
0
ファイル: all.py プロジェクト: zzmmlk/TshakeV2
def allGP(client, message, redis):
    type = message.chat.type
    userID = message.from_user.id
    chatID = message.chat.id
    username = message.from_user.username
    if username is None:
        username = "******"
    userFN = message.from_user.first_name
    title = message.chat.title
    rank = isrank(redis, userID, chatID)
    text = message.text
    c = importlib.import_module("lang.arcmd")
    r = importlib.import_module("lang.arreply")
    redis.hincrby("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
    if text:
        if re.search(c.setGPadmin, text):
            if re.search("@", text):
                user = text.split("@")[1]
            if re.search(c.setGPadmin2, text):
                user = int(re.search(r'\d+', text).group())
            if message.reply_to_message:
                user = message.reply_to_message.from_user.id
            if 'user' not in locals(): return False
            if GPranks(userID, chatID) == "member": return False
            Getus = Bot("getChatMember", {
                "chat_id": chatID,
                "user_id": userID
            })["result"]
            if Getus["status"] == "administrator" and not Getus[
                    "can_promote_members"]:
                return False
            try:
                getUser = client.get_users(user)
                userId = getUser.id
                userFn = getUser.first_name
                if GPranks(userId, chatID) != "member": return False
                pr = Bot(
                    "promoteChatMember", {
                        "chat_id": chatID,
                        "user_id": userId,
                        "can_change_info": 1,
                        "can_delete_messages": 1,
                        "can_invite_users": 1,
                        "can_restrict_members": 1,
                        "can_pin_messages": 1
                    })
                if pr["ok"]:
                    T = "<a href=\"tg://user?id={}\">{}</a>".format(
                        userId, Name(userFn))
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": r.prGPadmin.format(T),
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })
            except Exception as e:
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.userNocc,
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })

        if re.search(c.sors, text):
            kb = InlineKeyboardMarkup(
                [[InlineKeyboardButton("قناه السورس 📢", url="t.me/zx_xx")],
                 [InlineKeyboardButton("تواصل السورس 💬", url="t.me/A_5bot")],
                 [
                     InlineKeyboardButton("شروحات السورس 📑",
                                          url="t.me/tshaketeam")
                 ]])
            Botuser = client.get_me().username
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.sors.format("@" + Botuser),
                    "disable_web_page_preview": True,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "markdown",
                    "reply_markup": kb
                })

        if re.search(c.dellink, text):
            kb = InlineKeyboardMarkup([[
                InlineKeyboardButton(c.dellink2,
                                     url="https://telegram.org/deactivate")
            ]])
            Botuser = client.get_me().username
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.dellink,
                    "disable_web_page_preview": True,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "markdown",
                    "reply_markup": kb
                })

        if re.search(c.ShowO, text) and (rank is not False or rank is not 0
                                         or rank != "vip"):
            reply_markup = getOR(rank, r, userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.Showall,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True,
                    "reply_markup": reply_markup
                })

        if text == "عدد الكروب" and (rank is not False or rank is not 0):
            from pyrogram.api.functions.channels import GetFullChannel
            chat = client.resolve_peer(chatID)
            full_chat = client.send(GetFullChannel(channel=chat)).full_chat
            Bot(
                "sendMessage", {
                    "chat_id":
                    chatID,
                    "text":
                    r.gpinfo.format(
                        message.chat.title, full_chat.participants_count,
                        full_chat.admins_count, full_chat.kicked_count,
                        full_chat.banned_count, message.message_id),
                    "reply_to_message_id":
                    message.message_id,
                    "parse_mode":
                    "html",
                    "disable_web_page_preview":
                    True
                })
        if text == c.ID and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID),
                chatID) and not message.reply_to_message:
            Ch = True
            # if redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
            t = IDrank(redis, userID, chatID, r)
            msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
                    or 0)
            edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID),
                                userID) or 0)
            rate = int(msgs) * 100 / 20000
            age = getAge(userID, r)
            if redis.hget("{}Nbot:SHOWid".format(BOT_ID), chatID):
                tx = redis.hget("{}Nbot:SHOWid".format(BOT_ID), chatID)
                rep = {
                    "#age": "{age}",
                    "#name": "{name}",
                    "#id": "{id}",
                    "#username": "******",
                    "#msgs": "{msgs}",
                    "#stast": "{stast}",
                    "#edits": "{edits}",
                    "#rate": "{rate}",
                    "{us}": "{username}",
                    "#us": "{username}"
                }
                for v in rep.keys():
                    tx = tx.replace(v, rep[v])
            else:
                tx = r.IDnPT
            if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID), chatID):
                get = Bot("getUserProfilePhotos", {
                    "user_id": userID,
                    "offset": 0,
                    "limit": 1
                })
                if get["ok"] == False:
                    Ch = True
                elif get["result"]["total_count"] == 0:
                    Ch = True
                else:
                    Ch = False
                    file_id = get["result"]["photos"][0][0]["file_id"]
                    Bot(
                        "sendPhoto", {
                            "chat_id":
                            chatID,
                            "photo":
                            file_id,
                            "caption":
                            tx.format(username=("@" + username or "None"),
                                      id=userID,
                                      stast=t,
                                      msgs=msgs,
                                      edits=edits,
                                      age=age,
                                      rate=str(rate) + "%"),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })
            if Ch == True:
                Bot(
                    "sendMessage", {
                        "chat_id":
                        chatID,
                        "text":
                        tx.format(username=("@" + username or "None"),
                                  id=userID,
                                  stast=t,
                                  msgs=msgs,
                                  edits=edits,
                                  age=age,
                                  rate=str(rate) + "%"),
                        "reply_to_message_id":
                        message.message_id,
                        "parse_mode":
                        "html"
                    })

            # if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID),chatID) and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
            #   get = Bot("getUserProfilePhotos",{"user_id":userID,"offset":0,"limit":1})
            #   if get["ok"] == False:
            #     Ch = True
            #   elif get["result"]["total_count"] == 0:
            #     Ch = True
            #   else:
            #     Ch = False
            #     reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.RIDPHs,callback_data=json.dumps(["ShowDateUser","",userID]))]])
            #     file_id = get["result"]["photos"][0][0]["file_id"]
            #     Bot("sendPhoto",{"chat_id":chatID,"photo":file_id,"caption":r.RID.format(userID),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":reply_markup})
            # if Ch == True and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),chatID):
            #   reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton(r.RIDPHs,callback_data=json.dumps(["ShowDateUser","",userID]))]])
            #   Bot("sendMessage",{"chat_id":chatID,"text":r.RID.format(userID),"reply_to_message_id":message.message_id,"parse_mode":"html","reply_markup":reply_markup})

        if text == "رتبتي":
            t = IDrank(redis, userID, chatID, r)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": f"⏏️꒐ موقعك : {t}",
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.ID and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID),
                chatID) and message.reply_to_message:
            us = message.reply_to_message.from_user.id
            rusername = message.reply_to_message.from_user.username
            if rusername is None:
                rusername = "******"
            t = IDrank(redis, us, chatID, r)
            msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), us)
                    or 0)
            edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID), us)
                     or 0)
            rate = int(msgs) * 100 / 20000
            age = getAge(us, r)
            tx = r.ReIDnPT
            Bot(
                "sendMessage", {
                    "chat_id":
                    chatID,
                    "text":
                    tx.format(Reus=("@" + rusername or "None"),
                              ReID=us,
                              Rerank=t,
                              Remsgs=msgs,
                              Reedits=edits,
                              Rage=age,
                              Rerate=str(rate) + "%"),
                    "reply_to_message_id":
                    message.message_id,
                    "parse_mode":
                    "html"
                })
        if re.search(c.idus, text) and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID), chatID):
            user = text.split("@")[1]
            try:
                getUser = client.get_users(user)
                us = getUser.id
                rusername = user
                if rusername is None:
                    rusername = "******"
                age = getAge(us, r)
                t = IDrank(redis, us, chatID, r)
                msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), us)
                        or 0)
                edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID),
                                    us) or 0)
                rate = int(msgs) * 100 / 20000
                tx = r.ReIDnPT
                Bot(
                    "sendMessage", {
                        "chat_id":
                        chatID,
                        "text":
                        tx.format(Reus=("@" + rusername or "None"),
                                  ReID=us,
                                  Rerank=t,
                                  Remsgs=msgs,
                                  Reedits=edits,
                                  Rage=age,
                                  Rerate=str(rate) + "%"),
                        "reply_to_message_id":
                        message.message_id,
                        "parse_mode":
                        "html"
                    })
            except Exception as e:
                print(e)

        if re.search(c.ShowSudos, text):
            tx = (redis.get("{}Nbot:SHOWsudos".format(BOT_ID)) or "")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": tx,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.mymsgs:
            get = redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.yourmsgs.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.link and not redis.sismember(
                "{}Nbot:showlink".format(BOT_ID), chatID):
            get = (redis.hget("{}Nbot:links".format(BOT_ID), chatID)
                   or GetLink(chatID) or "none")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.showGPlk.format(get),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if text == c.myedits:
            get = redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID), userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.youredits.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })

        if text == c.myaddcontact:
            get = redis.hget("{}Nbot:{}:addcontact".format(BOT_ID, chatID),
                             userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.youraddcontact.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })

        if not redis.sismember("{}Nbot:ReplySendBOT".format(BOT_ID), chatID):
            if redis.hexists("{}Nbot:TXreplys".format(BOT_ID), text):
                tx = redis.hget("{}Nbot:TXreplys".format(BOT_ID), text)
                try:
                    rep = {
                        "#cn": "{cn}",
                        "#age": "{age}",
                        "#fn": "{fn}",
                        "#id": "{id}",
                        "#username": "******",
                        "#msgs": "{msgs}",
                        "#stast": "{stast}",
                        "#edits": "{edits}",
                        "#rate": "{rate}",
                        "{us}": "{username}",
                        "#us": "{username}"
                    }
                    for v in rep.keys():
                        tx = tx.replace(v, rep[v])
                    Bot(
                        "sendMessage", {
                            "chat_id":
                            chatID,
                            "text":
                            tx.format(fn=userFN,
                                      username=("@" + username or "n"),
                                      id=userID,
                                      stast=IDrank(redis, userID, chatID, r),
                                      cn=title),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })
                except Exception as e:
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": tx,
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })

            if redis.hexists("{}Nbot:STreplys".format(BOT_ID), text):
                ID = redis.hget("{}Nbot:STreplys".format(BOT_ID), text)
                Bot(
                    "sendSticker", {
                        "chat_id": chatID,
                        "sticker": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:GFreplys".format(BOT_ID), text):
                ID = redis.hget("{}Nbot:GFreplys".format(BOT_ID), text)
                Bot(
                    "sendanimation", {
                        "chat_id": chatID,
                        "animation": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:VOreplys".format(BOT_ID), text)
                Bot(
                    "sendvoice", {
                        "chat_id": chatID,
                        "voice": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:PHreplys".format(BOT_ID, chatID), text):
                ID = redis.hget("{}Nbot:PHreplys".format(BOT_ID), text)
                Bot(
                    "sendphoto", {
                        "chat_id": chatID,
                        "photo": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:DOreplys".format(BOT_ID, chatID), text):
                ID = redis.hget("{}Nbot:DOreplys".format(BOT_ID), text)
                Bot(
                    "sendDocument", {
                        "chat_id": chatID,
                        "document": ID,
                        "reply_to_message_id": message.message_id
                    })

        if not redis.sismember("{}Nbot:ReplySend".format(BOT_ID), chatID):
            if redis.hexists("{}Nbot:{}:TXreplys".format(BOT_ID, chatID),
                             text):
                tx = redis.hget("{}Nbot:{}:TXreplys".format(BOT_ID, chatID),
                                text)
                try:
                    rep = {
                        "#cn": "{cn}",
                        "#age": "{age}",
                        "#fn": "{fn}",
                        "#id": "{id}",
                        "#username": "******",
                        "#msgs": "{msgs}",
                        "#stast": "{stast}",
                        "#edits": "{edits}",
                        "#rate": "{rate}",
                        "{us}": "{username}",
                        "#us": "{username}"
                    }
                    for v in rep.keys():
                        tx = tx.replace(v, rep[v])
                    Bot(
                        "sendMessage", {
                            "chat_id":
                            chatID,
                            "text":
                            tx.format(fn=userFN,
                                      username=("@" + username or "n"),
                                      id=userID,
                                      stast=IDrank(redis, userID, chatID, r),
                                      cn=title),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })
                except Exception as e:
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": tx,
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })

            if redis.hexists("{}Nbot:{}:STreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:STreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendSticker", {
                        "chat_id": chatID,
                        "sticker": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:GFreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:GFreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendanimation", {
                        "chat_id": chatID,
                        "animation": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendvoice", {
                        "chat_id": chatID,
                        "voice": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:AUreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:AUreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendaudio", {
                        "chat_id": chatID,
                        "audio": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:PHreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:PHreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendphoto", {
                        "chat_id": chatID,
                        "photo": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:DOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:DOreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendDocument", {
                        "chat_id": chatID,
                        "document": ID,
                        "reply_to_message_id": message.message_id
                    })

    if redis.smembers("{}Nbot:botfiles".format(BOT_ID)):
        onlyfiles = [f for f in listdir("files") if isfile(join("files", f))]
        filesR = redis.smembers("{}Nbot:botfiles".format(BOT_ID))
        for f in onlyfiles:
            if f in filesR:
                fi = f.replace(".py", "")
                UpMs = "files." + fi
                try:
                    U = importlib.import_module(UpMs)
                    t = threading.Thread(target=U.updateMsgs,
                                         args=(client, message, redis))
                    t.daemon = True
                    t.start()
                    importlib.reload(U)
                except Exception as e:
                    import traceback
                    traceback.print_exc()
                    print(e)
                    pass
コード例 #8
0
ファイル: all.py プロジェクト: MetalGhost1/NewBot
def allGP(client, message, redis):
    type = message.chat.type
    userID = message.from_user.id
    chatID = message.chat.id
    username = message.from_user.username
    if username is None:
        username = "******"
    userFN = message.from_user.first_name
    title = message.chat.title
    rank = isrank(redis, userID, chatID)
    text = message.text
    if redis.sismember("{}Nbot:lang:ar".format(BOT_ID), chatID):
        lang = "ar"
    elif redis.sismember("{}Nbot:lang:en".format(BOT_ID), chatID):
        lang = "en"
    else:
        lang = "ar"
    moduleCMD = "lang." + lang + "-cmd"
    moduleREPLY = "lang." + lang + "-reply"
    c = importlib.import_module(moduleCMD)
    r = importlib.import_module(moduleREPLY)
    redis.hincrby("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
    if text:
        if re.search(c.ShowO, text) and (rank is not False or rank is not 0
                                         or rank != "vip"):
            reply_markup = getOR(rank, r, userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.Showall,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True,
                    "reply_markup": reply_markup
                })

        if text == c.ID and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID),
                chatID) and not message.reply_to_message:
            Ch = True
            if redis.sismember("{}Nbot:IDpt".format(BOT_ID), chatID):
                t = IDrank(redis, userID, chatID, r)
                msgs = (redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID),
                                   userID) or 0)
                edits = (redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID),
                                    userID) or 0)
                rate = int(msgs) * 100 / 20000
                if redis.hget("{}Nbot:SHOWid".format(BOT_ID), chatID):
                    tx = redis.hget("{}Nbot:SHOWid".format(BOT_ID), chatID)
                else:
                    tx = r.IDnPT
                if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID),
                                       chatID):
                    get = Bot("getUserProfilePhotos", {
                        "user_id": userID,
                        "offset": 0,
                        "limit": 1
                    })
                    if get["ok"] == False:
                        Ch = True
                    elif get["result"]["total_count"] == 0:
                        Ch = True
                    else:
                        Ch = False
                        file_id = get["result"]["photos"][0][0]["file_id"]
                        Bot(
                            "sendPhoto", {
                                "chat_id":
                                chatID,
                                "photo":
                                file_id,
                                "caption":
                                tx.format(us=("@" + username or "None"),
                                          id=userID,
                                          rk=t,
                                          msgs=msgs,
                                          edits=edits,
                                          rate=str(rate) + "%"),
                                "reply_to_message_id":
                                message.message_id,
                                "parse_mode":
                                "html"
                            })
                if Ch == True:
                    Bot(
                        "sendMessage", {
                            "chat_id":
                            chatID,
                            "text":
                            tx.format(us=("@" + username or "None"),
                                      id=userID,
                                      rk=t,
                                      msgs=msgs,
                                      edits=edits,
                                      rate=str(rate) + "%"),
                            "reply_to_message_id":
                            message.message_id,
                            "parse_mode":
                            "html"
                        })

            if not redis.sismember("{}Nbot:IDSendPH".format(BOT_ID),
                                   chatID) and not redis.sismember(
                                       "{}Nbot:IDpt".format(BOT_ID), chatID):
                get = Bot("getUserProfilePhotos", {
                    "user_id": userID,
                    "offset": 0,
                    "limit": 1
                })
                if get["ok"] == False:
                    Ch = True
                elif get["result"]["total_count"] == 0:
                    Ch = True
                else:
                    Ch = False
                    reply_markup = InlineKeyboardMarkup([[
                        InlineKeyboardButton(r.RIDPHs,
                                             callback_data=json.dumps(
                                                 ["ShowDateUser", "", userID]))
                    ]])
                    file_id = get["result"]["photos"][0][0]["file_id"]
                    Bot(
                        "sendPhoto", {
                            "chat_id": chatID,
                            "photo": file_id,
                            "caption": r.RID.format(userID),
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html",
                            "reply_markup": reply_markup
                        })
            if Ch == True and not redis.sismember("{}Nbot:IDpt".format(BOT_ID),
                                                  chatID):
                reply_markup = InlineKeyboardMarkup([[
                    InlineKeyboardButton(r.RIDPHs,
                                         callback_data=json.dumps(
                                             ["ShowDateUser", "", userID]))
                ]])
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": r.RID.format(userID),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html",
                        "reply_markup": reply_markup
                    })

        if text == c.ID and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID),
                chatID) and message.reply_to_message:
            us = message.reply_to_message.from_user.id
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": us,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if re.search(c.idus, text) and not redis.sismember(
                "{}Nbot:IDSend".format(BOT_ID), chatID):
            user = text.split("@")[1]
            try:
                getUser = client.get_users(user)
                us = getUser.id
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": us,
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })
            except Exception as e:
                print(e)

        if re.search(c.ShowSudos, text):
            tx = (redis.get("{}Nbot:SHOWsudos".format(BOT_ID)) or "")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": tx,
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.mymsgs:
            get = redis.hget("{}Nbot:{}:msgs".format(BOT_ID, chatID), userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.yourmsgs.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })
        if text == c.link:
            get = (redis.hget("{}Nbot:links".format(BOT_ID), chatID)
                   or GetLink(chatID) or "none")
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.showGPlk.format(get),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html",
                    "disable_web_page_preview": True
                })

        if text == c.myedits:
            get = redis.hget("{}Nbot:{}:edits".format(BOT_ID, chatID), userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.youredits.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })

        if text == c.myaddcontact:
            get = redis.hget("{}Nbot:{}:addcontact".format(BOT_ID, chatID),
                             userID)
            Bot(
                "sendMessage", {
                    "chat_id": chatID,
                    "text": r.youraddcontact.format((get or 0)),
                    "reply_to_message_id": message.message_id,
                    "parse_mode": "html"
                })

        if not redis.sismember("{}Nbot:ReplySendBOT".format(BOT_ID), chatID):
            if redis.hexists("{}Nbot:TXreplys".format(BOT_ID), text):
                tx = redis.hget("{}Nbot:TXreplys".format(BOT_ID), text)
                Bot(
                    "sendMessage", {
                        "chat_id":
                        chatID,
                        "text":
                        tx.format(fn=Name(userFn),
                                  us=("@" + username or "none"),
                                  id=userID,
                                  rk=IDrank(redis, userID, chatID, r),
                                  cn=title),
                        "reply_to_message_id":
                        message.message_id,
                        "parse_mode":
                        "html"
                    })

            if redis.hexists("{}Nbot:STreplys".format(BOT_ID), text):
                ID = redis.hget("{}Nbot:STreplys".format(BOT_ID), text)
                Bot(
                    "sendSticker", {
                        "chat_id": chatID,
                        "sticker": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:GFreplys".format(BOT_ID), text):
                ID = redis.hget("{}Nbot:GFreplys".format(BOT_ID), text)
                Bot(
                    "sendanimation", {
                        "chat_id": chatID,
                        "animation": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:VOreplys".format(BOT_ID), text)
                Bot(
                    "sendvoice", {
                        "chat_id": chatID,
                        "voice": ID,
                        "reply_to_message_id": message.message_id
                    })

        if not redis.sismember("{}Nbot:ReplySend".format(BOT_ID), chatID):
            if redis.hexists("{}Nbot:{}:TXreplys".format(BOT_ID, chatID),
                             text):
                tx = redis.hget("{}Nbot:{}:TXreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendMessage", {
                        "chat_id":
                        chatID,
                        "text":
                        tx.format(fn=Name(userFN),
                                  us=("@" + username or "n"),
                                  id=userID,
                                  rk=IDrank(redis, userID, chatID, r),
                                  cn=title),
                        "reply_to_message_id":
                        message.message_id,
                        "parse_mode":
                        "html"
                    })

            if redis.hexists("{}Nbot:{}:STreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:STreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendSticker", {
                        "chat_id": chatID,
                        "sticker": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:GFreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:GFreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendanimation", {
                        "chat_id": chatID,
                        "animation": ID,
                        "reply_to_message_id": message.message_id
                    })

            if redis.hexists("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                             text):
                ID = redis.hget("{}Nbot:{}:VOreplys".format(BOT_ID, chatID),
                                text)
                Bot(
                    "sendvoice", {
                        "chat_id": chatID,
                        "voice": ID,
                        "reply_to_message_id": message.message_id
                    })
コード例 #9
0
ファイル: nf.py プロジェクト: MetalGhost1/NewBot
def nf(client, message, redis):
    type = message.chat.type
    userID = message.from_user.id
    chatID = message.chat.id
    title = message.chat.title
    rank = isrank(redis, userID, chatID)
    text = message.text
    if redis.sismember("{}Nbot:lang:ar".format(BOT_ID), chatID):
        lang = "ar"
    elif redis.sismember("{}Nbot:lang:en".format(BOT_ID), chatID):
        lang = "en"
    else:
        lang = "ar"
    moduleCMD = "lang." + lang + "-cmd"
    moduleREPLY = "lang." + lang + "-reply"
    c = importlib.import_module(moduleCMD)
    r = importlib.import_module(moduleREPLY)
    group = redis.sismember("{}Nbot:groups".format(BOT_ID), chatID)
    rank = isrank(redis, userID, chatID)
    if group is True:

        if message.new_chat_members:

            if (rank is False or rank is 0) and GPranks(
                    userID,
                    chatID) == "member" and message.new_chat_members[0].is_bot:
                if redis.sismember("{}Nbot:Lbots".format(BOT_ID), chatID):  #16
                    first_name = message.new_chat_members[0].first_name
                    username = message.new_chat_members[0].username
                    Bot(
                        "kickChatMember", {
                            "chat_id": chatID,
                            "user_id": message.new_chat_members[0].id
                        })
                    Bot(
                        "sendMessage", {
                            "chat_id": chatID,
                            "text": r.kickbotadd.format(username, first_name),
                            "reply_to_message_id": message.message_id,
                            "parse_mode": "html"
                        })

            if redis.sismember("{}Nbot:Ljoin".format(BOT_ID), chatID):  #17
                Bot("deleteMessage", {
                    "chat_id": chatID,
                    "message_id": message.message_id
                })

            if redis.sismember("{}Nbot:Lpin".format(BOT_ID),
                               chatID) and rank != "creator":
                ID = redis.hget("{}Nbot:pinmsgs".format(BOT_ID), chatID)
                Bot("pinChatMessage", {"chat_id": chatID, "message_id": ID})

            if message.new_chat_members and not redis.sismember(
                    "{}Nbot:welcomeSend".format(BOT_ID), chatID):
                wl = (redis.hget("{}Nbot:welcome".format(BOT_ID), chatID)
                      or "")
                userId = message.new_chat_members[0].id
                userFn = message.new_chat_members[0].first_name
                T = "<a href=\"tg://user?id={}\">{}</a>".format(
                    userId, Name(userFn))
                Bot(
                    "sendMessage", {
                        "chat_id": chatID,
                        "text": wl.format(us=T),
                        "reply_to_message_id": message.message_id,
                        "parse_mode": "html"
                    })

            if message.new_chat_members:
                userId = message.new_chat_members[0].id
                if userID != userId:
                    redis.hincrby(
                        "{}Nbot:{}:addcontact".format(BOT_ID, chatID), userID)

            if message.pinned_message:
                if redis.sismember("{}Nbot:Lpin".format(BOT_ID),
                                   chatID) and rank != "creator":
                    ID = redis.hget("{}Nbot:pinmsgs".format(BOT_ID), chatID)
                    Bot("pinChatMessage", {
                        "chat_id": chatID,
                        "message_id": ID
                    })

            if message.new_chat_members:
                chatID = message.chat.id
                userId = message.new_chat_members[0].id
                if redis.sismember("{}Nbot:restricteds".format(BOT_ID),
                                   userId):
                    Bot(
                        "restrictChatMember", {
                            "chat_id": chatID,
                            "user_id": userId,
                            "can_send_messages": 0,
                            "can_send_media_messages": 0,
                            "can_send_other_messages": 0,
                            "can_send_polls": 0,
                            "can_change_info": 0,
                            "can_add_web_page_previews": 0,
                            "can_pin_messages": 0,
                        })
                if redis.sismember("{}Nbot:bans".format(BOT_ID), userId):
                    Bot("kickChatMember", {
                        "chat_id": chatID,
                        "user_id": userId
                    })

        if message.left_chat_member:
            if message.left_chat_member.id == int(BOT_ID):
                redis.srem("{}Nbot:groups".format(BOT_ID), chatID)
                redis.sadd("{}Nbot:disabledgroups".format(BOT_ID), chatID)
                NextDay_Date = datetime.datetime.today() + datetime.timedelta(
                    days=1)
                redis.hset("{}Nbot:disabledgroupsTIME".format(BOT_ID), chatID,
                           str(NextDay_Date))