frankenstein

Crates.io docs page test

Frankenstein

Telegram bot API client for Rust.

It's a complete wrapper for Telegram bot API and it's up to date with version 6.7 of the API.

Frankenstein data structures (rust structs and enums) are mapped one-to-one from Telegram bot API objects and method params.

Installation

Add this to your Cargo.toml

toml [dependencies] frankenstein = "0.25"

Features

Default features

Optional features

To use the async client add the following line to your Cargo.toml file:

toml frankenstein = { version = "0.25", default-features = false, features = ["async-http-client"] }

You can also disable all features:

toml frankenstein = { version = "0.25", default-features = false }

In this case the crate will ship only with telegram types

Usage

Examples in this section use the blocking client (frankenstein::Api), but async examples would look the same (just replace frankenstein::Api with frankenstein::AsyncApi)

Data structures

All objects described in the API docs have direct counterparts in the frankenstein. For example, in the docs there is the user type: id Integer Unique identifier for this user or bot. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier. is_bot Boolean True, if this user is a bot first_name String User's or bot's first name last_name String Optional. User's or bot's last name username String Optional. User's or bot's username language_code String Optional. IETF language tag of the user's language can_join_groups Boolean Optional. True, if the bot can be invited to groups. Returned only in getMe. can_read_all_group_messages Boolean Optional. True, if privacy mode is disabled for the bot. Returned only in getMe. supports_inline_queries Boolean Optional. True, if the bot supports inline queries. Returned only in getMe.

In frankenstein, it's described like this:

rust pub struct User { pub id: u64, pub is_bot: bool, pub first_name: String, pub last_name: Option<String>, pub username: Option<String>, pub language_code: Option<String>, pub can_join_groups: Option<bool>, pub can_read_all_group_messages: Option<bool>, pub supports_inline_queries: Option<bool>, }

Optional fields are described as Option.

Every struct can be created with the associated builder. Only required fields are required to set, optional fields are set to None when not provided:

rust let send_message_params = SendMessageParams::builder() .chat_id(message.chat.id) .text("hello") .reply_to_message_id(message.message_id) .build();

For api parameters, the same approach is used. The only difference for parameters is the name of the struct in frankenstein ends with Params postfix.

For example, parameters for leaveChat method:

rust pub struct LeaveChatParams { chat_id: ChatId, }

Making requests

To make a request to the telegram bot api:

  1. Initialize the Api struct:

```rust use frankenstein::Api; use frankenstein::TelegramApi;

...

let token = "My_token"; let api = Api::new(token); ```

  1. Use this api object to make requests to the Bot API:

```rust let updateparams = GetUpdatesParams::builder() .allowedupdates(vec![AllowedUpdate::Message]) .build();

let result = api.getupdates(&updateparams); ```

Every function returns a Result enum with a successful response or failed response.

See a complete example in the examples directory.

Uploading files

Some methods in the API allow uploading files. In the frankenstein for this File struct is used:

```rust pub enum File { InputFile(InputFile), String(String), }

pub struct InputFile { path: std::path::PathBuf } ```

It has two variants:

Customizing http clients

Both the async (reqwest) and the blocking (ureq) HTTP clients can be customized with their builders.

Customizing the blocking client:

```rust use frankenstein::ureq; use frankenstein::Api; use std::time::Duration;

let requestagent = ureq::builder().timeout(Duration::fromsecs(100)).build(); let apiurl = format!("{}{}", BASEAPI_URL, TOKEN);

Api::builder() .apiurl(apiurl) .requestagent(requestagent) .build() ```

Customizing the async client:

```rust use frankenstein::reqwest; use frankenstein::AsyncApi; use std::time::Duration;

let client = reqwest::ClientBuilder::new() .connecttimeout(Duration::fromsecs(100)) .timeout(Duration::fromsecs(100)) .build() .unwrap(); let apiurl = format!("{}{}", BASEAPIURL, TOKEN);

AsyncApi::builder().apiurl(apiurl).client(client).build() ```

Documentation

Frankenstein implements all telegram bot api methods. To see which parameters you should pass, check docs.rs

You can check out real-world bots created using this library:

Replacing the default http client

The library uses ureq http client by default, but it can be easily replaced with any http client of your choice:

  1. ureq comes with a default feature (impl). So the feature should be disabled:

toml frankenstein = { version = "0.25", default-features = false, features = ["telegram-trait"] }

  1. Implement TelegramApi trait which requires two functions:

You can check the default TelegramApi trait implementation for ureq.

Also, you can take a look at the implementation for isahc http client in the examples directory.

Without the default ureq implementation, frankenstein has only one dependency - serde.

Contributing

  1. Fork it!
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Author

Ayrat Badykov (@ayrat555)