1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use clap::{App, Arg};
use std::error::Error;
mod print;
use print::*;
mod location;
use location::*;
mod forecast;
use forecast::*;

type WeatherResult<T> = Result<T, Box<dyn Error>>;
pub struct Config {
    celsius: bool,
    hours: usize,
    color: bool,
}

pub fn run(config: Config) -> WeatherResult<()> {
    let location = get_data_from_ip()?;
    let hourly_forecast = get_hourly_forecast(&location.latitude, &location.longitude)?;
    if config.color {
        print_hourly_forecast_colored(location, hourly_forecast, config)?;
    } else {
        print_hourly_forecast(location, hourly_forecast, config)?;
    }

    Ok(())
}

pub fn get_args() -> WeatherResult<Config> {
    let matches = App::new("yawcli")
        .version("0.2.2")
        .author("John Bullard <johnbcooding@gmail.com>")
        .about("Uses your IP to get the local forecast, only works in USA.")
        .arg(
            Arg::with_name("celsius")
                .short("c")
                .long("celsius")
                .help("Converts temperature to celsius.")
                .takes_value(false),
        )
        .arg(
            Arg::with_name("hours")
                .long("hours")
                .help("How many hours to show in hourly forecast, max 24.")
                .default_value("1")
                .takes_value(true),
        )
        .arg(
            Arg::with_name("color")
                .long("color")
                .help("Prints out the forecast in color")
                .takes_value(false),
        )
        .get_matches();

    let hours = matches.value_of_lossy("hours").unwrap();

    Ok(Config {
        celsius: matches.is_present("celsius"),
        hours: hours.parse::<usize>()?,
        color: matches.is_present("color"),
    })
}