use std::{borrow::Cow, fmt::Display};
use serde::{Deserialize, Serialize};
use super::{endpoint::Endpoint, error::BodyError, query_params::QueryParams, Direction, Pageable};
#[derive(Debug, Serialize, Clone, Copy)]
#[serde(rename_all = "kebab-case")]
pub enum GenresSorting {
Name,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq, Hash)]
pub struct GenreId<'a>(Cow<'a, str>);
impl<'a> GenreId<'a> {
pub fn new<T>(id: T) -> Self
where
T: Into<Cow<'a, str>>,
{
Self(id.into())
}
}
impl<'a, T> From<T> for GenreId<'a>
where
T: Into<Cow<'a, str>>,
{
fn from(value: T) -> Self {
Self::new(value)
}
}
impl Display for GenreId<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", &self.0)
}
}
#[derive(Default, Debug, Builder, Serialize, Clone)]
#[builder(default, setter(into, strip_option))]
#[serde(rename_all = "kebab-case")]
pub struct Genres {
#[doc = r"Sorting options for results."]
orderby: Option<GenresSorting>,
#[doc = r"Sort direction"]
direction: Option<Direction>,
}
#[derive(Debug, Builder, Clone)]
#[builder(setter(into, strip_option))]
pub struct Genre<'a> {
#[doc = r"`ID` of the genre."]
id: GenreId<'a>,
}
impl Genres {
pub fn builder() -> GenresBuilder {
GenresBuilder::default()
}
}
impl Genre<'_> {
pub fn builder<'a>() -> GenreBuilder<'a> {
GenreBuilder::default()
}
}
impl Default for GenresSorting {
fn default() -> Self {
Self::Name
}
}
impl Endpoint for Genres {
fn endpoint(&self) -> Cow<'static, str> {
"/genres".into()
}
fn query_parameters(&self) -> Result<QueryParams<'_>, BodyError> {
QueryParams::with(self)
}
}
impl Endpoint for Genre<'_> {
fn endpoint(&self) -> Cow<'static, str> {
format!("/genres/{}", self.id).into()
}
}
impl Pageable for Genres {}