Force a user's nick change or channel join, reusing the ForceNick and ForceJoin actions the daemon already relies on (guest renames, auto-join) so the ircd support is proven. SVSNICK validates the new nick; SVSJOIN takes an optional key. Both admin-gated and resolve the target via NetView.
45 lines
2 KiB
Rust
45 lines
2 KiB
Rust
use fedserv_api::{NetView, Priv, Sender, ServiceCtx};
|
|
|
|
// SVSNICK <nick> <newnick>: 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 <nick> <newnick>");
|
|
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 <nick> <#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 <nick> <#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."));
|
|
}
|