1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// The main way to load the static files as ready-to-use routes in the application.
///
/// This ensures every file is accessible through HTTP GET requests by adding all of them to the router automatically.
///
/// # Example
///
/// The best way to use this macro is to include it in the bootstraping step for the router:
///
///
/// ```rust
/// #[post_upgrade]
/// fn post_upgrade() {
///     ROUTER.with(|r| {
///         let mut instance = controller::setup();
///         pluto::use_static_files!(instance);
///         *r.borrow_mut() = instance;
///     })
/// }
/// ````
#[macro_export]
macro_rules! use_static_files {
    (
        $router:path
    ) => {
        for file in crate::compiled::templates::statics::STATICS.iter() {
            $router.get(&format!("/{}", file.name), false, |_req| async {
                Ok(HttpResponse {
                    status_code: 200,
                    headers: HashMap::from([("Content-Type".to_string(), file.mime.to_string())]),
                    body: if file.mime.type_() == "text" || file.mime.subtype() == "json" {
                        pluto::http::HttpBody::String(
                            String::from_utf8(file.content.to_vec()).unwrap(),
                        )
                    } else {
                        file.content.to_owned().into()
                    },
                })
            });
        }
    };
}