reminder-bot/src/commands/moderation_cmds.rs

95 lines
2.3 KiB
Rust
Raw Normal View History

2020-08-18 19:09:21 +00:00
use regex_command_attr::command;
use serenity::{
client::Context,
model::{
channel::{
Message,
},
},
framework::standard::CommandResult,
};
2020-08-26 17:26:28 +00:00
use regex::Regex;
2020-08-27 20:37:44 +00:00
use chrono_tz::Tz;
2020-08-22 00:24:12 +00:00
use crate::{
2020-08-27 11:15:20 +00:00
models::{
ChannelData,
UserData,
},
2020-08-22 00:24:12 +00:00
SQLPool,
};
2020-08-18 19:09:21 +00:00
2020-08-26 17:26:28 +00:00
lazy_static! {
static ref REGEX_CHANNEL: Regex = Regex::new(r#"^\s*<#(\d+)>\s*$"#).unwrap();
}
2020-08-18 19:09:21 +00:00
#[command]
#[supports_dm(false)]
#[permission_level(Restricted)]
2020-08-25 16:19:08 +00:00
#[can_blacklist(false)]
2020-08-18 19:09:21 +00:00
async fn blacklist(ctx: &Context, msg: &Message, args: String) -> CommandResult {
let pool = ctx.data.read().await
.get::<SQLPool>().cloned().expect("Could not get SQLPool from data");
2020-08-26 17:26:28 +00:00
let capture_opt = REGEX_CHANNEL.captures(&args).map(|cap| cap.get(1)).flatten();
let mut channel = match capture_opt {
Some(capture) =>
ChannelData::from_id(capture.as_str().parse::<u64>().unwrap(), pool.clone()).await.unwrap(),
None =>
ChannelData::from_channel(msg.channel(&ctx).await.unwrap(), pool.clone()).await.unwrap(),
};
2020-08-22 00:24:12 +00:00
channel.blacklisted = !channel.blacklisted;
channel.commit_changes(pool).await;
if channel.blacklisted {
2020-08-25 16:19:08 +00:00
let _ = msg.channel_id.say(&ctx, "Blacklisted").await;
2020-08-22 00:24:12 +00:00
}
else {
2020-08-25 16:19:08 +00:00
let _ = msg.channel_id.say(&ctx, "Unblacklisted").await;
2020-08-22 00:24:12 +00:00
}
2020-08-18 19:09:21 +00:00
Ok(())
}
2020-08-27 11:15:20 +00:00
#[command]
async fn timezone(ctx: &Context, msg: &Message, args: String) -> CommandResult {
let pool = ctx.data.read().await
.get::<SQLPool>().cloned().expect("Could not get SQLPool from data");
2020-08-27 20:37:44 +00:00
match args.parse::<Tz>() {
Ok(_) => {
let mut user_data = UserData::from_id(&msg.author, &ctx, pool.clone()).await.unwrap();
user_data.timezone = args;
user_data.commit_changes(pool).await;
let _ = msg.channel_id.say(&ctx, "Timezone changed").await;
}
Err(_) => {
let _ = msg.channel_id.say(&ctx, "Unrecognised timezone").await;
}
}
Ok(())
}
#[command]
async fn language(ctx: &Context, msg: &Message, args: String) -> CommandResult {
let pool = ctx.data.read().await
.get::<SQLPool>().cloned().expect("Could not get SQLPool from data");
let mut user_data = UserData::from_id(&msg.author, &ctx, pool.clone()).await.unwrap();
user_data.commit_changes(pool).await;
2020-08-27 11:15:20 +00:00
Ok(())
}