use echo_api::{Flags, Sender, ServiceCtx, Store, ACCESS_FLAGS}; // FLAGS <#channel> [account [+/-flags]]: the granular access model. With no // account, list the access entries and their flags; with an account, show or // change its flags. Letters: f full o auto-op O op h auto-halfop v auto-voice // t topic i invite a access-list s settings g greet. Viewing needs op access; // changing needs the founder or the \x02a\x02 flag. Every stored level — a tier // preset ("op"/"sop"/…) or a raw flag string — resolves through `Flags`. pub fn handle(me: &str, from: &Sender, chan: &str, args: &[&str], ctx: &mut ServiceCtx, db: &mut dyn Store) { let Some(info) = db.channel(chan) else { ctx.notice(me, from.uid, format!("\x02{chan}\x02 isn't registered.")); return; }; let is_founder = from.account == Some(info.founder.as_str()); let caps = info.caps_of(from.account); // FLAGS <#chan> — list. let Some(&target) = args.get(2) else { if !is_founder && !caps.op { ctx.notice(me, from.uid, format!("You need access to \x02{chan}\x02 to view its flags.")); return; } ctx.notice(me, from.uid, format!("Access flags for \x02{chan}\x02:")); ctx.notice(me, from.uid, format!(" \x02{}\x02 (founder): \x02f\x02", info.founder)); for a in &info.access { ctx.notice(me, from.uid, format!(" \x02{}\x02: \x02{}\x02", a.account, Flags::from_level(&a.level).to_letters())); } ctx.notice(me, from.uid, format!("End of flags ({} entr{}).", info.access.len() + 1, if info.access.is_empty() { "y" } else { "ies" })); return; }; let entry = info.access.iter().find(|a| a.account.eq_ignore_ascii_case(target)).map(|a| a.level.clone()); // FLAGS <#chan> — show one. let Some(&delta) = args.get(3) else { match entry.as_deref().map(|l| Flags::from_level(l).to_letters()) { Some(f) if !f.is_empty() => ctx.notice(me, from.uid, format!("\x02{target}\x02 on \x02{chan}\x02: \x02{f}\x02")), _ => ctx.notice(me, from.uid, format!("\x02{target}\x02 has no access to \x02{chan}\x02.")), } return; }; // FLAGS <#chan> <+/-flags> — modify. if !is_founder && !caps.access { ctx.notice(me, from.uid, format!("You need the founder or the \x02a\x02 flag to change access on \x02{chan}\x02.")); return; } if info.founder.eq_ignore_ascii_case(target) { ctx.notice(me, from.uid, "The founder's access is set with \x02SET FOUNDER\x02, not flags."); return; } let updated = match Flags::from_level(entry.as_deref().unwrap_or("")).apply_delta(delta) { Ok(f) => f, Err(bad) => { ctx.notice(me, from.uid, format!("\x02{bad}\x02 isn't a valid flag. Valid flags: \x02{ACCESS_FLAGS}\x02.")); return; } }; if updated.is_empty() { match db.access_del(chan, target) { Ok(true) => ctx.notice(me, from.uid, format!("Cleared \x02{target}\x02's access to \x02{chan}\x02.")), _ => ctx.notice(me, from.uid, format!("\x02{target}\x02 had no access to \x02{chan}\x02.")), } return; } let letters = updated.to_letters(); match db.access_add(chan, target, &letters) { Ok(()) => ctx.notice(me, from.uid, format!("\x02{target}\x02 on \x02{chan}\x02 now holds \x02{letters}\x02.")), Err(_) => ctx.notice(me, from.uid, "Sorry, that didn't work. Please try again in a moment."), } }