survey/src/pages/panel/mod.rs

75 lines
2.2 KiB
Rust
Raw Normal View History

2021-10-04 21:21:10 +05:30
/*
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
*
* 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 <https://www.gnu.org/licenses/>.
*/
2021-10-14 17:13:09 +05:30
use actix_web::{http, HttpResponse, Responder};
2023-01-24 23:29:58 +05:30
pub use super::{context, Footer, TemplateFile, PAGES, PAYLOAD_KEY, TEMPLATES};
use crate::AppData;
2021-10-04 21:21:10 +05:30
mod campaigns;
2023-03-14 15:51:53 +05:30
mod export;
2021-10-04 21:21:10 +05:30
2023-01-24 23:29:58 +05:30
pub fn register_templates(t: &mut tera::Tera) {
campaigns::register_templates(t);
2023-03-14 15:51:53 +05:30
for template in [export::EXPORT_CAMPAIGNS].iter() {
template.register(t).expect(template.name);
}
2023-01-24 23:29:58 +05:30
}
2021-10-04 21:21:10 +05:30
pub mod routes {
use super::campaigns::routes::Campaigns;
2023-01-24 23:29:58 +05:30
use serde::{Deserialize, Serialize};
2021-10-04 21:21:10 +05:30
2023-01-24 23:29:58 +05:30
#[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Clone)]
2021-10-04 21:21:10 +05:30
pub struct Panel {
pub home: &'static str,
2023-03-14 15:51:53 +05:30
pub export: &'static str,
2021-10-04 21:21:10 +05:30
pub campaigns: Campaigns,
}
impl Panel {
pub const fn new() -> Panel {
2021-10-13 17:02:49 +05:30
let campaigns = Campaigns::new();
2021-10-04 21:21:10 +05:30
Panel {
2021-10-13 17:51:46 +05:30
home: "/",
2023-03-14 15:51:53 +05:30
export: "/export",
2021-10-13 17:02:49 +05:30
campaigns,
2021-10-04 21:21:10 +05:30
}
}
pub const fn get_sitemap() -> [&'static str; 1] {
const PANEL: Panel = Panel::new();
[PANEL.home]
}
}
}
pub fn services(cfg: &mut actix_web::web::ServiceConfig) {
cfg.service(home);
campaigns::services(cfg);
2023-03-14 15:51:53 +05:30
export::services(cfg);
2021-10-04 21:21:10 +05:30
}
2023-01-24 23:29:58 +05:30
#[actix_web_codegen_const_routes::get(path = "PAGES.panel.home")]
pub async fn home(ctx: AppData) -> impl Responder {
let loc = PAGES
.panel
.campaigns
2023-01-24 23:29:58 +05:30
.get_about_route(&ctx.settings.default_campaign);
2021-10-14 17:13:09 +05:30
HttpResponse::Found()
.insert_header((http::header::LOCATION, loc))
2021-10-14 17:13:09 +05:30
.finish()
2021-10-04 21:21:10 +05:30
}