This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.rs
65 lines (56 loc) · 1.53 KB
/
file.rs
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
60
61
62
63
64
65
use std::collections::HashMap;
use std::iter::FromIterator;
pub type InnerFBConfig = HashMap<UserPair, HashMap<Command, ExecRight>>;
#[derive(serde::Deserialize)]
pub struct FileBoundConfig {
pub users: InnerFBConfig,
pub settings: InnerFBSettings,
}
#[derive(Hash, Eq, PartialEq, serde::Deserialize)]
pub struct InnerFBSettings {
login_timeout: u32,
}
#[derive(Hash, Eq, PartialEq, serde::Deserialize)]
pub enum Command {
Sel(Selector),
Shell,
All,
}
#[derive(Hash, Eq, PartialEq, serde::Deserialize)]
pub struct UserPair(Selector, UserMode);
#[derive(Hash, Eq, PartialEq, serde::Deserialize)]
pub enum UserMode {
Default,
NoPw
}
#[derive(Hash, Eq, PartialEq, serde::Deserialize)]
pub enum ExecRight {
Root,
Other(Vec<String>),
}
#[derive(Hash, Eq, PartialEq, serde::Deserialize)]
pub enum Selector {
/// Matches all
Match(String),
/// Matches the first word
Word(String),
/// Regex match
Regex(String),
/// Format string with dynamic values
// TODO Format(String),
}
impl Selector {
fn check(&self, other: &String) -> bool {
match self {
Selector::Match(dc) => dc == other,
Selector::Word(word) => {
String::from_iter(other.chars().take_while(|c| !c.is_whitespace())) == *word
}
Selector::Regex(regex) => fancy_regex::Regex::new(regex)
.unwrap()
.is_match(other)
.expect("Regex failed to run"),
// TODO Selector::Format(_) => {}
}
}
}