feat(registry): set content-length header for fs storage

This commit is contained in:
daimond113 2025-01-10 16:06:27 +01:00
parent a39b1bb60a
commit 076f5564ee
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 3 additions and 1 deletions

View file

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add yanking & deprecating to registry by @daimond113 - Add yanking & deprecating to registry by @daimond113
- Log more information about configured auth & storage by @daimond113 - Log more information about configured auth & storage by @daimond113
- Add individual endpoints for package data over using `Accept` header conditional returns by @daimond113 - Add individual endpoints for package data over using `Accept` header conditional returns by @daimond113
- Set `Content-Length` header for FS storage backend by @daimond113
### Performance ### Performance
- Switch to using a `RwLock` over a `Mutex` to store repository data by @daimond113 - Switch to using a `RwLock` over a `Mutex` to store repository data by @daimond113

View file

@ -1,6 +1,6 @@
use crate::{error::RegistryError, storage::StorageImpl}; use crate::{error::RegistryError, storage::StorageImpl};
use actix_web::{ use actix_web::{
http::header::{CONTENT_ENCODING, CONTENT_TYPE}, http::header::{CONTENT_ENCODING, CONTENT_LENGTH, CONTENT_TYPE},
HttpResponse, HttpResponse,
}; };
use fs_err::tokio as fs; use fs_err::tokio as fs;
@ -24,6 +24,7 @@ async fn read_file_to_response(
Ok(file) => HttpResponse::Ok() Ok(file) => HttpResponse::Ok()
.append_header((CONTENT_TYPE, content_type)) .append_header((CONTENT_TYPE, content_type))
.append_header((CONTENT_ENCODING, "gzip")) .append_header((CONTENT_ENCODING, "gzip"))
.append_header((CONTENT_LENGTH, file.metadata().await?.len()))
.streaming(ReaderStream::new(file)), .streaming(ReaderStream::new(file)),
Err(e) if e.kind() == std::io::ErrorKind::NotFound => HttpResponse::NotFound().finish(), Err(e) if e.kind() == std::io::ErrorKind::NotFound => HttpResponse::NotFound().finish(),
Err(e) => return Err(e.into()), Err(e) => return Err(e.into()),