示例#1
0
def welcome(update: Update, context: CallbackContext):
    bot = context.bot
    args = context.args
    chat = update.effective_chat
    if not args:
        pref, welcome_m, cust_content, welcome_type = sql.get_welc_pref(
            chat.id)
        send_message(
            update.effective_message,
            f"Este chat tiene su configuración de bienvenida establecida en: `{pref}`.\n",
            parse_mode=ParseMode.MARKDOWN,
        )
        if welcome_type == sql.Types.BUTTON_TEXT or welcome_type == sql.Types.TEXT:
            buttons = sql.get_welc_buttons(chat.id)
            keyb = build_keyboard(buttons)
            keyboard = InlineKeyboardMarkup(keyb)
            update.effective_message.reply_text(chat.id, welcome_m, keyboard,
                                                sql.DEFAULT_WELCOME)
        else:
            buttons = sql.get_welc_buttons(chat.id)
            keyb = build_keyboard(buttons)
            keyboard = InlineKeyboardMarkup(keyb)
            ENUM_FUNC_MAP[welcome_type](
                chat.id,
                cust_content,
                caption=welcome_m,
                reply_markup=keyboard,
                parse_mode=ParseMode.MARKDOWN,
                disable_web_page_preview=True,
            )
    elif args[0].lower() == "noformat":
        pref, welcome_m, cust_content, welcome_type = sql.get_welc_pref(
            chat.id)
        send_message(
            update.effective_message,
            f"*El mensaje de bienvenida (sin llenar los* `{{}}`*) es:*",
            parse_mode=ParseMode.MARKDOWN,
        )
        if welcome_type == sql.Types.BUTTON_TEXT or welcome_type == sql.Types.TEXT:
            buttons = sql.get_welc_buttons(chat.id)
            welcome_m += revert_buttons(buttons)
            send_message(update.effective_message, welcome_m)
        else:
            buttons = sql.get_welc_buttons(chat.id)
            welcome_m += revert_buttons(buttons)
            ENUM_FUNC_MAP[welcome_type](chat.id,
                                        cust_content,
                                        caption=welcome_m)
    elif len(args) >= 1:
        if args[0].lower() in ("on"):
            sql.set_welc_preference(str(chat.id), True)
            update.effective_message.reply_text(
                "Bueno! Saludaré a los miembros cuando se unan.")
        elif args[0].lower() in ("off"):
            sql.set_welc_preference(str(chat.id), False)
            update.effective_message.reply_text(
                "Ok, voy a holgazanear y no dar la bienvenida a nadie entonces."
            )
        else:
            update.effective_message.reply_text("Solo entiendo 'on' y 'off'!")
示例#2
0
def goodbye(update: Update, context: CallbackContext):
    args = context.args
    chat = update.effective_chat

    if not args or args[0] != "noformat":
        noformat = True
        pref, goodbye_m, goodbye_type = sql.get_gdbye_pref(chat.id)
        update.effective_message.reply_text(
            f"Este chat tiene su configuración de despedida configurada en: `{pref}`.\n"
            f"*El mensaje de despedida (sin llenar los {{}}) es:*",
            parse_mode=ParseMode.MARKDOWN,
        )

        if goodbye_type == sql.Types.BUTTON_TEXT:
            buttons = sql.get_gdbye_buttons(chat.id)
            if noformat:
                goodbye_m += revert_buttons(buttons)
                update.effective_message.reply_text(goodbye_m)

            else:
                keyb = build_keyboard(buttons)
                keyboard = InlineKeyboardMarkup(keyb)

                send(update, goodbye_m, keyboard, sql.DEFAULT_GOODBYE)

        else:
            if noformat:
                ENUM_FUNC_MAP[goodbye_type](chat.id, goodbye_m)

            else:
                ENUM_FUNC_MAP[goodbye_type](chat.id,
                                            goodbye_m,
                                            parse_mode=ParseMode.MARKDOWN)

    elif len(args) >= 1:
        if args[0].lower() in ("on", "si"):
            sql.set_gdbye_preference(str(chat.id), True)
            update.effective_message.reply_text("Ok!")

        elif args[0].lower() in ("off", "no"):
            sql.set_gdbye_preference(str(chat.id), False)
            update.effective_message.reply_text("Ok!")

        else:
            # idek what you're writing, say yes or no
            update.effective_message.reply_text(
                "Solo entiendo 'on/si' y 'off/no'!")
