filepath
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Untone 2024-10-23 16:30:35 +03:00
parent f671b76611
commit a8936c92d3

View File

@ -138,8 +138,9 @@ pub async fn proxy_handler(
} }
Ok(None) => { Ok(None) => {
warn!("cannot find stored path for: {}", filekey); warn!("cannot find stored path for: {}", filekey);
let filepath = format!("unsafe/production/{}", filekey);
// download from aws to storj // download from aws to storj
match load_file_from_s3(&state.aws_client, &state.bucket, &filekey).await { match load_file_from_s3(&state.aws_client, &state.bucket, &filepath).await {
Ok(filedata) => { Ok(filedata) => {
thumbdata_save(filedata.clone(), &state, &filekey, content_type.to_string()) thumbdata_save(filedata.clone(), &state, &filekey, content_type.to_string())
.await; .await;
@ -158,7 +159,7 @@ pub async fn proxy_handler(
Ok(HttpResponse::Ok().content_type(content_type).body(filedata)) Ok(HttpResponse::Ok().content_type(content_type).body(filedata))
}, },
Err(e) => { Err(e) => {
error!("cannot download {} from aws: {}", filekey, e); error!("cannot download {} from aws: {}", filepath, e);
Err(ErrorInternalServerError(e)) Err(ErrorInternalServerError(e))
}, },
} }