Plume/src/routes/mod.rs

93 lines
2.5 KiB
Rust
Raw Normal View History

2018-09-01 22:08:26 +02:00
use atom_syndication::{ContentBuilder, Entry, EntryBuilder, LinkBuilder, Person, PersonBuilder};
use rocket::{
http::{RawStr, uri::{FromUriParam, Query}},
request::FromFormValue,
response::NamedFile,
};
use std::path::{Path, PathBuf};
2018-05-10 20:01:16 +02:00
2018-09-27 23:06:40 +02:00
use plume_models::{Connection, posts::Post};
2018-09-01 22:08:26 +02:00
const ITEMS_PER_PAGE: i32 = 12;
#[derive(Copy, Clone, UriDisplayQuery)]
pub struct Page(i32);
impl<'v> FromFormValue<'v> for Page {
type Error = &'v RawStr;
fn from_form_value(form_value: &'v RawStr) -> Result<Page, &'v RawStr> {
match form_value.parse::<i32>() {
Ok(page) => Ok(Page(page)),
_ => Err(form_value),
}
}
}
impl FromUriParam<Query, Option<Page>> for Page {
type Target = Page;
fn from_uri_param(val: Option<Page>) -> Page {
val.unwrap_or_default()
}
}
impl Page {
2018-07-25 14:29:34 +02:00
/// Computes the total number of pages needed to display n_items
pub fn total(n_items: i32) -> i32 {
if n_items % ITEMS_PER_PAGE == 0 {
n_items / ITEMS_PER_PAGE
} else {
(n_items / ITEMS_PER_PAGE) + 1
}
}
pub fn limits(&self) -> (i32, i32) {
((self.0 - 1) * ITEMS_PER_PAGE, self.0 * ITEMS_PER_PAGE)
}
}
impl Default for Page {
fn default() -> Self {
Page(1)
}
}
2018-09-27 23:06:40 +02:00
pub fn post_to_atom(post: Post, conn: &Connection) -> Entry {
2018-09-01 22:08:26 +02:00
EntryBuilder::default()
2018-11-06 10:49:46 +01:00
.title(format!("<![CDATA[{}]]>", post.title))
2018-09-01 22:08:26 +02:00
.content(ContentBuilder::default()
.value(format!("<![CDATA[{}]]>", *post.content.get()))
.src(post.ap_url.clone())
.content_type("html".to_string())
.build().expect("Atom feed: content error"))
.authors(post.get_authors(&*conn)
.into_iter()
.map(|a| PersonBuilder::default()
.name(a.display_name)
.uri(a.ap_url)
.build().expect("Atom feed: author error"))
.collect::<Vec<Person>>())
.links(vec![LinkBuilder::default().href(post.ap_url).build().expect("Atom feed: link error")])
.build().expect("Atom feed: entry error")
}
2018-04-23 12:54:37 +02:00
pub mod blogs;
2018-05-10 11:44:57 +02:00
pub mod comments;
2018-06-18 17:59:49 +02:00
pub mod errors;
pub mod instance;
2018-05-10 18:38:03 +02:00
pub mod likes;
2018-09-02 22:55:42 +02:00
pub mod medias;
2018-05-13 15:35:55 +02:00
pub mod notifications;
2018-04-23 16:25:39 +02:00
pub mod posts;
2018-05-19 11:51:10 +02:00
pub mod reshares;
2018-04-24 11:21:39 +02:00
pub mod session;
2018-09-06 14:06:04 +02:00
pub mod tags;
2018-04-22 20:13:12 +02:00
pub mod user;
pub mod search;
2018-04-24 10:35:45 +02:00
pub mod well_known;
2018-05-10 20:01:16 +02:00
2018-09-02 22:55:42 +02:00
#[get("/static/<file..>", rank = 2)]
pub fn static_files(file: PathBuf) -> Option<NamedFile> {
2018-05-10 20:01:16 +02:00
NamedFile::open(Path::new("static/").join(file)).ok()
}