Plume/src/routes/notifications.rs

27 lines
916 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 notifications(conn: DbConn, user: User, page: Option<Page>, intl: I18n) -> Ructe {
let page = page.unwrap_or_default();
render!(notifications::index(
&(&*conn, &intl.catalog, Some(user.clone())),
Notification::page_for_user(&*conn, &user, page.limits()),
page.0,
Page::total(Notification::count_for_user(&*conn, &user) as i32)
))
2018-05-13 15:35:55 +02:00
}
2018-06-04 21:57:03 +02:00
#[get("/notifications?<page>", rank = 2)]
pub fn notifications_auth(i18n: I18n, page: Option<Page>) -> Flash<Redirect>{
utils::requires_login(
i18n!(i18n.catalog, "You need to be logged in order to see your notifications"),
uri!(notifications: page = page)
)
2018-06-04 21:57:03 +02:00
}