2021-12-14 13:30:37 +00:00
|
|
|
use actix_http::header::{HeaderName, ACCEPT_ENCODING, HOST};
|
2021-07-06 13:26:46 +00:00
|
|
|
use actix_web::{body::BodyStream, http::StatusCode, web::Data, *};
|
2021-08-04 21:13:51 +00:00
|
|
|
use anyhow::anyhow;
|
2021-12-08 15:56:43 +00:00
|
|
|
use futures::stream::{Stream, StreamExt};
|
2021-09-22 15:57:09 +00:00
|
|
|
use lemmy_utils::{claims::Claims, rate_limit::RateLimit, LemmyError};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-12-08 15:56:43 +00:00
|
|
|
use reqwest::Body;
|
|
|
|
use reqwest_middleware::{ClientWithMiddleware, RequestBuilder};
|
2020-08-05 16:00:00 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-07-06 13:26:46 +00:00
|
|
|
use std::time::Duration;
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig, client: ClientWithMiddleware, rate_limit: &RateLimit) {
|
2020-08-05 16:00:00 +00:00
|
|
|
cfg
|
2021-07-06 13:26:46 +00:00
|
|
|
.app_data(Data::new(client))
|
2020-08-05 16:00:00 +00:00
|
|
|
.service(
|
|
|
|
web::resource("/pictrs/image")
|
|
|
|
.wrap(rate_limit.image())
|
|
|
|
.route(web::post().to(upload)),
|
|
|
|
)
|
2020-10-14 16:48:10 +00:00
|
|
|
// This has optional query params: /image/{filename}?format=jpg&thumbnail=256
|
2020-08-05 16:00:00 +00:00
|
|
|
.service(web::resource("/pictrs/image/{filename}").route(web::get().to(full_res)))
|
|
|
|
.service(web::resource("/pictrs/image/delete/{token}/{filename}").route(web::get().to(delete)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct Image {
|
2020-08-05 16:00:00 +00:00
|
|
|
file: String,
|
|
|
|
delete_token: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct Images {
|
2020-08-05 16:00:00 +00:00
|
|
|
msg: String,
|
|
|
|
files: Option<Vec<Image>>,
|
|
|
|
}
|
|
|
|
|
2020-10-14 16:48:10 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct PictrsParams {
|
2020-10-14 16:48:10 +00:00
|
|
|
format: Option<String>,
|
|
|
|
thumbnail: Option<String>,
|
|
|
|
}
|
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
fn adapt_request(
|
|
|
|
request: &HttpRequest,
|
|
|
|
client: &ClientWithMiddleware,
|
|
|
|
url: String,
|
|
|
|
) -> RequestBuilder {
|
|
|
|
// remove accept-encoding header so that pictrs doesnt compress the response
|
|
|
|
const INVALID_HEADERS: &[HeaderName] = &[ACCEPT_ENCODING, HOST];
|
|
|
|
|
|
|
|
let client_request = client
|
|
|
|
.request(request.method().clone(), url)
|
|
|
|
.timeout(Duration::from_secs(30));
|
|
|
|
|
|
|
|
request
|
|
|
|
.headers()
|
|
|
|
.iter()
|
|
|
|
.fold(client_request, |client_req, (key, value)| {
|
|
|
|
if INVALID_HEADERS.contains(key) {
|
|
|
|
client_req
|
|
|
|
} else {
|
|
|
|
client_req.header(key, value)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-05 16:00:00 +00:00
|
|
|
async fn upload(
|
|
|
|
req: HttpRequest,
|
|
|
|
body: web::Payload,
|
2021-12-08 15:56:43 +00:00
|
|
|
client: web::Data<ClientWithMiddleware>,
|
2021-09-22 15:57:09 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-08-05 16:00:00 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
2020-12-01 17:48:39 +00:00
|
|
|
// TODO: check rate limit here
|
|
|
|
let jwt = req
|
|
|
|
.cookie("jwt")
|
|
|
|
.expect("No auth header for picture upload");
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
if Claims::decode(jwt.value(), &context.secret().jwt_secret).is_err() {
|
2020-12-01 17:48:39 +00:00
|
|
|
return Ok(HttpResponse::Unauthorized().finish());
|
|
|
|
};
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
let image_url = format!("{}/image", pictrs_url(context.settings().pictrs_url)?);
|
|
|
|
|
|
|
|
let mut client_req = adapt_request(&req, &client, image_url);
|
2020-12-04 14:00:15 +00:00
|
|
|
|
|
|
|
if let Some(addr) = req.head().peer_addr {
|
2021-12-08 15:56:43 +00:00
|
|
|
client_req = client_req.header("X-Forwarded-For", addr.to_string())
|
2020-12-04 14:00:15 +00:00
|
|
|
};
|
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
let res = client_req
|
|
|
|
.body(Body::wrap_stream(make_send(body)))
|
|
|
|
.send()
|
2021-07-06 13:26:46 +00:00
|
|
|
.await
|
|
|
|
.map_err(error::ErrorBadRequest)?;
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
let status = res.status();
|
2021-07-06 13:26:46 +00:00
|
|
|
let images = res.json::<Images>().await.map_err(error::ErrorBadRequest)?;
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
Ok(HttpResponse::build(status).json(images))
|
2020-08-05 16:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn full_res(
|
|
|
|
filename: web::Path<String>,
|
2020-10-14 16:48:10 +00:00
|
|
|
web::Query(params): web::Query<PictrsParams>,
|
2020-08-05 16:00:00 +00:00
|
|
|
req: HttpRequest,
|
2021-12-08 15:56:43 +00:00
|
|
|
client: web::Data<ClientWithMiddleware>,
|
2021-09-22 15:57:09 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-08-05 16:00:00 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
2020-10-14 16:48:10 +00:00
|
|
|
let name = &filename.into_inner();
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2020-10-14 16:48:10 +00:00
|
|
|
// If there are no query params, the URL is original
|
2021-09-22 15:57:09 +00:00
|
|
|
let pictrs_url_settings = context.settings().pictrs_url;
|
2020-10-14 16:48:10 +00:00
|
|
|
let url = if params.format.is_none() && params.thumbnail.is_none() {
|
2021-09-22 15:57:09 +00:00
|
|
|
format!(
|
|
|
|
"{}/image/original/{}",
|
|
|
|
pictrs_url(pictrs_url_settings)?,
|
|
|
|
name,
|
|
|
|
)
|
2020-10-14 16:48:10 +00:00
|
|
|
} else {
|
|
|
|
// Use jpg as a default when none is given
|
2020-10-16 14:09:37 +00:00
|
|
|
let format = params.format.unwrap_or_else(|| "jpg".to_string());
|
2020-10-14 16:48:10 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let mut url = format!(
|
|
|
|
"{}/image/process.{}?src={}",
|
|
|
|
pictrs_url(pictrs_url_settings)?,
|
|
|
|
format,
|
|
|
|
name,
|
|
|
|
);
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2020-10-14 16:48:10 +00:00
|
|
|
if let Some(size) = params.thumbnail {
|
|
|
|
url = format!("{}&thumbnail={}", url, size,);
|
|
|
|
}
|
|
|
|
url
|
|
|
|
};
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2020-08-05 17:53:59 +00:00
|
|
|
image(url, req, client).await
|
2020-08-05 16:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn image(
|
|
|
|
url: String,
|
|
|
|
req: HttpRequest,
|
2021-12-08 15:56:43 +00:00
|
|
|
client: web::Data<ClientWithMiddleware>,
|
2020-08-05 16:00:00 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
2021-12-08 15:56:43 +00:00
|
|
|
let mut client_req = adapt_request(&req, &client, url);
|
2020-12-04 14:00:15 +00:00
|
|
|
|
|
|
|
if let Some(addr) = req.head().peer_addr {
|
2021-12-08 15:56:43 +00:00
|
|
|
client_req = client_req.header("X-Forwarded-For", addr.to_string());
|
|
|
|
}
|
2020-12-04 14:00:15 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
if let Some(addr) = req.head().peer_addr {
|
|
|
|
client_req = client_req.header("X-Forwarded-For", addr.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
let res = client_req.send().await.map_err(error::ErrorBadRequest)?;
|
2020-08-05 16:00:00 +00:00
|
|
|
|
|
|
|
if res.status() == StatusCode::NOT_FOUND {
|
|
|
|
return Ok(HttpResponse::NotFound().finish());
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut client_res = HttpResponse::build(res.status());
|
|
|
|
|
|
|
|
for (name, value) in res.headers().iter().filter(|(h, _)| *h != "connection") {
|
2021-07-06 13:26:46 +00:00
|
|
|
client_res.insert_header((name.clone(), value.clone()));
|
2020-08-05 16:00:00 +00:00
|
|
|
}
|
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
Ok(client_res.body(BodyStream::new(res.bytes_stream())))
|
2020-08-05 16:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn delete(
|
|
|
|
components: web::Path<(String, String)>,
|
|
|
|
req: HttpRequest,
|
2021-12-08 15:56:43 +00:00
|
|
|
client: web::Data<ClientWithMiddleware>,
|
2021-09-22 15:57:09 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-08-05 16:00:00 +00:00
|
|
|
) -> Result<HttpResponse, Error> {
|
|
|
|
let (token, file) = components.into_inner();
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let url = format!(
|
|
|
|
"{}/image/delete/{}/{}",
|
|
|
|
pictrs_url(context.settings().pictrs_url)?,
|
|
|
|
&token,
|
|
|
|
&file
|
|
|
|
);
|
2020-12-04 14:00:15 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
let mut client_req = adapt_request(&req, &client, url);
|
2020-12-04 14:00:15 +00:00
|
|
|
|
|
|
|
if let Some(addr) = req.head().peer_addr {
|
2021-12-08 15:56:43 +00:00
|
|
|
client_req = client_req.header("X-Forwarded-For", addr.to_string());
|
|
|
|
}
|
2020-12-04 14:00:15 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
let res = client_req.send().await.map_err(error::ErrorBadRequest)?;
|
2020-08-05 16:00:00 +00:00
|
|
|
|
2021-12-08 15:56:43 +00:00
|
|
|
Ok(HttpResponse::build(res.status()).body(BodyStream::new(res.bytes_stream())))
|
2020-08-05 16:00:00 +00:00
|
|
|
}
|
2021-08-04 21:13:51 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
fn pictrs_url(pictrs_url: Option<String>) -> Result<String, LemmyError> {
|
|
|
|
pictrs_url.ok_or_else(|| anyhow!("images_disabled").into())
|
2021-08-04 21:13:51 +00:00
|
|
|
}
|
2021-12-08 15:56:43 +00:00
|
|
|
|
|
|
|
fn make_send<S>(mut stream: S) -> impl Stream<Item = S::Item> + Send + Unpin + 'static
|
|
|
|
where
|
|
|
|
S: Stream + Unpin + 'static,
|
|
|
|
S::Item: Send,
|
|
|
|
{
|
|
|
|
// NOTE: the 8 here is arbitrary
|
|
|
|
let (tx, rx) = tokio::sync::mpsc::channel(8);
|
|
|
|
|
|
|
|
// NOTE: spawning stream into a new task can potentially hit this bug:
|
|
|
|
// - https://github.com/actix/actix-web/issues/1679
|
|
|
|
//
|
|
|
|
// Since 4.0.0-beta.2 this issue is incredibly less frequent. I have not personally reproduced it.
|
|
|
|
// That said, it is still technically possible to encounter.
|
|
|
|
actix_web::rt::spawn(async move {
|
|
|
|
while let Some(res) = stream.next().await {
|
|
|
|
if tx.send(res).await.is_err() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
SendStream { rx }
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SendStream<T> {
|
|
|
|
rx: tokio::sync::mpsc::Receiver<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Stream for SendStream<T>
|
|
|
|
where
|
|
|
|
T: Send,
|
|
|
|
{
|
|
|
|
type Item = T;
|
|
|
|
|
|
|
|
fn poll_next(
|
|
|
|
mut self: std::pin::Pin<&mut Self>,
|
|
|
|
cx: &mut std::task::Context<'_>,
|
|
|
|
) -> std::task::Poll<Option<Self::Item>> {
|
|
|
|
std::pin::Pin::new(&mut self.rx).poll_recv(cx)
|
|
|
|
}
|
|
|
|
}
|