From 5f7ea5d2a71552b5d13446fe5c5c10881c477811 Mon Sep 17 00:00:00 2001 From: ModulatingForce <116608425+modulatingforce@users.noreply.github.com> Date: Mon, 29 Jan 2024 13:08:35 -0500 Subject: [PATCH] (cont) identity > canUserRun() - Logic Design (comments) --- src/core/identity.rs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/core/identity.rs b/src/core/identity.rs index fbf0fa1..797f058 100644 --- a/src/core/identity.rs +++ b/src/core/identity.rs @@ -53,8 +53,8 @@ pub fn init(mgr:&mut ModulesManager) pub enum UserRole { Chatter, - Mod(String), // String specifies Channel - SupMod(String), // String specifies Channel + Mod(ChType), // String specifies Channel + SupMod(ChType), // String specifies Channel Broadcaster, BotAdmin, @@ -116,6 +116,17 @@ impl IdentityManager { */ + // Requirements + /* + [ ] If cmdreqroles is empty vector , automatically assume Ok(Permissible::Allow) + [ ] If chatBadge::Broadcaster ... + [ ] and cmdreqroles includes UserRole::Broadcaster , Ok(Permissible::Allow) + [ ] and cmdreqroles includes UserRole::Mod("") OR UserRole::SupMod("") , Ok(Permissible::Allow) + [ ] If cmdreqroles includes UserRole::Mod("") , checks if chatter has UserRole::Mod(channelname::ChType) to determine if Ok(Permissible::Allow) + [ ] If cmdreqroles includes UserRole::SupMod("") , checks if chatter has UserRole::SupMod(channelname::ChType) to determine if Ok(Permissible::Allow) + [ ] If cmdreqroles includes UserRole::BotAdmin and chatter has UserRole::BotAdmin , Ok(Permissible::Allow) + [ ] Otherwise, Ok(Permissible::Block) + */ Ok(Permissible::Allow)