Plume/src/routes/notifications.rs

27 lines
980 B
Rust
Raw Normal View History

2018-06-04 21:57:03 +02:00
use rocket::response::{Redirect, Flash};
2018-05-13 15:35:55 +02:00
use rocket_contrib::Template;
use plume_common::utils;
use plume_models::{db_conn::DbConn, notifications::Notification, users::User};
use routes::Page;
2018-06-04 21:57:03 +02:00
#[get("/notifications?<page>")]
fn paginated_notifications(conn: DbConn, user: User, page: Page) -> Template {
2018-05-13 15:35:55 +02:00
Template::render("notifications/index", json!({
"account": user,
2018-07-26 15:46:10 +02:00
"notifications": Notification::page_for_user(&*conn, &user, page.limits()).into_iter().map(|n| n.to_json(&*conn)).collect::<Vec<_>>(),
"page": page.page,
"n_pages": Page::total(Notification::find_for_user(&*conn, &user).len() as i32)
2018-05-13 15:35:55 +02:00
}))
}
2018-06-04 21:57:03 +02:00
#[get("/notifications")]
fn notifications(conn: DbConn, user: User) -> Template {
paginated_notifications(conn, user, Page::first())
}
2018-06-04 21:57:03 +02:00
#[get("/notifications", rank = 2)]
fn notifications_auth() -> Flash<Redirect>{
utils::requires_login("You need to be logged in order to see your notifications", uri!(notifications))
2018-06-04 21:57:03 +02:00
}