2015-07-31 18:34:43 +02:00
|
|
|
extern crate handlebars;
|
|
|
|
|
extern crate rustc_serialize;
|
|
|
|
|
|
2015-09-05 17:26:17 +02:00
|
|
|
use std::path::Path;
|
2015-07-31 18:34:43 +02:00
|
|
|
use std::collections::BTreeMap;
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
use self::rustc_serialize::json::{self, ToJson};
|
|
|
|
|
use self::handlebars::{Handlebars, RenderError, RenderContext, Helper, Context, Renderable};
|
2015-07-31 18:34:43 +02:00
|
|
|
|
|
|
|
|
// Handlebars helper for navigation
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
pub fn previous(c: &Context, _h: &Helper, r: &Handlebars, rc: &mut RenderContext) -> Result<(), RenderError> {
|
|
|
|
|
debug!("[fn]: previous (handlebars helper)");
|
2015-07-31 18:34:43 +02:00
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
debug!("[*]: Get data from context");
|
2015-07-31 18:34:43 +02:00
|
|
|
// get value from context data
|
|
|
|
|
// rc.get_path() is current json parent path, you should always use it like this
|
|
|
|
|
// param is the key of value you want to display
|
|
|
|
|
let chapters = c.navigate(rc.get_path(), "chapters");
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
let current = c.navigate(rc.get_path(), "path")
|
|
|
|
|
.to_string()
|
|
|
|
|
.replace("\"", "");
|
2015-07-31 18:34:43 +02:00
|
|
|
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
debug!("[*]: Decode chapters from JSON");
|
|
|
|
|
// Decode json format
|
2015-08-11 22:55:51 +02:00
|
|
|
let decoded: Vec<BTreeMap<String, String>> = match json::decode(&chapters.to_string()) {
|
|
|
|
|
Ok(data) => data,
|
|
|
|
|
Err(_) => return Err(RenderError{ desc: "Could not decode the JSON data"}),
|
|
|
|
|
};
|
2015-08-03 22:09:26 +02:00
|
|
|
let mut previous: Option<BTreeMap<String, String>> = None;
|
2015-07-31 18:34:43 +02:00
|
|
|
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
debug!("[*]: Search for current Chapter");
|
|
|
|
|
// Search for current chapter and return previous entry
|
2015-07-31 18:34:43 +02:00
|
|
|
for item in decoded {
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
match item.get("path") {
|
|
|
|
|
Some(path) if path.len() > 0 => {
|
2015-07-31 18:34:43 +02:00
|
|
|
if path == ¤t {
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
debug!("[*]: Found current chapter");
|
|
|
|
|
if let Some(previous) = previous{
|
|
|
|
|
|
|
|
|
|
debug!("[*]: Creating BTreeMap to inject in context");
|
|
|
|
|
// Create new BTreeMap to extend the context: 'title' and 'link'
|
|
|
|
|
let mut previous_chapter = BTreeMap::new();
|
|
|
|
|
|
2015-08-11 22:55:51 +02:00
|
|
|
// Chapter title
|
|
|
|
|
match previous.get("name") {
|
|
|
|
|
Some(n) => {
|
|
|
|
|
debug!("[*]: Inserting title: {}", n);
|
|
|
|
|
previous_chapter.insert("title".to_string(), n.to_json())
|
|
|
|
|
},
|
|
|
|
|
None => {
|
|
|
|
|
debug!("[*]: No title found for chapter");
|
|
|
|
|
return Err(RenderError{ desc: "No title found for chapter in JSON data" })
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Chapter link
|
|
|
|
|
|
|
|
|
|
match previous.get("path") {
|
|
|
|
|
Some(p) => {
|
2015-09-05 17:26:17 +02:00
|
|
|
let path = Path::new(p).with_extension("html");
|
2015-08-11 22:55:51 +02:00
|
|
|
debug!("[*]: Inserting link: {:?}", path);
|
|
|
|
|
|
|
|
|
|
match path.to_str() {
|
|
|
|
|
Some(p) => { previous_chapter.insert("link".to_string(), p.to_json()); },
|
|
|
|
|
None => return Err(RenderError{ desc: "Link could not be converted to str" })
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
None => return Err(RenderError{ desc: "No path found for chapter in JSON data" })
|
|
|
|
|
}
|
2015-08-03 22:09:26 +02:00
|
|
|
|
|
|
|
|
debug!("[*]: Inject in context");
|
|
|
|
|
// Inject in current context
|
2015-08-04 12:51:07 +02:00
|
|
|
let updated_context = c.extend(&previous_chapter);
|
2015-08-03 22:09:26 +02:00
|
|
|
|
|
|
|
|
debug!("[*]: Render template");
|
|
|
|
|
// Render template
|
2015-08-11 22:55:51 +02:00
|
|
|
match _h.template() {
|
|
|
|
|
Some(t) => {
|
|
|
|
|
try!(t.render(&updated_context, r, rc));
|
|
|
|
|
},
|
|
|
|
|
None => return Err(RenderError{ desc: "Error with the handlebars template" })
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
}
|
2015-07-31 18:34:43 +02:00
|
|
|
|
2015-08-03 22:09:26 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
previous = Some(item.clone());
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
_ => continue,
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-07-31 18:34:43 +02:00
|
|
|
}
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-07-31 18:34:43 +02:00
|
|
|
}
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-07-31 18:34:43 +02:00
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-08-04 12:51:07 +02:00
|
|
|
pub fn next(c: &Context, _h: &Helper, r: &Handlebars, rc: &mut RenderContext) -> Result<(), RenderError> {
|
|
|
|
|
debug!("[fn]: next (handlebars helper)");
|
|
|
|
|
|
|
|
|
|
debug!("[*]: Get data from context");
|
2015-07-31 18:34:43 +02:00
|
|
|
// get value from context data
|
|
|
|
|
// rc.get_path() is current json parent path, you should always use it like this
|
|
|
|
|
// param is the key of value you want to display
|
|
|
|
|
let chapters = c.navigate(rc.get_path(), "chapters");
|
|
|
|
|
|
2015-08-04 12:51:07 +02:00
|
|
|
let current = c.navigate(rc.get_path(), "path")
|
|
|
|
|
.to_string()
|
|
|
|
|
.replace("\"", "");
|
|
|
|
|
|
|
|
|
|
debug!("[*]: Decode chapters from JSON");
|
|
|
|
|
// Decode json format
|
2015-08-11 22:55:51 +02:00
|
|
|
let decoded: Vec<BTreeMap<String, String>> = match json::decode(&chapters.to_string()) {
|
|
|
|
|
Ok(data) => data,
|
|
|
|
|
Err(_) => return Err(RenderError{ desc: "Could not decode the JSON data"}),
|
|
|
|
|
};
|
2015-08-04 12:51:07 +02:00
|
|
|
let mut previous: Option<BTreeMap<String, String>> = None;
|
2015-07-31 18:34:43 +02:00
|
|
|
|
2015-08-04 12:51:07 +02:00
|
|
|
debug!("[*]: Search for current Chapter");
|
|
|
|
|
// Search for current chapter and return previous entry
|
2015-07-31 18:34:43 +02:00
|
|
|
for item in decoded {
|
|
|
|
|
|
2015-08-04 12:51:07 +02:00
|
|
|
match item.get("path") {
|
|
|
|
|
|
|
|
|
|
Some(path) if path.len() > 0 => {
|
|
|
|
|
|
|
|
|
|
if let Some(previous) = previous {
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-08-12 19:22:53 +02:00
|
|
|
let previous_path = match previous.get("path") {
|
2015-08-11 22:55:51 +02:00
|
|
|
Some(p) => p,
|
|
|
|
|
None => return Err(RenderError{ desc: "No path found for chapter in JSON data"})
|
|
|
|
|
};
|
|
|
|
|
|
2015-08-12 19:22:53 +02:00
|
|
|
if previous_path == ¤t {
|
2015-08-04 12:51:07 +02:00
|
|
|
|
|
|
|
|
debug!("[*]: Found current chapter");
|
|
|
|
|
debug!("[*]: Creating BTreeMap to inject in context");
|
|
|
|
|
// Create new BTreeMap to extend the context: 'title' and 'link'
|
|
|
|
|
let mut next_chapter = BTreeMap::new();
|
|
|
|
|
|
2015-08-11 22:55:51 +02:00
|
|
|
match item.get("name") {
|
|
|
|
|
Some(n) => {
|
|
|
|
|
debug!("[*]: Inserting title: {}", n);
|
|
|
|
|
next_chapter.insert("title".to_string(), n.to_json());
|
|
|
|
|
}
|
|
|
|
|
None => return Err(RenderError{ desc: "No title found for chapter in JSON data"})
|
|
|
|
|
}
|
2015-08-04 12:51:07 +02:00
|
|
|
|
2015-08-12 19:22:53 +02:00
|
|
|
|
2015-09-05 17:26:17 +02:00
|
|
|
let link = Path::new(path).with_extension("html");
|
2015-08-11 22:55:51 +02:00
|
|
|
debug!("[*]: Inserting link: {:?}", link);
|
2015-08-04 12:51:07 +02:00
|
|
|
|
2015-08-11 22:55:51 +02:00
|
|
|
match link.to_str() {
|
|
|
|
|
Some(l) => { next_chapter.insert("link".to_string(), l.to_json()); },
|
|
|
|
|
None => return Err(RenderError{ desc: "Link could not converted to str"})
|
|
|
|
|
}
|
2015-08-04 12:51:07 +02:00
|
|
|
|
|
|
|
|
debug!("[*]: Inject in context");
|
|
|
|
|
// Inject in current context
|
|
|
|
|
let updated_context = c.extend(&next_chapter);
|
|
|
|
|
|
|
|
|
|
debug!("[*]: Render template");
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-08-04 12:51:07 +02:00
|
|
|
// Render template
|
2015-08-11 22:55:51 +02:00
|
|
|
match _h.template() {
|
|
|
|
|
Some(t) => {
|
|
|
|
|
try!(t.render(&updated_context, r, rc));
|
|
|
|
|
},
|
|
|
|
|
None => return Err(RenderError{ desc: "Error with the handlebars template" })
|
|
|
|
|
}
|
2015-08-04 12:51:07 +02:00
|
|
|
|
|
|
|
|
break
|
|
|
|
|
}
|
2015-07-31 18:34:43 +02:00
|
|
|
}
|
2015-08-04 12:51:07 +02:00
|
|
|
|
|
|
|
|
previous = Some(item.clone());
|
|
|
|
|
},
|
2015-08-11 22:55:51 +02:00
|
|
|
|
2015-08-04 12:51:07 +02:00
|
|
|
_ => continue,
|
2015-07-31 18:34:43 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|