tidlers 0.1.1

A Rust library for interacting with the TIDAL music streaming API
Documentation
use crate::{
    client::{
        TidalClient,
        models::album::{
            AlbumCreditsResponse, AlbumInfoResponse, AlbumItemsResponse,
            AlbumItemsWithCreditsResponse,
        },
    },
    error::TidalError,
    ids::AlbumId,
};

impl TidalClient {
    /// Retrieves album information by album ID
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use tidlers::{TidalClient, auth::init::TidalAuth};
    /// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth = TidalAuth::with_oauth();
    /// # let client = TidalClient::new(&auth);
    /// let album = client.get_album("123456789").await?;
    /// println!("Album: {} by {}", album.title, album.artist.name);
    /// println!("Tracks: {}", album.number_of_tracks);
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get_album(
        &self,
        album_id: impl Into<AlbumId>,
    ) -> Result<AlbumInfoResponse, TidalError> {
        let album_id = album_id.into();
        self.request(reqwest::Method::GET, format!("/albums/{}/", album_id))
            .with_country_code()
            .send()
            .await
    }

    /// Retrieves tracks from an album with pagination support
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use tidlers::{TidalClient, auth::init::TidalAuth};
    /// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth = TidalAuth::with_oauth();
    /// # let client = TidalClient::new(&auth);
    /// // Get first 50 tracks
    /// let items = client.get_album_items("123456789", Some(50), Some(0)).await?;
    /// for album_item in items.items {
    ///     println!("{}", album_item.item.title);
    /// }
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get_album_items(
        &self,
        album_id: impl Into<AlbumId>,
        limit: Option<u64>,
        offset: Option<u64>,
    ) -> Result<AlbumItemsResponse, TidalError> {
        let album_id = album_id.into();
        let limit = limit.unwrap_or(20);
        let offset = offset.unwrap_or(0);

        if limit > 100 {
            return Err(TidalError::InvalidArgument(
                "limit cannot be greater than 100".to_string(),
            ));
        }

        self.request(reqwest::Method::GET, format!("/albums/{}/items", album_id))
            .with_country_code()
            .with_param("limit", limit.to_string())
            .with_param("offset", offset.to_string())
            .send()
            .await
    }

    /// Retrieves album credits information
    pub async fn get_album_credits(
        &self,
        album_id: impl Into<AlbumId>,
    ) -> Result<AlbumCreditsResponse, TidalError> {
        let album_id = album_id.into();
        self.request(
            reqwest::Method::GET,
            format!("/albums/{}/credits", album_id),
        )
        .with_country_code()
        .send()
        .await
    }

    pub async fn get_album_items_credits(
        &self,
        album_id: impl Into<AlbumId>,
        limit: Option<u64>,
        offset: Option<u64>,
    ) -> Result<AlbumItemsWithCreditsResponse, TidalError> {
        let album_id = album_id.into();
        let limit = limit.unwrap_or(20);
        let offset = offset.unwrap_or(0);

        if limit > 100 {
            return Err(TidalError::InvalidArgument(
                "limit cannot be greater than 100".to_string(),
            ));
        }

        self.request(
            reqwest::Method::GET,
            format!("/albums/{}/items/credits", album_id),
        )
        .with_country_code()
        .with_param("limit", limit.to_string())
        .with_param("offset", offset.to_string())
        .send()
        .await
    }
}