use fedserv_api::{NetView, Priv, Sender, ServiceCtx}; // SVSNICK : force a user to change nick. Admin-only. pub fn nick(me: &str, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, net: &dyn NetView) { if !from.privs.has(Priv::Admin) { ctx.notice(me, from.uid, "Access denied — SVSNICK needs the \x02admin\x02 privilege."); return; } let (Some(&target), Some(&newnick)) = (args.get(1), args.get(2)) else { ctx.notice(me, from.uid, "Syntax: SVSNICK "); return; }; if newnick.is_empty() || newnick.starts_with('#') || newnick.contains(|c: char| c.is_whitespace() || c == ',') { ctx.notice(me, from.uid, format!("\x02{newnick}\x02 isn't a valid nick.")); return; } let Some(uid) = net.uid_by_nick(target).map(str::to_string) else { ctx.notice(me, from.uid, format!("There's no \x02{target}\x02 online.")); return; }; ctx.force_nick(&uid, newnick); ctx.notice(me, from.uid, format!("\x02{target}\x02 has been renamed to \x02{newnick}\x02.")); } // SVSJOIN <#channel> [key]: force a user into a channel. Admin-only. pub fn join(me: &str, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, net: &dyn NetView) { if !from.privs.has(Priv::Admin) { ctx.notice(me, from.uid, "Access denied — SVSJOIN needs the \x02admin\x02 privilege."); return; } let (Some(&target), Some(&chan)) = (args.get(1), args.get(2)) else { ctx.notice(me, from.uid, "Syntax: SVSJOIN <#channel> [key]"); return; }; if !chan.starts_with('#') && !chan.starts_with('&') { ctx.notice(me, from.uid, "SVSJOIN targets a channel."); return; } let Some(uid) = net.uid_by_nick(target).map(str::to_string) else { ctx.notice(me, from.uid, format!("There's no \x02{target}\x02 online.")); return; }; ctx.force_join(&uid, chan, args.get(3).copied().unwrap_or("")); ctx.notice(me, from.uid, format!("\x02{target}\x02 has been joined to \x02{chan}\x02.")); }