tgbot/types/update/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
use std::{collections::HashSet, time::Duration};
use serde::{Deserialize, Serialize};
use serde_json::Value as JsonValue;
use crate::{
api::{Method, Payload},
types::{
BusinessConnection,
BusinessMessagesDeleted,
CallbackQuery,
Chat,
ChatBoostRemoved,
ChatBoostUpdated,
ChatJoinRequest,
ChatMemberUpdated,
ChatPeerId,
ChatUsername,
ChosenInlineResult,
InlineQuery,
Integer,
MaybeInaccessibleMessage,
Message,
MessageReactionCountUpdated,
MessageReactionUpdated,
PaidMediaPurchased,
Poll,
PollAnswer,
PollAnswerVoter,
PreCheckoutQuery,
ShippingQuery,
User,
UserPeerId,
UserUsername,
},
};
#[cfg(test)]
mod tests;
/// Represents an incoming update.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
pub struct Update {
/// Unique identifier of the update.
///
/// Update identifiers start from a certain positive number and increase sequentially.
/// This ID becomes especially handy if you’re using Webhooks, since it allows you to
/// ignore repeated updates or to restore the correct update sequence,
/// should they get out of order.
/// If there are no new updates for at least a week, then identifier
/// of the next update will be chosen randomly instead of sequentially.
#[serde(rename = "update_id")]
pub id: Integer,
/// Type of the update.
#[serde(flatten)]
pub update_type: UpdateType,
}
impl Update {
/// Creates a new `Update`.
///
/// # Arguments
///
/// * `id` - Unique identifier of the update.
/// * `update_type` - Type of the update.
pub fn new(id: Integer, update_type: UpdateType) -> Self {
Self { id, update_type }
}
/// Returns the chat.
pub fn get_chat(&self) -> Option<&Chat> {
self.get_message().map(|msg| &msg.chat).or(match self.update_type {
UpdateType::BotStatus(ref x) | UpdateType::UserStatus(ref x) => Some(&x.chat),
UpdateType::DeletedBusinessMessages(ref x) => Some(&x.chat),
UpdateType::ChatBoostRemoved(ref x) => Some(&x.chat),
UpdateType::ChatBoostUpdated(ref x) => Some(&x.chat),
UpdateType::ChatJoinRequest(ref x) => Some(&x.chat),
UpdateType::MessageReaction(ref x) => Some(&x.chat),
UpdateType::MessageReactionCount(ref x) => Some(&x.chat),
_ => None,
})
}
/// Returns the ID of the chat.
pub fn get_chat_id(&self) -> Option<ChatPeerId> {
self.get_chat().map(|chat| chat.get_id())
}
/// Returns the username of the chat.
pub fn get_chat_username(&self) -> Option<&ChatUsername> {
self.get_chat().and_then(|chat| chat.get_username())
}
/// Returns the user.
pub fn get_user(&self) -> Option<&User> {
Some(match self.update_type {
UpdateType::BotStatus(ref x) | UpdateType::UserStatus(ref x) => &x.from,
UpdateType::BusinessConnection(ref x) => &x.user,
UpdateType::CallbackQuery(ref x) => &x.from,
UpdateType::ChatBoostRemoved(_) => return None,
UpdateType::ChatBoostUpdated(_) => return None,
UpdateType::ChatJoinRequest(ref x) => &x.from,
UpdateType::ChosenInlineResult(ref x) => &x.from,
UpdateType::DeletedBusinessMessages(_) => return None,
UpdateType::InlineQuery(ref x) => &x.from,
UpdateType::Message(ref x)
| UpdateType::BusinessMessage(ref x)
| UpdateType::EditedBusinessMessage(ref x)
| UpdateType::EditedMessage(ref x)
| UpdateType::ChannelPost(ref x)
| UpdateType::EditedChannelPost(ref x) => return x.sender.get_user(),
UpdateType::MessageReaction(ref x) => return x.user.as_ref(),
UpdateType::MessageReactionCount(_) => return None,
UpdateType::Poll(_) => return None,
UpdateType::PollAnswer(ref x) => match &x.voter {
PollAnswerVoter::User(x) => x,
PollAnswerVoter::Chat(_) => return None,
},
UpdateType::PreCheckoutQuery(ref x) => &x.from,
UpdateType::PurchasedPaidMedia(ref x) => &x.from,
UpdateType::ShippingQuery(ref x) => &x.from,
UpdateType::Unknown(_) => return None,
})
}
/// Returns the ID of the user.
pub fn get_user_id(&self) -> Option<UserPeerId> {
self.get_user().map(|user| user.id)
}
/// Returns the username of the user.
pub fn get_user_username(&self) -> Option<&UserUsername> {
self.get_user().and_then(|user| user.username.as_ref())
}
/// Returns the message.
pub fn get_message(&self) -> Option<&Message> {
match self.update_type {
UpdateType::Message(ref msg)
| UpdateType::BusinessMessage(ref msg)
| UpdateType::EditedBusinessMessage(ref msg)
| UpdateType::EditedMessage(ref msg)
| UpdateType::ChannelPost(ref msg)
| UpdateType::EditedChannelPost(ref msg) => Some(msg),
UpdateType::CallbackQuery(ref query) => match query.message {
Some(MaybeInaccessibleMessage::Message(ref msg)) => Some(msg),
_ => None,
},
_ => None,
}
}
}
/// Represents a type of an update.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[allow(clippy::large_enum_variant)]
#[serde(rename_all = "snake_case")]
pub enum UpdateType {
/// The bot chat member status was updated in a chat.
///
/// For private chats, this update is received only
/// when the bot is blocked or unblocked by the user.
#[serde(rename = "my_chat_member")]
BotStatus(ChatMemberUpdated),
/// The bot was connected to or disconnected from a business account,
/// or a user edited an existing connection with the bot.
BusinessConnection(BusinessConnection),
/// New non-service message from a connected business account.
BusinessMessage(Message),
/// A new incoming callback query.
CallbackQuery(CallbackQuery),
/// A new incoming channel post.
ChannelPost(Message),
/// A boost was removed from a chat.
///
/// The bot must be an administrator in the chat to receive these updates.
#[serde(rename = "removed_chat_boost")]
ChatBoostRemoved(ChatBoostRemoved),
/// A chat boost was added or changed.
///
/// The bot must be an administrator in the chat to receive these updates.
#[serde(rename = "chat_boost")]
ChatBoostUpdated(ChatBoostUpdated),
/// A request to join the chat has been sent.
///
/// The bot must have the `can_invite_users` administrator right
/// in the chat to receive these updates.
ChatJoinRequest(ChatJoinRequest),
/// The result of an inline query that was chosen by a user and sent to their chat partner.
///
/// Please see our documentation on the [feedback collecting][1]
/// for details on how to enable these updates for your bot.
///
/// [1]: https://core.telegram.org/bots/inline#collecting-feedback
ChosenInlineResult(ChosenInlineResult),
/// Messages were deleted from a connected business account.
DeletedBusinessMessages(BusinessMessagesDeleted),
/// New version of a message from a connected business account.
EditedBusinessMessage(Message),
/// A new version of a channel post that is known to the bot and was edited.
EditedChannelPost(Message),
/// A new version of a message that is known to the bot and was edited.
EditedMessage(Message),
/// A new incoming [inline][1] query.
///
/// [1]: https://core.telegram.org/bots/api#inline-mode
InlineQuery(InlineQuery),
/// A new incoming message.
Message(Message),
/// A reaction to a message was changed by a user.
///
/// The bot must be an administrator in the chat
/// and must explicitly specify [`AllowedUpdate::MessageReaction`]
/// in the list of allowed_updates to receive these updates.
///
/// The update isn't received for reactions set by bots.
MessageReaction(MessageReactionUpdated),
/// Reactions to a message with anonymous reactions were changed.
///
/// The bot must be an administrator in the chat
/// and must explicitly specify [`AllowedUpdate::MessageReactionCount`]
/// in the list of allowed_updates to receive these updates.
MessageReactionCount(MessageReactionCountUpdated),
/// A new poll state.
///
/// Bots receive only updates about polls, which are sent or stopped by the bot.
Poll(Poll),
/// A user changed their answer in a non-anonymous poll
///
/// Bots receive new votes only in polls that were sent by the bot itself.
PollAnswer(PollAnswer),
/// A new incoming pre-checkout query.
///
/// Contains full information about checkout
PreCheckoutQuery(PreCheckoutQuery),
/// A user purchased paid media with a non-empty payload sent by the bot in a non-channel chat.
PurchasedPaidMedia(PaidMediaPurchased),
/// A new incoming shipping query.
///
/// Only for invoices with flexible price.
ShippingQuery(ShippingQuery),
/// A chat member's status was updated in a chat.
///
/// The bot must be an administrator in the chat
/// and must explicitly specify [`AllowedUpdate::UserStatus`] in the list
/// of `allowed_updates` to receive these updates.
#[serde(rename = "chat_member")]
UserStatus(ChatMemberUpdated),
/// Used for unknown update types.
///
/// For example, Telegram introduced a new update type,
/// but tgbot does not support it.
#[serde(untagged)]
Unknown(JsonValue),
}
/// Conversion of an [`Update`] into `T` failed.
///
/// Use [`Update::from`] to get the original update.
pub struct UnexpectedUpdate(Update);
impl From<UnexpectedUpdate> for Update {
fn from(value: UnexpectedUpdate) -> Self {
value.0
}
}
impl TryFrom<Update> for BusinessConnection {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
BusinessConnection(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for BusinessMessagesDeleted {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
DeletedBusinessMessages(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for ChatMemberUpdated {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
BotStatus(x) | UserStatus(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for CallbackQuery {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
CallbackQuery(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for ChatJoinRequest {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
ChatJoinRequest(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for ChosenInlineResult {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
ChosenInlineResult(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for InlineQuery {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
InlineQuery(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for Message {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
BusinessMessage(x)
| EditedBusinessMessage(x)
| EditedChannelPost(x)
| EditedMessage(x)
| ChannelPost(x)
| Message(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for Poll {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
Poll(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for PollAnswer {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
PollAnswer(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for PreCheckoutQuery {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
PreCheckoutQuery(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for PaidMediaPurchased {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
PurchasedPaidMedia(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
impl TryFrom<Update> for ShippingQuery {
type Error = UnexpectedUpdate;
fn try_from(value: Update) -> Result<Self, Self::Error> {
use self::UpdateType::*;
match value.update_type {
ShippingQuery(x) => Ok(x),
_ => Err(UnexpectedUpdate(value)),
}
}
}
/// Represents a type of update to receive.
#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum AllowedUpdate {
/// The bot chat member status.
#[serde(rename = "my_chat_member")]
BotStatus,
/// Business account connection changes.
BusinessConnection,
/// New non-service message from a connected business account.
BusinessMessage,
/// A callback query.
CallbackQuery,
/// A channel post.
ChannelPost,
/// A boost was removed from a chat.
#[serde(rename = "removed_chat_boost")]
ChatBoostRemoved,
/// A chat boost was added or changed.
#[serde(rename = "chat_boost")]
ChatBoostUpdated,
/// A request to join a chat.
ChatJoinRequest,
/// A chosen inline result.
ChosenInlineResult,
/// Messages were deleted from a connected business account.
DeletedBusinessMessages,
/// New version of a message from a connected business account.
EditedBusinessMessage,
/// An edited channel post.
EditedChannelPost,
/// An edited message.
EditedMessage,
/// An inline query.
InlineQuery,
/// A message.
Message,
/// A reaction to a message.
MessageReaction,
/// An anonymous reaction to a message.
MessageReactionCount,
/// A poll.
Poll,
/// A poll answer.
PollAnswer,
/// A pre checkout query.
PreCheckoutQuery,
/// A user purchased paid media.
PurchasedPaidMedia,
/// A shipping query.
ShippingQuery,
/// A chat member status.
#[serde(rename = "chat_member")]
UserStatus,
}
/// Returns incoming updates using long polling.
#[derive(Clone, Debug, Default, Serialize)]
pub struct GetUpdates {
#[serde(skip_serializing_if = "Option::is_none")]
allowed_updates: Option<HashSet<AllowedUpdate>>,
#[serde(skip_serializing_if = "Option::is_none")]
limit: Option<Integer>,
#[serde(skip_serializing_if = "Option::is_none")]
offset: Option<Integer>,
#[serde(skip_serializing_if = "Option::is_none")]
timeout: Option<Integer>,
}
impl Method for GetUpdates {
type Response = Vec<Update>;
fn into_payload(self) -> Payload {
Payload::json("getUpdates", self)
}
}
impl GetUpdates {
/// Adds a type of an update you want your bot to receive.
///
/// # Arguments
///
/// * `value` - The type to add.
pub fn add_allowed_update(mut self, value: AllowedUpdate) -> Self {
match self.allowed_updates {
Some(ref mut updates) => {
updates.insert(value);
}
None => {
let mut updates = HashSet::new();
updates.insert(value);
self.allowed_updates = Some(updates);
}
};
self
}
/// Sets a new list of allowed updates.
///
/// # Arguments
///
/// * `value` - List of the types of updates you want your bot to receive.
///
/// For example, specify `[AllowedUpdate::Message, AllowedUpdate::EditedChannelPost]`
/// to only receive updates of these types.
/// Specify an empty list to receive all updates regardless of type (default).
/// If not specified, the previous setting will be used.
/// Please note that this parameter doesn't affect updates
/// created before the call to the method,
/// so unwanted updates may be received for a short period of time.
pub fn with_allowed_updates<T>(mut self, value: T) -> Self
where
T: IntoIterator<Item = AllowedUpdate>,
{
self.allowed_updates = Some(value.into_iter().collect());
self
}
/// Sets a new limit.
///
/// # Arguments
///
/// * `value` - Limit of the number of updates to be retrieved; 1—100; default - 100.
pub fn with_limit(mut self, value: Integer) -> Self {
self.limit = Some(value);
self
}
/// Sets a new offset.
///
/// # Arguments
///
/// * `value` - Identifier of the first update to be returned.
///
/// Must be greater by one than the highest
/// among the identifiers of previously received updates.
/// By default, updates starting with the earliest unconfirmed update are returned.
/// An update is considered confirmed as soon as the method is called with
/// an offset higher than its `update_id`.
/// The negative offset can be specified to retrieve updates starting
/// from `-offset` update from the end of the updates queue.
/// All previous updates will forgotten.
pub fn with_offset(mut self, value: Integer) -> Self {
self.offset = Some(value);
self
}
/// Sets a new timeout.
///
/// # Arguments
///
/// * `value` - Timeout for long polling;
/// default - 0, i.e. usual short polling;
/// should be positive;
/// short polling should be used for testing purposes only.
pub fn with_timeout(mut self, value: Duration) -> Self {
self.timeout = Some(value.as_secs() as i64);
self
}
}