mirror of
https://github.com/arthur-pbty/shadowbot.git
synced 2026-06-05 22:01:47 +02:00
netoyage des commands
This commit is contained in:
@@ -1177,7 +1177,7 @@ pub async fn handle_modal_interaction(ctx: &Context, modal: &ModalInteraction) -
|
||||
))
|
||||
.color(theme_color(ctx).await)
|
||||
.footer(CreateEmbedFooter::new(
|
||||
"Utilise +end giveaway <ID> pour terminer",
|
||||
"Utilise +endgiveaway <ID> pour terminer",
|
||||
));
|
||||
|
||||
let _ = modal
|
||||
|
||||
@@ -594,7 +594,7 @@ pub async fn public_command_allowed(
|
||||
.title("Commandes publiques desactivees")
|
||||
.description(format!(
|
||||
"La commande `{}` est desactivee dans ce salon.",
|
||||
command_key.replace('_', " ")
|
||||
command_key.replace('_', "")
|
||||
))
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
|
||||
@@ -38,7 +38,7 @@ impl crate::commands::command_contract::CommandSpec for RemoveActivityCommand {
|
||||
category: "botconfig",
|
||||
params: "aucun",
|
||||
description: "Arrete la rotation d activite et retire lactivite courante du bot.",
|
||||
examples: &["+remove activity", "+ry", "+help remove activity"],
|
||||
examples: &["+removeactivity", "+ry", "+help removeactivity"],
|
||||
default_aliases: &["rma"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::activity::stop_rotation;
|
||||
use crate::commands::common::send_embed;
|
||||
use crate::db::DbPoolKey;
|
||||
|
||||
pub async fn handle_remove_activity(ctx: &Context, msg: &Message) {
|
||||
stop_rotation(ctx).await;
|
||||
ctx.set_activity(None);
|
||||
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
let pool = {
|
||||
let data = ctx.data.read().await;
|
||||
data.get::<DbPoolKey>().cloned()
|
||||
};
|
||||
|
||||
if let Some(pool) = pool {
|
||||
let _ = crate::db::clear_bot_activity(&pool, bot_id).await;
|
||||
}
|
||||
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Activité supprimée")
|
||||
.description("L'activité du bot a été retirée.")
|
||||
.color(0x57F287);
|
||||
|
||||
send_embed(ctx, msg, embed).await;
|
||||
}
|
||||
|
||||
pub struct RemoveActivityCommand;
|
||||
pub static COMMAND_DESCRIPTOR: RemoveActivityCommand = RemoveActivityCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for RemoveActivityCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "removeactivity",
|
||||
category: "botconfig",
|
||||
params: "aucun",
|
||||
description: "Arrete la rotation d activite et retire lactivite courante du bot.",
|
||||
examples: &["+removeactivity", "+ry", "+help removeactivity"],
|
||||
default_aliases: &["rma"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -16,7 +16,7 @@ async fn handle_set_perm(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
if args.len() < 3 || !args[0].eq_ignore_ascii_case("perm") {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `set perm <permission/commande> <role/membre>`")
|
||||
.description("Usage: `+setperm <permission/commande> <role/membre>`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
|
||||
@@ -1507,7 +1507,7 @@ impl crate::commands::command_contract::CommandSpec for TempvocCommand {
|
||||
category: "channel",
|
||||
params: "[cmd]",
|
||||
description: "Affiche le menu de configuration du systeme de vocaux temporaires.",
|
||||
examples: &["+tempvoc", "+tempvoc cmd", "+help tempvoc"],
|
||||
examples: &["+tempvoc", "+tempvoccmd", "+help tempvoc"],
|
||||
default_aliases: &[],
|
||||
allow_in_dm: false,
|
||||
default_permission: 5,
|
||||
|
||||
@@ -9,7 +9,7 @@ use crate::commands::common::send_embed;
|
||||
pub async fn handle_tempvoc_cmd(ctx: &Context, msg: &Message, _args: &[&str]) {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Commandes Tempvoc")
|
||||
.description("\n+tempvoc\n+tempvoc cmd\n\nLe salon de création est surveillé automatiquement: lorsqu'un membre le rejoint, un vocal temporaire est créé et l'utilisateur y est déplacé.")
|
||||
.description("\n+tempvoc\n+tempvoccmd\n\nLe salon de création est surveillé automatiquement: lorsqu'un membre le rejoint, un vocal temporaire est créé et l'utilisateur y est déplacé.")
|
||||
.colour(Colour::from_rgb(100, 180, 255))
|
||||
.timestamp(Utc::now());
|
||||
|
||||
@@ -26,7 +26,7 @@ impl crate::commands::command_contract::CommandSpec for TempvocCmdCommand {
|
||||
category: "channel",
|
||||
params: "aucun",
|
||||
description: "Affiche un rappel des commandes et du fonctionnement de tempvoc.",
|
||||
examples: &["+tempvoc cmd", "+help tempvoc_cmd"],
|
||||
examples: &["+tempvoccmd", "+help tempvoc_cmd"],
|
||||
default_aliases: &[],
|
||||
allow_in_dm: false,
|
||||
default_permission: 0,
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
use chrono::Utc;
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::Colour;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::common::send_embed;
|
||||
|
||||
pub async fn handle_tempvoc_cmd(ctx: &Context, msg: &Message, _args: &[&str]) {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Commandes Tempvoc")
|
||||
.description("\n+tempvoc\n+tempvoccmd\n\nLe salon de création est surveillé automatiquement: lorsqu'un membre le rejoint, un vocal temporaire est créé et l'utilisateur y est déplacé.")
|
||||
.colour(Colour::from_rgb(100, 180, 255))
|
||||
.timestamp(Utc::now());
|
||||
|
||||
send_embed(ctx, msg, embed).await;
|
||||
}
|
||||
|
||||
pub struct TempvocCmdCommand;
|
||||
pub static COMMAND_DESCRIPTOR: TempvocCmdCommand = TempvocCmdCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for TempvocCmdCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "tempvoccmd",
|
||||
category: "channel",
|
||||
params: "aucun",
|
||||
description: "Affiche un rappel des commandes et du fonctionnement de tempvoc.",
|
||||
examples: &["+tempvoccmd", "+help tempvoccmd"],
|
||||
default_aliases: &[],
|
||||
allow_in_dm: false,
|
||||
default_permission: 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -22,7 +22,7 @@ pub async fn handle_leave_settings(ctx: &Context, msg: &Message, args: &[&str])
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("leave settings")
|
||||
.description("Usage: +leave settings [on/off] [salon] [message...]")
|
||||
.description("Usage: +leavesettings [on/off] [salon] [message...]")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
@@ -131,8 +131,8 @@ impl crate::commands::command_contract::CommandSpec for LeaveSettingsCommand {
|
||||
params: "settings [on/off] [salon] [message]",
|
||||
description: "Configure les actions a executer quand un membre quitte le serveur.",
|
||||
examples: &[
|
||||
"+leave settings",
|
||||
"+leave settings on #logs {user} a quitte",
|
||||
"+leavesettings",
|
||||
"+leavesettings on #logs {user} a quitte",
|
||||
],
|
||||
default_aliases: &["lset"],
|
||||
allow_in_dm: false,
|
||||
|
||||
@@ -0,0 +1,142 @@
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use serenity::builder::CreateEmbed;
|
||||
|
||||
use crate::commands::common::{send_embed, theme_color};
|
||||
use crate::commands::logs_command_helpers::{parse_target_channel, pool};
|
||||
|
||||
pub async fn handle_leave_settings(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(pool) = pool(ctx).await else {
|
||||
return;
|
||||
};
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
|
||||
if args.is_empty() || !args[0].eq_ignore_ascii_case("settings") {
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("leave settings")
|
||||
.description("Usage: +leavesettings [on/off] [salon] [message...]")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
return;
|
||||
}
|
||||
|
||||
if args.len() == 1 {
|
||||
let row = sqlx::query_as::<_, (bool, Option<i64>, Option<String>)>(
|
||||
r#"
|
||||
SELECT enabled, channel_id, custom_message
|
||||
FROM bot_join_leave_settings
|
||||
WHERE bot_id = $1 AND guild_id = $2 AND kind = $3
|
||||
LIMIT 1;
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind("leave")
|
||||
.fetch_optional(&pool)
|
||||
.await
|
||||
.ok()
|
||||
.flatten();
|
||||
|
||||
let desc = if let Some((enabled, channel_id, custom_message)) = row {
|
||||
format!(
|
||||
"Etat: {}\nSalon: {}\nMessage: {}",
|
||||
if enabled { "on" } else { "off" },
|
||||
channel_id
|
||||
.map(|id| format!("<#{}>", id))
|
||||
.unwrap_or_else(|| "non defini".to_string()),
|
||||
custom_message.unwrap_or_else(|| "(defaut)".to_string())
|
||||
)
|
||||
} else {
|
||||
"Aucun reglage configure.".to_string()
|
||||
};
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("leave settings")
|
||||
.description(desc)
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
return;
|
||||
}
|
||||
|
||||
let action = args[1].to_lowercase();
|
||||
let enabled = action == "on";
|
||||
let channel = if enabled {
|
||||
parse_target_channel(msg, args, 2)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
let message_start = if enabled { 3 } else { 2 };
|
||||
let custom_message = if args.len() > message_start {
|
||||
Some(args[message_start..].join(" "))
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
let _ = sqlx::query(
|
||||
r#"
|
||||
INSERT INTO bot_join_leave_settings (bot_id, guild_id, kind, enabled, channel_id, custom_message)
|
||||
VALUES ($1, $2, $3, $4, $5, $6)
|
||||
ON CONFLICT (bot_id, guild_id, kind)
|
||||
DO UPDATE SET enabled = EXCLUDED.enabled, channel_id = EXCLUDED.channel_id,
|
||||
custom_message = EXCLUDED.custom_message, updated_at = NOW();
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind("leave")
|
||||
.bind(enabled)
|
||||
.bind(channel.map(|c| c.get() as i64))
|
||||
.bind(custom_message)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("leave settings")
|
||||
.description(format!(
|
||||
"{} {}",
|
||||
if enabled { "Active" } else { "Desactive" },
|
||||
channel
|
||||
.map(|c| format!("dans <#{}>", c.get()))
|
||||
.unwrap_or_default()
|
||||
))
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct LeaveSettingsCommand;
|
||||
pub static COMMAND_DESCRIPTOR: LeaveSettingsCommand = LeaveSettingsCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for LeaveSettingsCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "leavesettings",
|
||||
category: "config",
|
||||
params: "settings [on/off] [salon] [message]",
|
||||
description: "Configure les actions a executer quand un membre quitte le serveur.",
|
||||
examples: &[
|
||||
"+leavesettings",
|
||||
"+leavesettings on #logs {user} a quitte",
|
||||
],
|
||||
default_aliases: &["lset"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 5,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -15,7 +15,7 @@ pub async fn handle_set_boostembed(ctx: &Context, msg: &Message, args: &[&str])
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Set BoostEmbed")
|
||||
.description("Usage: +set boostembed <title|description|color> <valeur>")
|
||||
.description("Usage: +setboostembed <title|description|color> <valeur>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
@@ -104,8 +104,8 @@ impl crate::commands::command_contract::CommandSpec for SetBoostembedCommand {
|
||||
params: "<title|description|color> <valeur>",
|
||||
description: "Configure le titre, la description et la couleur de l embed boost.",
|
||||
examples: &[
|
||||
"+set boostembed title Merci",
|
||||
"+set boostembed color #FF66CC",
|
||||
"+setboostembed title Merci",
|
||||
"+setboostembed color #FF66CC",
|
||||
],
|
||||
default_aliases: &["sboostembed"],
|
||||
allow_in_dm: false,
|
||||
|
||||
@@ -98,7 +98,7 @@ pub async fn handle_set_modlogs(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
CreateEmbed::new()
|
||||
.title("Set ModLogs")
|
||||
.description(format!(
|
||||
"Evenements actifs:\n{}\n\nUsage: +set modlogs <event> <on/off>",
|
||||
"Evenements actifs:\n{}\n\nUsage: +setmodlogs <event> <on/off>",
|
||||
events.iter().cloned().collect::<Vec<_>>().join(", ")
|
||||
))
|
||||
.color(theme_color(ctx).await),
|
||||
@@ -116,7 +116,7 @@ impl crate::commands::command_contract::CommandSpec for SetModlogsCommand {
|
||||
category: "config",
|
||||
params: "[event on/off]",
|
||||
description: "Affiche ou modifie les evenements qui apparaissent dans les logs de moderation.",
|
||||
examples: &["+set modlogs", "+set modlogs warn off"],
|
||||
examples: &["+setmodlogs", "+setmodlogs warn off"],
|
||||
default_aliases: &["smodlog"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
|
||||
@@ -0,0 +1,115 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::common::{send_embed, theme_color};
|
||||
use crate::commands::logs_command_helpers::pool;
|
||||
|
||||
pub async fn handle_set_boostembed(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
if args.len() < 2 {
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Set BoostEmbed")
|
||||
.description("Usage: +setboostembed <title|description|color> <valeur>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
return;
|
||||
}
|
||||
|
||||
let field = args[0].to_lowercase();
|
||||
let value = args[1..].join(" ");
|
||||
let Some(pool) = pool(ctx).await else {
|
||||
return;
|
||||
};
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
|
||||
let _ = sqlx::query(
|
||||
r#"
|
||||
INSERT INTO bot_boost_embed (bot_id, guild_id, enabled, title, description, color)
|
||||
VALUES ($1, $2, TRUE, NULL, NULL, NULL)
|
||||
ON CONFLICT (bot_id, guild_id)
|
||||
DO NOTHING;
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
|
||||
match field.as_str() {
|
||||
"title" => {
|
||||
let _ = sqlx::query(
|
||||
"UPDATE bot_boost_embed SET title = $3, updated_at = NOW() WHERE bot_id = $1 AND guild_id = $2",
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind(value)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
}
|
||||
"description" => {
|
||||
let _ = sqlx::query(
|
||||
"UPDATE bot_boost_embed SET description = $3, updated_at = NOW() WHERE bot_id = $1 AND guild_id = $2",
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind(value)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
}
|
||||
"color" => {
|
||||
let normalized = value
|
||||
.trim()
|
||||
.trim_start_matches('#')
|
||||
.trim_start_matches("0x");
|
||||
if let Ok(color) = u32::from_str_radix(normalized, 16) {
|
||||
let _ = sqlx::query(
|
||||
"UPDATE bot_boost_embed SET color = $3, updated_at = NOW() WHERE bot_id = $1 AND guild_id = $2",
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind(color as i32)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Set BoostEmbed")
|
||||
.description("Configuration mise a jour.")
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct SetBoostembedCommand;
|
||||
pub static COMMAND_DESCRIPTOR: SetBoostembedCommand = SetBoostembedCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for SetBoostembedCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "setboostembed",
|
||||
category: "config",
|
||||
params: "<title|description|color> <valeur>",
|
||||
description: "Configure le titre, la description et la couleur de l embed boost.",
|
||||
examples: &[
|
||||
"+setboostembed title Merci",
|
||||
"+setboostembed color #FF66CC",
|
||||
],
|
||||
default_aliases: &["sboostembed"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
use std::collections::BTreeSet;
|
||||
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::common::{send_embed, theme_color};
|
||||
use crate::commands::logs_command_helpers::pool;
|
||||
|
||||
pub async fn handle_set_modlogs(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(pool) = pool(ctx).await else {
|
||||
return;
|
||||
};
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
|
||||
let row = sqlx::query_as::<_, (String,)>(
|
||||
r#"
|
||||
SELECT modlog_events
|
||||
FROM bot_log_settings
|
||||
WHERE bot_id = $1 AND guild_id = $2
|
||||
LIMIT 1;
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.fetch_optional(&pool)
|
||||
.await
|
||||
.ok()
|
||||
.flatten();
|
||||
|
||||
let mut events = row
|
||||
.map(|(s,)| {
|
||||
s.split(',')
|
||||
.map(|v| v.trim().to_lowercase())
|
||||
.filter(|v| !v.is_empty())
|
||||
.collect::<BTreeSet<_>>()
|
||||
})
|
||||
.unwrap_or_else(|| {
|
||||
[
|
||||
"warn",
|
||||
"mute",
|
||||
"tempmute",
|
||||
"unmute",
|
||||
"cmute",
|
||||
"tempcmute",
|
||||
"uncmute",
|
||||
"kick",
|
||||
"ban",
|
||||
"tempban",
|
||||
"unban",
|
||||
"lock",
|
||||
"unlock",
|
||||
"hide",
|
||||
"unhide",
|
||||
"addrole",
|
||||
"delrole",
|
||||
"derank",
|
||||
"clear",
|
||||
"sanctions",
|
||||
]
|
||||
.into_iter()
|
||||
.map(|s| s.to_string())
|
||||
.collect()
|
||||
});
|
||||
|
||||
if args.len() >= 2 {
|
||||
let event = args[0].to_lowercase();
|
||||
let state = args[1].to_lowercase();
|
||||
if state == "on" {
|
||||
events.insert(event);
|
||||
} else if state == "off" {
|
||||
events.remove(&event);
|
||||
}
|
||||
|
||||
let serialized = events.iter().cloned().collect::<Vec<_>>().join(",");
|
||||
let _ = sqlx::query(
|
||||
r#"
|
||||
INSERT INTO bot_log_settings (bot_id, guild_id, modlog_events)
|
||||
VALUES ($1, $2, $3)
|
||||
ON CONFLICT (bot_id, guild_id)
|
||||
DO UPDATE SET modlog_events = EXCLUDED.modlog_events, updated_at = NOW();
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind(serialized)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
}
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Set ModLogs")
|
||||
.description(format!(
|
||||
"Evenements actifs:\n{}\n\nUsage: +setmodlogs <event> <on/off>",
|
||||
events.iter().cloned().collect::<Vec<_>>().join(", ")
|
||||
))
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct SetModlogsCommand;
|
||||
pub static COMMAND_DESCRIPTOR: SetModlogsCommand = SetModlogsCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for SetModlogsCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "setmodlogs",
|
||||
category: "config",
|
||||
params: "[event on/off]",
|
||||
description: "Affiche ou modifie les evenements qui apparaissent dans les logs de moderation.",
|
||||
examples: &["+setmodlogs", "+setmodlogs warn off"],
|
||||
default_aliases: &["smodlog"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pub async fn handle_end(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("End")
|
||||
.description("Usage: +end giveaway <id_message>")
|
||||
.description("Usage: +endgiveaway <id_message>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
@@ -106,7 +106,7 @@ impl crate::commands::command_contract::CommandSpec for EndCommand {
|
||||
category: "event",
|
||||
params: "giveaway <id_message>",
|
||||
description: "Permet de stopper instantanement un giveaway avec l'identifiant du message.",
|
||||
examples: &["+end giveaway 123456789012345678"],
|
||||
examples: &["+endgiveaway 123456789012345678"],
|
||||
default_aliases: &["gend"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
|
||||
@@ -26,7 +26,7 @@ pub async fn handle_server(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
if args.is_empty() {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `+server pic`, `+server banner` ou `+server list`")
|
||||
.description("Usage: `+server pic`, `+server banner` ou `+serverlist`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
@@ -74,7 +74,7 @@ pub async fn handle_server(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
_ => {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `+server pic`, `+server banner` ou `+server list`")
|
||||
.description("Usage: `+server pic`, `+server banner` ou `+serverlist`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
}
|
||||
|
||||
@@ -65,7 +65,7 @@ impl crate::commands::command_contract::CommandSpec for ShowpicsCommand {
|
||||
category: "info",
|
||||
params: "[nombre 1-5]",
|
||||
description: "Affiche jusqua 5 avatars de membres du serveur.",
|
||||
examples: &["+show pics", "+help showpics"],
|
||||
examples: &["+showpics", "+help showpics"],
|
||||
default_aliases: &[],
|
||||
allow_in_dm: false,
|
||||
default_permission: 0,
|
||||
|
||||
+23
-17
@@ -74,21 +74,21 @@ pub mod choose;
|
||||
pub mod claim;
|
||||
#[path = "mod/cleanup.rs"]
|
||||
pub mod cleanup;
|
||||
#[path = "mod/clear_all_sanctions.rs"]
|
||||
#[path = "mod/clearallsanctions.rs"]
|
||||
pub mod clear_all_sanctions;
|
||||
#[path = "mod/clear_badwords.rs"]
|
||||
#[path = "mod/clearbadwords.rs"]
|
||||
pub mod clear_badwords;
|
||||
#[path = "owner/clear_bl.rs"]
|
||||
#[path = "owner/clearbl.rs"]
|
||||
pub mod clear_bl;
|
||||
#[path = "mod/clear_limit.rs"]
|
||||
#[path = "mod/clearlimit.rs"]
|
||||
pub mod clear_limit;
|
||||
#[path = "mod/clear_messages.rs"]
|
||||
#[path = "mod/clearmessages.rs"]
|
||||
pub mod clear_messages;
|
||||
#[path = "owner/clear_owners.rs"]
|
||||
#[path = "owner/clearowners.rs"]
|
||||
pub mod clear_owners;
|
||||
#[path = "perms/clear_perms.rs"]
|
||||
#[path = "perms/clearperms.rs"]
|
||||
pub mod clear_perms;
|
||||
#[path = "mod/clear_sanctions.rs"]
|
||||
#[path = "mod/clearsanctions.rs"]
|
||||
pub mod clear_sanctions;
|
||||
#[path = "ticket/close.rs"]
|
||||
pub mod close;
|
||||
@@ -102,7 +102,7 @@ pub mod compet;
|
||||
pub mod create;
|
||||
#[path = "perms/del.rs"]
|
||||
pub mod del;
|
||||
#[path = "mod/del_sanction.rs"]
|
||||
#[path = "mod/delsanction.rs"]
|
||||
pub mod del_sanction;
|
||||
#[path = "roles/delrole.rs"]
|
||||
pub mod delrole;
|
||||
@@ -140,7 +140,7 @@ pub mod join;
|
||||
pub mod kick;
|
||||
#[path = "owner/leave.rs"]
|
||||
pub mod leave;
|
||||
#[path = "config/leave_settings.rs"]
|
||||
#[path = "config/leavesettings.rs"]
|
||||
pub mod leave_settings;
|
||||
#[path = "security/link.rs"]
|
||||
pub mod link;
|
||||
@@ -205,7 +205,7 @@ pub mod public;
|
||||
pub mod punish;
|
||||
#[path = "config/raidlog.rs"]
|
||||
pub mod raidlog;
|
||||
#[path = "botconfig/remove_activity.rs"]
|
||||
#[path = "botconfig/removeactivity.rs"]
|
||||
pub mod remove_activity;
|
||||
#[path = "ticket/rename.rs"]
|
||||
pub mod rename;
|
||||
@@ -233,11 +233,11 @@ pub mod server;
|
||||
pub mod serverinfo;
|
||||
#[path = "botconfig/set.rs"]
|
||||
pub mod set;
|
||||
#[path = "config/set_boostembed.rs"]
|
||||
#[path = "config/setboostembed.rs"]
|
||||
pub mod set_boostembed;
|
||||
#[path = "config/set_modlogs.rs"]
|
||||
#[path = "config/setmodlogs.rs"]
|
||||
pub mod set_modlogs;
|
||||
#[path = "mod/set_muterole.rs"]
|
||||
#[path = "mod/setmuterole.rs"]
|
||||
pub mod set_muterole;
|
||||
#[path = "botconfig/shadowbot.rs"]
|
||||
pub mod shadowbot;
|
||||
@@ -267,13 +267,13 @@ pub mod tempmute;
|
||||
pub mod temprole;
|
||||
#[path = "channel/tempvoc.rs"]
|
||||
pub mod tempvoc;
|
||||
#[path = "channel/tempvoc_cmd.rs"]
|
||||
#[path = "channel/tempvoccmd.rs"]
|
||||
pub mod tempvoc_cmd;
|
||||
#[path = "botconfig/theme.rs"]
|
||||
pub mod theme;
|
||||
#[path = "ticket/ticket.rs"]
|
||||
pub mod ticket;
|
||||
#[path = "ticket/ticket_member.rs"]
|
||||
#[path = "ticket/ticketmember.rs"]
|
||||
pub mod ticket_member;
|
||||
#[path = "ticket/tickets.rs"]
|
||||
pub mod tickets;
|
||||
@@ -481,9 +481,15 @@ pub fn all_command_metadata() -> Vec<CommandMetadata> {
|
||||
}
|
||||
|
||||
pub fn command_metadata_by_key(key: &str) -> Option<CommandMetadata> {
|
||||
let normalized = key.to_lowercase();
|
||||
let compact = normalized.replace('_', "");
|
||||
|
||||
all_command_metadata()
|
||||
.into_iter()
|
||||
.find(|meta| meta.name == key)
|
||||
.find(|meta| {
|
||||
meta.name.eq_ignore_ascii_case(&normalized)
|
||||
|| meta.name.replace('_', "").eq_ignore_ascii_case(&compact)
|
||||
})
|
||||
}
|
||||
|
||||
pub fn resolve_default_alias(alias: &str) -> Option<&'static str> {
|
||||
|
||||
@@ -57,7 +57,7 @@ impl crate::commands::command_contract::CommandSpec for ClearAllSanctionsCommand
|
||||
category: "mod",
|
||||
params: "aucun",
|
||||
description: "Efface toutes les sanctions de tous les membres du serveur.",
|
||||
examples: &["+clear all sanctions"],
|
||||
examples: &["+clearallsanctions"],
|
||||
default_aliases: &["casanctions"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 8,
|
||||
|
||||
@@ -41,7 +41,7 @@ impl crate::commands::command_contract::CommandSpec for ClearBadwordsCommand {
|
||||
category: "mod",
|
||||
params: "badwords",
|
||||
description: "Supprime l ensemble des mots interdits enregistres.",
|
||||
examples: &["+clear badwords", "+help clear badwords"],
|
||||
examples: &["+clearbadwords", "+help clearbadwords"],
|
||||
default_aliases: &["cbw"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
|
||||
@@ -17,7 +17,7 @@ pub async fn handle_clear_limit(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Clear Limit")
|
||||
.description("Usage: +clear limit <nombre>")
|
||||
.description("Usage: +clearlimit <nombre>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
@@ -65,7 +65,7 @@ impl crate::commands::command_contract::CommandSpec for ClearLimitCommand {
|
||||
category: "mod",
|
||||
params: "limit <nombre>",
|
||||
description: "Definit la limite max de messages supprimables avec +clear.",
|
||||
examples: &["+clear limit 100", "+help clear limit"],
|
||||
examples: &["+clearlimit 100", "+help clearlimit"],
|
||||
default_aliases: &["climit"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
|
||||
@@ -67,7 +67,7 @@ impl crate::commands::command_contract::CommandSpec for ClearSanctionsCommand {
|
||||
category: "mod",
|
||||
params: "<@membre/ID>",
|
||||
description: "Efface completement les sanctions d un membre cible.",
|
||||
examples: &["+clear sanctions @User"],
|
||||
examples: &["+clearsanctions @User"],
|
||||
default_aliases: &["csanctions"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::common::{send_embed, theme_color};
|
||||
use crate::db::DbPoolKey;
|
||||
|
||||
pub async fn handle_clear_all_sanctions(ctx: &Context, msg: &Message) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
|
||||
let pool = {
|
||||
let data = ctx.data.read().await;
|
||||
data.get::<DbPoolKey>().cloned()
|
||||
};
|
||||
let Some(pool) = pool else {
|
||||
return;
|
||||
};
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
|
||||
let removed = sqlx::query(
|
||||
r#"
|
||||
DELETE FROM bot_sanctions
|
||||
WHERE bot_id = $1 AND guild_id = $2;
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.execute(&pool)
|
||||
.await
|
||||
.ok()
|
||||
.map(|r| r.rows_affected())
|
||||
.unwrap_or(0);
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Sanctions")
|
||||
.description(format!(
|
||||
"{} sanction(s) supprimée(s) sur le serveur.",
|
||||
removed
|
||||
))
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct ClearAllSanctionsCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearAllSanctionsCommand = ClearAllSanctionsCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearAllSanctionsCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearallsanctions",
|
||||
category: "mod",
|
||||
params: "aucun",
|
||||
description: "Efface toutes les sanctions de tous les membres du serveur.",
|
||||
examples: &["+clearallsanctions"],
|
||||
default_aliases: &["casanctions"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 8,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::automod_service::pool;
|
||||
use crate::commands::common::send_embed;
|
||||
use crate::db;
|
||||
|
||||
pub async fn handle_clear_badwords(ctx: &Context, msg: &Message, _args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(pool) = pool(ctx).await else {
|
||||
return;
|
||||
};
|
||||
|
||||
let bot_id = ctx.cache.current_user().id.get() as i64;
|
||||
let cleared = db::clear_badwords(&pool, bot_id, guild_id.get() as i64)
|
||||
.await
|
||||
.unwrap_or(0);
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Clear BadWords")
|
||||
.description(format!("{} mot(s) interdit(s) supprime(s).", cleared))
|
||||
.color(0x57F287),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct ClearBadwordsCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearBadwordsCommand = ClearBadwordsCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearBadwordsCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearbadwords",
|
||||
category: "mod",
|
||||
params: "badwords",
|
||||
description: "Supprime l ensemble des mots interdits enregistres.",
|
||||
examples: &["+clearbadwords", "+help clearbadwords"],
|
||||
default_aliases: &["cbw"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::automod_service::pool;
|
||||
use crate::commands::common::send_embed;
|
||||
use crate::db;
|
||||
|
||||
pub async fn handle_clear_limit(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(raw_value) = args.get(1) else {
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Clear Limit")
|
||||
.description("Usage: +clearlimit <nombre>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
return;
|
||||
};
|
||||
|
||||
let Ok(value) = raw_value.parse::<i32>() else {
|
||||
return;
|
||||
};
|
||||
|
||||
let clamped = value.clamp(1, 1_000);
|
||||
let Some(pool) = pool(ctx).await else {
|
||||
return;
|
||||
};
|
||||
|
||||
let bot_id = ctx.cache.current_user().id.get() as i64;
|
||||
if db::set_clear_limit(&pool, bot_id, guild_id.get() as i64, clamped)
|
||||
.await
|
||||
.is_err()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Clear Limit")
|
||||
.description(format!(
|
||||
"Limite de suppression definie a **{}** message(s) par commande clear.",
|
||||
clamped
|
||||
))
|
||||
.color(0x57F287),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct ClearLimitCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearLimitCommand = ClearLimitCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearLimitCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearlimit",
|
||||
category: "mod",
|
||||
params: "limit <nombre>",
|
||||
description: "Definit la limite max de messages supprimables avec +clear.",
|
||||
examples: &["+clearlimit 100", "+help clearlimit"],
|
||||
default_aliases: &["climit"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -76,11 +76,11 @@ pub static COMMAND_DESCRIPTOR: ClearMessagesCommand = ClearMessagesCommand;
|
||||
impl crate::commands::command_contract::CommandSpec for ClearMessagesCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clear_messages",
|
||||
name: "clearmessages",
|
||||
category: "mod",
|
||||
params: "<nombre> [@membre/ID]",
|
||||
description: "Supprime un nombre de messages, optionnellement filtres par membre.",
|
||||
examples: &["+clear 20", "+clear 20 @User"],
|
||||
examples: &["+clearmessages 20", "+clearmessages 20 @User"],
|
||||
default_aliases: &["purge"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 5,
|
||||
@@ -0,0 +1,76 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::admin_common::parse_user_id;
|
||||
use crate::commands::common::{send_embed, theme_color};
|
||||
use crate::db::DbPoolKey;
|
||||
|
||||
pub async fn handle_clear_sanctions(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
if args.len() < 2 {
|
||||
return;
|
||||
}
|
||||
|
||||
let Some(target) = parse_user_id(args[1]) else {
|
||||
return;
|
||||
};
|
||||
|
||||
let pool = {
|
||||
let data = ctx.data.read().await;
|
||||
data.get::<DbPoolKey>().cloned()
|
||||
};
|
||||
let Some(pool) = pool else {
|
||||
return;
|
||||
};
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
|
||||
let removed = sqlx::query(
|
||||
r#"
|
||||
DELETE FROM bot_sanctions
|
||||
WHERE bot_id = $1 AND guild_id = $2 AND user_id = $3;
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind(target.get() as i64)
|
||||
.execute(&pool)
|
||||
.await
|
||||
.ok()
|
||||
.map(|r| r.rows_affected())
|
||||
.unwrap_or(0);
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Sanctions")
|
||||
.description(format!(
|
||||
"{} sanction(s) supprimée(s) pour <@{}>.",
|
||||
removed,
|
||||
target.get()
|
||||
))
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct ClearSanctionsCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearSanctionsCommand = ClearSanctionsCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearSanctionsCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearsanctions",
|
||||
category: "mod",
|
||||
params: "<@membre/ID>",
|
||||
description: "Efface completement les sanctions d un membre cible.",
|
||||
examples: &["+clearsanctions @User"],
|
||||
default_aliases: &["csanctions"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -89,7 +89,7 @@ impl crate::commands::command_contract::CommandSpec for DelSanctionCommand {
|
||||
category: "mod",
|
||||
params: "<@membre/ID> <nombre>",
|
||||
description: "Supprime une sanction specifique dans l historique d un membre.",
|
||||
examples: &["+del sanction @User 1"],
|
||||
examples: &["+delsanction @User 1"],
|
||||
default_aliases: &["delsanction"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
|
||||
@@ -0,0 +1,98 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::admin_common::parse_user_id;
|
||||
use crate::commands::common::{send_embed, theme_color};
|
||||
use crate::db::DbPoolKey;
|
||||
|
||||
pub async fn handle_del_sanction(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
if args.len() < 3 {
|
||||
return;
|
||||
}
|
||||
|
||||
let Some(target) = parse_user_id(args[1]) else {
|
||||
return;
|
||||
};
|
||||
let Ok(index) = args[2].parse::<usize>() else {
|
||||
return;
|
||||
};
|
||||
if index == 0 {
|
||||
return;
|
||||
}
|
||||
|
||||
let pool = {
|
||||
let data = ctx.data.read().await;
|
||||
data.get::<DbPoolKey>().cloned()
|
||||
};
|
||||
let Some(pool) = pool else {
|
||||
return;
|
||||
};
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
|
||||
let rows = sqlx::query_as::<_, (i64,)>(
|
||||
r#"
|
||||
SELECT id
|
||||
FROM bot_sanctions
|
||||
WHERE bot_id = $1 AND guild_id = $2 AND user_id = $3
|
||||
ORDER BY created_at DESC;
|
||||
"#,
|
||||
)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.bind(target.get() as i64)
|
||||
.fetch_all(&pool)
|
||||
.await
|
||||
.unwrap_or_default();
|
||||
|
||||
let Some((sanction_id,)) = rows.get(index - 1).copied() else {
|
||||
return;
|
||||
};
|
||||
|
||||
let _ = sqlx::query(
|
||||
r#"
|
||||
DELETE FROM bot_sanctions
|
||||
WHERE id = $1 AND bot_id = $2 AND guild_id = $3;
|
||||
"#,
|
||||
)
|
||||
.bind(sanction_id)
|
||||
.bind(bot_id.get() as i64)
|
||||
.bind(guild_id.get() as i64)
|
||||
.execute(&pool)
|
||||
.await;
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Sanctions")
|
||||
.description(format!(
|
||||
"Sanction #{} supprimée pour <@{}>.",
|
||||
sanction_id,
|
||||
target.get()
|
||||
))
|
||||
.color(theme_color(ctx).await),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct DelSanctionCommand;
|
||||
pub static COMMAND_DESCRIPTOR: DelSanctionCommand = DelSanctionCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for DelSanctionCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "delsanction",
|
||||
category: "mod",
|
||||
params: "<@membre/ID> <nombre>",
|
||||
description: "Supprime une sanction specifique dans l historique d un membre.",
|
||||
examples: &["+delsanction @User 1"],
|
||||
default_aliases: &["delsanction"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 6,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -17,7 +17,7 @@ pub async fn handle_set_muterole(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Set MuteRole")
|
||||
.description("Usage: +set muterole <@role/ID/nom>")
|
||||
.description("Usage: +setmuterole <@role/ID/nom>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
@@ -70,7 +70,7 @@ impl crate::commands::command_contract::CommandSpec for SetMuteRoleCommand {
|
||||
category: "mod",
|
||||
params: "muterole <@role/ID/nom>",
|
||||
description: "Definit le role utilise pour le mute lorsque le mode timeout est desactive.",
|
||||
examples: &["+set muterole @Muted", "+help set muterole"],
|
||||
examples: &["+setmuterole @Muted", "+help setmuterole"],
|
||||
default_aliases: &["smr"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::automod_service::pool;
|
||||
use crate::commands::common::{parse_role, send_embed};
|
||||
use crate::db;
|
||||
|
||||
pub async fn handle_set_muterole(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(guild_id) = msg.guild_id else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(raw_role) = args.get(1) else {
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("Set MuteRole")
|
||||
.description("Usage: +setmuterole <@role/ID/nom>")
|
||||
.color(0xED4245),
|
||||
)
|
||||
.await;
|
||||
return;
|
||||
};
|
||||
|
||||
let Ok(guild) = guild_id.to_partial_guild(&ctx.http).await else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(role) = parse_role(&guild, raw_role) else {
|
||||
return;
|
||||
};
|
||||
|
||||
let Some(pool) = pool(ctx).await else {
|
||||
return;
|
||||
};
|
||||
|
||||
let bot_id = ctx.cache.current_user().id.get() as i64;
|
||||
if db::set_mute_role(
|
||||
&pool,
|
||||
bot_id,
|
||||
guild_id.get() as i64,
|
||||
Some(role.id.get() as i64),
|
||||
)
|
||||
.await
|
||||
.is_err()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
send_embed(
|
||||
ctx,
|
||||
msg,
|
||||
CreateEmbed::new()
|
||||
.title("MuteRole")
|
||||
.description(format!("Role muet defini sur <@&{}>.", role.id.get()))
|
||||
.color(0x57F287),
|
||||
)
|
||||
.await;
|
||||
}
|
||||
|
||||
pub struct SetMuteRoleCommand;
|
||||
pub static COMMAND_DESCRIPTOR: SetMuteRoleCommand = SetMuteRoleCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for SetMuteRoleCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "setmuterole",
|
||||
category: "mod",
|
||||
params: "muterole <@role/ID/nom>",
|
||||
description: "Definit le role utilise pour le mute lorsque le mode timeout est desactive.",
|
||||
examples: &["+setmuterole @Muted", "+help setmuterole"],
|
||||
default_aliases: &["smr"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 7,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,7 +43,7 @@ impl crate::commands::command_contract::CommandSpec for ClearBlCommand {
|
||||
category: "owner",
|
||||
params: "aucun",
|
||||
description: "Supprime toutes les entrees de la blacklist globale.",
|
||||
examples: &["+clear bl", "+cl", "+help clear bl"],
|
||||
examples: &["+clearbl", "+cl", "+help clearbl"],
|
||||
default_aliases: &["cbl"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 9,
|
||||
|
||||
@@ -43,7 +43,7 @@ impl crate::commands::command_contract::CommandSpec for ClearOwnersCommand {
|
||||
category: "owner",
|
||||
params: "aucun",
|
||||
description: "Supprime tous les owners supplementaires en base de donnees.",
|
||||
examples: &["+clear owners", "+cs", "+help clear owners"],
|
||||
examples: &["+clearowners", "+cs", "+help clearowners"],
|
||||
default_aliases: &["cro"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 9,
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::admin_common::ensure_owner;
|
||||
use crate::commands::common::send_embed;
|
||||
use crate::db::{DbPoolKey, clear_blacklist};
|
||||
|
||||
pub async fn handle_clear_bl(ctx: &Context, msg: &Message) {
|
||||
if ensure_owner(ctx, msg).await.is_err() {
|
||||
return;
|
||||
}
|
||||
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
let pool = {
|
||||
let data = ctx.data.read().await;
|
||||
data.get::<DbPoolKey>().cloned()
|
||||
};
|
||||
|
||||
let Some(pool) = pool else {
|
||||
let embed = serenity::builder::CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("DB indisponible.")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
};
|
||||
|
||||
let count = clear_blacklist(&pool, bot_id).await.unwrap_or(0);
|
||||
let embed = serenity::builder::CreateEmbed::new()
|
||||
.title("Blacklist réinitialisée")
|
||||
.description(format!("{} membre(s) retiré(s) de la blacklist.", count))
|
||||
.color(0x57F287);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
}
|
||||
|
||||
pub struct ClearBlCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearBlCommand = ClearBlCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearBlCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearbl",
|
||||
category: "owner",
|
||||
params: "aucun",
|
||||
description: "Supprime toutes les entrees de la blacklist globale.",
|
||||
examples: &["+clearbl", "+cl", "+help clearbl"],
|
||||
default_aliases: &["cbl"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 9,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::admin_common::ensure_owner;
|
||||
use crate::commands::common::send_embed;
|
||||
use crate::db::{DbPoolKey, clear_bot_owners};
|
||||
|
||||
pub async fn handle_clear_owners(ctx: &Context, msg: &Message) {
|
||||
if ensure_owner(ctx, msg).await.is_err() {
|
||||
return;
|
||||
}
|
||||
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
let pool = {
|
||||
let data = ctx.data.read().await;
|
||||
data.get::<DbPoolKey>().cloned()
|
||||
};
|
||||
|
||||
let Some(pool) = pool else {
|
||||
let embed = serenity::builder::CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("DB indisponible.")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
};
|
||||
|
||||
let count = clear_bot_owners(&pool, bot_id).await.unwrap_or(0);
|
||||
let embed = serenity::builder::CreateEmbed::new()
|
||||
.title("Owners réinitialisés")
|
||||
.description(format!("{} owner(s) supprimé(s).", count))
|
||||
.color(0x57F287);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
}
|
||||
|
||||
pub struct ClearOwnersCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearOwnersCommand = ClearOwnersCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearOwnersCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearowners",
|
||||
category: "owner",
|
||||
params: "aucun",
|
||||
description: "Supprime tous les owners supplementaires en base de donnees.",
|
||||
examples: &["+clearowners", "+cs", "+help clearowners"],
|
||||
default_aliases: &["cro"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 9,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -38,7 +38,7 @@ pub async fn handle_mp(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("MP settings")
|
||||
.description(format!(
|
||||
"Envoi de MP: `{}`\nUtilise `+mp settings on/off`.",
|
||||
"Envoi de MP: `{}`\nUtilise `+mpsettings on/off`.",
|
||||
if enabled { "on" } else { "off" }
|
||||
))
|
||||
.color(0x5865F2);
|
||||
@@ -52,7 +52,7 @@ pub async fn handle_mp(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
_ => {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `+mp settings <on/off>`")
|
||||
.description("Usage: `+mpsettings <on/off>`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
@@ -93,7 +93,7 @@ pub async fn handle_mp(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
let Some(entry_id_raw) = args.get(1) else {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `+mp delete <id>`")
|
||||
.description("Usage: `+mpdelete <id>`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
@@ -158,7 +158,7 @@ pub async fn handle_mp(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
if args.len() < 2 {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `+mp settings` ou `+mp <membre> <message>`")
|
||||
.description("Usage: `+mpsettings` ou `+mp <membre> <message>`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
@@ -182,7 +182,7 @@ pub async fn handle_mp(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
if !enabled {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("MP désactivés")
|
||||
.description("Réactive-les avec `+mp settings on`.")
|
||||
.description("Réactive-les avec `+mpsettings on`.")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
|
||||
@@ -67,10 +67,9 @@ pub async fn handle_alias(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
}
|
||||
|
||||
let command = args[0].trim_start_matches('+').to_lowercase();
|
||||
if !all_command_keys()
|
||||
.iter()
|
||||
.any(|candidate| candidate == &command)
|
||||
{
|
||||
let is_known = all_command_keys().iter().any(|candidate| candidate == &command)
|
||||
|| crate::commands::command_metadata_by_key(&command).is_some();
|
||||
if !is_known {
|
||||
let embed = serenity::builder::CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Commande cible inconnue.")
|
||||
|
||||
@@ -39,7 +39,7 @@ impl crate::commands::command_contract::CommandSpec for ClearPermsCommand {
|
||||
category: "perms",
|
||||
params: "aucun",
|
||||
description: "Supprime toutes les permissions ACL configurees en base.",
|
||||
examples: &["+clear perms", "+cs", "+help clear perms"],
|
||||
examples: &["+clearperms", "+cs", "+help clearperms"],
|
||||
default_aliases: &["cpm"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 9,
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
use serenity::builder::CreateEmbed;
|
||||
use serenity::model::prelude::*;
|
||||
use serenity::prelude::*;
|
||||
|
||||
use crate::commands::common::send_embed;
|
||||
use crate::commands::perms_helpers::{ensure_owner, get_pool};
|
||||
use crate::db::clear_role_permissions;
|
||||
|
||||
pub async fn handle_clear_perms(ctx: &Context, msg: &Message) {
|
||||
if !ensure_owner(ctx, msg).await {
|
||||
return;
|
||||
}
|
||||
|
||||
let bot_id = ctx.cache.current_user().id;
|
||||
let Some(pool) = get_pool(ctx).await else {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("DB indisponible.")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
};
|
||||
|
||||
let removed = clear_role_permissions(&pool, bot_id).await.unwrap_or(0);
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Permissions roles supprimees")
|
||||
.description(format!("{} entree(s) supprimee(s).", removed))
|
||||
.color(0x57F287);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
}
|
||||
|
||||
pub struct ClearPermsCommand;
|
||||
pub static COMMAND_DESCRIPTOR: ClearPermsCommand = ClearPermsCommand;
|
||||
|
||||
impl crate::commands::command_contract::CommandSpec for ClearPermsCommand {
|
||||
fn metadata(&self) -> crate::commands::command_contract::CommandMetadata {
|
||||
crate::commands::command_contract::CommandMetadata {
|
||||
name: "clearperms",
|
||||
category: "perms",
|
||||
params: "aucun",
|
||||
description: "Supprime toutes les permissions ACL configurees en base.",
|
||||
examples: &["+clearperms", "+cs", "+help clearperms"],
|
||||
default_aliases: &["cpm"],
|
||||
allow_in_dm: false,
|
||||
default_permission: 9,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -14,7 +14,7 @@ pub async fn handle_del(ctx: &Context, msg: &Message, args: &[&str]) {
|
||||
if args.len() < 2 || !args[0].eq_ignore_ascii_case("perm") {
|
||||
let embed = CreateEmbed::new()
|
||||
.title("Erreur")
|
||||
.description("Usage: `del perm <role>`")
|
||||
.description("Usage: `+delperm <role>`")
|
||||
.color(0xED4245);
|
||||
send_embed(ctx, msg, embed).await;
|
||||
return;
|
||||
|
||||
+84
-38
@@ -133,8 +133,8 @@ fn help_page_for_command(
|
||||
) -> &'static str {
|
||||
match meta.name {
|
||||
"modlog" | "messagelog" | "voicelog" | "boostlog" | "rolelog" | "raidlog"
|
||||
| "autoconfiglog" | "nolog" | "join" | "boostembed" | "set_modlogs" | "set_boostembed"
|
||||
| "leave_settings" | "viewlogs" => "logs",
|
||||
| "autoconfiglog" | "nolog" | "join" | "boostembed" | "setmodlogs" | "setboostembed"
|
||||
| "leavesettings" | "viewlogs" => "logs",
|
||||
"warn"
|
||||
| "mute"
|
||||
| "tempmute"
|
||||
@@ -151,12 +151,12 @@ fn help_page_for_command(
|
||||
| "banlist"
|
||||
| "unbanall"
|
||||
| "sanctions"
|
||||
| "del_sanction"
|
||||
| "clear_sanctions"
|
||||
| "clear_all_sanctions"
|
||||
| "delsanction"
|
||||
| "clearsanctions"
|
||||
| "clearallsanctions"
|
||||
| "cleanup"
|
||||
| "renew"
|
||||
| "clear_messages" => "moderation",
|
||||
| "clearmessages" => "moderation",
|
||||
"addrole" | "delrole" | "derank" | "massiverole" | "unmassiverole" | "temprole"
|
||||
| "untemprole" | "sync" => "roles",
|
||||
"lock" | "unlock" | "lockall" | "unlockall" | "hide" | "unhide" | "hideall"
|
||||
@@ -165,16 +165,24 @@ fn help_page_for_command(
|
||||
| "create" | "newsticker" | "button" | "autoreact" | "snipe" | "loading" | "backup"
|
||||
| "autobackup" => "outils",
|
||||
"shadowbot" | "set" | "theme" | "playto" | "listen" | "watch" | "compet" | "stream"
|
||||
| "remove_activity" | "online" | "idle" | "dnd" | "invisible" | "change" | "changeall" => {
|
||||
| "removeactivity" | "online" | "idle" | "dnd" | "invisible" | "change" | "changeall" => {
|
||||
"bot"
|
||||
}
|
||||
"owner" | "unowner" | "clear_owners" | "bl" | "unbl" | "blinfo" | "clear_bl"
|
||||
"owner" | "unowner" | "clearowners" | "bl" | "unbl" | "blinfo" | "clearbl"
|
||||
| "allbots" | "alladmins" | "botadmins" | "mainprefix" | "prefix" | "mp" | "invite"
|
||||
| "leave" | "discussion" => "administration",
|
||||
"perms" | "del" | "clear_perms" | "allperms" | "alias" | "help" | "helpsetting" => {
|
||||
"perms" | "del" | "clearperms" | "allperms" | "alias" | "help" | "helpsetting" => {
|
||||
"permissions"
|
||||
}
|
||||
_ => match meta.category {
|
||||
"info" => "infos",
|
||||
"mod" => "moderation",
|
||||
"config" => "logs",
|
||||
"botconfig" => "bot",
|
||||
"owner" => "administration",
|
||||
"perms" => "permissions",
|
||||
"channel" => "salons_vocal",
|
||||
"event" => "outils",
|
||||
"infos" => "infos",
|
||||
"logs" => "logs",
|
||||
"moderation" => "moderation",
|
||||
@@ -209,12 +217,14 @@ fn help_page_title_for_command_key(key: &str) -> &'static str {
|
||||
fn help_metadata_lookup_key(input: &str) -> Option<&'static str> {
|
||||
let normalized = help_lookup_key(input);
|
||||
let underscored = normalized.replace(' ', "_");
|
||||
let compact = normalized.replace(' ', "");
|
||||
|
||||
crate::commands::all_command_metadata()
|
||||
.into_iter()
|
||||
.find(|meta| {
|
||||
meta.name.eq_ignore_ascii_case(&normalized)
|
||||
|| meta.name.eq_ignore_ascii_case(&underscored)
|
||||
|| meta.name.replace('_', "").eq_ignore_ascii_case(&compact)
|
||||
|| meta
|
||||
.name
|
||||
.replace('_', " ")
|
||||
@@ -321,18 +331,58 @@ async fn aliases_map(ctx: &Context) -> BTreeMap<String, Vec<String>> {
|
||||
}
|
||||
|
||||
fn command_doc(key: &str) -> Option<CommandDoc> {
|
||||
let meta = match key {
|
||||
"mp_settings" | "mp_sent" | "mp_delete" => crate::commands::command_metadata_by_key("mp")?,
|
||||
"server_list" => crate::commands::command_metadata_by_key("server")?,
|
||||
"change_reset" => crate::commands::command_metadata_by_key("change")?,
|
||||
"set_perm" => crate::commands::command_metadata_by_key("set")?,
|
||||
"del_perm" => crate::commands::command_metadata_by_key("del")?,
|
||||
other => crate::commands::command_metadata_by_key(other)?,
|
||||
let (meta, command, acl_key, alias_source_key) = match key {
|
||||
"mpsettings" => (
|
||||
crate::commands::command_metadata_by_key("mp")?,
|
||||
"mpsettings",
|
||||
"mpsettings",
|
||||
Some("mp"),
|
||||
),
|
||||
"mpsent" => (
|
||||
crate::commands::command_metadata_by_key("mp")?,
|
||||
"mpsent",
|
||||
"mpsent",
|
||||
Some("mp"),
|
||||
),
|
||||
"mpdelete" => (
|
||||
crate::commands::command_metadata_by_key("mp")?,
|
||||
"mpdelete",
|
||||
"mpdelete",
|
||||
Some("mp"),
|
||||
),
|
||||
"serverlist" => (
|
||||
crate::commands::command_metadata_by_key("server")?,
|
||||
"serverlist",
|
||||
"serverlist",
|
||||
Some("server"),
|
||||
),
|
||||
"changereset" => (
|
||||
crate::commands::command_metadata_by_key("change")?,
|
||||
"changereset",
|
||||
"changereset",
|
||||
Some("change"),
|
||||
),
|
||||
"setperm" => (
|
||||
crate::commands::command_metadata_by_key("set")?,
|
||||
"setperm",
|
||||
"setperm",
|
||||
Some("set"),
|
||||
),
|
||||
"delperm" => (
|
||||
crate::commands::command_metadata_by_key("del")?,
|
||||
"delperm",
|
||||
"delperm",
|
||||
Some("del"),
|
||||
),
|
||||
other => {
|
||||
let meta = crate::commands::command_metadata_by_key(other)?;
|
||||
(meta, meta.name, meta.name, Some(meta.name))
|
||||
}
|
||||
};
|
||||
|
||||
Some(CommandDoc {
|
||||
key: meta.name,
|
||||
command: meta.name,
|
||||
key: acl_key,
|
||||
command,
|
||||
allow_in_dm: meta.allow_in_dm,
|
||||
default_permission: meta.default_permission,
|
||||
params: meta.params,
|
||||
@@ -342,7 +392,7 @@ fn command_doc(key: &str) -> Option<CommandDoc> {
|
||||
} else {
|
||||
meta.examples
|
||||
},
|
||||
alias_source_key: Some(meta.name),
|
||||
alias_source_key,
|
||||
})
|
||||
}
|
||||
|
||||
@@ -351,7 +401,6 @@ fn help_lookup_key(input: &str) -> String {
|
||||
.trim()
|
||||
.trim_start_matches('+')
|
||||
.to_lowercase()
|
||||
.replace('_', " ")
|
||||
.split_whitespace()
|
||||
.collect::<Vec<_>>()
|
||||
.join(" ")
|
||||
@@ -375,11 +424,11 @@ fn help_lookup_to_key(input: &str) -> Option<&'static str> {
|
||||
"pic" => Some("pic"),
|
||||
"banner" => Some("banner"),
|
||||
"server" => Some("server"),
|
||||
"server list" => Some("server_list"),
|
||||
"serverlist" => Some("serverlist"),
|
||||
"snipe" => Some("snipe"),
|
||||
"emoji" => Some("emoji"),
|
||||
"giveaway" => Some("giveaway"),
|
||||
"end" | "end giveaway" => Some("end"),
|
||||
"end" | "endgiveaway" => Some("end"),
|
||||
"reroll" => Some("reroll"),
|
||||
"choose" => Some("choose"),
|
||||
"embed" => Some("embed"),
|
||||
@@ -410,36 +459,36 @@ fn help_lookup_to_key(input: &str) -> Option<&'static str> {
|
||||
"watch" => Some("watch"),
|
||||
"compet" => Some("compet"),
|
||||
"stream" => Some("stream"),
|
||||
"remove activity" => Some("remove_activity"),
|
||||
"removeactivity" => Some("removeactivity"),
|
||||
"online" => Some("online"),
|
||||
"idle" => Some("idle"),
|
||||
"dnd" => Some("dnd"),
|
||||
"invisible" => Some("invisible"),
|
||||
"mp" => Some("mp"),
|
||||
"mp settings" => Some("mp_settings"),
|
||||
"mp sent" => Some("mp_sent"),
|
||||
"mp delete" | "mp del" => Some("mp_delete"),
|
||||
"mpsettings" => Some("mpsettings"),
|
||||
"mpsent" => Some("mpsent"),
|
||||
"mpdelete" | "mpdel" => Some("mpdelete"),
|
||||
"discussion" => Some("discussion"),
|
||||
"owner" => Some("owner"),
|
||||
"unowner" => Some("unowner"),
|
||||
"clear owners" => Some("clear_owners"),
|
||||
"clearowners" => Some("clearowners"),
|
||||
"bl" => Some("bl"),
|
||||
"unbl" => Some("unbl"),
|
||||
"blinfo" => Some("blinfo"),
|
||||
"clear bl" => Some("clear_bl"),
|
||||
"clearbl" => Some("clearbl"),
|
||||
"say" => Some("say"),
|
||||
"invite" => Some("invite"),
|
||||
"leave" => Some("leave"),
|
||||
"change" => Some("change"),
|
||||
"change reset" => Some("change_reset"),
|
||||
"changereset" => Some("changereset"),
|
||||
"changeall" => Some("changeall"),
|
||||
"mainprefix" => Some("mainprefix"),
|
||||
"prefix" => Some("prefix"),
|
||||
"perms" => Some("perms"),
|
||||
"allperms" => Some("allperms"),
|
||||
"set perm" => Some("set_perm"),
|
||||
"del perm" => Some("del_perm"),
|
||||
"clear perms" => Some("clear_perms"),
|
||||
"setperm" => Some("setperm"),
|
||||
"delperm" => Some("delperm"),
|
||||
"clearperms" => Some("clearperms"),
|
||||
"alias" => Some("alias"),
|
||||
"helpsetting" | "helpetting" => Some("helpsetting"),
|
||||
_ => None,
|
||||
@@ -518,7 +567,7 @@ fn help_page_content(
|
||||
let mut lines = Vec::with_capacity(commands.len());
|
||||
|
||||
for meta in commands {
|
||||
let label = meta.name.replace('_', " ");
|
||||
let label = meta.name.replace('_', "");
|
||||
let alias_key = meta.name;
|
||||
let params = if meta.params.trim().is_empty() {
|
||||
"aucun"
|
||||
@@ -854,14 +903,11 @@ async fn build_command_help_embed(
|
||||
.join("\n");
|
||||
|
||||
let mut embed = CreateEmbed::new()
|
||||
.title(format!(
|
||||
"Aide commande · +{}",
|
||||
doc.command.replace('_', " ")
|
||||
))
|
||||
.title(format!("Aide commande · +{}", doc.command.replace('_', "")))
|
||||
.description(doc.description)
|
||||
.field(
|
||||
"Commande",
|
||||
format!("`+{}`", doc.command.replace('_', " ")),
|
||||
format!("`+{}`", doc.command.replace('_', "")),
|
||||
false,
|
||||
)
|
||||
.field("Clé ACL", format!("`{}`", doc.key), false)
|
||||
|
||||
@@ -33,10 +33,26 @@ pub fn parse_user_or_role(input: &str) -> Option<(&'static str, u64)> {
|
||||
}
|
||||
|
||||
pub fn normalize_command_name(input: &str) -> String {
|
||||
input
|
||||
.trim_start_matches('+')
|
||||
.replace(' ', "_")
|
||||
.to_lowercase()
|
||||
let normalized = input.trim_start_matches('+').to_lowercase();
|
||||
let underscored = normalized
|
||||
.split_whitespace()
|
||||
.collect::<Vec<_>>()
|
||||
.join("_");
|
||||
let compact = underscored.replace('_', "");
|
||||
|
||||
let known = crate::permissions::all_command_keys();
|
||||
|
||||
let direct = crate::permissions::command_key(&underscored, &[]);
|
||||
if known.iter().any(|value| value == &direct) {
|
||||
return direct;
|
||||
}
|
||||
|
||||
let compact_mapped = crate::permissions::command_key(&compact, &[]);
|
||||
if known.iter().any(|value| value == &compact_mapped) {
|
||||
return compact_mapped;
|
||||
}
|
||||
|
||||
underscored
|
||||
}
|
||||
|
||||
pub async fn ensure_owner(ctx: &Context, msg: &Message) -> bool {
|
||||
|
||||
Reference in New Issue
Block a user