Added status type

This commit is contained in:
Franklin 2022-10-16 19:26:53 -04:00
parent 7641284360
commit 6f7237098a
1 changed files with 22 additions and 1 deletions

View File

@ -49,7 +49,28 @@ impl FromStr for LeaguePlayerStatus {
"Left" => Ok(Self::Requested),
"Invited" => Ok(Self::Invited),
"Canceled" => Ok(Self::Canceled),
_ => Err(Error::Unspecified) //TODO: Create ParseStr error in actix_web_utils
_ => Err(Error::Unspecified),
}
}
}
pub enum StatusType {
/// Inside a league
Active,
/// Either outside of a league, or attempting to join
Inactive,
}
impl LeaguePlayerStatus {
pub fn get_status_type(&self) -> StatusType {
match self {
LeaguePlayerStatus::Denied => StatusType::Inactive,
LeaguePlayerStatus::Joined => StatusType::Active,
LeaguePlayerStatus::Requested => StatusType::Inactive,
LeaguePlayerStatus::Kicked => StatusType::Inactive,
LeaguePlayerStatus::Left => StatusType::Inactive,
LeaguePlayerStatus::Invited => StatusType::Inactive,
LeaguePlayerStatus::Canceled => StatusType::Inactive,
}
}
}