use serde::{Deserialize, Serialize};
use std::{
convert::Infallible,
fmt::{Display, Formatter},
str::FromStr,
};
#[derive(Clone, Debug, Serialize, Deserialize, Default, PartialEq)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
pub struct Fields {
#[serde(skip_serializing_if = "Vec::is_empty")]
pub include: Vec<String>,
#[serde(skip_serializing_if = "Vec::is_empty")]
pub exclude: Vec<String>,
}
impl FromStr for Fields {
type Err = Infallible;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let mut include = Vec::new();
let mut exclude = Vec::new();
for field in s.split(",").filter(|s| !s.is_empty()) {
if field.starts_with('-') {
exclude.push(field[1..].to_string());
} else if field.starts_with("+") {
include.push(field[1..].to_string());
} else {
include.push(field.to_string());
}
}
Ok(Fields { include, exclude })
}
}
impl Display for Fields {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut fields = Vec::new();
for include in &self.include {
fields.push(format!("{}", include));
}
for exclude in &self.exclude {
fields.push(format!("-{}", exclude));
}
write!(f, "{}", fields.join(","))
}
}
#[cfg(test)]
mod tests {
use super::Fields;
#[test]
fn empty() {
assert_eq!(Fields::default(), "".parse().unwrap());
}
#[test]
fn plus() {
assert_eq!(
Fields {
include: vec!["foo".to_string()],
exclude: Vec::new(),
},
"+foo".parse().unwrap()
);
}
#[test]
fn includes() {
assert_eq!(
Fields {
include: vec![
"id".to_string(),
"type".to_string(),
"geometry".to_string(),
"bbox".to_string(),
"properties".to_string(),
"links".to_string(),
"assets".to_string(),
],
exclude: Vec::new()
},
"id,type,geometry,bbox,properties,links,assets"
.parse()
.unwrap()
);
assert_eq!(
Fields {
include: vec![
"id".to_string(),
"type".to_string(),
"geometry".to_string(),
"bbox".to_string(),
"properties".to_string(),
"links".to_string(),
"assets".to_string(),
],
exclude: Vec::new()
}
.to_string(),
"id,type,geometry,bbox,properties,links,assets"
)
}
#[test]
fn exclude() {
assert_eq!(
Fields {
include: Vec::new(),
exclude: vec!["geometry".to_string()]
},
"-geometry".parse().unwrap()
);
assert_eq!(
Fields {
include: Vec::new(),
exclude: vec!["geometry".to_string()]
}
.to_string(),
"-geometry"
);
}
}