Removing hard coded user_id
Some checks failed
Rust Build / Check (pull_request) Failing after 59s
Rust Build / Test Suite (pull_request) Failing after 36s
Rust Build / Rustfmt (pull_request) Successful in 28s
Rust Build / Clippy (pull_request) Failing after 34s
Rust Build / build (pull_request) Failing after 40s

This commit is contained in:
2025-07-22 21:03:15 -04:00
parent 111d16515f
commit 26147ed0b6
2 changed files with 5 additions and 2 deletions

View File

@@ -21,9 +21,10 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("Queue is not empty");
println!("SongQueueItem: {song_queue_item:?}");
let song_queue_id = song_queue_item.data[0].id;
let user_id = song_queue_item.data[0].user_id;
// TODO: Do something with the result later
match some_work(&app_base_url, &song_queue_id).await {
match some_work(&app_base_url, &song_queue_id, &user_id).await {
Ok((
_song,
_coverart,
@@ -125,6 +126,7 @@ async fn is_queue_empty(
async fn some_work(
app_base_url: &String,
song_queue_id: &uuid::Uuid,
user_id: &uuid::Uuid,
) -> Result<
(
icarus_models::song::Song,
@@ -155,7 +157,7 @@ async fn some_work(
// TODO: Do not hard code this. Check if one of the existing
// endpoints already have the user_id
let user_id = uuid::Uuid::new_v4();
// let user_id = uuid::Uuid::new_v4();
// TODO: Place this somewhere else
let song_type = String::from("flac");
// Err(std::io::Error::other(err.to_string()))

View File

@@ -6,6 +6,7 @@ pub mod fetch_next_queue_item {
pub id: uuid::Uuid,
pub filename: String,
pub status: String,
pub user_id: uuid::Uuid,
}
#[derive(Debug, Deserialize, Serialize)]