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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
use std::{fmt::Display, time::Duration};
use crate::config::Config;
use clap::{Command, CommandFactory, Parser, Subcommand};
use clap_complete::{generate, Generator, Shell};
use error::Error;
use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
use requests::{device, start::start};
use reqwest::{
header::{HeaderMap, HeaderValue},
Response,
};
use serde::Deserialize;
mod config;
mod error;
mod requests;
static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed_precise}{wide_msg}";
static OVERVIEW_ERROR: &str = "✗ ({elapsed_precise}) {wide_msg}";
static OVERVIEW_DONE: &str = "✓ ({elapsed_precise}) {wide_msg}";
static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}";
static DONE_STYLE: &str = " ✓ {wide_msg}";
static ERROR_STYLE: &str = " ✗ {wide_msg}";
static TICK_SPEED: u64 = 1000 / 16;
/// webol client
#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Args {
#[command(subcommand)]
commands: Commands,
}
#[derive(Subcommand)]
enum Commands {
Start {
/// id of the device
id: String,
#[arg(short, long)]
ping: Option<bool>,
},
Device {
#[command(subcommand)]
devicecmd: DeviceCmd,
},
CliGen {
id: Shell,
},
}
#[derive(Subcommand)]
enum DeviceCmd {
Add {
id: String,
mac: String,
broadcast_addr: String,
ip: String,
},
Get {
id: String,
},
Edit {
id: String,
mac: String,
broadcast_addr: String,
ip: String,
},
}
#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
let config = Config::load()?;
let cli = Args::parse();
match cli.commands {
Commands::Start { id, ping } => {
start(&config, id, ping.unwrap_or(true)).await?;
}
Commands::Device { devicecmd } => match devicecmd {
DeviceCmd::Add {
id,
mac,
broadcast_addr,
ip,
} => {
device::put(&config, id, mac, broadcast_addr, ip).await?;
}
DeviceCmd::Get { id } => {
device::get(&config, id).await?;
}
DeviceCmd::Edit {
id,
mac,
broadcast_addr,
ip,
} => {
device::post(&config, id, mac, broadcast_addr, ip).await?;
}
},
Commands::CliGen { id } => {
eprintln!("Generating completion file for {id:?}...");
let mut cmd = Args::command();
print_completions(id, &mut cmd);
}
}
Ok(())
}
fn print_completions<G: Generator>(gen: G, cmd: &mut Command) {
generate(gen, cmd, cmd.get_name().to_string(), &mut std::io::stdout());
}
fn default_headers(config: &Config) -> Result<HeaderMap, Error> {
let mut map = HeaderMap::new();
map.append("Accept-Content", HeaderValue::from_str("application/json")?);
map.append("Content-Type", HeaderValue::from_str("application/json")?);
map.append("Authorization", HeaderValue::from_str(&config.apikey)?);
Ok(map)
}
fn format_url(config: &Config, path: &str, protocol: &Protocols) -> String {
format!("{}://{}/{}", protocol, config.server, path)
}
async fn check_success(res: Response) -> Result<String, Error> {
let status = res.status();
if status.is_success() {
Ok(res.text().await?)
} else if status.as_u16() == 401 {
Err(Error::Authorization)
} else {
Err(Error::HttpStatus(status.as_u16()))
}
}
fn add_pb(mp: &MultiProgress, template: &str, message: String) -> ProgressBar {
let pb = mp.add(ProgressBar::new(1));
pb.set_style(ProgressStyle::with_template(template).unwrap());
pb.enable_steady_tick(Duration::from_millis(TICK_SPEED));
pb.set_message(message);
pb
}
fn finish_pb(pb: &ProgressBar, message: String, template: &str) {
pb.set_style(ProgressStyle::with_template(template).unwrap());
pb.finish_with_message(message);
}
enum Protocols {
Http,
Websocket,
}
impl Display for Protocols {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Http => f.write_str("http"),
Self::Websocket => f.write_str("ws"),
}
}
}
#[derive(Debug, Deserialize)]
struct ErrorResponse {
error: String,
}
|