blob: 6fe141daa1ab076f5ede51ed06e92abed1324355 (
plain)
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
|
use crate::utils;
use serenity::builder::CreateApplicationCommand;
use serenity::model::prelude::command::CommandOptionType;
use serenity::model::prelude::interaction::application_command::{
CommandDataOption, CommandDataOptionValue,
};
pub async fn run(options: &[CommandDataOption]) -> String {
let err = "couldn't get convert subcommand!";
let data = options
.get(0)
.unwrap_or_else(|| panic!("{} {:?}", err, options));
let subcommand = data.name.as_str();
// get message content
let option = data
.options
.get(0)
.unwrap_or_else(|| panic!("{} {:?}", err, data))
.resolved
.as_ref()
.expect("failed to resolve string!");
let mut ret = 0.0;
if let CommandDataOptionValue::Number(number) = option {
match subcommand {
"fahrenheit" => ret = utils::celsius_to_fahrenheit(number).await,
"celsius" => ret = utils::fahrenheit_to_celsius(number).await,
_ => ret = 0.0,
};
};
if ret == 0.0 {
return "couldn't figure it out oops".to_string();
}
format!("{:.2}", ret)
}
pub fn register(command: &mut CreateApplicationCommand) -> &mut CreateApplicationCommand {
command
.name("convertto")
.description("ask teawie to convert something for you")
.create_option(|option| {
option
.name("fahrenheit")
.description("ask teawie to convert celsius to fahrenheit")
.kind(CommandOptionType::SubCommand)
.create_sub_option(|suboption| {
suboption
.name("degrees_celsius")
.description("what teawie will convert")
.kind(CommandOptionType::Number)
.required(true)
})
})
.create_option(|option| {
option
.name("celsius")
.description("ask teawie to convert fahrenheit to celsius")
.kind(CommandOptionType::SubCommand)
.create_sub_option(|suboption| {
suboption
.name("degrees_fahrenheit")
.description("what teawie will convert")
.kind(CommandOptionType::Number)
.required(true)
})
})
}
|