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
use crate::{
    config,
    config::tree::{keys, Key, Safe, Section},
};

impl Safe {
    /// The `safe.directory` key
    pub const DIRECTORY: keys::Any = keys::Any::new("directory", &config::Tree::SAFE);
}

impl Safe {
    /// Implements the directory filter to trust only global and system files, for use with `safe.directory`.
    pub fn directory_filter(meta: &git_config::file::Metadata) -> bool {
        let kind = meta.source.kind();
        kind == git_config::source::Kind::System || kind == git_config::source::Kind::Global
    }
}

impl Section for Safe {
    fn name(&self) -> &str {
        "safe"
    }

    fn keys(&self) -> &[&dyn Key] {
        &[&Self::DIRECTORY]
    }
}