use std::sync::Arc; use anyhow::Result; use clap::Subcommand; use tokio::sync::Mutex; use crate::{ app::App, cli::{CliCommandHandler, Command}, models::radarr_models::DeleteMovieParams, network::{radarr_network::RadarrEvent, NetworkTrait}, }; use super::RadarrCommand; #[cfg(test)] #[path = "delete_command_handler_tests.rs"] mod delete_command_handler_tests; #[derive(Debug, Clone, PartialEq, Eq, Subcommand)] pub enum RadarrDeleteCommand { #[command(about = "Delete the specified item from the Radarr blocklist")] BlocklistItem { #[arg( long, help = "The ID of the blocklist item to remove from the blocklist", required = true )] blocklist_item_id: i64, }, #[command(about = "Delete the specified download")] Download { #[arg(long, help = "The ID of the download to delete", required = true)] download_id: i64, }, #[command(about = "Delete the indexer with the given ID")] Indexer { #[arg(long, help = "The ID of the indexer to delete", required = true)] indexer_id: i64, }, #[command(about = "Delete a movie from your Radarr library")] Movie { #[arg(long, help = "The ID of the movie to delete", required = true)] movie_id: i64, #[arg(long, help = "Delete the movie files from disk as well")] delete_files_from_disk: bool, #[arg(long, help = "Add a list exclusion for this film")] add_list_exclusion: bool, }, #[command(about = "Delete the root folder with the given ID")] RootFolder { #[arg(long, help = "The ID of the root folder to delete", required = true)] root_folder_id: i64, }, #[command(about = "Delete the tag with the specified ID")] Tag { #[arg(long, help = "The ID of the tag to delete", required = true)] tag_id: i64, }, } impl From for Command { fn from(value: RadarrDeleteCommand) -> Self { Command::Radarr(RadarrCommand::Delete(value)) } } pub(super) struct RadarrDeleteCommandHandler<'a, 'b> { _app: &'a Arc>>, command: RadarrDeleteCommand, network: &'a mut dyn NetworkTrait, } impl<'a, 'b> CliCommandHandler<'a, 'b, RadarrDeleteCommand> for RadarrDeleteCommandHandler<'a, 'b> { fn with( _app: &'a Arc>>, command: RadarrDeleteCommand, network: &'a mut dyn NetworkTrait, ) -> Self { RadarrDeleteCommandHandler { _app, command, network, } } async fn handle(self) -> Result { let result = match self.command { RadarrDeleteCommand::BlocklistItem { blocklist_item_id } => { let resp = self .network .handle_network_event(RadarrEvent::DeleteBlocklistItem(blocklist_item_id).into()) .await?; serde_json::to_string_pretty(&resp)? } RadarrDeleteCommand::Download { download_id } => { let resp = self .network .handle_network_event(RadarrEvent::DeleteDownload(download_id).into()) .await?; serde_json::to_string_pretty(&resp)? } RadarrDeleteCommand::Indexer { indexer_id } => { let resp = self .network .handle_network_event(RadarrEvent::DeleteIndexer(indexer_id).into()) .await?; serde_json::to_string_pretty(&resp)? } RadarrDeleteCommand::Movie { movie_id, delete_files_from_disk, add_list_exclusion, } => { let delete_movie_params = DeleteMovieParams { id: movie_id, delete_movie_files: delete_files_from_disk, add_list_exclusion, }; let resp = self .network .handle_network_event(RadarrEvent::DeleteMovie(Some(delete_movie_params)).into()) .await?; serde_json::to_string_pretty(&resp)? } RadarrDeleteCommand::RootFolder { root_folder_id } => { let resp = self .network .handle_network_event(RadarrEvent::DeleteRootFolder(Some(root_folder_id)).into()) .await?; serde_json::to_string_pretty(&resp)? } RadarrDeleteCommand::Tag { tag_id } => { let resp = self .network .handle_network_event(RadarrEvent::DeleteTag(tag_id).into()) .await?; serde_json::to_string_pretty(&resp)? } }; Ok(result) } }