kinetics 0.15.6

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
use crate::api::orgs::members::invite::{Request, Response};
use crate::error::Error;
use crate::runner::{Runnable, Runner};
use crate::writer::Writer;
use serde_json::json;

#[derive(clap::Args, Clone)]
pub(crate) struct InviteMemberCommand {
    /// Email of the person to invite
    email: String,

    /// Name of the org to invite the person to
    #[arg(long)]
    org: String,
}

impl Runnable for InviteMemberCommand {
    fn runner(&self, writer: &Writer) -> impl Runner {
        InviteMemberRunner {
            command: self.clone(),
            writer,
        }
    }
}

struct InviteMemberRunner<'a> {
    command: InviteMemberCommand,
    writer: &'a Writer,
}

impl Runner for InviteMemberRunner<'_> {
    async fn run(&mut self) -> Result<(), Error> {
        let org = self.command.org.clone();
        let email = self.command.email.clone();
        let client = self.api_client().await?;

        self.writer.text(&format!(
            "\n{} {} {} {}...\n\n",
            console::style("Inviting").bold().green(),
            console::style(&email).bold(),
            console::style("to").bold().green(),
            console::style(&org).bold()
        ))?;

        client
            .request::<Request, Response>(
                "/orgs/members/invite",
                Request {
                    org: org.to_owned(),
                    email: email.to_owned(),
                },
            )
            .await?;

        self.writer.text(&format!(
            "Invitation has been sent. Please ask the person to check email.\n\n{}\n",
            console::style("Done").green().bold()
        ))?;

        self.writer
            .json(json!({"success": true, "org": org, "email": email}))?;

        Ok(())
    }
}