Compare commits
10 Commits
2c91c744dc
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
6b3629436a
|
|||
| feccbebd4d | |||
| d6a54dfc06 | |||
|
fa17ed75f6
|
|||
| b19f6e552c | |||
|
0bee437e53
|
|||
|
3781785a50
|
|||
| cabae9ea19 | |||
|
54c36688b7
|
|||
|
55fe212424
|
@@ -2,7 +2,9 @@ name: tests
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
pull_request:
|
|
||||||
|
paths-ignore:
|
||||||
|
- 'README.md'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
@@ -36,6 +38,11 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: sudo apt-get update
|
- run: sudo apt-get update
|
||||||
- run: sudo apt-get install -y cmake
|
- run: sudo apt-get install -y cmake
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
- name: Install yt-dlp
|
||||||
|
run: pip install yt-dlp
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose --all-features
|
run: cargo test --verbose --all-features
|
||||||
|
|||||||
@@ -26,6 +26,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
platforms: |
|
platforms: |
|
||||||
linux/amd64
|
linux/amd64
|
||||||
linux/arm64
|
# linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: jheuel/ohrwurm:latest
|
tags: jheuel/ohrwurm:latest
|
||||||
|
|||||||
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@@ -37,6 +37,11 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: sudo apt-get update
|
- run: sudo apt-get update
|
||||||
- run: sudo apt-get install -y cmake
|
- run: sudo apt-get install -y cmake
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
- name: Install yt-dlp
|
||||||
|
run: pip install yt-dlp
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose --all-features
|
run: cargo test --verbose --all-features
|
||||||
|
|||||||
11
Cargo.lock
generated
11
Cargo.lock
generated
@@ -1064,9 +1064,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "memchr"
|
name = "memchr"
|
||||||
version = "2.7.2"
|
version = "2.7.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mime"
|
name = "mime"
|
||||||
@@ -1209,6 +1209,8 @@ name = "ohrwurm"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
"async-trait",
|
||||||
|
"dashmap",
|
||||||
"dotenv",
|
"dotenv",
|
||||||
"futures",
|
"futures",
|
||||||
"regex",
|
"regex",
|
||||||
@@ -1227,6 +1229,7 @@ dependencies = [
|
|||||||
"twilight-standby",
|
"twilight-standby",
|
||||||
"twilight-util",
|
"twilight-util",
|
||||||
"url",
|
"url",
|
||||||
|
"uuid",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1488,9 +1491,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "redox_syscall"
|
name = "redox_syscall"
|
||||||
version = "0.5.1"
|
version = "0.5.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
|
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.5.0",
|
"bitflags 2.5.0",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -25,3 +25,6 @@ serde = { version = "1.0", features = ["derive"] }
|
|||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
url = "2.5.0"
|
url = "2.5.0"
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
|
dashmap = "5.5.3"
|
||||||
|
async-trait = "0.1.80"
|
||||||
|
uuid = "1.8.0"
|
||||||
|
|||||||
@@ -1,2 +1,20 @@
|
|||||||
|
#[allow(dead_code)]
|
||||||
pub(crate) const BLURPLE: u32 = 0x58_65_F2;
|
pub(crate) const BLURPLE: u32 = 0x58_65_F2;
|
||||||
|
#[allow(dead_code)]
|
||||||
pub(crate) const YELLOW: u32 = 0xFE_E7_5C;
|
pub(crate) const YELLOW: u32 = 0xFE_E7_5C;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const WHITE: u32 = 0xFF_FF_FF;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const GREYPLE: u32 = 0x99_AA_B5;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const BLACK: u32 = 0x23_27_2A;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const DARK_BUT_NOT_BLACK: u32 = 0x2C_2F_33;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const NOT_QUITE_BLACK: u32 = 0x23_27_2A;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const GREEN: u32 = 0x57_F2_87;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const FUCHSIA: u32 = 0xEB_45_9E;
|
||||||
|
#[allow(dead_code)]
|
||||||
|
pub(crate) const RED: u32 = 0xED_42_45;
|
||||||
|
|||||||
129
src/commands/loop_queue.rs
Normal file
129
src/commands/loop_queue.rs
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
use crate::metadata::MetadataMap;
|
||||||
|
use crate::state::{Settings, State, StateRef};
|
||||||
|
use async_trait::async_trait;
|
||||||
|
use songbird::{Event, EventContext, EventHandler, TrackEvent};
|
||||||
|
use std::ops::Sub;
|
||||||
|
use std::time::Duration;
|
||||||
|
use std::{error::Error, sync::Arc};
|
||||||
|
use twilight_model::{
|
||||||
|
gateway::payload::incoming::InteractionCreate,
|
||||||
|
http::interaction::{InteractionResponse, InteractionResponseType},
|
||||||
|
id::{marker::GuildMarker, Id},
|
||||||
|
};
|
||||||
|
use twilight_util::builder::InteractionResponseDataBuilder;
|
||||||
|
|
||||||
|
pub(crate) async fn loop_queue(
|
||||||
|
interaction: Box<InteractionCreate>,
|
||||||
|
state: State,
|
||||||
|
) -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
|
||||||
|
tracing::debug!(
|
||||||
|
"loop command in guild {:?} in channel {:?} by {:?}",
|
||||||
|
interaction.guild_id,
|
||||||
|
interaction.channel,
|
||||||
|
interaction.author(),
|
||||||
|
);
|
||||||
|
|
||||||
|
let guild_id: Id<GuildMarker> = if let Some(guild_id) = interaction.guild_id {
|
||||||
|
guild_id
|
||||||
|
} else {
|
||||||
|
return Ok(());
|
||||||
|
};
|
||||||
|
|
||||||
|
state
|
||||||
|
.guild_settings
|
||||||
|
.entry(guild_id)
|
||||||
|
.or_insert_with(|| Settings { loop_queue: false });
|
||||||
|
|
||||||
|
state.guild_settings.entry(guild_id).and_modify(|settings| {
|
||||||
|
settings.loop_queue = !settings.loop_queue;
|
||||||
|
println!("loop_queue: {}", settings.loop_queue);
|
||||||
|
});
|
||||||
|
|
||||||
|
let looping = state
|
||||||
|
.guild_settings
|
||||||
|
.get(&guild_id)
|
||||||
|
.expect("Cannot get loop state")
|
||||||
|
.loop_queue;
|
||||||
|
|
||||||
|
if let Some(call_lock) = state.songbird.get(guild_id) {
|
||||||
|
let mut call = call_lock.lock().await;
|
||||||
|
call.add_global_event(
|
||||||
|
Event::Track(TrackEvent::End),
|
||||||
|
TrackEndNotifier {
|
||||||
|
guild_id,
|
||||||
|
state: Arc::clone(&state),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
let message = if looping {
|
||||||
|
"I'm now looping the current queue!".to_string()
|
||||||
|
} else {
|
||||||
|
"I'm not looping anymore!".to_string()
|
||||||
|
};
|
||||||
|
|
||||||
|
let interaction_response_data = InteractionResponseDataBuilder::new()
|
||||||
|
.content(message)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
let response = InteractionResponse {
|
||||||
|
kind: InteractionResponseType::ChannelMessageWithSource,
|
||||||
|
data: Some(interaction_response_data),
|
||||||
|
};
|
||||||
|
|
||||||
|
state
|
||||||
|
.http
|
||||||
|
.interaction(interaction.application_id)
|
||||||
|
.create_response(interaction.id, &interaction.token, &response)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TrackEndNotifier {
|
||||||
|
guild_id: Id<GuildMarker>,
|
||||||
|
state: Arc<StateRef>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[async_trait]
|
||||||
|
impl EventHandler for TrackEndNotifier {
|
||||||
|
async fn act(&self, ctx: &EventContext<'_>) -> Option<Event> {
|
||||||
|
if !self
|
||||||
|
.state
|
||||||
|
.guild_settings
|
||||||
|
.get(&self.guild_id)
|
||||||
|
.unwrap()
|
||||||
|
.loop_queue
|
||||||
|
{
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let EventContext::Track(track_list) = ctx else {
|
||||||
|
return None;
|
||||||
|
};
|
||||||
|
let (_, track_handle) = track_list.first()?;
|
||||||
|
if let Some(call_lock) = self.state.songbird.get(self.guild_id) {
|
||||||
|
let mut call = call_lock.lock().await;
|
||||||
|
|
||||||
|
// get metadata from finished track
|
||||||
|
let old_typemap_lock = track_handle.typemap().read().await;
|
||||||
|
let old_metadata = old_typemap_lock.get::<MetadataMap>().unwrap();
|
||||||
|
|
||||||
|
// enqueue track
|
||||||
|
let handle = call.enqueue_with_preload(
|
||||||
|
old_metadata.src.clone().into(),
|
||||||
|
old_metadata.duration.map(|duration| -> Duration {
|
||||||
|
if duration.as_secs() > 5 {
|
||||||
|
duration.sub(Duration::from_secs(5))
|
||||||
|
} else {
|
||||||
|
duration
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
// insert metadata into new track
|
||||||
|
let mut new_typemap = handle.typemap().write().await;
|
||||||
|
new_typemap.insert::<MetadataMap>(old_metadata.clone());
|
||||||
|
}
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,6 +7,12 @@ pub(crate) use leave::leave;
|
|||||||
mod pause;
|
mod pause;
|
||||||
pub(crate) use pause::pause;
|
pub(crate) use pause::pause;
|
||||||
|
|
||||||
|
mod skip;
|
||||||
|
pub(crate) use skip::skip;
|
||||||
|
|
||||||
|
mod loop_queue;
|
||||||
|
pub(crate) use loop_queue::loop_queue;
|
||||||
|
|
||||||
mod play;
|
mod play;
|
||||||
pub(crate) use play::play;
|
pub(crate) use play::play;
|
||||||
|
|
||||||
@@ -29,12 +35,14 @@ pub(crate) fn get_chat_commands() -> Vec<twilight_model::application::command::C
|
|||||||
vec![
|
vec![
|
||||||
CommandBuilder::new("join", "Join the channel", CommandType::ChatInput).build(),
|
CommandBuilder::new("join", "Join the channel", CommandType::ChatInput).build(),
|
||||||
CommandBuilder::new("leave", "Leave the channel", CommandType::ChatInput).build(),
|
CommandBuilder::new("leave", "Leave the channel", CommandType::ChatInput).build(),
|
||||||
|
CommandBuilder::new("loop", "Loop queue", CommandType::ChatInput).build(),
|
||||||
|
CommandBuilder::new("skip", "Skip track", CommandType::ChatInput).build(),
|
||||||
|
CommandBuilder::new("queue", "Print track queue", CommandType::ChatInput).build(),
|
||||||
|
CommandBuilder::new("stop", "Stop playing", CommandType::ChatInput).build(),
|
||||||
CommandBuilder::new("pause", "Pause playing", CommandType::ChatInput).build(),
|
CommandBuilder::new("pause", "Pause playing", CommandType::ChatInput).build(),
|
||||||
|
CommandBuilder::new("resume", "Resume playing", CommandType::ChatInput).build(),
|
||||||
CommandBuilder::new("play", "Add a song to the queue", CommandType::ChatInput)
|
CommandBuilder::new("play", "Add a song to the queue", CommandType::ChatInput)
|
||||||
.option(StringBuilder::new("query", "URL of a song").required(true))
|
.option(StringBuilder::new("query", "URL of a song").required(true))
|
||||||
.build(),
|
.build(),
|
||||||
CommandBuilder::new("queue", "Print track queue", CommandType::ChatInput).build(),
|
|
||||||
CommandBuilder::new("resume", "Resume playing", CommandType::ChatInput).build(),
|
|
||||||
CommandBuilder::new("stop", "Stop playing", CommandType::ChatInput).build(),
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,10 @@ use crate::state::State;
|
|||||||
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use songbird::input::{Compose, YoutubeDl};
|
use songbird::input::{Compose, YoutubeDl};
|
||||||
|
use songbird::tracks::Track;
|
||||||
use std::io::{BufRead, BufReader};
|
use std::io::{BufRead, BufReader};
|
||||||
use std::{error::Error, ops::Sub, time::Duration};
|
use std::ops::Sub;
|
||||||
|
use std::{error::Error, time::Duration};
|
||||||
use tokio::process::Command;
|
use tokio::process::Command;
|
||||||
use tracing::debug;
|
use tracing::debug;
|
||||||
use twilight_model::channel::message::MessageFlags;
|
use twilight_model::channel::message::MessageFlags;
|
||||||
@@ -18,11 +20,12 @@ use url::Url;
|
|||||||
|
|
||||||
#[derive(Debug, Serialize, Deserialize)]
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
struct YouTubeTrack {
|
struct YouTubeTrack {
|
||||||
url: String,
|
url: Option<String>,
|
||||||
|
original_url: Option<String>,
|
||||||
title: String,
|
title: String,
|
||||||
channel: String,
|
channel: String,
|
||||||
playlist: String,
|
playlist: Option<String>,
|
||||||
playlist_id: String,
|
playlist_id: Option<String>,
|
||||||
duration_string: String,
|
duration_string: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,6 +47,18 @@ async fn get_tracks(
|
|||||||
.map_while(Result::ok)
|
.map_while(Result::ok)
|
||||||
.flat_map(|line| serde_json::from_str(&line))
|
.flat_map(|line| serde_json::from_str(&line))
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
|
if tracks.is_empty() {
|
||||||
|
if let Ok(stderr) = String::from_utf8(output.stderr) {
|
||||||
|
if stderr.contains("This video is only available to Music Premium members") {
|
||||||
|
return Err("This video is only available to Music Premium members".into());
|
||||||
|
}
|
||||||
|
if stderr.contains("YouTube said: The playlist does not exist.") {
|
||||||
|
return Err("YouTube said: The playlist does not exist.".into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Err("No tracks found".into());
|
||||||
|
}
|
||||||
tracing::debug!("tracks: {:?}", tracks);
|
tracing::debug!("tracks: {:?}", tracks);
|
||||||
Ok(tracks)
|
Ok(tracks)
|
||||||
}
|
}
|
||||||
@@ -96,14 +111,38 @@ pub(crate) async fn play(
|
|||||||
|
|
||||||
debug!("query: {:?}", query);
|
debug!("query: {:?}", query);
|
||||||
|
|
||||||
let tracks = get_tracks(query).await?;
|
let tracks = match get_tracks(query).await {
|
||||||
|
Err(e) => {
|
||||||
|
let content = format!("{}", e);
|
||||||
|
let embeds = vec![EmbedBuilder::new()
|
||||||
|
.description(content)
|
||||||
|
.color(colors::RED)
|
||||||
|
.build()];
|
||||||
|
state
|
||||||
|
.http
|
||||||
|
.interaction(interaction.application_id)
|
||||||
|
.update_response(&interaction.token)
|
||||||
|
.embeds(Some(&embeds))?
|
||||||
|
.await?;
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
Ok(tracks) => tracks,
|
||||||
|
};
|
||||||
|
|
||||||
if tracks.len() > 1 {
|
if tracks.len() > 1 {
|
||||||
let first_track = tracks.first().unwrap();
|
let first_track = tracks.first().unwrap();
|
||||||
let content = format!(
|
let content = format!(
|
||||||
"Adding playlist [{}]({})",
|
"Adding playlist [{}]({})",
|
||||||
first_track.playlist,
|
first_track
|
||||||
build_playlist_url(&first_track.playlist_id)
|
.playlist
|
||||||
|
.clone()
|
||||||
|
.unwrap_or("Unknown".to_string()),
|
||||||
|
build_playlist_url(
|
||||||
|
&first_track
|
||||||
|
.playlist_id
|
||||||
|
.clone()
|
||||||
|
.unwrap_or("Unknown".to_string())
|
||||||
|
)
|
||||||
);
|
);
|
||||||
let embeds = vec![EmbedBuilder::new()
|
let embeds = vec![EmbedBuilder::new()
|
||||||
.description(content)
|
.description(content)
|
||||||
@@ -125,8 +164,11 @@ pub(crate) async fn play(
|
|||||||
let mut tracks_added = vec![];
|
let mut tracks_added = vec![];
|
||||||
for track in &tracks {
|
for track in &tracks {
|
||||||
tracing::debug!("track: {:?}", track);
|
tracing::debug!("track: {:?}", track);
|
||||||
let url = track.url.clone();
|
let url = track.url.clone().or(track.original_url.clone()).ok_or("")?;
|
||||||
let mut src = YoutubeDl::new(reqwest::Client::new(), url.to_string());
|
let mut src = YoutubeDl::new(reqwest::Client::new(), url.clone());
|
||||||
|
let src_copy = src.clone();
|
||||||
|
let track: Track = src_copy.into();
|
||||||
|
|
||||||
if let Ok(metadata) = src.aux_metadata().await {
|
if let Ok(metadata) = src.aux_metadata().await {
|
||||||
debug!("metadata: {:?}", metadata);
|
debug!("metadata: {:?}", metadata);
|
||||||
tracks_added.push((url.clone(), metadata.title.clone()));
|
tracks_added.push((url.clone(), metadata.title.clone()));
|
||||||
@@ -134,7 +176,7 @@ pub(crate) async fn play(
|
|||||||
if let Some(call_lock) = state.songbird.get(guild_id) {
|
if let Some(call_lock) = state.songbird.get(guild_id) {
|
||||||
let mut call = call_lock.lock().await;
|
let mut call = call_lock.lock().await;
|
||||||
let handle = call.enqueue_with_preload(
|
let handle = call.enqueue_with_preload(
|
||||||
src.into(),
|
track,
|
||||||
metadata.duration.map(|duration| -> Duration {
|
metadata.duration.map(|duration| -> Duration {
|
||||||
if duration.as_secs() > 5 {
|
if duration.as_secs() > 5 {
|
||||||
duration.sub(Duration::from_secs(5))
|
duration.sub(Duration::from_secs(5))
|
||||||
@@ -148,6 +190,7 @@ pub(crate) async fn play(
|
|||||||
title: metadata.title,
|
title: metadata.title,
|
||||||
duration: metadata.duration,
|
duration: metadata.duration,
|
||||||
url,
|
url,
|
||||||
|
src,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -169,8 +212,16 @@ pub(crate) async fn play(
|
|||||||
let first_track = tracks.first().unwrap();
|
let first_track = tracks.first().unwrap();
|
||||||
content.push_str(&format!(
|
content.push_str(&format!(
|
||||||
"Adding playlist: [{}]({})\n",
|
"Adding playlist: [{}]({})\n",
|
||||||
&first_track.playlist,
|
&first_track
|
||||||
build_playlist_url(&first_track.playlist_id)
|
.playlist
|
||||||
|
.clone()
|
||||||
|
.unwrap_or("Unknown".to_string()),
|
||||||
|
build_playlist_url(
|
||||||
|
&first_track
|
||||||
|
.playlist_id
|
||||||
|
.clone()
|
||||||
|
.unwrap_or("Unknown".to_string())
|
||||||
|
)
|
||||||
));
|
));
|
||||||
content.push_str(&format!(
|
content.push_str(&format!(
|
||||||
"Added {} tracks to the queue:\n",
|
"Added {} tracks to the queue:\n",
|
||||||
@@ -192,3 +243,53 @@ pub(crate) async fn play(
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_get_tracks() {
|
||||||
|
let urls = [
|
||||||
|
"https://www.youtube.com/playlist?list=PLFxxhcEeloYa1OlnWD6UgxlVQKJH5i_0p",
|
||||||
|
"https://music.youtube.com/watch?v=RO75ZzqUOJw",
|
||||||
|
"https://www.youtube.com/watch?v=qVHyl0P_P-M",
|
||||||
|
"https://www.youtube.com/watch?v=34CZjsEI1yU",
|
||||||
|
];
|
||||||
|
for url in urls.iter() {
|
||||||
|
println!("url: {:?}", url);
|
||||||
|
let tracks = get_tracks(url.to_string()).await.unwrap();
|
||||||
|
assert!(!tracks.is_empty());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_premium_tracks() {
|
||||||
|
let urls = ["https://www.youtube.com/watch?v=QgMZRmxQ0Dc"];
|
||||||
|
for url in urls.iter() {
|
||||||
|
println!("url: {:?}", url);
|
||||||
|
let tracks = get_tracks(url.to_string()).await;
|
||||||
|
assert!(tracks.is_err());
|
||||||
|
assert!(tracks
|
||||||
|
.err()
|
||||||
|
.unwrap()
|
||||||
|
.to_string()
|
||||||
|
.contains("This video is only available to Music Premium members"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_playlist_does_not_exist_tracks() {
|
||||||
|
let urls = ["https://www.youtube.com/playlist?list=PLox0oG0uy8Lc1IaIfGyrvtuRItuEyJiyG"];
|
||||||
|
for url in urls.iter() {
|
||||||
|
println!("url: {:?}", url);
|
||||||
|
let tracks = get_tracks(url.to_string()).await;
|
||||||
|
assert!(tracks.is_err());
|
||||||
|
assert!(tracks
|
||||||
|
.err()
|
||||||
|
.unwrap()
|
||||||
|
.to_string()
|
||||||
|
.contains("YouTube said: The playlist does not exist."));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
45
src/commands/skip.rs
Normal file
45
src/commands/skip.rs
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
use crate::state::State;
|
||||||
|
use std::error::Error;
|
||||||
|
use twilight_model::{
|
||||||
|
gateway::payload::incoming::InteractionCreate,
|
||||||
|
http::interaction::{InteractionResponse, InteractionResponseType},
|
||||||
|
};
|
||||||
|
use twilight_util::builder::InteractionResponseDataBuilder;
|
||||||
|
|
||||||
|
pub(crate) async fn skip(
|
||||||
|
interaction: Box<InteractionCreate>,
|
||||||
|
state: State,
|
||||||
|
) -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
|
||||||
|
tracing::debug!(
|
||||||
|
"skip command in guild {:?} in channel {:?} by {:?}",
|
||||||
|
interaction.guild_id,
|
||||||
|
interaction.channel,
|
||||||
|
interaction.author(),
|
||||||
|
);
|
||||||
|
|
||||||
|
let Some(guild_id) = interaction.guild_id else {
|
||||||
|
return Ok(());
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(call_lock) = state.songbird.get(guild_id) {
|
||||||
|
let call = call_lock.lock().await;
|
||||||
|
call.queue().skip()?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let interaction_response_data = InteractionResponseDataBuilder::new()
|
||||||
|
.content("Skipped a track")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
let response = InteractionResponse {
|
||||||
|
kind: InteractionResponseType::ChannelMessageWithSource,
|
||||||
|
data: Some(interaction_response_data),
|
||||||
|
};
|
||||||
|
|
||||||
|
state
|
||||||
|
.http
|
||||||
|
.interaction(interaction.application_id)
|
||||||
|
.create_response(interaction.id, &interaction.token, &response)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
use crate::commands::queue::{build_action_row, build_queue_embeds, TRACKS_PER_PAGE};
|
use crate::commands::queue::{build_action_row, build_queue_embeds, TRACKS_PER_PAGE};
|
||||||
use crate::commands::{delete, join, leave, pause, play, queue, resume, stop};
|
use crate::commands::{delete, join, leave, loop_queue, pause, play, queue, resume, skip, stop};
|
||||||
use crate::state::State;
|
use crate::state::State;
|
||||||
use futures::Future;
|
use futures::Future;
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
@@ -19,6 +19,8 @@ enum InteractionCommand {
|
|||||||
Play(String),
|
Play(String),
|
||||||
Stop,
|
Stop,
|
||||||
Pause,
|
Pause,
|
||||||
|
Skip,
|
||||||
|
Loop,
|
||||||
Resume,
|
Resume,
|
||||||
Leave,
|
Leave,
|
||||||
Join,
|
Join,
|
||||||
@@ -108,6 +110,12 @@ impl Handler {
|
|||||||
InteractionCommand::Pause => {
|
InteractionCommand::Pause => {
|
||||||
spawn(pause(interaction, Arc::clone(&self.state)))
|
spawn(pause(interaction, Arc::clone(&self.state)))
|
||||||
}
|
}
|
||||||
|
InteractionCommand::Skip => {
|
||||||
|
spawn(skip(interaction, Arc::clone(&self.state)))
|
||||||
|
}
|
||||||
|
InteractionCommand::Loop => {
|
||||||
|
spawn(loop_queue(interaction, Arc::clone(&self.state)))
|
||||||
|
}
|
||||||
InteractionCommand::Resume => {
|
InteractionCommand::Resume => {
|
||||||
spawn(resume(interaction, Arc::clone(&self.state)))
|
spawn(resume(interaction, Arc::clone(&self.state)))
|
||||||
}
|
}
|
||||||
@@ -191,6 +199,8 @@ fn parse_interaction_command(command: &CommandData) -> InteractionCommand {
|
|||||||
}
|
}
|
||||||
"stop" => InteractionCommand::Stop,
|
"stop" => InteractionCommand::Stop,
|
||||||
"pause" => InteractionCommand::Pause,
|
"pause" => InteractionCommand::Pause,
|
||||||
|
"skip" => InteractionCommand::Skip,
|
||||||
|
"loop" => InteractionCommand::Loop,
|
||||||
"resume" => InteractionCommand::Resume,
|
"resume" => InteractionCommand::Resume,
|
||||||
"leave" => InteractionCommand::Leave,
|
"leave" => InteractionCommand::Leave,
|
||||||
"join" => InteractionCommand::Join,
|
"join" => InteractionCommand::Join,
|
||||||
|
|||||||
@@ -77,6 +77,7 @@ async fn main() -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
|
|||||||
cache,
|
cache,
|
||||||
songbird,
|
songbird,
|
||||||
standby: Standby::new(),
|
standby: Standby::new(),
|
||||||
|
guild_settings: Default::default(),
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
use songbird::typemap::TypeMapKey;
|
use songbird::{input::YoutubeDl, typemap::TypeMapKey};
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
pub(crate) struct Metadata {
|
pub(crate) struct Metadata {
|
||||||
pub(crate) title: Option<String>,
|
pub(crate) title: Option<String>,
|
||||||
pub(crate) duration: Option<Duration>,
|
pub(crate) duration: Option<Duration>,
|
||||||
pub(crate) url: String,
|
pub(crate) url: String,
|
||||||
|
pub(crate) src: YoutubeDl,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) struct MetadataMap;
|
pub(crate) struct MetadataMap;
|
||||||
|
|||||||
@@ -1,15 +1,23 @@
|
|||||||
|
use dashmap::DashMap;
|
||||||
use songbird::Songbird;
|
use songbird::Songbird;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use twilight_cache_inmemory::InMemoryCache;
|
use twilight_cache_inmemory::InMemoryCache;
|
||||||
use twilight_http::Client as HttpClient;
|
use twilight_http::Client as HttpClient;
|
||||||
|
use twilight_model::id::{marker::GuildMarker, Id};
|
||||||
use twilight_standby::Standby;
|
use twilight_standby::Standby;
|
||||||
|
|
||||||
pub(crate) type State = Arc<StateRef>;
|
pub(crate) type State = Arc<StateRef>;
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub(crate) struct Settings {
|
||||||
|
pub(crate) loop_queue: bool,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub(crate) struct StateRef {
|
pub(crate) struct StateRef {
|
||||||
pub(crate) http: HttpClient,
|
pub(crate) http: HttpClient,
|
||||||
pub(crate) cache: InMemoryCache,
|
pub(crate) cache: InMemoryCache,
|
||||||
pub(crate) songbird: Songbird,
|
pub(crate) songbird: Songbird,
|
||||||
pub(crate) standby: Standby,
|
pub(crate) standby: Standby,
|
||||||
|
pub(crate) guild_settings: DashMap<Id<GuildMarker>, Settings>,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user