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 PlatformsSorting {
Name,
Released,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq, Hash)]
pub struct PlatformId<'a>(Cow<'a, str>);
impl<'a> PlatformId<'a> {
pub fn new<T>(id: T) -> Self
where
T: Into<Cow<'a, str>>,
{
Self(id.into())
}
}
impl<'a, T> From<T> for PlatformId<'a>
where
T: Into<Cow<'a, str>>,
{
fn from(value: T) -> Self {
Self::new(value)
}
}
impl Display for PlatformId<'_> {
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 Platforms {
#[doc = r"Sorting options for results."]
orderby: Option<PlatformsSorting>,
#[doc = r"Sort direction"]
direction: Option<Direction>,
}
#[derive(Debug, Builder, Serialize, Clone)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "kebab-case")]
pub struct Platform<'a> {
#[doc = r"`ID` of the platform to retrieve."]
id: PlatformId<'a>,
}
impl Platforms {
pub fn builder() -> PlatformsBuilder {
PlatformsBuilder::default()
}
}
impl Platform<'_> {
pub fn builder<'a>() -> PlatformBuilder<'a> {
PlatformBuilder::default()
}
}
impl Default for PlatformsSorting {
fn default() -> Self {
Self::Name
}
}
impl Endpoint for Platforms {
fn endpoint(&self) -> std::borrow::Cow<'static, str> {
"/platforms".into()
}
fn query_parameters(&self) -> Result<QueryParams<'_>, BodyError> {
QueryParams::with(self)
}
}
impl Endpoint for Platform<'_> {
fn endpoint(&self) -> Cow<'static, str> {
format!("/platforms/{}", self.id).into()
}
}
impl Pageable for Platforms {}