/* * Copyright (C) 2022 Aravinth Manivannan * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ use actix_web::http::header::ContentType; use std::cell::RefCell; use tera::Context; use crate::ctx::api::v1::auth::Register as RegisterPayload; use crate::pages::errors::*; use crate::settings::Settings; use crate::AppCtx; pub use super::*; pub const REGISTER: TemplateFile = TemplateFile::new("register", "pages/auth/register.html"); pub struct Register { ctx: RefCell, } impl CtxError for Register { fn with_error(&self, e: &ReadableError) -> String { self.ctx.borrow_mut().insert(ERROR_KEY, e); self.render() } } impl Register { fn new(settings: &Settings, payload: Option<&RegisterPayload>) -> Self { let ctx = RefCell::new(context(settings)); if let Some(payload) = payload { ctx.borrow_mut().insert(PAYLOAD_KEY, payload); } Self { ctx } } pub fn render(&self) -> String { TEMPLATES.render(REGISTER.name, &self.ctx.borrow()).unwrap() } pub fn page(s: &Settings) -> String { let p = Self::new(s, None); p.render() } } #[actix_web_codegen_const_routes::get(path = "PAGES.auth.register")] #[tracing::instrument(name = "Serve registration page", skip(ctx))] pub async fn get_register(ctx: AppCtx) -> impl Responder { let login = Register::page(&ctx.settings); let html = ContentType::html(); HttpResponse::Ok().content_type(html).body(login) } pub fn services(cfg: &mut web::ServiceConfig) { cfg.service(get_register); cfg.service(register_submit); } #[actix_web_codegen_const_routes::post(path = "PAGES.auth.register")] #[tracing::instrument(name = "Process web UI registration", skip(ctx))] pub async fn register_submit( payload: web::Form, ctx: AppCtx, ) -> PageResult { ctx.register(&payload) .await .map_err(|e| PageError::new(Register::new(&ctx.settings, Some(&payload)), e))?; Ok(HttpResponse::Found() .insert_header((http::header::LOCATION, PAGES.auth.login)) .finish()) } #[cfg(test)] mod tests { use super::Register; use super::RegisterPayload; use crate::errors::*; use crate::pages::errors::*; use crate::settings::Settings; #[test] fn register_page_renders() { let settings = Settings::new().unwrap(); Register::page(&settings); let payload = RegisterPayload { username: "foo".into(), password: "foo".into(), confirm_password: "foo".into(), email: "foo".into(), }; let page = Register::new(&settings, Some(&payload)); page.with_error(&ReadableError::new(&ServiceError::WrongPassword)); page.render(); } }