1 unstable release

0.1.0-beta.1 Mar 11, 2022

#3 in #teloxide

Download history 14/week @ 2023-12-31 1/week @ 2024-01-07 1/week @ 2024-01-28 23/week @ 2024-02-11 7/week @ 2024-02-18 48/week @ 2024-02-25 13/week @ 2024-03-03 12/week @ 2024-03-10 54/week @ 2024-03-17 11/week @ 2024-03-24 69/week @ 2024-03-31

149 downloads per month

MIT license

16KB
252 lines

teloxide-listener

A listener extension for teloxide.

Currently supports the following modes:

  • polling
  • webhook (axum, need to be enabled by feature flag)

Usage

Construct a Listener builder, build it, and pass it to with_listener versions of teloxide functions (e.g., repl_with_listener).

There are two ways to construct a Listener builder.

From environment variables

Listener::from_env can be used to construct a Listener from environment variables.

If compiled with webhook feature enabled, it tries to read TELOXIDE_WEBHOOK_URL, TELOXIDE_WEBHOOK_PATH, and TELOXIDE_BIND_ADDR to build a webhook updates listener first.

Otherwise, it falls back to long polling updates listener.

To customize the TELOXIDE_ prefix, use Listener::from_env_with_prefix.

Constructing a Listener manually

Example

use teloxide_listener::Listener;

let listener = Listener::from_env().build(bot.clone());

teloxide::repls2::repl_with_listener(
    bot,
    |msg: Message, bot: Bot| async move {
        bot.send_message(msg.chat.id, "pong").send().await?;
        respond(())
    },
    listener,
)

License

This project is licensed under the MIT license.

Dependencies

~12–28MB
~437K SLoC