From cad60fa2fb8f850136d802dad4fad1058b6f00b9 Mon Sep 17 00:00:00 2001 From: Temirkhan Myrzamadi Date: Mon, 2 Sep 2019 16:21:10 +0600 Subject: [PATCH] Refine network/mod.rs --- src/core/network/mod.rs | 76 ++++++++++++++------------ src/core/other.rs | 8 +-- src/core/payments.rs | 13 ++--- src/core/requests/get_me.rs | 17 ++++-- src/core/requests/mod.rs | 3 +- src/core/requests/send_message.rs | 91 +++++++++++++++++++++---------- 6 files changed, 123 insertions(+), 85 deletions(-) diff --git a/src/core/network/mod.rs b/src/core/network/mod.rs index fafcdf1b..f1dc7b1a 100644 --- a/src/core/network/mod.rs +++ b/src/core/network/mod.rs @@ -1,59 +1,63 @@ -use reqwest::StatusCode; -use reqwest::r#async::Client; -use serde_json::Value; -use futures::compat::Future01CompatExt; -use apply::Apply; -use serde::de::DeserializeOwned; use super::requests::Request; +use apply::Apply; +use futures::compat::Future01CompatExt; +use reqwest::r#async::Client; +use reqwest::StatusCode; +use serde::de::DeserializeOwned; +use serde_json::Value; -const TELEGRAM_URL_START: &str = "https://api.telegram.org/bot"; +const TELEGRAM_API_URL: &str = "https://api.telegram.org"; #[derive(Debug)] -pub enum Error { - Api { +pub enum RequestError { + ApiError { status_code: StatusCode, - description: Option, + description: String, }, - Send(reqwest::Error), - InvalidJson(reqwest::Error), + NetworkError(reqwest::Error), + InvalidJson(serde_json::Error), } -pub type Response = Result; +pub type ResponseResult = Result; -pub async fn request>( +pub async fn request>( client: &Client, - request: Req, -) -> Response { + request: R, +) -> ResponseResult { let mut response = client .post(&format!( - "{}{token}/{method}", - TELEGRAM_URL_START, + "{url}/bot{token}/{method}", + url = TELEGRAM_API_URL, token = request.token(), method = request.name(), )) - .apply(|req| if let Some(params) = request.params() { - req.multipart(params) - } else { req }) + .apply(|request_builder| { + if let Some(params) = request.params() { + request_builder.multipart(params) + } else { + request_builder + } + }) .send() .compat() .await - .map_err(Error::Send)?; + .map_err(RequestError::NetworkError)?; - let response_json = response - .json::() - .compat() - .await - .map_err(Error::InvalidJson)?; + let response_json = serde_json::from_str::( + &response + .text() + .compat() + .await + .map_err(RequestError::NetworkError)?, + ) + .map_err(RequestError::InvalidJson)?; if response_json["ok"] == "false" { - return Err(Error::Api { + Err(RequestError::ApiError { status_code: response.status(), - description: match response_json.get("description") { - None => None, - Some(description) => Some(description.to_string()), - }, - }); + description: response_json["description"].to_string(), + }) + } else { + Ok(serde_json::from_value(response_json["result"].clone()).unwrap()) } - - Ok(serde_json::from_value(response_json["result"].clone()).unwrap()) -} \ No newline at end of file +} diff --git a/src/core/other.rs b/src/core/other.rs index b6d4c57d..193497b8 100644 --- a/src/core/other.rs +++ b/src/core/other.rs @@ -1,5 +1,5 @@ +use crate::core::payments::{Invoice, SuccessfulPayment}; use serde::Deserialize; -use crate::core::payments::{SuccessfulPayment, Invoice}; #[derive(Debug, Deserialize)] pub struct User { @@ -16,7 +16,7 @@ pub struct Chat { id: i64, chat_type: String, title: Option, - username:Option, + username: Option, first_name: Option, last_name: Option, photo: Option, @@ -55,7 +55,7 @@ pub struct Message { sticker: Option, video: Option