mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
feat(registry): set content-length header for fs storage
This commit is contained in:
parent
a39b1bb60a
commit
076f5564ee
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
- Log more information about configured auth & storage 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
|
||||
- Switch to using a `RwLock` over a `Mutex` to store repository data by @daimond113
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::{error::RegistryError, storage::StorageImpl};
|
||||
use actix_web::{
|
||||
http::header::{CONTENT_ENCODING, CONTENT_TYPE},
|
||||
http::header::{CONTENT_ENCODING, CONTENT_LENGTH, CONTENT_TYPE},
|
||||
HttpResponse,
|
||||
};
|
||||
use fs_err::tokio as fs;
|
||||
|
@ -24,6 +24,7 @@ async fn read_file_to_response(
|
|||
Ok(file) => HttpResponse::Ok()
|
||||
.append_header((CONTENT_TYPE, content_type))
|
||||
.append_header((CONTENT_ENCODING, "gzip"))
|
||||
.append_header((CONTENT_LENGTH, file.metadata().await?.len()))
|
||||
.streaming(ReaderStream::new(file)),
|
||||
Err(e) if e.kind() == std::io::ErrorKind::NotFound => HttpResponse::NotFound().finish(),
|
||||
Err(e) => return Err(e.into()),
|
||||
|
|
Loading…
Add table
Reference in a new issue