Exemplo n.º 1
0
def save(update, context):
    chat = update.effective_chat
    user = update.effective_user
    conn = connected(context.bot, update, chat, user.id)
    if conn:
        chat_id = conn
        chat_name = dispatcher.bot.getChat(conn).title
    else:
        chat_id = update.effective_chat.id
        if chat.type == "private":
            chat_name = "local notes"
        else:
            chat_name = chat.title

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

    checktext = msg.text.split()
    if msg.reply_to_message:
        if len(checktext) <= 1:
            send_message(update.effective_message,
                         tl(update.effective_message, "Anda harus memberi nama untuk catatan ini!"))
            return
    else:
        if len(checktext) <= 2:
            send_message(update.effective_message,
                         tl(update.effective_message, "Anda harus memberi nama untuk catatan ini!"))
            return

    note_name, text, data_type, content, buttons = get_note_type(msg)

    if data_type is None:
        send_message(update.effective_message, tl(update.effective_message, "Tidak ada catatan!"))
        return

    if len(text.strip()) == 0:
        text = "`" + note_name + "`"

    sql.add_note_to_db(chat_id, note_name, text, data_type, buttons=buttons, file=content)
    if conn:
        savedtext = tl(update.effective_message, "Ok, catatan `{note_name}` disimpan di *{chat_name}*.").format(
            note_name=note_name, chat_name=chat_name)
    else:
        savedtext = tl(update.effective_message, "Ok, catatan `{note_name}` disimpan.").format(note_name=note_name)
    try:
        send_message(update.effective_message, savedtext, parse_mode=ParseMode.MARKDOWN)
    except BadRequest:
        if conn:
            savedtext = tl(update.effective_message,
                           "Ok, catatan <code>{note_name}</code> disimpan di <b>{chat_name}</b>.").format(
                note_name=note_name, chat_name=chat_name)
        else:
            savedtext = tl(update.effective_message, "Ok, catatan <code>{note_name}</code> disimpan.").format(
                note_name=note_name)
        send_message(update.effective_message, savedtext, parse_mode=ParseMode.HTML)
Exemplo n.º 2
0
def save(bot: Bot, update: Update):
    chat = update.effective_chat
    user = update.effective_user
    conn = connected(bot, update, chat, user.id)
    if conn:
        chat_id = conn
        chat_name = dispatcher.bot.getChat(conn).title
    else:
        chat_id = update.effective_chat.id
        if chat.type == "private":
            chat_name = tld(chat.id, "note_is_local")
        else:
            chat_name = chat.title

    msg = update.effective_message

    note_name, text, data_type, content, buttons = get_note_type(msg)
    note_name = note_name.lower()

    if data_type is None:
        msg.reply_text(tld(chat.id, "save_invalid"))
        return

    if not sql.get_note(chat_id, note_name):
        sql.add_note_to_db(chat_id,
                           note_name,
                           text,
                           data_type,
                           buttons=buttons,
                           file=content)
        msg.reply_text(tld(chat.id,
                           "save_success").format(note_name, chat_name,
                                                  note_name, note_name),
                       parse_mode=ParseMode.MARKDOWN)
    else:
        sql.add_note_to_db(chat_id,
                           note_name,
                           text,
                           data_type,
                           buttons=buttons,
                           file=content)
        msg.reply_text(tld(chat.id,
                           "save_updated").format(note_name, chat_name,
                                                  note_name, note_name),
                       parse_mode=ParseMode.MARKDOWN)
Exemplo n.º 3
0
def save(bot: Bot, update: Update):
    chat = update.effective_chat  # type: Optional[Chat]
    user = update.effective_user  # type: Optional[User]
    conn = connected(bot, update, chat, user.id)
    if conn:
        chat_id = conn
        chat_name = dispatcher.bot.getChat(conn).title
    else:
        chat_id = update.effective_chat.id
        if chat.type == "private":
            chat_name = "local note"
        else:
            chat_name = chat.title

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

    checktext = msg.text.split()
    if msg.reply_to_message:
        if len(checktext) <= 1:
            send_message(update.effective_message,
                         (tld(chat.id, "You must give a name to this note!")))
            return
    else:
        if len(checktext) <= 2:
            send_message(update.effective_message,
                         (tld(chat.id, "You must give a name to this note!")))
            return

    note_name, text, data_type, content, buttons = get_note_type(msg)

    if data_type is None:
        send_message(update.effective_message, (tld(chat.id, "No note!")))
        return

    if len(text.strip()) == 0:
        text = "`" + note_name + "`"

    sql.add_note_to_db(chat_id,
                       note_name,
                       text,
                       data_type,
                       buttons=buttons,
                       file=content)
    if conn:
        savedtext = (tld(
            chat.id,
            "Ok, the note `{note_name}` is saved in *{chat_name}*.").format(
                note_name=note_name, chat_name=chat_name))
    else:
        savedtext = (tld(chat.id,
                         "Ok, the note `{note_name}` is saved.").format(
                             note_name=note_name))
    try:
        send_message(update.effective_message,
                     savedtext,
                     parse_mode=ParseMode.MARKDOWN)
    except BadRequest:
        if conn:
            savedtext = (tld(
                chat.id,
                "Ok, note <code>{note_name}</code> is stored in <b>{chat_name}</b>."
            ).format(note_name=note_name, chat_name=chat_name))
        else:
            savedtext = (tld(
                chat.id,
                "Ok, the <code>{note_name}</code> note is saved.").format(
                    note_name=note_name))
        send_message(update.effective_message,
                     savedtext,
                     parse_mode=ParseMode.HTML)
Exemplo n.º 4
0
def save(bot: Bot, update: Update):
    chat = update.effective_chat
    user = update.effective_user
    if conn := connected(bot, update, chat, user.id):
        chat_id = conn
        chat_name = dispatcher.bot.getChat(conn).title
    else:
        chat_id = update.effective_chat.id
        if chat.type == "private":
            chat_name = tld(chat.id, "note_is_local")
        else:
            chat_name = chat.title

    msg = update.effective_message

    note_name, text, data_type, content, buttons = get_note_type(msg)
    note_name = note_name.lower()

    if data_type is None:
        msg.reply_text(tld(chat.id, "save_invalid"))
        return

    if not sql.get_note(chat_id, note_name):
        sql.add_note_to_db(chat_id,
                           note_name,
                           text,
                           data_type,
                           buttons=buttons,
                           file=content)
        msg.reply_text(tld(chat.id,
                           "save_success").format(note_name, chat_name,