use actix_auth_middleware::GetLoginRoute;
use super::auth::routes::Auth;
use super::errors::routes::Errors;
use super::panel::routes::Panel;
pub const ROUTES: Routes = Routes::new();
pub struct Routes {
pub home: &'static str,
pub auth: Auth,
pub panel: Panel,
pub errors: Errors,
pub about: &'static str,
pub sitemap: &'static str,
pub thanks: &'static str,
pub donate: &'static str,
pub security: &'static str,
pub privacy: &'static str,
}
impl Routes {
const fn new() -> Routes {
let panel = Panel::new();
let home = panel.home;
Routes {
auth: Auth::new(),
panel,
home,
errors: Errors::new(),
about: "/about",
sitemap: "/sitemap.xml",
thanks: "/thanks",
donate: "/donate",
security: "/security",
privacy: "/privacy-policy",
}
}
pub const fn get_sitemap() -> [&'static str; 7] {
let a = Auth::get_sitemap();
let p = Panel::get_sitemap();
[a[0], a[1], p[0], p[1], p[2], p[3], p[4]]
}
}
impl GetLoginRoute for Routes {
fn get_login_route(&self, src: Option<&str>) -> String {
self.auth.get_login_route(src)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn sitemap_works() {
Routes::get_sitemap();
}
}