use crate::{
client::Client,
error::Error as HttpError,
request::{validate, Pending, Request},
routing::Route,
};
use std::{
error::Error,
fmt::{Display, Formatter, Result as FmtResult},
};
use twilight_model::{id::GuildId, user::CurrentUserGuild};
#[derive(Debug)]
pub struct GetCurrentUserGuildsError {
kind: GetCurrentUserGuildsErrorType,
}
impl GetCurrentUserGuildsError {
#[must_use = "retrieving the type has no effect if left unused"]
pub const fn kind(&self) -> &GetCurrentUserGuildsErrorType {
&self.kind
}
#[allow(clippy::unused_self)]
#[must_use = "consuming the error and retrieving the source has no effect if left unused"]
pub fn into_source(self) -> Option<Box<dyn Error + Send + Sync>> {
None
}
#[must_use = "consuming the error into its parts has no effect if left unused"]
pub fn into_parts(
self,
) -> (
GetCurrentUserGuildsErrorType,
Option<Box<dyn Error + Send + Sync>>,
) {
(self.kind, None)
}
}
impl Display for GetCurrentUserGuildsError {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
match &self.kind {
GetCurrentUserGuildsErrorType::LimitInvalid { .. } => {
f.write_str("the limit is invalid")
}
}
}
}
impl Error for GetCurrentUserGuildsError {}
#[derive(Debug)]
#[non_exhaustive]
pub enum GetCurrentUserGuildsErrorType {
LimitInvalid {
limit: u64,
},
}
struct GetCurrentUserGuildsFields {
after: Option<GuildId>,
before: Option<GuildId>,
limit: Option<u64>,
}
pub struct GetCurrentUserGuilds<'a> {
fields: GetCurrentUserGuildsFields,
fut: Option<Pending<'a, Vec<CurrentUserGuild>>>,
http: &'a Client,
}
impl<'a> GetCurrentUserGuilds<'a> {
pub(crate) fn new(http: &'a Client) -> Self {
Self {
fields: GetCurrentUserGuildsFields {
after: None,
before: None,
limit: None,
},
fut: None,
http,
}
}
pub fn after(mut self, guild_id: GuildId) -> Self {
self.fields.after.replace(guild_id);
self
}
pub fn before(mut self, guild_id: GuildId) -> Self {
self.fields.before.replace(guild_id);
self
}
pub fn limit(mut self, limit: u64) -> Result<Self, GetCurrentUserGuildsError> {
if !validate::get_current_user_guilds_limit(limit) {
return Err(GetCurrentUserGuildsError {
kind: GetCurrentUserGuildsErrorType::LimitInvalid { limit },
});
}
self.fields.limit.replace(limit);
Ok(self)
}
fn start(&mut self) -> Result<(), HttpError> {
let request = Request::from_route(Route::GetGuilds {
after: self.fields.after.map(|x| x.0),
before: self.fields.before.map(|x| x.0),
limit: self.fields.limit,
});
self.fut.replace(Box::pin(self.http.request(request)));
Ok(())
}
}
poll_req!(GetCurrentUserGuilds<'_>, Vec<CurrentUserGuild>);