示例#3
0
def get(update, context, notename, show_none=True, no_format=False):
    bot = context.bot
    chat_id = update.effective_chat.id
    note = sql.get_note(chat_id, notename)
    message = update.effective_message  # type: Optional[Message]

    if note:
        if MessageHandlerChecker.check_user(update.effective_user.id):
            return
        # If we're replying to a message, reply to that message (unless it's an error)
        if message.reply_to_message:
            reply_id = message.reply_to_message.message_id
        else:
            reply_id = message.message_id
        if note.is_reply:
            if JOIN_LOGGER:
                try:
                    bot.forward_message(chat_id=chat_id,
                                        from_chat_id=JOIN_LOGGER,
                                        message_id=note.value)
                except BadRequest as excp:
                    if excp.message == "Reply message not found":
                        message.reply_text(
                            "Parece que este mensaje se ha perdido; lo eliminaré "
                            "de la lista de notas.")
                        sql.rm_note(chat_id, notename)
                    else:
                        raise
            else:
                try:
                    bot.forward_message(chat_id=chat_id,
                                        from_chat_id=chat_id,
                                        message_id=note.value)
                except BadRequest as excp:
                    if excp.message == "Message to forward not found":
                        message.reply_text(
                            "Parece que se ha eliminado el remitente original de esta nota "
                            "su mensaje - ¡lo siento! Haga que su administrador de bot comience a usar un "
                            "guardado de mensajes para evitar esto. Eliminaré esta nota de "
                            "sus notas guardadas.")
                        sql.rm_note(chat_id, notename)
                    else:
                        raise
        else:
            VALID_NOTE_FORMATTERS = [
                "first",
                "last",
                "fullname",
                "username",
                "id",
                "chatname",
                "mention",
            ]
            valid_format = escape_invalid_curly_brackets(
                note.value, VALID_NOTE_FORMATTERS)
            if valid_format:
                text = valid_format.format(
                    first=escape_markdown(message.from_user.first_name),
                    last=escape_markdown(message.from_user.last_name
                                         or message.from_user.first_name),
                    fullname=escape_markdown(
                        " ".join([
                            message.from_user.first_name, message.from_user.
                            last_name
                        ] if message.from_user.last_name else
                                 [message.from_user.first_name])),
                    username="******" + message.from_user.username
                    if message.from_user.username else mention_markdown(
                        message.from_user.id, message.from_user.first_name),
                    mention=mention_markdown(message.from_user.id,
                                             message.from_user.first_name),
                    chatname=escape_markdown(
                        message.chat.title if message.chat.type != "private"
                        else message.from_user.first_name),
                    id=message.from_user.id,
                )
            else:
                text = ""

            keyb = []
            parseMode = ParseMode.MARKDOWN
            buttons = sql.get_buttons(chat_id, notename)
            if no_format:
                parseMode = None
                text += revert_buttons(buttons)
            else:
                keyb = build_keyboard(buttons)

            keyboard = InlineKeyboardMarkup(keyb)

            try:
                if note.msgtype in (sql.Types.BUTTON_TEXT, sql.Types.TEXT):
                    bot.send_message(
                        chat_id,
                        text,
                        reply_to_message_id=reply_id,
                        parse_mode=parseMode,
                        disable_web_page_preview=True,
                        reply_markup=keyboard,
                    )
                else:
                    ENUM_FUNC_MAP[note.msgtype](
                        chat_id,
                        note.file,
                        caption=text,
                        reply_to_message_id=reply_id,
                        parse_mode=parseMode,
                        reply_markup=keyboard,
                    )

            except BadRequest as excp:
                if excp.message == "Entity_mention_user_invalid":
                    message.reply_text(
                        "Parece que trataste de mencionar a alguien a quien nunca había visto antes. Si tú realmente "
                        "quieres mencionarlos, reenviarme uno de sus mensajes y podré "
                        "etiquetarlo!")
                elif FILE_MATCHER.match(note.value):
                    message.reply_text(
                        "Esta nota era un archivo importado incorrectamente de otro bot; no puedo usar "
                        "eso. Si realmente lo necesita, tendrá que guardarlo nuevamente. Mientras"
                        "tanto, lo eliminaré de tu lista de notas.")
                    sql.rm_note(chat_id, notename)
                else:
                    message.reply_text(
                        "Esta nota no se pudo enviar porque tiene un formato incorrecto. Entra a "
                        f"@{SUPPORT_CHAT} si no puedes entender por qué!")
                    LOGGER.exception("Could not parse message #%s in chat %s",
                                     notename, str(chat_id))
                    LOGGER.warning("Message was: %s", str(note.value))
        return
    elif show_none:
        message.reply_text("Esta nota no existe")