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
use std::fmt;
use svc_authn::AccountId;

////////////////////////////////////////////////////////////////////////////////

pub trait Object: Send + Sync {
    fn to_ban_key(&self) -> Option<Vec<String>>;
    fn to_vec(&self) -> Vec<String>;
    fn box_clone(&self) -> Box<dyn Object>;
}

impl Clone for Box<dyn Object> {
    fn clone(&self) -> Self {
        self.box_clone()
    }
}

impl fmt::Debug for Box<dyn Object> {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Debug::fmt(&self.to_vec(), fmt)
    }
}

#[derive(Clone, Debug)]
pub struct Intent {
    subject: AccountId,
    object: Box<dyn Object>,
    action: String,
}

impl Intent {
    pub(crate) fn new(subject: AccountId, object: Box<dyn Object>, action: &str) -> Self {
        Self {
            subject,
            object,
            action: action.to_owned(),
        }
    }

    pub(crate) fn action(&self) -> &str {
        &self.action
    }
}

impl fmt::Display for Intent {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(
            &format!(
                "intent::{}::{}::{}",
                self.subject,
                &self.object.to_vec().join("/"),
                &self.action,
            ),
            fmt,
        )
    }
}