2020-10-20 14:07:10 +02:00
|
|
|
pub(crate) use self::{
|
2020-10-20 15:52:29 +02:00
|
|
|
download::{download_file, download_file_stream},
|
2020-11-26 10:28:52 +01:00
|
|
|
request::{request_json, request_multipart},
|
2020-08-12 18:39:40 +02:00
|
|
|
telegram_response::TelegramResponse,
|
|
|
|
};
|
|
|
|
|
|
|
|
mod download;
|
|
|
|
mod request;
|
|
|
|
mod telegram_response;
|
|
|
|
|
2020-11-17 20:38:30 +01:00
|
|
|
pub(crate) const TELEGRAM_API_URL: &str = "https://api.telegram.org";
|
2020-08-12 18:39:40 +02:00
|
|
|
|
|
|
|
/// Creates URL for making HTTPS requests. See the [Telegram documentation].
|
|
|
|
///
|
|
|
|
/// [Telegram documentation]: https://core.telegram.org/bots/api#making-requests
|
2020-11-17 20:38:30 +01:00
|
|
|
fn method_url(base: reqwest::Url, token: &str, method_name: &str) -> reqwest::Url {
|
|
|
|
base.join(&format!("/bot{token}/{method}", token = token, method = method_name))
|
|
|
|
.expect("failed to format url")
|
2020-08-12 18:39:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates URL for downloading a file. See the [Telegram documentation].
|
|
|
|
///
|
|
|
|
/// [Telegram documentation]: https://core.telegram.org/bots/api#file
|
2020-11-17 20:38:30 +01:00
|
|
|
fn file_url(base: reqwest::Url, token: &str, file_path: &str) -> reqwest::Url {
|
|
|
|
base.join(&format!("file/bot{token}/{file}", token = token, file = file_path))
|
|
|
|
.expect("failed to format url")
|
2020-08-12 18:39:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-11-17 20:38:30 +01:00
|
|
|
use crate::net::*;
|
2020-08-12 18:39:40 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn method_url_test() {
|
|
|
|
let url = method_url(
|
2020-11-17 20:38:30 +01:00
|
|
|
reqwest::Url::parse(TELEGRAM_API_URL).unwrap(),
|
2020-08-12 18:39:40 +02:00
|
|
|
"535362388:AAF7-g0gYncWnm5IyfZlpPRqRRv6kNAGlao",
|
|
|
|
"methodName",
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2020-11-17 20:38:30 +01:00
|
|
|
url.as_str(),
|
2020-08-12 18:39:40 +02:00
|
|
|
"https://api.telegram.org/bot535362388:AAF7-g0gYncWnm5IyfZlpPRqRRv6kNAGlao/methodName"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn file_url_test() {
|
|
|
|
let url = file_url(
|
2020-11-17 20:38:30 +01:00
|
|
|
reqwest::Url::parse(TELEGRAM_API_URL).unwrap(),
|
2020-08-12 18:39:40 +02:00
|
|
|
"535362388:AAF7-g0gYncWnm5IyfZlpPRqRRv6kNAGlao",
|
|
|
|
"AgADAgADyqoxG2g8aEsu_KjjVsGF4-zetw8ABAEAAwIAA20AA_8QAwABFgQ",
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2020-11-17 20:38:30 +01:00
|
|
|
url.as_str(),
|
2020-08-12 18:39:40 +02:00
|
|
|
"https://api.telegram.org/file/bot535362388:AAF7-g0gYncWnm5IyfZlpPRqRRv6kNAGlao/AgADAgADyqoxG2g8aEsu_KjjVsGF4-zetw8ABAEAAwIAA20AA_8QAwABFgQ"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|