aboutsummaryrefslogtreecommitdiff
path: root/src/controller/statistics.rs
blob: e57e2be3fcd8dd25aa6c4e3948b1af94d6c512d7 (plain)
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
use http_body_util::Full;
use hyper::body::Bytes;
use hyper::Response;

use crate::controller::utils;
use crate::controller::wallet::Wallet;
use crate::db;
use crate::templates;

pub async fn get(wallet: &Wallet) -> Response<Full<Bytes>> {
    let categories = db::categories::list(&wallet.pool).await;
    let payments = db::payments::list_for_stats(&wallet.pool).await;
    let incomes = db::incomes::total_each_month(&wallet.pool).await;

    let context = minijinja::context!(
        header => templates::Header::Statistics,
        connected_user => wallet.user,
        json_categories => serde_json::to_string(&categories).unwrap(),
        json_payments => serde_json::to_string(&payments).unwrap(),
        json_incomes => serde_json::to_string(&incomes).unwrap()
    );

    utils::template(
        &wallet.assets,
        &wallet.templates,
        "statistics.html",
        context,
    )
}