2021-03-01 17:24:11 +00:00
|
|
|
use crate::{settings::structs::Settings, LemmyError};
|
2020-08-01 14:04:42 +00:00
|
|
|
use anyhow::anyhow;
|
2020-09-24 17:43:42 +00:00
|
|
|
use log::error;
|
|
|
|
use percent_encoding::{utf8_percent_encode, NON_ALPHANUMERIC};
|
|
|
|
use reqwest::Client;
|
|
|
|
use serde::Deserialize;
|
2020-07-01 12:54:29 +00:00
|
|
|
use std::future::Future;
|
2020-08-01 14:04:42 +00:00
|
|
|
use thiserror::Error;
|
2021-03-02 12:41:48 +00:00
|
|
|
use url::Url;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-08-01 14:04:42 +00:00
|
|
|
#[derive(Clone, Debug, Error)]
|
|
|
|
#[error("Error sending request, {0}")]
|
2020-07-01 12:54:29 +00:00
|
|
|
struct SendError(pub String);
|
|
|
|
|
2020-08-01 14:04:42 +00:00
|
|
|
#[derive(Clone, Debug, Error)]
|
|
|
|
#[error("Error receiving response, {0}")]
|
2020-07-01 12:54:29 +00:00
|
|
|
pub struct RecvError(pub String);
|
|
|
|
|
2021-01-12 16:12:41 +00:00
|
|
|
pub async fn retry<F, Fut, T>(f: F) -> Result<T, reqwest::Error>
|
2020-07-01 12:54:29 +00:00
|
|
|
where
|
|
|
|
F: Fn() -> Fut,
|
2020-08-31 13:48:02 +00:00
|
|
|
Fut: Future<Output = Result<T, reqwest::Error>>,
|
2020-07-01 12:54:29 +00:00
|
|
|
{
|
|
|
|
retry_custom(|| async { Ok((f)().await) }).await
|
|
|
|
}
|
|
|
|
|
2021-01-12 16:12:41 +00:00
|
|
|
async fn retry_custom<F, Fut, T>(f: F) -> Result<T, reqwest::Error>
|
2020-07-01 12:54:29 +00:00
|
|
|
where
|
|
|
|
F: Fn() -> Fut,
|
2021-01-12 16:12:41 +00:00
|
|
|
Fut: Future<Output = Result<Result<T, reqwest::Error>, reqwest::Error>>,
|
2020-07-01 12:54:29 +00:00
|
|
|
{
|
2021-01-12 16:12:41 +00:00
|
|
|
let mut response: Option<Result<T, reqwest::Error>> = None;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
for _ in 0u8..3 {
|
|
|
|
match (f)().await? {
|
|
|
|
Ok(t) => return Ok(t),
|
|
|
|
Err(e) => {
|
2020-08-31 13:48:02 +00:00
|
|
|
if e.is_timeout() {
|
2021-01-12 16:12:41 +00:00
|
|
|
response = Some(Err(e));
|
2020-07-01 12:54:29 +00:00
|
|
|
continue;
|
|
|
|
}
|
2021-01-12 16:12:41 +00:00
|
|
|
return Err(e);
|
2020-07-01 12:54:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-01 12:56:07 +00:00
|
|
|
response.expect("retry http request")
|
2020-07-01 12:54:29 +00:00
|
|
|
}
|
2020-09-24 17:43:42 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
2021-08-04 21:13:51 +00:00
|
|
|
pub struct IframelyResponse {
|
|
|
|
pub title: Option<String>,
|
|
|
|
pub description: Option<String>,
|
2021-03-02 12:41:48 +00:00
|
|
|
thumbnail_url: Option<Url>,
|
2021-08-04 21:13:51 +00:00
|
|
|
pub html: Option<String>,
|
2020-09-24 17:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn fetch_iframely(
|
|
|
|
client: &Client,
|
2021-03-02 12:41:48 +00:00
|
|
|
url: &Url,
|
2020-09-24 17:43:42 +00:00
|
|
|
) -> Result<IframelyResponse, LemmyError> {
|
2021-08-04 21:13:51 +00:00
|
|
|
if let Some(iframely_url) = Settings::get().iframely_url {
|
|
|
|
let fetch_url = format!("{}/oembed?url={}", iframely_url, url);
|
2020-09-24 17:43:42 +00:00
|
|
|
|
2021-08-04 21:13:51 +00:00
|
|
|
let response = retry(|| client.get(&fetch_url).send()).await?;
|
2020-09-24 17:43:42 +00:00
|
|
|
|
2021-08-04 21:13:51 +00:00
|
|
|
let res: IframelyResponse = response
|
|
|
|
.json()
|
|
|
|
.await
|
|
|
|
.map_err(|e| RecvError(e.to_string()))?;
|
|
|
|
Ok(res)
|
|
|
|
} else {
|
|
|
|
Err(anyhow!("Missing Iframely URL in config.").into())
|
|
|
|
}
|
2020-09-24 17:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
|
|
|
pub(crate) struct PictrsResponse {
|
|
|
|
files: Vec<PictrsFile>,
|
|
|
|
msg: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
|
|
|
pub(crate) struct PictrsFile {
|
|
|
|
file: String,
|
|
|
|
delete_token: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn fetch_pictrs(
|
|
|
|
client: &Client,
|
2021-03-02 12:41:48 +00:00
|
|
|
image_url: &Url,
|
2021-08-04 21:13:51 +00:00
|
|
|
) -> Result<Option<PictrsResponse>, LemmyError> {
|
|
|
|
if let Some(pictrs_url) = Settings::get().pictrs_url {
|
|
|
|
is_image_content_type(client, image_url).await?;
|
|
|
|
|
|
|
|
let fetch_url = format!(
|
|
|
|
"{}/image/download?url={}",
|
|
|
|
pictrs_url,
|
|
|
|
utf8_percent_encode(image_url.as_str(), NON_ALPHANUMERIC) // TODO this might not be needed
|
|
|
|
);
|
|
|
|
|
|
|
|
let response = retry(|| client.get(&fetch_url).send()).await?;
|
|
|
|
|
|
|
|
let response: PictrsResponse = response
|
|
|
|
.json()
|
|
|
|
.await
|
|
|
|
.map_err(|e| RecvError(e.to_string()))?;
|
|
|
|
|
|
|
|
if response.msg == "ok" {
|
|
|
|
Ok(Some(response))
|
|
|
|
} else {
|
|
|
|
Err(anyhow!("{}", &response.msg).into())
|
|
|
|
}
|
2020-09-24 17:43:42 +00:00
|
|
|
} else {
|
2021-08-04 21:13:51 +00:00
|
|
|
Ok(None)
|
2020-09-24 17:43:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn fetch_iframely_and_pictrs_data(
|
|
|
|
client: &Client,
|
2021-03-02 12:41:48 +00:00
|
|
|
url: Option<&Url>,
|
2021-08-04 21:13:51 +00:00
|
|
|
) -> Result<(Option<IframelyResponse>, Option<Url>), LemmyError> {
|
2020-09-24 17:43:42 +00:00
|
|
|
match &url {
|
|
|
|
Some(url) => {
|
|
|
|
// Fetch iframely data
|
2021-08-04 21:13:51 +00:00
|
|
|
let iframely_res_option = fetch_iframely(client, url).await.ok();
|
2020-09-24 17:43:42 +00:00
|
|
|
|
|
|
|
// Fetch pictrs thumbnail
|
2021-08-04 21:13:51 +00:00
|
|
|
let pictrs_hash = match &iframely_res_option {
|
|
|
|
Some(iframely_res) => match &iframely_res.thumbnail_url {
|
|
|
|
Some(iframely_thumbnail_url) => fetch_pictrs(client, iframely_thumbnail_url)
|
|
|
|
.await?
|
|
|
|
.map(|r| r.files[0].file.to_owned()),
|
|
|
|
// Try to generate a small thumbnail if iframely is not supported
|
|
|
|
None => fetch_pictrs(client, url)
|
|
|
|
.await?
|
|
|
|
.map(|r| r.files[0].file.to_owned()),
|
2020-09-24 17:43:42 +00:00
|
|
|
},
|
2021-08-04 21:13:51 +00:00
|
|
|
None => fetch_pictrs(client, url)
|
|
|
|
.await?
|
|
|
|
.map(|r| r.files[0].file.to_owned()),
|
2020-09-24 17:43:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// The full urls are necessary for federation
|
2021-08-04 21:13:51 +00:00
|
|
|
let pictrs_thumbnail = pictrs_hash
|
|
|
|
.map(|p| {
|
|
|
|
Url::parse(&format!(
|
|
|
|
"{}/pictrs/image/{}",
|
|
|
|
Settings::get().get_protocol_and_hostname(),
|
|
|
|
p
|
|
|
|
))
|
|
|
|
.ok()
|
|
|
|
})
|
|
|
|
.flatten();
|
|
|
|
|
|
|
|
Ok((iframely_res_option, pictrs_thumbnail))
|
2020-09-24 17:43:42 +00:00
|
|
|
}
|
2021-08-04 21:13:51 +00:00
|
|
|
None => Ok((None, None)),
|
2020-09-24 17:43:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
async fn is_image_content_type(client: &Client, test: &Url) -> Result<(), LemmyError> {
|
|
|
|
let response = retry(|| client.get(test.to_owned()).send()).await?;
|
2020-09-24 17:43:42 +00:00
|
|
|
if response
|
|
|
|
.headers()
|
|
|
|
.get("Content-Type")
|
|
|
|
.ok_or_else(|| anyhow!("No Content-Type header"))?
|
|
|
|
.to_str()?
|
|
|
|
.starts_with("image/")
|
|
|
|
{
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(anyhow!("Not an image type.").into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
// These helped with testing
|
|
|
|
// #[test]
|
|
|
|
// fn test_iframely() {
|
|
|
|
// let res = fetch_iframely(client, "https://www.redspark.nu/?p=15341").await;
|
|
|
|
// assert!(res.is_ok());
|
|
|
|
// }
|
|
|
|
|
|
|
|
// #[test]
|
|
|
|
// fn test_pictshare() {
|
|
|
|
// let res = fetch_pictshare("https://upload.wikimedia.org/wikipedia/en/2/27/The_Mandalorian_logo.jpg");
|
|
|
|
// assert!(res.is_ok());
|
|
|
|
// let res_other = fetch_pictshare("https://upload.wikimedia.org/wikipedia/en/2/27/The_Mandalorian_logo.jpgaoeu");
|
|
|
|
// assert!(res_other.is_err());
|
|
|
|
// }
|
|
|
|
}
|