MemoServ: add STAFF to memo all operators
Some checks failed
CI / check (push) Has been cancelled

This commit is contained in:
Jean Chevronnet 2026-07-16 00:48:50 +00:00
parent c646ccc0ec
commit 961dc870da
No known key found for this signature in database
6 changed files with 90 additions and 1 deletions

View file

@ -22,6 +22,8 @@ mod check;
mod info;
#[path = "sendall.rs"]
mod sendall;
#[path = "staff.rs"]
mod staff;
#[path = "ignore.rs"]
mod ignore;
#[path = "set.rs"]
@ -42,6 +44,7 @@ const TOPICS: &[HelpEntry] = &[
HelpEntry { cmd: "CHECK", summary: "see if a memo was read", detail: "Syntax: \x02CHECK <nick>\x02\nReports whether the last memo you sent them has been read." },
HelpEntry { cmd: "INFO", summary: "your mailbox summary", detail: "Syntax: \x02INFO\x02\nShows how many memos you have, how many are unread, and your capacity." },
HelpEntry { cmd: "SENDALL", summary: "memo every account (admin)", detail: "Syntax: \x02SENDALL <text>\x02\nLeaves a memo on every registered account. Requires the admin privilege." },
HelpEntry { cmd: "STAFF", summary: "memo every operator (admin)", detail: "Syntax: \x02STAFF <text>\x02\nLeaves a memo on every operator's account. Requires the admin privilege." },
HelpEntry { cmd: "IGNORE", summary: "block memos from an account", detail: "Syntax: \x02IGNORE ADD <nick> | DEL <nick> | LIST\x02\nMemos from an ignored account are silently dropped." },
HelpEntry { cmd: "SET", summary: "your memo preferences", detail: "Syntax: \x02SET NOTIFY {ON|OFF}\x02, \x02SET LIMIT <n>|NONE\x02\nControls new-memo notifications and your mailbox size cap." },
];
@ -65,7 +68,7 @@ impl Service for MemoServ {
(BLURB, TOPICS)
}
fn on_command(&mut self, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, _net: &dyn NetView, db: &mut dyn Store) {
fn on_command(&mut self, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, net: &dyn NetView, db: &mut dyn Store) {
let me = self.uid.as_str();
let cmd = args.first().map(|s| s.to_ascii_uppercase());
if matches!(cmd.as_deref(), Some("HELP") | None) {
@ -87,6 +90,7 @@ impl Service for MemoServ {
Some("CHECK") => check::handle(me, from, account, args, ctx, db),
Some("INFO") => info::handle(me, from, account, ctx, db),
Some("SENDALL") => sendall::handle(me, from, account, args, ctx, db),
Some("STAFF") => staff::handle(me, from, account, args, ctx, net, db),
Some("IGNORE") => ignore::handle(me, from, account, args, ctx, db),
Some("SET") => set::handle(me, from, account, args, ctx, db),
Some(other) => ctx.notice(me, from.uid, format!("I don't know the command \x02{other}\x02. Try \x02HELP\x02.")),

View file

@ -0,0 +1,33 @@
use echo_api::{NetView, Priv, Sender, ServiceCtx, Store};
// STAFF <text>: leave a memo on every operator's account. Admin-only, for
// notes to the staff team that persist until read. Recipients are the union of
// the configured operators and any runtime OPER grants.
pub fn handle(me: &str, from: &Sender, account: &str, args: &[&str], ctx: &mut ServiceCtx, net: &dyn NetView, db: &mut dyn Store) {
if !from.privs.has(Priv::Admin) {
ctx.notice(me, from.uid, "Access denied — STAFF needs the \x02admin\x02 privilege.");
return;
}
if args.len() < 2 {
ctx.notice(me, from.uid, "Syntax: STAFF <text>");
return;
}
let text = args[1..].join(" ");
// Config opers and runtime grants, resolved to canonical account names and
// de-duplicated so nobody gets the memo twice.
let mut names: Vec<String> = net.oper_accounts();
names.extend(db.opers_list().into_iter().map(|(name, _, _)| name));
let mut sent = 0usize;
let mut seen: Vec<String> = Vec::new();
for name in &names {
let Some(canon) = db.resolve_account(name).map(str::to_string) else { continue };
if seen.contains(&canon) {
continue;
}
seen.push(canon.clone());
if db.memo_send(&canon, account, &text, false).is_ok() {
sent += 1;
}
}
ctx.notice(me, from.uid, format!("Memo sent to \x02{sent}\x02 operator(s)."));
}