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, 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 + Clone { warp::path!("api" / "files" / "get_all") .map(move || state.clone()) .and_then(get_all) }