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
use std::convert::Into;
use std::fs::File;
use std::io::Read;
use std::path::PathBuf;

use failure::Error;

pub trait ConfigReader {
    fn has_config(&self) -> bool;
    fn read(&self) -> Result<String, Error>;
}

pub struct ConfigFileReader {
    path: PathBuf,
}

impl ConfigFileReader {
    pub fn new<P>(path: P) -> Self
    where
        P: Into<PathBuf>,
    {
        ConfigFileReader { path: path.into() }
    }
}

impl ConfigReader for ConfigFileReader {
    fn has_config(&self) -> bool {
        File::open(&self.path).is_ok()
    }

    fn read(&self) -> Result<String, Error> {
        let mut file = File::open(&self.path)?;
        let mut contents = String::new();
        file.read_to_string(&mut contents)?;

        Ok(contents)
    }
}