2023-05-17 17:09:00 +00:00
|
|
|
use askama::Template;
|
2023-06-13 22:56:15 +00:00
|
|
|
use optional_optional_user::OptionalOptionalUser;
|
2023-05-28 19:20:55 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-05-17 17:09:00 +00:00
|
|
|
|
2023-05-29 21:25:50 +00:00
|
|
|
use crate::User;
|
|
|
|
|
2023-06-13 22:56:15 +00:00
|
|
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
2023-05-17 20:40:06 +00:00
|
|
|
#[template(path = "signup.html")]
|
2023-05-17 17:09:00 +00:00
|
|
|
pub struct CreateUser {
|
|
|
|
pub username: String,
|
|
|
|
pub displayname: Option<String>,
|
|
|
|
pub email: Option<String>,
|
|
|
|
pub password: String,
|
|
|
|
pub pw_verify: String,
|
|
|
|
}
|
2023-05-28 19:20:55 +00:00
|
|
|
|
2023-06-13 22:56:15 +00:00
|
|
|
#[derive(
|
|
|
|
Debug, Clone, Template, Default, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser,
|
|
|
|
)]
|
2023-06-03 22:45:19 +00:00
|
|
|
#[template(path = "signup_success.html")]
|
2023-06-13 22:56:15 +00:00
|
|
|
pub struct CreateUserSuccess(pub User);
|
2023-06-03 22:45:19 +00:00
|
|
|
|
2023-06-02 21:15:13 +00:00
|
|
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq)]
|
2023-05-28 19:20:55 +00:00
|
|
|
#[template(path = "login_post.html")]
|
|
|
|
pub struct LoginPost {
|
|
|
|
pub username: String,
|
|
|
|
pub password: String,
|
|
|
|
}
|
|
|
|
|
2023-06-13 22:56:15 +00:00
|
|
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
2023-05-28 19:20:55 +00:00
|
|
|
#[template(path = "login_get.html")]
|
|
|
|
pub struct LoginGet {
|
|
|
|
pub username: String,
|
|
|
|
pub password: String,
|
|
|
|
}
|
2023-05-29 21:25:50 +00:00
|
|
|
|
2023-06-13 22:56:15 +00:00
|
|
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
2023-05-29 21:25:50 +00:00
|
|
|
#[template(path = "logout_get.html")]
|
|
|
|
pub struct LogoutGet;
|
|
|
|
|
2023-06-13 22:56:15 +00:00
|
|
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
2023-05-29 21:25:50 +00:00
|
|
|
#[template(path = "logout_post.html")]
|
|
|
|
pub struct LogoutPost;
|
|
|
|
|
2023-06-13 22:56:15 +00:00
|
|
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
2023-05-29 21:25:50 +00:00
|
|
|
#[template(path = "index.html")]
|
2023-06-08 16:16:38 +00:00
|
|
|
pub struct MainPage {
|
2023-05-29 21:25:50 +00:00
|
|
|
pub user: Option<User>,
|
|
|
|
}
|
2023-06-13 22:56:15 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn main_page_has_optional_user() {
|
|
|
|
assert!(MainPage::default().has_optional_user());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn signup_success_has_no_optional_user() {
|
|
|
|
assert!(!CreateUserSuccess::default().has_optional_user());
|
2023-06-13 19:34:54 +00:00
|
|
|
}
|
|
|
|
}
|