caesura 0.29.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
//! Configuration for cached transcodes in tests.

use crate::options::SharedOptions;
use crate::utils::{AlbumConfig, SAMPLE_TRANSCODES_DIR, TargetFormat};
use std::path::PathBuf;

/// Configuration for a cached transcode output.
#[derive(Debug, Clone)]
pub struct TranscodeConfig {
    /// The source album configuration.
    pub album: AlbumConfig,
    /// The target format for the transcode.
    pub target: TargetFormat,
}

impl TranscodeConfig {
    /// Create a new transcode configuration.
    #[must_use]
    pub fn new(album: AlbumConfig, target: TargetFormat) -> Self {
        Self { album, target }
    }

    /// Directory name for the transcode output.
    ///
    /// Format: `Artist - Album [Year] [WEB FORMAT]`
    ///
    /// Note: This matches the naming convention used by [`TranscodeName`].
    #[must_use]
    pub fn dir_name(&self) -> String {
        format!(
            "{} - {} [{}] [WEB {}]",
            self.album.artist,
            self.album.album,
            self.album.year,
            self.target.get_name()
        )
    }

    /// Full path to the cached transcode directory.
    #[must_use]
    pub fn transcode_dir(&self) -> PathBuf {
        SAMPLE_TRANSCODES_DIR.join(self.dir_name())
    }

    /// Full path to the torrent file.
    ///
    /// Note: Uses indexer suffix from [`SharedOptions::MOCK_INDEXER`].
    #[must_use]
    pub fn torrent_path(&self) -> PathBuf {
        SAMPLE_TRANSCODES_DIR.join(format!(
            "{}.{}.torrent",
            self.dir_name(),
            SharedOptions::MOCK_INDEXER
        ))
    }
}