1
use async_trait::async_trait;
2
use serde::{Deserialize, Serialize};
3

            
4
use crate::{
5
    define_basic_unique_mapped_view,
6
    document::CollectionDocument,
7
    permissions::Statement,
8
    schema::{Collection, CollectionName, DefaultSerialization, NamedCollection, Schematic},
9
    Error,
10
};
11

            
12
/// A named group of permissions statements.
13
920
#[derive(Debug, Serialize, Deserialize)]
14
pub struct PermissionGroup {
15
    /// The name of the group. Must be unique.
16
    pub name: String,
17
    /// The permission statements.
18
    pub statements: Vec<Statement>,
19
}
20

            
21
impl PermissionGroup {
22
    /// Returns a new group with no statements and the name provided.
23
3
    pub fn named<S: Into<String>>(name: S) -> Self {
24
3
        Self {
25
3
            name: name.into(),
26
3
            statements: Vec::new(),
27
3
        }
28
3
    }
29

            
30
    /// Builder-style method. Returns self after replacing the current statements with `statements`.
31
    pub fn with_group_ids<I: IntoIterator<Item = Statement>>(mut self, statements: I) -> Self {
32
        self.statements = statements.into_iter().collect();
33
        self
34
    }
35
}
36

            
37
#[async_trait]
38
impl Collection for PermissionGroup {
39
122406
    fn collection_name() -> CollectionName {
40
122406
        CollectionName::new("khonsulabs", "permission-group")
41
122406
    }
42

            
43
40503
    fn define_views(schema: &mut Schematic) -> Result<(), Error> {
44
40503
        schema.define_view(ByName)
45
40503
    }
46
}
47

            
48
impl DefaultSerialization for PermissionGroup {}
49

            
50
impl NamedCollection for PermissionGroup {
51
    type ByNameView = ByName;
52
}
53

            
54
define_basic_unique_mapped_view!(
55
    ByName,
56
    PermissionGroup,
57
    1,
58
    "by-name",
59
    String,
60
138
    |document: CollectionDocument<PermissionGroup>| {
61
138
        document.header.emit_key(document.contents.name)
62
138
    }
63
);