blacklist command
This commit is contained in:
parent
afe3dbc525
commit
ff09ccfd62
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -1093,6 +1093,7 @@ dependencies = [
|
||||
"chrono",
|
||||
"chrono-tz",
|
||||
"dotenv",
|
||||
"lazy_static",
|
||||
"log",
|
||||
"regex",
|
||||
"regex_command_attr",
|
||||
|
@ -15,6 +15,7 @@ async-trait = "0.1.36"
|
||||
log = "0.4.11"
|
||||
chrono = "0.4"
|
||||
chrono-tz = "0.5"
|
||||
lazy_static = "1.4.0"
|
||||
|
||||
[dependencies.regex_command_attr]
|
||||
path = "./regex_command_attr"
|
||||
|
@ -14,6 +14,7 @@ use crate::THEME_COLOR;
|
||||
|
||||
|
||||
#[command]
|
||||
#[can_blacklist(false)]
|
||||
async fn help(ctx: &Context, msg: &Message, _args: String) -> CommandResult {
|
||||
msg.channel_id.send_message(ctx, |m| m
|
||||
.embed(|e| e
|
||||
|
@ -10,11 +10,17 @@ use serenity::{
|
||||
framework::standard::CommandResult,
|
||||
};
|
||||
|
||||
use regex::Regex;
|
||||
|
||||
use crate::{
|
||||
models::ChannelData,
|
||||
SQLPool,
|
||||
};
|
||||
|
||||
lazy_static! {
|
||||
static ref REGEX_CHANNEL: Regex = Regex::new(r#"^\s*<#(\d+)>\s*$"#).unwrap();
|
||||
}
|
||||
|
||||
#[command]
|
||||
#[supports_dm(false)]
|
||||
#[permission_level(Restricted)]
|
||||
@ -23,7 +29,15 @@ 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");
|
||||
|
||||
let mut channel = ChannelData::from_channel(msg.channel(&ctx).await.unwrap(), pool.clone()).await.unwrap();
|
||||
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(),
|
||||
};
|
||||
|
||||
channel.blacklisted = !channel.blacklisted;
|
||||
channel.commit_changes(pool).await;
|
||||
|
@ -320,7 +320,7 @@ impl Framework for RegexFramework {
|
||||
let command = self.commands.get(full_match.name("cmd").unwrap().as_str()).unwrap();
|
||||
let channel_data = ChannelData::from_channel(msg.channel(&ctx).await.unwrap(), pool).await;
|
||||
|
||||
if !command.can_blacklist || channel_data.map(|c| c.blacklisted).unwrap_or(false) {
|
||||
if !command.can_blacklist || !channel_data.map(|c| c.blacklisted).unwrap_or(false) {
|
||||
let args = full_match.name("args")
|
||||
.map(|m| m.as_str())
|
||||
.unwrap_or("")
|
||||
|
@ -1,3 +1,6 @@
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
||||
mod models;
|
||||
mod framework;
|
||||
mod commands;
|
||||
|
@ -59,6 +59,15 @@ SELECT id, guild, name, prefix FROM guilds WHERE guild = ?
|
||||
}
|
||||
|
||||
impl ChannelData {
|
||||
pub async fn from_id(channel_id: u64, pool: MySqlPool) -> Option<Self> {
|
||||
sqlx::query_as_unchecked!(Self,
|
||||
"
|
||||
SELECT * FROM channels WHERE channel = ?
|
||||
", channel_id)
|
||||
.fetch_one(&pool)
|
||||
.await.ok()
|
||||
}
|
||||
|
||||
pub async fn from_channel(channel: Channel, pool: MySqlPool) -> Result<Self, Box<dyn std::error::Error + Sync + Send>> {
|
||||
let channel_id = channel.id().as_u64().clone();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user