Services no longer receive the concrete account store. on_command now takes &mut dyn Store + &dyn NetView (both defined in fedserv-api); the engine's Db and Network implement them. Reads hand back plain views (AccountView, ChannelView, ...) carrying only non-secret fields, so the event log, gossip, and credential material (password hash, SCRAM verifiers) are unreachable from a module. All command modules ported; behaviour unchanged.
16 lines
643 B
Rust
16 lines
643 B
Rust
use crate::engine::db::Store;
|
|
use crate::engine::service::{Sender, ServiceCtx};
|
|
|
|
// TOPIC <#channel> <text>: set the channel topic (empty clears it).
|
|
pub fn handle(me: &str, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, db: &dyn Store) {
|
|
let Some(&chan) = args.get(1) else {
|
|
ctx.notice(me, from.uid, "Syntax: TOPIC <#channel> <text>");
|
|
return;
|
|
};
|
|
if !super::require_op(me, from, chan, ctx, db) {
|
|
return;
|
|
}
|
|
let text = if args.len() > 2 { args[2..].join(" ") } else { String::new() };
|
|
ctx.topic(me, chan, &text);
|
|
ctx.notice(me, from.uid, format!("Topic for \x02{chan}\x02 updated."));
|
|
}
|