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
48
49
50
51
52
53
54
55
56
57
58
59
extern crate regex;
#[macro_use]
extern crate lazy_static;

mod tests;

pub mod validators;

/// A ValidationChain is the foundation for everything you want to validate.
///
/// # Examples
///
/// ```
/// use gild::ValidationChain;
/// use gild::validators;
///
/// ValidationChain::new()
///    .add(validators::Empty::new(false));
///
/// ValidationChain::new()
///    .add(validators::Empty::new(false))
///    .validate(String::from("I want to validate this."))
///    .is_ok();
/// ```
pub struct ValidationChain {
    chain: Vec<Box<ValidatorCondition>>
}

pub trait ValidatorCondition {
    fn validate(&self, input: String) -> bool {
        unimplemented!()
    }

    fn get_err_message(&self) -> String {
        unimplemented!()
    }
}

impl ValidationChain {
    pub fn new() -> Self {
        ValidationChain { chain: Vec::new() }
    }

    pub fn add(&mut self, condition: Box<ValidatorCondition>) -> &mut Self {
        self.chain.push(condition);

        self
    }

    pub fn validate(&self, s: String) -> Result<String, String> {
        for condition in self.chain.iter() {
            if !condition.validate(s.clone()) {
                return Err(condition.get_err_message())
            }
        }

        Ok(s.clone())
    }
}