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
use rand::prelude::*;
use regex::Regex;
use std::str::FromStr;

#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn owo() {
        let text = String::from("malfunction me mom.. t-till i break~~");
        let owoified = text.owoify();
        println!("\t{}", owoified);
    }
    #[test]
    fn all_match_owo() {
        let text = String::from("r l R L th na Na NA ove !!");
        println!("\t{}", text.owoify());
    }
}

pub trait OwOifiable {
    /// The owoification method
    fn owoify(&self) -> Self;
}

impl OwOifiable for String {
    /// Owoifies a String
    ///
    /// # Examples
    ///
    /// ```
    /// use owoify::OwOifiable;
    /// let owoified = String::from("Example text").owoify();
    /// ```
    fn owoify(&self) -> Self {
        let mut rng = rand::thread_rng();
        let faces = ["(・`ω´・)", "OwO", "owo", "oωo", "òωó", "°ω°", "UwU", ">w<", "^w^"];
        let face = &format!(" {} ", faces[rng.gen_range(0, faces.len())]).to_owned();
        let pats: Vec<(&str, &str)> = vec![
            ("(?:r|l)", "w"),
            ("(?:R|L)", "W"),
            ("n([aeiou])", "ny$1"),
            ("N([aeiou])", "Ny$1"),
            ("N([AEIOU])", "NY$1"),
            ("th", "d"),
            ("ove", "uv"),
            ("!+", face),
        ];

        let mut owoified = String::from_str(&self).unwrap();

        for &(f, t) in &pats {
            let re = Regex::new(f).unwrap();
            owoified = re.replace_all(&owoified, t).to_string();
        }

        owoified
    }
}