summaryrefslogtreecommitdiff
path: root/src/tutors/fs_tutor.rs
blob: dc8a6351e28e513c6c3464334799b818b4c1a815 (plain) (blame)
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
use crate::tutors::abstractions::tutor::Tutor;
use std::{borrow::Cow, cmp::Ordering, fs, path::PathBuf};

#[derive(Debug, Eq)]
pub struct FsTutor {
    dir: PathBuf,
}

impl FsTutor {
    pub fn with_dir(path: PathBuf) -> Self {
        Self { dir: path }
    }
}

impl Tutor for FsTutor {
    fn get_id(&self) -> &str {
        self.dir.file_name().unwrap().to_str().unwrap()
    }

    fn get_name(&self) -> &str {
        self.get_id()
    }

    fn get_blurb(&self) -> Cow<str> {
        let mut path = self.dir.to_owned();
        path.push(format!("{}.md", self.get_id()));
        let blurb = fs::read_to_string(path).unwrap();
        Cow::Owned(blurb)
    }
}

impl Ord for FsTutor {
    fn cmp(&self, other: &Self) -> Ordering {
        self.get_id().cmp(other.get_id())
    }
}

impl PartialOrd for FsTutor {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl PartialEq for FsTutor {
    fn eq(&self, other: &Self) -> bool {
        self.get_id() == other.get_id()
    }
}