123 lines
3.3 KiB
Rust
123 lines
3.3 KiB
Rust
use std::sync::Arc;
|
|
|
|
use anyhow::Result;
|
|
use clap::{Subcommand, command};
|
|
use tokio::sync::Mutex;
|
|
|
|
use crate::{
|
|
app::App,
|
|
cli::{CliCommandHandler, Command},
|
|
network::{NetworkTrait, radarr_network::RadarrEvent},
|
|
};
|
|
|
|
use super::RadarrCommand;
|
|
|
|
#[cfg(test)]
|
|
#[path = "get_command_handler_tests.rs"]
|
|
mod get_command_handler_tests;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Subcommand)]
|
|
pub enum RadarrGetCommand {
|
|
#[command(about = "Get the shared settings for all indexers")]
|
|
AllIndexerSettings,
|
|
#[command(about = "Fetch the host config for your Radarr instance")]
|
|
HostConfig,
|
|
#[command(about = "Get detailed information for the movie with the given ID")]
|
|
MovieDetails {
|
|
#[arg(
|
|
long,
|
|
help = "The Radarr ID of the movie whose details you wish to fetch",
|
|
required = true
|
|
)]
|
|
movie_id: i64,
|
|
},
|
|
#[command(about = "Get history for the given movie ID")]
|
|
MovieHistory {
|
|
#[arg(
|
|
long,
|
|
help = "The Radarr ID of the movie whose history you wish to fetch",
|
|
required = true
|
|
)]
|
|
movie_id: i64,
|
|
},
|
|
#[command(about = "Fetch the security config for your Radarr instance")]
|
|
SecurityConfig,
|
|
#[command(about = "Get the system status")]
|
|
SystemStatus,
|
|
}
|
|
|
|
impl From<RadarrGetCommand> for Command {
|
|
fn from(value: RadarrGetCommand) -> Self {
|
|
Command::Radarr(RadarrCommand::Get(value))
|
|
}
|
|
}
|
|
|
|
pub(super) struct RadarrGetCommandHandler<'a, 'b> {
|
|
_app: &'a Arc<Mutex<App<'b>>>,
|
|
command: RadarrGetCommand,
|
|
network: &'a mut dyn NetworkTrait,
|
|
}
|
|
|
|
impl<'a, 'b> CliCommandHandler<'a, 'b, RadarrGetCommand> for RadarrGetCommandHandler<'a, 'b> {
|
|
fn with(
|
|
_app: &'a Arc<Mutex<App<'b>>>,
|
|
command: RadarrGetCommand,
|
|
network: &'a mut dyn NetworkTrait,
|
|
) -> Self {
|
|
RadarrGetCommandHandler {
|
|
_app,
|
|
command,
|
|
network,
|
|
}
|
|
}
|
|
|
|
async fn handle(self) -> Result<String> {
|
|
let result = match self.command {
|
|
RadarrGetCommand::AllIndexerSettings => {
|
|
let resp = self
|
|
.network
|
|
.handle_network_event(RadarrEvent::GetAllIndexerSettings.into())
|
|
.await?;
|
|
serde_json::to_string_pretty(&resp)?
|
|
}
|
|
RadarrGetCommand::HostConfig => {
|
|
let resp = self
|
|
.network
|
|
.handle_network_event(RadarrEvent::GetHostConfig.into())
|
|
.await?;
|
|
serde_json::to_string_pretty(&resp)?
|
|
}
|
|
RadarrGetCommand::MovieDetails { movie_id } => {
|
|
let resp = self
|
|
.network
|
|
.handle_network_event(RadarrEvent::GetMovieDetails(movie_id).into())
|
|
.await?;
|
|
serde_json::to_string_pretty(&resp)?
|
|
}
|
|
RadarrGetCommand::MovieHistory { movie_id } => {
|
|
let resp = self
|
|
.network
|
|
.handle_network_event(RadarrEvent::GetMovieHistory(movie_id).into())
|
|
.await?;
|
|
serde_json::to_string_pretty(&resp)?
|
|
}
|
|
RadarrGetCommand::SecurityConfig => {
|
|
let resp = self
|
|
.network
|
|
.handle_network_event(RadarrEvent::GetSecurityConfig.into())
|
|
.await?;
|
|
serde_json::to_string_pretty(&resp)?
|
|
}
|
|
RadarrGetCommand::SystemStatus => {
|
|
let resp = self
|
|
.network
|
|
.handle_network_event(RadarrEvent::GetStatus.into())
|
|
.await?;
|
|
serde_json::to_string_pretty(&resp)?
|
|
}
|
|
};
|
|
|
|
Ok(result)
|
|
}
|
|
}
|