Plume/src/routes/notifications.rs

31 lines
1001 B
Rust
Raw Normal View History

2018-06-04 21:57:03 +02:00
use rocket::response::{Redirect, Flash};
use rocket_i18n::I18n;
2018-05-13 15:35:55 +02:00
use plume_common::utils;
use plume_models::{db_conn::DbConn, notifications::Notification, users::User};
use routes::Page;
use template_utils::Ructe;
2018-06-04 21:57:03 +02:00
#[get("/notifications?<page>")]
pub fn paginated_notifications(conn: DbConn, user: User, page: Page, intl: I18n) -> Ructe {
render!(notifications::index(
&(&*conn, &intl.catalog, Some(user.clone())),
Notification::page_for_user(&*conn, &user, page.limits()),
page.0,
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")]
pub fn notifications(conn: DbConn, user: User, intl: I18n) -> Ructe {
paginated_notifications(conn, user, Page::first(), intl)
}
2018-06-04 21:57:03 +02:00
#[get("/notifications", rank = 2)]
pub fn notifications_auth(i18n: I18n) -> Flash<Redirect>{
utils::requires_login(
i18n!(i18n.catalog, "You need to be logged in order to see your notifications"),
uri!(notifications)
)
2018-06-04 21:57:03 +02:00
}