colorizer 0.2.0

A tool for highlighting words in the terminal
use std::io;
use std::fs::File;
use std::collections::HashMap;
use std::io::{BufRead, Read};

use clap::Clap;
use regex::Regex;
use serde::Deserialize;
use serde_json::{Map, Value};
use anyhow::{anyhow, Context, Result};
use ansi_term::Colour::{Blue, Cyan, Yellow, Red, Green, Purple};

/// Simple program to colorize any word
#[derive(Clap, Debug)]
#[clap(name = "colorizer", version = "0.2.0")]
struct CliConfig {
    /// Path to config.json file
    #[clap(short, long)]
    config: String,

    /// Profile from config to use
    #[clap(short, long, default_value = "default")]
    profile: String,
}

#[derive(Debug, Deserialize)]
struct Config {
    substrings: Option<HashMap<String, String>>,
    regex: Option<HashMap<String, String>>,
}

impl Config {
    fn automatic() -> Result<Config> {
        let args = CliConfig::parse();

        let mut file = File::open(&*args.config)
            .with_context(|| format!("Failed to open config from {}", &*args.config))?;
        let mut buff = String::new();
        file.read_to_string(&mut buff)
            .with_context(|| format!("Failed to read config file {}", &*args.config))?;

        let parsed: Value = serde_json::from_str(&buff)
            .with_context(|| format!("Failed to parse json {}", args.config))?;
        let obj: &Map<String, Value> = parsed.as_object()
            .with_context(|| format!("Failed to parse json to object {}", &*args.config))?;

        let val = obj.get(&*args.profile)
            .with_context(|| format!("Profile not found `{}`", &*args.profile))?.clone();

        let config = serde_json::from_value(val)?;

        Ok(config)
    }
}

fn colorize(color: &str, word: &str) -> Result<String> {
    match color {
        "RED" => Ok(Red.paint(word).to_string()),
        "GREEN" => Ok(Green.paint(word).to_string()),
        "BLUE" => Ok(Blue.paint(word).to_string()),
        "CYAN" => Ok(Cyan.paint(word).to_string()),
        "YELLOW" => Ok(Yellow.paint(word).to_string()),
        "PURPLE" => Ok(Purple.paint(word).to_string()),
        _ => Err(anyhow!("Unknown color: {}", color))
    }
}

fn main() -> Result<()> {
    let conf = Config::automatic()?;

    let mut substrings: HashMap<String, String> = HashMap::new();
    let mut color_reg: HashMap<String, Regex> = HashMap::new();

    match conf.substrings {
        Some(x) => substrings = x,
        None => {}
    }

    match conf.regex {
        Some(map) => {
            for (k, v) in map {
                let re = Regex::new(&*k)
                    .with_context(|| format!("Failed to parse regular expression `{}`", &*k))?;
                color_reg.insert(v, re);
            }
        },
        None => {}
    }

    for line in io::stdin().lock().lines() {
        let mut line = line.expect("Could not read line from standard in");

        for (k, v) in &substrings {
            line = line.replace(k, &*colorize(v, k)?)
        }

        for (k, v) in &color_reg {
            let l = String::from(&line);
            for cap in v.captures_iter(&*l) {
                line = line.replace(&cap[0], &*colorize(&*k, &cap[0])?)
            }
        }

        println!("{}", line);
    };

    Ok(())
}