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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
use compact_str::CompactStr;
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct Permission(i32);
#[rustfmt::skip]
impl Permission {
pub const NONE: Permission = Permission(0);
pub const READ: Permission = Permission(1);
pub const WRITE: Permission = Permission(2);
pub const CREATE: Permission = Permission(4);
pub const DELETE: Permission = Permission(8);
pub const ADMIN: Permission = Permission(16);
pub const ALL: Permission = Permission(31);
pub(crate) fn into_raw(self) -> i32 {
self.0
}
pub(crate) fn from_raw(raw: i32) -> Permission {
return Permission(raw);
}
pub fn has(self, perm: Permission) -> bool {
return (self.0 & perm.0) == perm.0;
}
}
impl std::ops::BitOr for Permission {
type Output = Self;
fn bitor(self, rhs: Self) -> Self::Output {
return Permission(self.0 | rhs.0);
}
}
impl std::fmt::Display for Permission {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if *self == Permission::ALL {
return f.write_str("ALL");
} else if *self == Permission::NONE {
return f.write_str("NONE");
}
[
(Permission::READ, "READ"),
(Permission::WRITE, "WRITE"),
(Permission::CREATE, "CREATE"),
(Permission::DELETE, "DELETE"),
(Permission::ADMIN, "ADMIN"),
]
.into_iter()
.filter_map(|(perm, str)| if self.has(perm) { Some(str) } else { None })
.enumerate()
.try_for_each(|(i, str)| if i == 0 { f.write_str(str) } else { write!(f, "|{}", str) })
}
}
#[derive(Clone, Debug)]
pub struct Acl {
permission: Permission,
auth_id: AuthId,
}
#[derive(Clone, Debug)]
pub struct AuthId {
scheme: CompactStr,
id: CompactStr,
}
impl AuthId {
pub fn new(scheme: &str, id: &str) -> AuthId {
return AuthId { scheme: CompactStr::new(scheme), id: CompactStr::new(id) };
}
const fn new_const(scheme: &'static str, id: &'static str) -> AuthId {
return AuthId { scheme: CompactStr::new_inline(scheme), id: CompactStr::new_inline(id) };
}
pub fn scheme(&self) -> &str {
self.scheme.as_str()
}
pub fn id(&self) -> &str {
self.id.as_str()
}
pub const fn anyone() -> AuthId {
return Self::new_const("world", "anyone");
}
pub const fn authed() -> AuthId {
return Self::new_const("auth", "");
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct AuthUser {
scheme: CompactStr,
user: CompactStr,
}
impl AuthUser {
pub fn new(scheme: &str, user: &str) -> AuthUser {
return AuthUser { scheme: CompactStr::new(scheme), user: CompactStr::new(user) };
}
pub fn scheme(&self) -> &str {
self.scheme.as_str()
}
pub fn user(&self) -> &str {
self.user.as_str()
}
}
static ANYONE_ALL: [Acl; 1] = [Acl::new_const(Permission::ALL, "world", "anyone")];
static ANYONE_READ: [Acl; 1] = [Acl::new_const(Permission::READ, "world", "anyone")];
static CREATOR_ALL: [Acl; 1] = [Acl::new_const(Permission::ALL, "auth", "")];
impl Acl {
pub fn new(permission: Permission, auth_id: AuthId) -> Acl {
return Acl { permission, auth_id };
}
const fn new_const(permission: Permission, scheme: &'static str, id: &'static str) -> Acl {
return Acl {
permission,
auth_id: AuthId { scheme: CompactStr::new_inline(scheme), id: CompactStr::new_inline(id) },
};
}
pub fn anyone_all() -> &'static [Acl] {
return &ANYONE_ALL;
}
pub fn anyone_read() -> &'static [Acl] {
return &ANYONE_READ;
}
pub fn creator_all() -> &'static [Acl] {
return &CREATOR_ALL;
}
pub fn permission(&self) -> Permission {
self.permission
}
pub fn auth_id(&self) -> &AuthId {
return &self.auth_id;
}
pub fn scheme(&self) -> &str {
self.auth_id.scheme.as_str()
}
pub fn id(&self) -> &str {
self.auth_id.id.as_str()
}
}
#[cfg(test)]
mod tests {
use pretty_assertions::assert_eq;
use super::Permission;
#[test]
fn test_permission() {
let all = Permission::READ | Permission::WRITE | Permission::CREATE | Permission::DELETE | Permission::ADMIN;
assert!(Permission::ALL.has(all));
}
#[test]
fn test_permission_display() {
assert_eq!(Permission::ALL.to_string(), "ALL");
assert_eq!(Permission::ADMIN.to_string(), "ADMIN");
let perms = Permission::READ | Permission::WRITE | Permission::CREATE | Permission::DELETE;
assert_eq!(perms.to_string(), "READ|WRITE|CREATE|DELETE");
}
}