32 lines
956 B
Rust
32 lines
956 B
Rust
use warp::{reply::{Reply, json}, reject::Rejection, Filter};
|
|
|
|
use crate::web::{state::SharedState, rejection::HttpReject};
|
|
|
|
use super::{check_api_enabled, function_disabled_err};
|
|
|
|
pub async fn get_all(state: SharedState) -> Result<Box<dyn Reply>, Rejection> {
|
|
if let Err(res) = check_api_enabled(&state) {
|
|
return Ok(Box::new(res))
|
|
}
|
|
|
|
if (!state.config.api.get_all) || (!state.config.api.enabled) {
|
|
return Ok(Box::new(function_disabled_err()))
|
|
}
|
|
|
|
Ok(
|
|
Box::new(
|
|
json(
|
|
&state.file_mgr.get_all(true, true)
|
|
.await
|
|
.map_err(|x| x.to_string())
|
|
.map_err(|x| HttpReject::StringError(x))?
|
|
)
|
|
)
|
|
)
|
|
}
|
|
|
|
pub fn get_all_f(state: SharedState) -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
|
|
warp::path!("api" / "files" / "get_all")
|
|
.map(move || state.clone())
|
|
.and_then(get_all)
|
|
} |