summaryrefslogtreecommitdiffstats
path: root/atuin/src/command/client/account.rs
blob: e31e620858316f2c1a53852d50d49309bccbf668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use clap::{Args, Subcommand};
use eyre::Result;

use atuin_client::record::sqlite_store::SqliteStore;
use atuin_client::settings::Settings;

pub mod change_password;
pub mod delete;
pub mod login;
pub mod logout;
pub mod register;

#[derive(Args, Debug)]
pub struct Cmd {
    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand, Debug)]
pub enum Commands {
    /// Login to the configured server
    Login(login::Cmd),

    // Register a new account
    Register(register::Cmd),

    /// Log out
    Logout,

    /// Delete your account, and all synced data
    Delete,

    /// Change your password
    ChangePassword(change_password::Cmd),
}

impl Cmd {
    pub async fn run(self, settings: Settings, store: SqliteStore) -> Result<()> {
        match self.command {
            Commands::Login(l) => l.run(&settings, &store).await,
            Commands::Register(r) => r.run(&settings).await,
            Commands::Logout => logout::run(&settings),
            Commands::Delete => delete::run(&settings).await,
            Commands::ChangePassword(c) => c.run(&settings).await,
        }
    }
}