From 2ed80b6cf2259209bea0eb811880e9a0582e8225 Mon Sep 17 00:00:00 2001 From: Tom Date: Thu, 18 Aug 2022 22:15:51 +0200 Subject: [PATCH] Add coms command with the BOTtas custom command json source --- src/commands/coms.rs | 54 ++++++++++++++++++++++++++++++++++++++++++++ src/commands/mod.rs | 1 + src/main.rs | 1 + 3 files changed, 56 insertions(+) create mode 100644 src/commands/coms.rs diff --git a/src/commands/coms.rs b/src/commands/coms.rs new file mode 100644 index 0000000..878ce6b --- /dev/null +++ b/src/commands/coms.rs @@ -0,0 +1,54 @@ +use crate::{commands::utils, Context, Error}; +use cached::proc_macro::cached; +use chrono::{DateTime, Utc}; +use log::warn; +use reqwest::header::AUTHORIZATION; +use serde::Deserialize; +use serde_json::{ + Map, + Value::{self, Object}, +}; +use std::fs; + +async fn autocomplete_command<'a>( + _ctx: Context<'_>, + partial: &'a str, +) -> impl Iterator + 'a { + let res: Vec = get_coms() + .keys() + .filter(move |e| e.contains(&partial)) + .map(|e| e.to_string()) + .collect(); + res.into_iter() +} + +fn get_coms() -> Map { + let path = "./data/commands.json"; + let data = fs::read_to_string(path).expect("Unable to read file"); + let res: serde_json::Value = serde_json::from_str(&data).expect("Unable to parse"); + if let Object(things) = res { + return things; + } else { + return Map::::new(); + } +} + +// F1TV links throughout the seasons +#[poise::command(slash_command)] +pub async fn coms( + ctx: Context<'_>, + #[description = "Which command to execute?"] + #[autocomplete = "autocomplete_command"] + command: String, +) -> Result<(), Error> { + match get_coms().get(&command) { + None => { + ctx.say(format!("Command `{}` not found", command)).await?; + } + Some(com) => { + ctx.say(com.as_str().unwrap()).await?; + } + } + + Ok(()) +} diff --git a/src/commands/mod.rs b/src/commands/mod.rs index c4d4a6a..0a909b2 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -4,6 +4,7 @@ use poise::serenity_prelude as serenity; pub mod invites; mod links; // pub mod planning; +pub mod coms; pub mod schedule; pub mod utils; diff --git a/src/main.rs b/src/main.rs index cabafac..7bc4a00 100644 --- a/src/main.rs +++ b/src/main.rs @@ -185,6 +185,7 @@ async fn app() -> Result<(), Error> { commands::fix(), // commands::planning::get_command(), commands::get_links(), + commands::coms::coms(), ]; let discord = SETTINGS.read().unwrap().get_table("discord").unwrap();