nazara 0.1.0

A CLI application to create and update machines and VMs in NetBox.
use supports_color::{Stream, on};

/// Check if stdout supports colors.
#[inline(always)]
pub fn color_enabled() -> bool {
    static COLOR_SUPPORTED: std::sync::OnceLock<bool> = std::sync::OnceLock::new();
    *COLOR_SUPPORTED.get_or_init(|| on(Stream::Stdout).is_some())
}

#[macro_export]
macro_rules! success {
    ($($arg:tt)*) => {{
        use owo_colors::OwoColorize;
        if $crate::output::color_enabled() {
            println!("{} {}", "[success]".green().bold(), format!($($arg)*));
        } else {
            println!("[success] {}", format!($($arg)*));
        }
    }};
}

#[macro_export]
macro_rules! failure {
    ($($arg:tt)*) => {{
        use owo_colors::OwoColorize;
        if $crate::output::color_enabled() {
            eprintln!("{} {}", "[error]".red().bold(), format!($($arg)*));
        } else {
            eprintln!("[error] {}", format!($($arg)*));
        }
    }};
}

#[macro_export]
macro_rules! warn {
    ($($arg:tt)*) => {{
        use owo_colors::OwoColorize;
        if $crate::output::color_enabled() {
            eprintln!("{} {}", "[warning]".yellow().bold(), format!($($arg)*));
        } else {
            eprintln!("[warning] {}", format!($($arg)*));
        }
    }};
}

#[macro_export]
macro_rules! info {
    ($($arg:tt)*) => {{
        use owo_colors::OwoColorize;
        if $crate::output::color_enabled() {
            println!("{} {}", "[info]".bright_blue().bold(), format!($($arg)*));
        } else {
            println!("[info] {}", format!($($arg)*));
        }
    }};
}