-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathacl.rs
33 lines (29 loc) · 1.21 KB
/
acl.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
use redis_module::{
redis_module, AclCategory, AclPermissions, Context, NextArg, RedisError, RedisResult,
RedisString, RedisValue,
};
fn verify_key_access_for_user(ctx: &Context, args: Vec<RedisString>) -> RedisResult {
let mut args = args.into_iter().skip(1);
let user = args.next_arg()?;
let key = args.next_arg()?;
let res = ctx.acl_check_key_permission(&user, &key, &AclPermissions::all());
if let Err(err) = res {
return Err(RedisError::String(format!("Err {err}")));
}
Ok(RedisValue::SimpleStringStatic("OK"))
}
fn get_current_user(ctx: &Context, _args: Vec<RedisString>) -> RedisResult {
Ok(RedisValue::BulkRedisString(ctx.get_current_user()))
}
//////////////////////////////////////////////////////
redis_module! {
name: "acl",
version: 1,
allocator: (redis_module::alloc::RedisAlloc, redis_module::alloc::RedisAlloc),
data_types: [],
acl_categories: [AclCategory::from("acl"), ],
commands: [
["verify_key_access_for_user", verify_key_access_for_user, "", 0, 0, 0, AclCategory::Read, AclCategory::from("acl")],
["get_current_user", get_current_user, "", 0, 0, 0, vec![AclCategory::Read, AclCategory::Fast], AclCategory::from("acl")],
],
}