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
// this module allows the user to have
// more fine grained control over which fields are
// returned

use crate::utils::utils::parse_comma_separated;
use crate::utils::variable_data::GOAT_VARIABLE_DATA;
use anyhow::{ensure, Result};

pub struct Variables<'a> {
    variables: &'a str,
}

impl<'a> Variables<'a> {
    pub fn new(str: &'a str) -> Self {
        Self { variables: str }
    }
    // split comma sep list
    // check against the database
    // format the string.
    pub fn parse(&self) -> Result<String> {
        let base = "&fields=";
        let delimiter = "%2C";

        let mut parsed_string = String::new();

        let split_vec = parse_comma_separated(&self.variables);
        // check that all the strings in split_vec are real
        let var_vec_check = &*GOAT_VARIABLE_DATA
            .iter()
            .map(|(e, _)| e.to_string())
            .collect::<Vec<String>>();

        // TODO: perhaps say which one it is?
        ensure!(split_vec.iter().all(|item| var_vec_check.contains(item)), "One of the variables you passed does not match the database. Please check all of your variables are spelled correctly.\nError: Run `goat search --print-expression` to see a list of possible variables.");

        parsed_string += base;
        for el in split_vec {
            parsed_string += &el;
            parsed_string += delimiter;
        }

        // should be okay to do an unchecked drain here
        parsed_string.drain(parsed_string.len() - 3..);

        Ok(parsed_string)
    }
}