pub mod channel_data; pub mod command_macro; pub mod guild_data; pub mod reminder; pub mod timer; pub mod user_data; use chrono_tz::Tz; use poise::serenity_prelude::{async_trait, model::id::UserId}; use crate::{ models::{channel_data::ChannelData, user_data::UserData}, CommandMacro, Context, Data, Error, GuildId, }; #[async_trait] pub trait CtxData { async fn user_data + Send>(&self, user_id: U) -> Result; async fn author_data(&self) -> Result; async fn timezone(&self) -> Tz; async fn channel_data(&self) -> Result; async fn command_macros(&self) -> Result>, Error>; } #[async_trait] impl CtxData for Context<'_> { async fn user_data + Send>( &self, user_id: U, ) -> Result> { UserData::from_user(user_id, &self.discord(), &self.data().database).await } async fn author_data(&self) -> Result> { UserData::from_user(&self.author().id, &self.discord(), &self.data().database).await } async fn timezone(&self) -> Tz { UserData::timezone_of(self.author().id, &self.data().database).await } async fn channel_data(&self) -> Result> { let channel = self.channel_id().to_channel_cached(&self.discord()).unwrap(); ChannelData::from_channel(&channel, &self.data().database).await } async fn command_macros(&self) -> Result>, Error> { self.data().command_macros(self.guild_id().unwrap()).await } } impl Data { pub(crate) async fn command_macros( &self, guild_id: GuildId, ) -> Result>, Error> { let rows = sqlx::query!( "SELECT name, description, commands FROM macro WHERE guild_id = ?", guild_id.0 ) .fetch_all(&self.database) .await? .iter() .map(|row| CommandMacro { guild_id, name: row.name.clone(), description: row.description.clone(), commands: serde_json::from_str(&row.commands).unwrap(), }) .collect(); Ok(rows) } }