use poise::CreateReply; use serde::{Deserialize, Serialize}; use crate::{ models::CtxData, utils::{Extract, Recordable}, Context, Error, }; #[derive(Serialize, Deserialize, Extract)] pub struct Options { task: String, } impl Recordable for Options { async fn run(self, ctx: Context<'_>) -> Result<(), Error> { sqlx::query!( " INSERT INTO todos (guild_id, value) VALUES ( (SELECT id FROM guilds WHERE guild = ?), ? ) ", ctx.guild_id().unwrap().get(), self.task ) .execute(&ctx.data().database) .await .unwrap(); let ephemeral = ctx .guild_data() .await .map_or(false, |gr| gr.map_or(false, |g| g.ephemeral_confirmations)); ctx.send(CreateReply::default().content("Item added to todo list").ephemeral(ephemeral)) .await?; Ok(()) } } /// Add an item to the server todo list #[poise::command( slash_command, rename = "add", guild_only = true, identifying_name = "todo_guild_add", default_member_permissions = "MANAGE_GUILD" )] pub async fn add( ctx: Context<'_>, #[description = "The task to add to the todo list"] task: String, ) -> Result<(), Error> { (Options { task }).run(ctx).await }