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.
33 lines
1.5 KiB
Rust
33 lines
1.5 KiB
Rust
use crate::engine::db::Store;
|
|
use crate::engine::service::{Sender, ServiceCtx};
|
|
|
|
// IDENTIFY [account] <password>: log in. The account defaults to the current
|
|
// nick, so both the bare-password and account+password forms work.
|
|
pub fn handle(me: &str, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, db: &dyn Store) {
|
|
let (account_name, password) = match (args.get(1), args.get(2)) {
|
|
(Some(account), Some(password)) => (*account, *password),
|
|
(Some(password), None) => (from.nick, *password),
|
|
_ => {
|
|
ctx.notice(me, from.uid, "Syntax: IDENTIFY [account] <password>");
|
|
return;
|
|
}
|
|
};
|
|
// Distinguish an unregistered account from a wrong password.
|
|
if !db.exists(account_name) {
|
|
ctx.notice(me, from.uid, format!("\x02{account_name}\x02 isn't registered."));
|
|
return;
|
|
}
|
|
match db.authenticate(account_name, password) {
|
|
Some(account) => {
|
|
// Already identified to this account: don't re-fire the login.
|
|
if from.account == Some(account) {
|
|
ctx.notice(me, from.uid, format!("You're already identified as \x02{}\x02.", account));
|
|
return;
|
|
}
|
|
let account = account.to_string();
|
|
ctx.login(from.uid, &account);
|
|
ctx.notice(me, from.uid, format!("You're now identified as \x02{}\x02. Welcome back!", account));
|
|
}
|
|
None => ctx.notice(me, from.uid, "Invalid password. Please try again."),
|
|
}
|
|
}
|