use fedserv_api::{NetView, Priv, Sender, ServiceCtx, Store}; // SAY <#channel> — make the channel's assigned bot say something. // ACT <#channel> — the same, as a CTCP ACTION (/me). // Requires channel-operator access (founder, op, or a services admin). pub fn handle(me: &str, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, net: &dyn NetView, db: &dyn Store, action: bool) { let verb = if action { "ACT" } else { "SAY" }; if args.len() < 3 { ctx.notice(me, from.uid, format!("Syntax: {verb} <#channel> ")); return; } let chan = args[1]; let text = args[2..].join(" "); let Some(info) = db.channel(chan) else { ctx.notice(me, from.uid, format!("\x02{chan}\x02 isn't registered.")); return; }; let allowed = from.privs.has(Priv::Admin) || from.account.is_some_and(|a| info.is_op(a)); if !allowed { ctx.notice(me, from.uid, format!("Access denied — you need operator access in \x02{chan}\x02.")); return; } let Some(bot) = info.assigned_bot else { ctx.notice(me, from.uid, format!("\x02{chan}\x02 has no bot assigned. Assign one with \x02ASSIGN\x02 {chan} .")); return; }; let Some(botuid) = net.uid_by_nick(&bot) else { ctx.notice(me, from.uid, format!("Bot \x02{bot}\x02 isn't on the network right now.")); return; }; let botuid = botuid.to_string(); let payload = if action { format!("\x01ACTION {text}\x01") } else { text }; ctx.privmsg(&botuid, chan, payload); }