caesura 0.29.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
use crate::prelude::*;
use flat_db::Hash;

/// Remove an item from the queue
#[injectable]
pub(crate) struct QueueRemoveCommand {
    args: Ref<QueueRemoveArgs>,
    queue: Ref<Queue>,
}

impl QueueRemoveCommand {
    /// Remove an item from the queue by its hash.
    pub(crate) async fn execute_cli(&self) -> Result<bool, Failure<QueueAction>> {
        let hash = self.args.queue_rm_hash.clone();
        let hash = Hash::from_string(&hash).expect("hash should be valid");
        let status = self.execute(hash).await?;
        Ok(status)
    }

    async fn execute(&self, hash: Hash<20>) -> Result<bool, Failure<QueueAction>> {
        debug!("{} item {hash} from queue", "Removing".bold());
        match self.queue.remove(hash).await? {
            None => {
                warn!(
                    "{} to remove {hash} from queue. Item does not exist",
                    "Failed".bold()
                );
                Ok(false)
            }
            Some(item) => {
                info!(
                    "{} item from queue: {}",
                    "Removed".bold(),
                    item.name.dimmed()
                );
                Ok(true)
            }
        }
    }
}