iggy-cli 0.13.0

CLI for Iggy message streaming platform
Documentation
/* Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

use crate::commands::cli_command::{CliCommand, PRINT_TARGET};
use anyhow::Context;
use async_trait::async_trait;
use iggy_common::Client;
use iggy_common::Identifier;
use passterm::{Stream, isatty, prompt_password_tty};
use tracing::{Level, event};

pub struct ChangePasswordCmd {
    user_id: Identifier,
    current_password: Option<String>,
    new_password: Option<String>,
}

impl ChangePasswordCmd {
    pub fn new(
        user_id: Identifier,
        current_password: Option<String>,
        new_password: Option<String>,
    ) -> Self {
        Self {
            user_id,
            current_password,
            new_password,
        }
    }

    fn use_tracing(&self) -> bool {
        self.current_password.is_some() || self.new_password.is_some()
    }
}

#[async_trait]
impl CliCommand for ChangePasswordCmd {
    fn explain(&self) -> String {
        format!("change password for user with ID: {}", self.user_id,)
    }

    fn use_tracing(&self) -> bool {
        self.use_tracing()
    }

    async fn execute_cmd(&mut self, client: &dyn Client) -> anyhow::Result<(), anyhow::Error> {
        let current_password = match &self.current_password {
            Some(password) => password.clone(),
            None => {
                if isatty(Stream::Stdin) {
                    prompt_password_tty(Some("Current password: "))?
                } else {
                    let mut pwd = String::new();
                    std::io::stdin().read_line(&mut pwd)?;
                    pwd.trim_end_matches(['\n', '\r']).to_string()
                }
            }
        };

        let new_password = match &self.new_password {
            Some(password) => password.clone(),
            None => {
                if isatty(Stream::Stdin) {
                    prompt_password_tty(Some("New password: "))?
                } else {
                    let mut pwd = String::new();
                    std::io::stdin().read_line(&mut pwd)?;
                    pwd.trim_end_matches(['\n', '\r']).to_string()
                }
            }
        };

        client
            .change_password(&self.user_id, &current_password, &new_password)
            .await
            .with_context(|| {
                format!(
                    "Problem changing password for user with ID: {}",
                    self.user_id,
                )
            })?;

        if self.use_tracing() {
            event!(target: PRINT_TARGET, Level::INFO, "Password for user with ID: {} changed", self.user_id);
        } else {
            println!("Password for user with ID: {} changed", self.user_id);
        }

        Ok(())
    }
}