use std::collections::HashMap; use futures::{Future, finished}; use assets::*; use article_resource::ArticleResource; use state::State; use web::{Lookup, Resource}; lazy_static! { static ref LOOKUP_MAP: HashMap Box + Sync + Send>> = { let mut lookup_map = HashMap::new(); lookup_map.insert( format!("/_assets/style-{}.css", StyleCss::checksum()), Box::new(|| Box::new(StyleCss) as Box) as Box Box + Sync + Send> ); lookup_map.insert( format!("/_assets/script-{}.js", ScriptJs::checksum()), Box::new(|| Box::new(ScriptJs) as Box) as Box Box + Sync + Send> ); lookup_map.insert( format!("/_assets/amatic-sc-v9-latin-regular.woff"), Box::new(|| Box::new(AmaticFont) as Box) as Box Box + Sync + Send> ); lookup_map }; } #[derive(Clone)] pub struct WikiLookup { state: State } impl WikiLookup { pub fn new(state: State) -> WikiLookup { WikiLookup { state } } } impl Lookup for WikiLookup { type Resource = Box; type Error = Box<::std::error::Error + Send + Sync>; type Future = Box, Error = Self::Error>>; fn lookup(&self, path: &str, _query: Option<&str>, _fragment: Option<&str>) -> Self::Future { assert!(path.starts_with("/")); if path.starts_with("/_") { // Reserved namespace return Box::new(finished( LOOKUP_MAP.get(path).map(|x| x()) )); } let mut split = path[1..].split('/'); let slug = split.next().expect("Always at least one element"); if split.next() != None { // Currently disallow any URLs of the form /slug/... return Box::new(finished(None)); } if let Ok(article_id) = slug.parse() { let state = self.state.clone(); Box::new(self.state.get_article_revision_by_id(article_id) .and_then(|x| Ok(x.map(move |article| Box::new(ArticleResource::new(state, article)) as Box ))) ) } else { Box::new(finished(None)) } } }