pain in the arse

This commit is contained in:
jude-lafitteIII 2020-04-28 01:24:06 +01:00
parent e052f3be8c
commit e34d36b4a3
4 changed files with 189 additions and 29 deletions

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="RsBorrowChecker" enabled="false" level="ERROR" enabled_by_default="false" />
</profile>
</component>

12
Cargo.lock generated
View File

@ -129,6 +129,17 @@ version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d5ca2cd0adc3f48f9e9ea5a6bbdf9ccc0bfade884847e484d452414c7ccffb3" checksum = "7d5ca2cd0adc3f48f9e9ea5a6bbdf9ccc0bfade884847e484d452414c7ccffb3"
[[package]]
name = "bigdecimal"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "460825c9e21708024d67c07057cd5560e5acdccac85de0de624a81d3de51bacb"
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
[[package]] [[package]]
name = "bitflags" name = "bitflags"
version = "1.2.1" version = "1.2.1"
@ -1357,6 +1368,7 @@ dependencies = [
"async-native-tls", "async-native-tls",
"async-stream", "async-stream",
"base64 0.12.0", "base64 0.12.0",
"bigdecimal",
"bitflags", "bitflags",
"byteorder", "byteorder",
"crossbeam-queue", "crossbeam-queue",

View File

@ -6,6 +6,6 @@ edition = "2018"
[dependencies] [dependencies]
serenity = {path = "/home/jude/serenity", features = ["voice"]} serenity = {path = "/home/jude/serenity", features = ["voice"]}
sqlx = {version = "0.3", default-features = false, features = ["runtime-tokio", "macros", "mysql"]} sqlx = {version = "0.3", default-features = false, features = ["runtime-tokio", "macros", "mysql", "bigdecimal"]}
dotenv = "0.15" dotenv = "0.15"
tokio = {version = "0.2.19", features = ["fs"]} tokio = {version = "0.2.19", features = ["fs"]}

View File

@ -15,7 +15,10 @@ use serenity::{
model::{ model::{
channel::Message channel::Message
}, },
prelude::*, prelude::{
Mutex as SerenityMutex,
*
},
voice::ffmpeg, voice::ffmpeg,
}; };
@ -38,6 +41,7 @@ use std::{
path::Path, path::Path,
sync::Arc, sync::Arc,
}; };
use serenity::model::guild::Guild;
struct SQLPool; struct SQLPool;
@ -48,11 +52,13 @@ impl TypeMapKey for SQLPool {
struct VoiceManager; struct VoiceManager;
impl TypeMapKey for VoiceManager { impl TypeMapKey for VoiceManager {
type Value = Arc<Mutex<ClientVoiceManager>>; type Value = Arc<SerenityMutex<ClientVoiceManager>>;
} }
static THEME_COLOR: u32 = 0x00e0f3;
#[group] #[group]
#[commands(play)] #[commands(play, info, )]
struct General; struct General;
struct Sound { struct Sound {
@ -61,6 +67,67 @@ struct Sound {
src: Vec<u8>, src: Vec<u8>,
} }
struct GuildData {
id: u64,
name: Option<String>,
prefix: String,
volume: u8,
}
impl GuildData {
async fn get_from_id(guild_id: u64, db_pool: MySqlPool) -> Result<GuildData, Box<dyn std::error::Error>> {
let guild = sqlx::query_as!(
GuildData,
"
SELECT *
FROM servers
WHERE id = ?
", guild_id
)
.fetch_one(&db_pool)
.await?;
Ok(guild)
}
async fn create_from_id(guild: Guild, db_pool: MySqlPool) -> Result<GuildData, Box<dyn std::error::Error>> {
let guild_data = sqlx::query!(
"
INSERT INTO servers (id, name)
VALUES (?, ?)
", guild.id.as_u64(), guild.name
)
.execute(&db_pool)
.await?;
Ok(GuildData {
id: *guild.id.as_u64(),
name: Some(guild.name),
prefix: String::from("?"),
volume: 100,
})
}
async fn commit(&self, db_pool: MySqlPool) -> Result<(), Box<dyn std::error::Error>> {
sqlx::query!(
"
UPDATE servers
SET
name = ?,
prefix = ?,
volume = ?
WHERE
id = ?
",
self.name, self.prefix, self.volume, self.id
)
.execute(&db_pool)
.await?;
Ok(())
}
}
// create event handler for bot // create event handler for bot
struct Handler; struct Handler;
@ -73,7 +140,16 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
dotenv()?; dotenv()?;
let framework = StandardFramework::new() let framework = StandardFramework::new()
.configure(|c| c.prefix("?")) .configure(|c| c.dynamic_prefix(|ctx, msg| Box::pin(async move {
let pool = ctx.data.read().await
.get::<SQLPool>().cloned().expect("Could not get SQLPool from data");
match GuildData::get_from_id(*msg.guild_id.unwrap().as_u64(), pool).await {
Ok(guild) => Some(guild.prefix),
Err(_) => Some(String::from("?"))
}
})))
.group(&GENERAL_GROUP); .group(&GENERAL_GROUP);
let mut client = Client::new_with_extras( let mut client = Client::new_with_extras(
@ -98,20 +174,35 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(()) Ok(())
} }
async fn search_for_sound(query: &str, db_pool: MySqlPool) -> Result<Sound, Box<dyn std::error::Error>> { async fn search_for_sound(query: &str, guild_id: u64, user_id: u64, db_pool: MySqlPool) -> Result<Sound, sqlx::Error> {
if query.to_lowercase().starts_with("id:") { fn extract_id(s: &str) -> Option<u32> {
let id = query[3..].parse::<u32>()?; if s.to_lowercase().starts_with("id:") {
match s[3..].parse::<u32>() {
Ok(id) => Some(id),
Err(_) => None
}
}
else {
None
}
}
if let Some(id) = extract_id(&query[3..]) {
let sound = sqlx::query_as_unchecked!( let sound = sqlx::query_as_unchecked!(
Sound, Sound,
" "
SELECT id, name, src SELECT id, name, src
FROM sounds FROM sounds
WHERE id = ? WHERE id = ? AND (
public = 1 OR
uploader_id = ? OR
server_id = ?
)
LIMIT 1 LIMIT 1
", ",
id id, user_id, guild_id
) )
.fetch_one(&db_pool) .fetch_one(&db_pool)
.await?; .await?;
@ -126,11 +217,15 @@ SELECT id, name, src
" "
SELECT id, name, src SELECT id, name, src
FROM sounds FROM sounds
WHERE name = ? WHERE name = ? AND (
ORDER BY rand() public = 1 OR
uploader_id = ? OR
server_id = ?
)
ORDER BY rand(), public = 1, server_id = ?, uploader_id = ?
LIMIT 1 LIMIT 1
", ",
name name, user_id, guild_id, guild_id, user_id
) )
.fetch_one(&db_pool) .fetch_one(&db_pool)
.await?; .await?;
@ -179,32 +274,44 @@ async fn play(ctx: &mut Context, msg: &Message, args: Args) -> CommandResult {
let pool = ctx.data.read().await let pool = ctx.data.read().await
.get::<SQLPool>().cloned().expect("Could not get SQLPool from data"); .get::<SQLPool>().cloned().expect("Could not get SQLPool from data");
let sound = search_for_sound(search_term, pool).await?; let sound_res = search_for_sound(
search_term,
*guild_id.as_u64(),
*msg.author.id.as_u64(),
pool).await;
let fp = store_sound_source(&sound).await?; match sound_res {
Ok(sound) => {
let fp = store_sound_source(&sound).await?;
let voice_manager_lock = ctx.data.read().await let voice_manager_lock = ctx.data.read().await
.get::<VoiceManager>().cloned().expect("Could not get VoiceManager from data"); .get::<VoiceManager>().cloned().expect("Could not get VoiceManager from data");
let mut voice_manager = voice_manager_lock.lock().await; let mut voice_manager = voice_manager_lock.lock().await;
match voice_manager.get_mut(guild_id) { match voice_manager.get_mut(guild_id) {
Some(handler) => {
// play sound
handler.play(ffmpeg(fp).await?);
}
None => {
// try & join a voice channel
match voice_manager.join(guild_id, user_channel) {
Some(handler) => { Some(handler) => {
// play sound
handler.play(ffmpeg(fp).await?); handler.play(ffmpeg(fp).await?);
} }
None => { None => {
msg.channel_id.say(&ctx, "Failed to join channel").await?; // try & join a voice channel
match voice_manager.join(guild_id, user_channel) {
Some(handler) => {
handler.play(ffmpeg(fp).await?);
}
None => {
msg.channel_id.say(&ctx, "Failed to join channel").await?;
}
};
} }
}; }
}
Err(_) => {
msg.channel_id.say(&ctx, "Couldn't find sound by term provided").await?;
} }
} }
} }
@ -216,3 +323,38 @@ async fn play(ctx: &mut Context, msg: &Message, args: Args) -> CommandResult {
Ok(()) Ok(())
} }
#[command]
async fn help(ctx: &mut Context, msg: &Message, _args: Args) -> CommandResult {
msg.channel_id.send_message(&ctx, |m| m
.embed(|e| e
.title("Help")
.color(THEME_COLOR)
.description("Please visit our website at https://soundfx.jellywx.com/help"))).await?;
Ok(())
}
#[command]
async fn info(ctx: &mut Context, msg: &Message, _args: Args) -> CommandResult {
msg.channel_id.send_message(&ctx, |m| m
.embed(|e| e
.title("Info")
.color(THEME_COLOR)
.description("Default prefix: `?`
Reset prefix: `@SoundFX prefix ?`
Invite me: https://discordapp.com/oauth2/authorize?client_id=430384808200372245&scope=bot&permissions=36703232
**Welcome to SoundFX!**
Developer: <@203532103185465344>
Find me on https://discord.jellywx.com/ and on https://github.com/JellyWX :)
**An online dashboard is available!** Visit https://soundfx.jellywx.com/dashboard
There is a maximum sound limit per user. This can be removed by donating at https://patreon.com/jellywx"))).await?;
Ok(())
}