codigocomentado/src/main.rs

84 lines
2.1 KiB
Rust
Raw Normal View History

2019-11-13 07:17:38 +00:00
#![feature(proc_macro_hygiene, decl_macro)]
2019-12-08 23:07:49 +00:00
pub mod admin;
pub mod controllers;
pub mod misc;
2019-11-14 02:10:42 +00:00
pub mod models;
pub mod schema;
2019-11-13 07:17:38 +00:00
#[macro_use]
extern crate rocket;
2019-11-14 02:10:42 +00:00
#[macro_use]
extern crate diesel;
extern crate comrak;
2019-11-14 02:10:42 +00:00
extern crate dotenv;
2019-11-13 07:17:38 +00:00
extern crate rocket_contrib;
2019-11-14 02:10:42 +00:00
extern crate tera;
2019-11-13 07:17:38 +00:00
use comrak::{markdown_to_html, ComrakOptions};
use controllers::{get_post, get_posts, MAX_POSTS_PER_PAGE};
use misc::get_context;
2019-11-23 19:05:41 +00:00
use rocket::Request;
2019-11-13 07:17:38 +00:00
use rocket_contrib::serve::StaticFiles;
use rocket_contrib::templates::Template;
2019-11-14 02:10:42 +00:00
use std::vec::Vec;
2019-11-14 02:10:42 +00:00
#[get("/?<page>")]
fn index(page: Option<i8>) -> Template {
let page = page.unwrap_or(1);
2019-11-14 02:10:42 +00:00
let mut context = get_context();
2019-11-14 02:10:42 +00:00
2019-11-17 05:10:06 +00:00
let (posts, n_posts) = get_posts(page as i64);
let total_pages = (n_posts as f64 / MAX_POSTS_PER_PAGE as f64).ceil() as i64;
context.insert("posts", &posts);
context.insert("total_pages", &total_pages);
context.insert("actual_page", &page);
2019-11-13 07:17:38 +00:00
Template::render("index", context)
}
2019-11-18 08:16:16 +00:00
#[get("/post/<title>")]
2019-11-17 22:09:36 +00:00
fn show_post(title: String) -> Template {
let mut context = get_context();
2019-11-17 22:09:36 +00:00
let title_splited: Vec<&str> = title.split('-').collect();
let id = title_splited.last().unwrap().parse().unwrap_or(-1);
2019-11-17 22:09:36 +00:00
2019-11-25 23:42:57 +00:00
match get_post(id) {
Ok(mut post) => {
let content = markdown_to_html(&post.content, &ComrakOptions::default());
post.content = content;
2019-11-17 22:09:36 +00:00
2019-11-25 23:42:57 +00:00
context.insert("post", &post);
Template::render("post", context)
}
Err(_) => {
let uri = format!("/post/{}", title_splited.join("-"));
context.insert("url", &uri);
Template::render("404", context)
}
}
2019-11-17 22:09:36 +00:00
}
2019-11-23 19:05:41 +00:00
#[catch(404)]
fn not_found_404(req: &Request) -> Template {
let mut context = get_context();
2019-11-23 19:05:41 +00:00
let uri = format!("{}", req.uri());
context.insert("url", &uri);
Template::render("404", context)
}
2019-11-13 01:57:32 +00:00
fn main() {
2019-11-13 07:17:38 +00:00
rocket::ignite()
.attach(Template::fairing())
2019-11-17 22:09:36 +00:00
.mount("/", routes![index, show_post])
2019-12-08 23:07:49 +00:00
.mount("/admin", routes![admin::index])
2019-11-13 07:17:38 +00:00
.mount("/static", StaticFiles::from("static"))
2019-11-23 19:05:41 +00:00
.register(catchers![not_found_404])
2019-11-13 07:17:38 +00:00
.launch();
2019-11-13 01:57:32 +00:00
}