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
|
extern crate reqwest;
extern crate serde;
extern crate serde_json;
use std::io::Read;
use std::num::ParseFloatError;
use irc::client::prelude::*;
use self::reqwest::Client;
use self::reqwest::header::Connection;
use self::serde_json::Value;
use plugin::*;
use error::ErrorKind as FrippyErrorKind;
use error::FrippyError;
use failure::ResultExt;
#[derive(PluginName, Default, Debug)]
pub struct Currency;
struct ConvertionRequest<'a> {
value: f64,
source: &'a str,
target: &'a str,
}
impl<'a> ConvertionRequest<'a> {
fn send(&self) -> Option<f64> {
let response = Client::new()
.get("https://api.fixer.io/latest")
.form(&[("base", self.source)])
.header(Connection::close())
.send();
match response {
Ok(mut response) => {
let mut body = String::new();
response.read_to_string(&mut body).ok()?;
let convertion_rates: Result<Value, _> = serde_json::from_str(&body);
match convertion_rates {
Ok(convertion_rates) => {
let rates: &Value = convertion_rates.get("rates")?;
let target_rate: &Value = rates.get(self.target.to_uppercase())?;
Some(self.value * target_rate.as_f64()?)
}
Err(_) => None,
}
}
Err(_) => None,
}
}
}
impl Currency {
pub fn new() -> Currency {
Currency {}
}
fn eval_command<'a>(
&self,
tokens: &'a [String],
) -> Result<ConvertionRequest<'a>, ParseFloatError> {
Ok(ConvertionRequest {
value: tokens[0].parse()?,
source: &tokens[1],
target: &tokens[2],
})
}
fn convert(&self, command: &mut PluginCommand) -> Result<String, &str> {
if command.tokens.len() < 3 {
return Err(self.invalid_command());
}
let request = match self.eval_command(&command.tokens) {
Ok(request) => request,
Err(_) => {
return Err(self.invalid_command());
}
};
match request.send() {
Some(response) => {
let response = format!(
"{} {} => {:.4} {}",
request.value,
request.source.to_lowercase(),
response / 1.00000000,
request.target.to_lowercase()
);
Ok(response)
}
None => Err("An error occured during the conversion of the given currency"),
}
}
fn help(&self) -> &str {
"usage: currency value from_currency to_currency\r\n\
example: {0} currency 1.5 eur usd\r\n\
available currencies: AUD, BGN, BRL, CAD, \
CHF, CNY, CZK, DKK, GBP, HKD, HRK, HUF, \
IDR, ILS, INR, JPY, KRW, MXN, MYR, NOK, \
NZD, PHP, PLN, RON, RUB, SEK, SGD, THB, \
TRY, USD, ZAR"
}
fn invalid_command(&self) -> &str {
"Incorrect Command. \
Send \"currency help\" for help."
}
}
impl Plugin for Currency {
fn execute(&self, _: &IrcClient, _: &Message) -> ExecutionStatus {
ExecutionStatus::Done
}
fn execute_threaded(&self, _: &IrcClient, _: &Message) -> Result<(), FrippyError> {
panic!("Currency does not implement the execute function!")
}
fn command(&self, client: &IrcClient, mut command: PluginCommand) -> Result<(), FrippyError> {
if command.tokens.is_empty() {
return Ok(client
.send_notice(&command.source, &self.invalid_command())
.context(FrippyErrorKind::Connection)?);
}
match command.tokens[0].as_ref() {
"help" => Ok(client
.send_notice(&command.source, self.help())
.context(FrippyErrorKind::Connection)?),
_ => match self.convert(&mut command) {
Ok(msg) => Ok(client
.send_privmsg(&command.target, &msg)
.context(FrippyErrorKind::Connection)?),
Err(msg) => Ok(client
.send_notice(&command.source, &msg)
.context(FrippyErrorKind::Connection)?),
},
}
}
fn evaluate(&self, _: &IrcClient, mut command: PluginCommand) -> Result<String, String> {
if command.tokens.is_empty() {
return Err(self.invalid_command().to_owned());
}
match command.tokens[0].as_ref() {
"help" => Ok(self.help().to_owned()),
_ => self.convert(&mut command).map_err(|e| e.to_owned()),
}
}
}
|