caesura 0.31.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 rogue_logging::Action;

/// qBittorrent connection options shared by any command that talks to qBittorrent.
#[derive(Options, Clone, Debug, Deserialize, Serialize)]
pub struct QbitOptions {
    /// qBittorrent API base URL
    ///
    /// The base URL for your qBittorrent instance
    ///
    /// Examples: `http://localhost:8080`, `http://qbit`, `https://qbit.example.com`
    ///
    /// Or, the proxy URL with key if using [qui reverse proxy](https://getqui.com/docs/features/reverse-proxy)
    ///
    /// Examples:
    /// - `http://localhost:7476/proxy/YOUR_CLIENT_PROXY_KEY`
    /// - `https://qui.example.com/proxy/YOUR_CLIENT_PROXY_KEY`
    #[arg(long)]
    pub qbit_url: Option<String>,

    /// qBittorrent username.
    ///
    /// Not required when using qui reverse proxy.
    #[arg(long)]
    pub qbit_username: Option<String>,

    /// qBittorrent password.
    ///
    /// Not required when using qui reverse proxy.
    #[arg(long)]
    pub qbit_password: Option<String>,
}

impl QbitOptions {
    /// Check connection fields and log any issues.
    ///
    /// - Returns `Ok(())` if all required connection fields are set.
    /// - Returns [`Failure`] from `action` otherwise.
    pub(crate) fn check_connection_or<T: Action>(&self, action: T) -> Result<(), Failure<T>> {
        let mut validator = OptionsValidator::new();
        self.validate_connection(&mut validator);
        validator.check_or(action)
    }

    /// Push [`OptionIssue`] violations for missing connection fields.
    pub(crate) fn validate_connection(&self, validator: &mut OptionsValidator) {
        validator.check_set("qbit_url", &self.qbit_url);
        if self.requires_credentials() {
            validator.check_set("qbit_username", &self.qbit_username);
            validator.check_set("qbit_password", &self.qbit_password);
        }
    }

    /// Whether [`qbit_username`](Self::qbit_username) and
    /// [`qbit_password`](Self::qbit_password) must be set.
    ///
    /// - Returns `false` if using [qui reverse proxy](https://getqui.com/docs/features/reverse-proxy)
    /// - Returns `true` otherwise
    fn requires_credentials(&self) -> bool {
        !self
            .qbit_url
            .as_ref()
            .is_some_and(|url| url.contains("/proxy/"))
    }

    /// Create a [`QbitOptions`] with mock values for testing.
    #[cfg(test)]
    #[must_use]
    pub fn mock() -> Self {
        Self {
            qbit_url: Some("http://127.0.0.1:8080".to_owned()),
            qbit_username: Some("user".to_owned()),
            qbit_password: Some("hunter2".to_owned()),
        }
    }
}

impl OptionsContract for QbitOptions {
    type Partial = QbitOptionsPartial;

    fn validate(&self, validator: &mut OptionsValidator) {
        if let Some(url) = &self.qbit_url {
            validator.check_url("qbit_url", url);
        }
    }
}