From 70e29b4edfd982b9e8215de6e6ff0df391a859ab Mon Sep 17 00:00:00 2001 From: P0lunin Date: Mon, 9 Sep 2019 19:23:01 +0300 Subject: [PATCH] add method SendLocation --- src/core/requests/mod.rs | 1 + src/core/requests/send_location.rs | 102 +++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 src/core/requests/send_location.rs diff --git a/src/core/requests/mod.rs b/src/core/requests/mod.rs index 2cf666f9..f35ccd25 100644 --- a/src/core/requests/mod.rs +++ b/src/core/requests/mod.rs @@ -94,3 +94,4 @@ pub mod forward_message; pub mod send_photo; pub mod send_media_group; pub mod send_audio; +pub mod send_location; diff --git a/src/core/requests/send_location.rs b/src/core/requests/send_location.rs new file mode 100644 index 00000000..132e1cee --- /dev/null +++ b/src/core/requests/send_location.rs @@ -0,0 +1,102 @@ +use crate::core::{ + requests::{RequestContext, ChatId, Request, RequestFuture, ResponseResult}, + types::Message, + network, +}; + +use serde::Serialize; + +#[derive(Debug, Clone, Serialize)] +/// Use this method to send point on the map. On success, the sent [`Message`] +/// is returned. +pub struct SendLocation<'a> { + #[serde(skip_serializing)] + ctx: RequestContext<'a>, + + /// Unique identifier for the target chat or username of the target channel + /// (in the format @channelusername) + chat_id: ChatId, + /// Latitude of the location + latitude: f64, + /// Longitude of the location + longitude: f64, + #[serde(skip_serializing_if="Option::is_none")] + /// Period in seconds for which the location will be updated + /// (see [Live Locations](https://telegram.org/blog/live-locations)), + /// should be between 60 and 86400. + live_period: Option, + #[serde(skip_serializing_if="Option::is_none")] + /// Sends the message silently. Users will receive a notification with + /// no sound. + disable_notification: Option, + #[serde(skip_serializing_if="Option::is_none")] + /// If the message is a reply, ID of the original message + reply_to_message_id: Option, + #[serde(skip_serializing_if="Option::is_none")] + reply_markup: Option<()>, +} + +impl<'a> Request<'a> for SendLocation<'a> { + type ReturnValue = Message; + + fn send(self) -> RequestFuture<'a, ResponseResult> { + Box::pin(async move { + network::request_json( + &self.ctx.client, + &self.ctx.token, + "sendLocation", + &self + ).await + }) + } +} + +impl<'a> SendLocation<'a> { + pub(crate) fn new( + ctx: RequestContext<'a>, + chat_id: ChatId, + latitude: f64, + longitude: f64, + ) -> Self { + Self { + ctx, + chat_id, + latitude, + longitude, + live_period: None, + disable_notification: None, + reply_to_message_id: None, + reply_markup: None + } + } + + pub fn chat_id>(mut self, chat_id: T) -> Self { + self.chat_id = chat_id.into(); + self + } + + pub fn latitude>(mut self, latitude: T) -> Self { + self.latitude = latitude.into(); + self + } + + pub fn longitude>(mut self, longitude: T) -> Self { + self.longitude = longitude.into(); + self + } + + pub fn live_period>(mut self, live_period: T) -> Self { + self.live_period = Some(live_period.into()); + self + } + + pub fn disable_notification>(mut self, val: T) -> Self { + self.disable_notification = Some(val.into()); + self + } + + pub fn reply_to_message_id>(mut self, val: T) -> Self { + self.reply_to_message_id = Some(val.into()); + self + } +}