Skip to content

Telegram bot v2.0

2

Астрологи объявили месяц боянов – количество телеграм ботов увеличилось вдвое!

Здарова щеглы! Уже была такая тема, но в прошлый раз активные читатели бложека (два рандомных чела) указали автору на некоторые ошибки в исследуемой теме – гайд немножко устарел. Спустя 6 лет. Устарел он. Совсем чуть-чуть. Кто бы мог подумать? Ну раз общественность требует продолжения банкета, што может поделать с этим афтор? Придётся писать. А потом писАть.

Нам понадобятся:
0. Виртуалка с вашей любимой ОС и интернетом (одна штука)
1. Докер (одна штука)
2. Прокладка между камплюктером и креслом (можно несколько)

За те 6 лет в топы гитхаба выбился проект python-telegram-bot его и будем использовать. Берём самый банальный пример эхобота и делаем из него эхо-хама мизантропа.

Подготавливаем окружение, зависимости и пишем dockerfile:

mkdir -p docker/bot_v2
cd docker/bot_v2

echo "python-telegram-bot[all]==20.7" > requirements.txt

cat <<EOF >Dockerfile
FROM python:3.12

RUN mkdir /app
WORKDIR /app
COPY . /app
RUN pip install -r /app/requirements.txt

CMD python /app/chamlo.py
EOF

Записываем в файл .env токен к своему боту (где это взять – можно посмотреть в предыдущей статье)

echo "TOKEN=ТУТ_ТВОЙ_ТОКЕН:НЕ_КОПИРУЙ_ТУПО_ЭТО_ГАВНО" > .env

Пишем виновника торжества:

cat <<EOF >chamlo.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable=unused-argument
# This program is dedicated to the public domain under the CC0 license.

"""
Simple Bot to reply to Telegram messages.

First, a few handler functions are defined. Then, those functions are passed to
the Application and registered at their respective places.
Then, the bot is started and runs until we press Ctrl-C on the command line.

Usage:
Basic Echobot example, repeats messages.
Press Ctrl-C on the command line or send a signal to the process to stop the
bot.
"""

import logging
import os

from telegram import ForceReply, Update
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters

# Enable logging
logging.basicConfig(
    format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO
)
# set higher logging level for httpx to avoid all GET and POST requests being logged
logging.getLogger("httpx").setLevel(logging.WARNING)
logger = logging.getLogger(__name__)

TOKEN = os.getenv("TOKEN")

# Define a few command handlers. These usually take the two arguments update and
# context.
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
    """Send a message when the command /start is issued."""
    user = update.effective_user
    logger.info("%s started the conversation.", user)
    await update.message.reply_html(
        rf"Иди нахер {user.mention_html()}! Я тебе не звал!",
        reply_markup=ForceReply(selective=True),
    )

async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
    """Send a message when the command /help is issued."""
    await update.message.reply_text("Да тебе даже медицина не поможет!")


async def echo(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
    """Echo the user message."""
    user = update.effective_user
    logger.info("%s said: %s", user, update.message.text)
    await update.message.reply_text(f"Все говорят \"{update.message.text}\", а ты просто возьми да пойди нахер!")

def main() -> None:
    """Start the bot."""
    # Create the Application and pass it your bot's token.
    application = Application.builder().token(TOKEN).build()

    # on different commands - answer in Telegram
    application.add_handler(CommandHandler("start", start))
    application.add_handler(CommandHandler("help", help_command))

    # on non command i.e message - echo the message on Telegram
    application.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, echo))

    # Run the bot until the user presses Ctrl-C
    application.run_polling(allowed_updates=Update.ALL_TYPES)

if __name__ == "__main__":
    main()
EOF

Собираем из говна и палок “исходников”:

docker build --tag chamlo:v2 .
docker create -m 128M --env-file .env --name bot-chamlo chamlo:v2

И, собсно, выпускаем гуся запускаем чудовище

docker start bot-chamlo

Как видим, работает изумительно:

Вот таким нехитрым образом мы умножили: энтропию во вселенной, оскорбления в интернете, слёзы афтора по поводу потраченного времени. ХЭПИ ЭНД!
P.S. На что же я трачу свою жизнь, памагити 🙁

Published inIT

Be First to Comment

Leave a Reply

Your email address will not be published. Required fields are marked *