add passwd command

This commit is contained in:
0xf8 2023-06-21 18:08:23 -04:00
parent 7099881173
commit 80fce3f115
Signed by: 0xf8
GPG Key ID: 446580D758689584
2 changed files with 58 additions and 0 deletions

View File

@ -17,6 +17,7 @@ use yggdrasil::*;
mod dump;
mod search;
mod passwd;
mod add_account;
mod add_profile;
mod del_account;
@ -54,6 +55,10 @@ pub async fn start(db: &Database) -> Result<()> {
"search" => search::Search::exec(args, &db).await?,
"setpasswd" |
"set-passwd" |
"passwd" => passwd::Passwd::exec(args, &db).await?,
"addaccount" |
"add-account" => add_account::AddAccount::exec(args, &db).await?,

View File

@ -0,0 +1,53 @@
/*
* Yggdrasil: Minecraft authentication server
* Copyright (C) 2023 0xf8.dev@proton.me
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use std::str::FromStr;
use anyhow::{bail, Result};
use log::{info, warn};
use yggdrasil::*;
use yggdrasil::structs::account::Account;
use yggdrasil::structs::profile::Profile;
use yggdrasil::structs::token::Token;
use crate::dbtool::Args;
pub struct Passwd {}
impl Passwd {
pub async fn exec(args: Args, db: &Database) -> Result<()> {
if args.arguments.len() < 1 { bail!("Not enough arguments. passwd <account-id>") }
// Get id
let id = i64::from_str(args.arguments.get(0).unwrap())?;
// Get account
let Some(account) = Account::from_id(db, id).await else {
bail!("Account(id = {id}) doesn't exist")
};
// Get password
let password = Input::password().await?;
info!("Password: ...{{{}}}", password.len());
// Change password
account.set_password(db, password).await?;
// Invalidate old tokens
Token::delete_all_from(db, account).await?;
info!("Changed successfully!");
Ok(())
}
}