use std::str;
use url::form_urlencoded::Serializer;
pub struct HttpQueryString {
fields: Vec<HttpQueryStringItem>
}
#[doc(hidden)]
impl HttpQueryString {
pub fn new(fields: Vec<HttpQueryStringItem>) -> HttpQueryString {
HttpQueryString {
fields: fields
}
}
}
#[doc(hidden)]
impl ToString for HttpQueryString {
fn to_string(&self) -> String {
let mut query = Serializer::new(String::new());
for item in &self.fields {
match *item {
HttpQueryStringItem::Value(ref key, ref value) => {
query.append_pair(
key.as_str(),
value.as_str()
);
},
HttpQueryStringItem::Array(ref key, ref values) => {
for value in values {
query.append_pair(
key.as_str(),
value.as_str()
);
}
}
}
}
query.finish()
}
}
pub enum HttpQueryStringItem {
Value(String, String),
Array(String, Vec<String>)
}
macro_rules! impl_query_string_item_type {
($T:ty) => (
impl From<(&'static str, $T)> for HttpQueryStringItem {
fn from(item: (&'static str, $T)) -> HttpQueryStringItem {
HttpQueryStringItem::Value(
item.0.to_string(),
item.1.to_string()
)
}
}
impl From<(&'static str, Vec<$T>)> for HttpQueryStringItem {
fn from(item: (&'static str, Vec<$T>)) -> HttpQueryStringItem {
HttpQueryStringItem::Array(
item.0.to_string(),
item.1.iter().map(|s| s.to_string()).collect()
)
}
}
)
}
impl_query_string_item_type!(&'static str);
impl_query_string_item_type!(String);
impl_query_string_item_type!(bool);
impl_query_string_item_type!(f64);
impl_query_string_item_type!(i64);
impl_query_string_item_type!(u64);
impl_query_string_item_type!(i32);
impl_query_string_item_type!(u32);