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

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

            
10
/// An assignable role, which grants permissions based on the associated [`PermissionGroup`](crate::admin::PermissionGroup)s.
11
345
#[derive(Debug, Serialize, Deserialize)]
12
pub struct Role {
13
    /// The name of the role. Must be unique.
14
    pub name: String,
15
    /// The IDs of the permission groups this role belongs to.
16
    pub groups: Vec<u64>,
17
}
18

            
19
impl Role {
20
    /// Returns a new role with no groups and the name provided.
21
3
    pub fn named<S: Into<String>>(name: S) -> Self {
22
3
        Self {
23
3
            name: name.into(),
24
3
            groups: Vec::new(),
25
3
        }
26
3
    }
27

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

            
35
impl Collection for Role {
36
122015
    fn collection_name() -> CollectionName {
37
122015
        CollectionName::new("khonsulabs", "role")
38
122015
    }
39

            
40
40503
    fn define_views(schema: &mut Schematic) -> Result<(), Error> {
41
40503
        schema.define_view(ByName)
42
40503
    }
43
}
44

            
45
impl DefaultSerialization for Role {}
46

            
47
impl NamedCollection for Role {
48
    type ByNameView = ByName;
49
}
50

            
51
define_basic_unique_mapped_view!(
52
    ByName,
53
    Role,
54
    1,
55
    "by-name",
56
    String,
57
69
    |document: CollectionDocument<Role>| { document.header.emit_key(document.contents.name) }
58
);