From 5ea3b8da5beecb56cc094516c3b274f30ed5d7b1 Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Mon, 23 Dec 2019 00:08:16 -0500 Subject: [PATCH] use structs instead of hashmaps for templates --- src/main.rs | 58 ++++++++++++++++++++++++++------------------ src/template_args.rs | 17 +++++++++++++ 2 files changed, 51 insertions(+), 24 deletions(-) create mode 100644 src/template_args.rs diff --git a/src/main.rs b/src/main.rs index 05fdc3a..2d96cb5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,6 +16,8 @@ use std::io::Write; use std::sync::{Arc, RwLock}; use std::time::Duration; +mod template_args; + /// https://url.spec.whatwg.org/#fragment-percent-encode-set static FRAGMENT_ENCODE_SET: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'<').add(b'>').add(b'`'); @@ -75,23 +77,20 @@ fn hop( let data = data.read().unwrap(); match resolve_hop(&query.to, &data.routes, &data.default_route) { - (Some(path), args) => { - let mut template_args = HashMap::new(); - template_args.insert( - "query", - utf8_percent_encode(&args, FRAGMENT_ENCODE_SET).to_string(), - ); - - HttpResponse::Found() - .header( - header::LOCATION, - data - .renderer - .render_template(&path, &template_args) - .unwrap(), - ) - .finish() - } + (Some(path), args) => HttpResponse::Found() + .header( + header::LOCATION, + data + .renderer + .render_template( + &path, + &template_args::query( + utf8_percent_encode(&args, FRAGMENT_ENCODE_SET).to_string(), + ), + ) + .unwrap(), + ) + .finish(), (None, _) => HttpResponse::NotFound().body("not found"), } } @@ -133,23 +132,34 @@ fn resolve_hop( #[get("/")] fn index(data: Data>>) -> impl Responder { let data = data.read().unwrap(); - let mut template_args = HashMap::new(); - template_args.insert("hostname", &data.public_address); - HttpResponse::Ok() - .body(data.renderer.render("index", &template_args).unwrap()) + HttpResponse::Ok().body( + data + .renderer + .render( + "index", + &template_args::hostname(data.public_address.clone()), + ) + .unwrap(), + ) } #[get("/bunbunsearch.xml")] fn opensearch(data: Data>>) -> impl Responder { let data = data.read().unwrap(); - let mut template_args = HashMap::new(); - template_args.insert("hostname", &data.public_address); HttpResponse::Ok() .header( header::CONTENT_TYPE, "application/opensearchdescription+xml", ) - .body(data.renderer.render("opensearch", &template_args).unwrap()) + .body( + data + .renderer + .render( + "opensearch", + &template_args::hostname(data.public_address.clone()), + ) + .unwrap(), + ) } /// Dynamic variables that either need to be present at runtime, or can be diff --git a/src/template_args.rs b/src/template_args.rs new file mode 100644 index 0000000..92b001b --- /dev/null +++ b/src/template_args.rs @@ -0,0 +1,17 @@ +use serde::Serialize; + +pub fn query(query: String) -> impl Serialize { + #[derive(Serialize)] + struct TemplateArgs { + query: String, + } + TemplateArgs { query } +} + +pub fn hostname(hostname: String) -> impl Serialize { + #[derive(Serialize)] + pub struct TemplateArgs { + pub hostname: String, + } + TemplateArgs { hostname } +}