1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
use std::vec::IntoIter; use std::marker::PhantomData; use serde_json::Value; use super::{Page, Result, http}; pub struct Iter<'a, A: 'a + http::HttpClient, B: IterItem> { page: &'a Page<'a, A>, inner: IntoIter<Value>, cont: Option<Vec<(String, String)>>, phantom: PhantomData<B> } impl<'a, A: http::HttpClient, B: IterItem> Iter<'a, A, B> { pub fn new(page: &'a Page<A>) -> Result<Iter<'a, A, B>> { let (array, cont) = try!(B::request_next(page, &None)); Ok(Iter { page: page, inner: array.into_iter(), cont: cont, phantom: PhantomData, }) } fn fetch_next(&mut self) -> Result <()> { if self.cont.is_some() { let (array, cont) = try!(B::request_next(self.page, &self.cont)); self.inner = array.into_iter(); self.cont = cont; } Ok(()) } } impl<'a, A: http::HttpClient, B: IterItem> Iterator for Iter<'a, A, B> { type Item = B; fn next(&mut self) -> Option<Self::Item> { match self.inner.next() { Some(ref v) => B::from_value(&v), None => match self.cont { Some(_) => match self.fetch_next() { Ok(_) => self.inner.next().and_then(|x| B::from_value(&x)), Err(_) => None, }, None => None, } } } } pub trait IterItem: Sized { fn request_next<A: http::HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)>; fn from_value(value: &Value) -> Option<Self>; } #[derive(Debug, PartialEq)] pub struct Image { pub url: String, pub title: String, pub description_url: String, } impl IterItem for Image { fn request_next<A: http::HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)> { page.request_images(&cont) } fn from_value(value: &Value) -> Option<Image> { let obj = match value.as_object() { Some(o) => o, None => return None, }; let title = obj .get("title") .and_then(|x| x.as_string()) .unwrap_or("").to_owned(); let url = obj .get("imageinfo") .and_then(|x| x.as_array()) .and_then(|x| x.into_iter().next()) .and_then(|x| x.as_object()) .and_then(|x| x.get("url")) .and_then(|x| x.as_string()) .unwrap_or("").to_owned(); let description_url = obj .get("imageinfo") .and_then(|x| x.as_array()) .and_then(|x| x.into_iter().next()) .and_then(|x| x.as_object()) .and_then(|x| x.get("descriptionurl")) .and_then(|x| x.as_string()) .unwrap_or("").to_owned(); Some(Image { url: url.to_owned(), title: title.to_owned(), description_url: description_url.to_owned(), }) } } #[derive(Debug, PartialEq)] pub struct Reference { pub url: String, } impl IterItem for Reference { fn request_next<A: http::HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)> { page.request_extlinks(&cont) } fn from_value(value: &Value) -> Option<Reference> { value .as_object() .and_then(|x| x.get("*")) .and_then(|x| x.as_string()) .map(|s| Reference { url: if s.starts_with("http:") { s.to_owned() } else { format!("http:{}", s) }, }) } } #[derive(Debug, PartialEq)] pub struct Link { pub title: String, } impl IterItem for Link { fn request_next<A: http::HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)> { page.request_links(&cont) } fn from_value(value: &Value) -> Option<Link> { value .as_object() .and_then(|x| x.get("title")) .and_then(|x| x.as_string()) .map(|s| Link { title: s.to_owned() }) } } #[derive(Debug, PartialEq)] pub struct Category { pub title: String, } impl IterItem for Category { fn request_next<A: http::HttpClient>(page: &Page<A>, cont: &Option<Vec<(String, String)>>) -> Result<(Vec<Value>, Option<Vec<(String, String)>>)> { page.request_categories(&cont) } fn from_value(value: &Value) -> Option<Category> { value .as_object() .and_then(|x| x.get("title")) .and_then(|x| x.as_string()) .map(|s| Category { title: if s.starts_with("Category: ") { s[10..].to_owned() } else { s.to_owned() }, }) } }