use std::sync::Arc; use clap::Subcommand; use tokio::sync::Mutex; use crate::{ app::App, cli::{CliCommandHandler, Command}, network::{sonarr_network::SonarrEvent, NetworkTrait}, }; use super::SonarrCommand; #[cfg(test)] #[path = "refresh_command_handler_tests.rs"] mod refresh_command_handler_tests; #[derive(Debug, Clone, PartialEq, Eq, Subcommand)] pub enum SonarrRefreshCommand { #[command(about = "Refresh all series data for all series in your Sonarr library")] AllSeries, #[command(about = "Refresh series data and scan disk for the series with the given ID")] Series { #[arg( long, help = "The ID of the series to refresh information on and to scan the disk for", required = true )] series_id: i64, }, } impl From for Command { fn from(value: SonarrRefreshCommand) -> Self { Command::Sonarr(SonarrCommand::Refresh(value)) } } pub(super) struct SonarrRefreshCommandHandler<'a, 'b> { _app: &'a Arc>>, command: SonarrRefreshCommand, network: &'a mut dyn NetworkTrait, } impl<'a, 'b> CliCommandHandler<'a, 'b, SonarrRefreshCommand> for SonarrRefreshCommandHandler<'a, 'b> { fn with( _app: &'a Arc>>, command: SonarrRefreshCommand, network: &'a mut dyn NetworkTrait, ) -> Self { SonarrRefreshCommandHandler { _app, command, network, } } async fn handle(self) -> anyhow::Result { let result = match self.command { SonarrRefreshCommand::AllSeries => { let resp = self .network .handle_network_event(SonarrEvent::UpdateAllSeries.into()) .await?; serde_json::to_string_pretty(&resp)? } SonarrRefreshCommand::Series { series_id } => { let resp = self .network .handle_network_event(SonarrEvent::UpdateAndScanSeries(Some(series_id)).into()) .await?; serde_json::to_string_pretty(&resp)? } }; Ok(result) } }