genact 1.5.1

A nonsense activity generator
Documentation
//! Pretend to run Ansible to set up some systems
use async_trait::async_trait;
use fake::Fake;
use fake::faker::internet::en::*;
use rand::seq::{IndexedRandom, SliceRandom};
use rand::{Rng, rng};
use rand_distr::{Distribution, Normal};
use yansi::Paint;

use crate::args::AppConfig;
use crate::data::ANSIBLE_ROLES_LIST;
use crate::data::ANSIBLE_TASKS_LIST;
use crate::io::{csleep, get_terminal_width, newline, print};
use crate::modules::Module;

pub struct Ansible;

async fn do_for_all_hosts(hosts: &[String], is_gather: bool) {
    let mut rng = rng();

    let latency_distr = Normal::new(500.0, 100.0).unwrap();

    // To spice things up, add a mode where everything shows up as either failed, changed, or
    // skipped.
    let global_outcome = rng.random_range(1..20);
    for host in hosts {
        let host_outcome = rng.random_range(1..50);

        // If this is the gather task, we always want to return all ok.
        let text = if is_gather {
            format!("ok: [{host}]").green().to_string()
        } else {
            match global_outcome {
                1 => format!("skipping: [{host}]").cyan().to_string(),
                2 => format!("failed: [{host}]").red().to_string(),
                3 => format!("changed: [{host}]").yellow().to_string(),
                _ => match host_outcome {
                    1 => format!("skipping: [{host}]").cyan().to_string(),
                    2 => format!("failed: [{host}]").red().to_string(),
                    3..=5 => format!("changed: [{host}]").yellow().to_string(),
                    _ => format!("ok: [{host}]").green().to_string(),
                },
            }
        };
        print(text).await;
        newline().await;
        let sleep: f64 = latency_distr.sample(&mut rng);
        csleep(sleep.round() as u64).await;
    }
}

#[async_trait(?Send)]
impl Module for Ansible {
    fn name(&self) -> &'static str {
        "ansible"
    }

    fn signature(&self) -> String {
        "ansible-playbook".to_string()
    }

    async fn run(&self, appconfig: &AppConfig) {
        let mut rng = rng();

        let term_width = get_terminal_width();
        let play_text = format!(
            "PLAY [setup {server}] ",
            server = Username().fake::<String>()
        );

        print(format!("{play_text:*<term_width$}",)).await;
        newline().await;
        csleep(rng.random_range(1000..3000)).await;
        newline().await;

        let num_ipv4_hosts = 1..rng.random_range(1..20);
        let num_ipv6_hosts = 1..rng.random_range(1..20);
        let ipv4_hosts = num_ipv4_hosts
            .map(|_| IPv4().fake())
            .collect::<Vec<String>>();
        let ipv6_hosts = num_ipv6_hosts
            .map(|_| IPv6().fake::<String>().to_lowercase())
            .collect::<Vec<String>>();
        let mut hosts = [ipv4_hosts, ipv6_hosts].concat();
        hosts.shuffle(&mut rng);

        let gathering_text = "TASK [Gathering Facts] ";
        csleep(rng.random_range(1000..3000)).await;
        print(format!("{gathering_text:*<term_width$}",)).await;
        do_for_all_hosts(&hosts, true).await;
        csleep(rng.random_range(1000..3000)).await;

        let num_roles = rng.random_range(3..10);
        for _ in 1..num_roles {
            let role = ANSIBLE_ROLES_LIST.choose(&mut rng).unwrap_or(&"unknown");
            let num_tasks = rng.random_range(3..10);
            for _ in 1..num_tasks {
                newline().await;
                let task = ANSIBLE_TASKS_LIST.choose(&mut rng).unwrap_or(&"unknown");
                let task_text = format!("TASK [{role} : {task}] ");
                print(format!("{task_text:*<term_width$}")).await;
                csleep(rng.random_range(1000..3000)).await;
                do_for_all_hosts(&hosts, false).await;

                if appconfig.should_exit() {
                    return;
                }
            }
        }
    }
}