survey/src/pages/panel/mod.rs

67 lines
1.9 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};
use lazy_static::lazy_static;
2021-10-04 21:21:10 +05:30
use my_codegen::get;
2021-10-14 17:13:09 +05:30
2021-10-04 21:21:10 +05:30
use crate::PAGES;
mod campaigns;
pub mod routes {
use super::campaigns::routes::Campaigns;
pub struct Panel {
pub home: &'static str,
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: "/",
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);
}
lazy_static! {
pub static ref DEFAULT_CAMPAIGN_ABOUT: String = PAGES
.panel
.campaigns
.get_about_route(&*crate::SETTINGS.default_campaign);
}
#[get(path = "PAGES.panel.home")]
2021-10-04 21:21:10 +05:30
pub async fn home() -> impl Responder {
let loc: &str = &*DEFAULT_CAMPAIGN_ABOUT;
2021-10-14 17:13:09 +05:30
HttpResponse::Found()
//.insert_header((http::header::LOCATION, PAGES.panel.campaigns.home))
.insert_header((http::header::LOCATION, loc))
2021-10-14 17:13:09 +05:30
.finish()
2021-10-04 21:21:10 +05:30
}