use rincon_core::api::auth::Jwt;
#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct AuthenticationRequest {
username: String,
password: String,
}
impl AuthenticationRequest {
pub fn new<N, P>(username: N, password: P) -> Self
where N: Into<String>, P: Into<String>
{
AuthenticationRequest {
username: username.into(),
password: password.into(),
}
}
pub fn username(&self) -> &str {
&self.username
}
pub fn password(&self) -> &str {
&self.password
}
}
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AuthenticationResponse {
jwt: Jwt,
must_change_password: Option<bool>
}
impl AuthenticationResponse {
pub fn jwt(&self) -> &Jwt {
&self.jwt
}
pub fn is_must_change_password(&self) -> Option<bool> {
self.must_change_password
}
}