2023-04-14 11:30:58 +02:00
|
|
|
use actix_web::{get, web, HttpResponse, Responder};
|
|
|
|
use cached::proc_macro::once;
|
2023-04-20 15:08:09 +02:00
|
|
|
use chrono::{DateTime, Datelike, Utc};
|
2023-04-21 16:48:31 +02:00
|
|
|
use comrak::{parse_document, Arena};
|
2023-04-14 11:30:58 +02:00
|
|
|
use ramhorns::Content;
|
|
|
|
|
2023-04-19 20:17:03 +02:00
|
|
|
use crate::{
|
|
|
|
config::Config,
|
2023-04-21 16:27:06 +02:00
|
|
|
misc::{
|
|
|
|
date::Date,
|
2023-04-21 16:48:31 +02:00
|
|
|
markdown::{get_metadata, get_options, read_file, File, FileMetadata},
|
2023-04-21 16:27:06 +02:00
|
|
|
},
|
|
|
|
template::Infos,
|
2023-04-19 20:17:03 +02:00
|
|
|
};
|
2023-04-14 11:30:58 +02:00
|
|
|
|
|
|
|
#[get("/blog")]
|
|
|
|
pub async fn index(config: web::Data<Config>) -> impl Responder {
|
2023-04-20 15:43:25 +02:00
|
|
|
HttpResponse::Ok().body(build_index(config.get_ref().clone()))
|
2023-04-14 11:30:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Content)]
|
2023-04-19 18:55:03 +02:00
|
|
|
struct BlogIndexTemplate {
|
2023-04-19 20:27:40 +02:00
|
|
|
posts: Option<Vec<Post>>,
|
|
|
|
}
|
|
|
|
|
2023-04-20 15:43:25 +02:00
|
|
|
#[once(time = 120)]
|
|
|
|
pub fn build_index(config: Config) -> String {
|
|
|
|
let mut posts = get_posts("data/blog");
|
|
|
|
|
|
|
|
// Sort from newest to oldest
|
|
|
|
posts.sort_by_cached_key(|p| (p.date.year, p.date.month, p.date.day));
|
|
|
|
posts.reverse();
|
|
|
|
|
|
|
|
config.tmpl.render(
|
|
|
|
"blog/index.html",
|
|
|
|
BlogIndexTemplate {
|
|
|
|
posts: if posts.is_empty() { None } else { Some(posts) },
|
|
|
|
},
|
|
|
|
Infos {
|
|
|
|
page_title: Some("Blog".to_string()),
|
|
|
|
page_desc: Some("Liste des posts d'Anri".to_string()),
|
|
|
|
page_kw: Some(["blog", "blogging"].join(", ")),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-04-20 14:41:36 +02:00
|
|
|
#[derive(Content)]
|
2023-04-19 20:27:40 +02:00
|
|
|
struct Post {
|
|
|
|
title: String,
|
2023-04-20 14:41:36 +02:00
|
|
|
date: Date,
|
2023-04-19 20:27:40 +02:00
|
|
|
url: String,
|
2023-04-19 18:55:03 +02:00
|
|
|
}
|
2023-04-14 11:30:58 +02:00
|
|
|
|
2023-04-20 15:43:25 +02:00
|
|
|
fn get_posts(location: &str) -> Vec<Post> {
|
2023-04-20 15:08:09 +02:00
|
|
|
let entries = std::fs::read_dir(location)
|
2023-04-19 20:54:05 +02:00
|
|
|
.unwrap()
|
2023-04-20 11:57:06 +02:00
|
|
|
.flatten()
|
|
|
|
.filter(|f| f.path().extension().unwrap() == "md")
|
|
|
|
.collect::<Vec<std::fs::DirEntry>>();
|
|
|
|
|
2023-04-20 15:43:25 +02:00
|
|
|
entries
|
2023-04-20 11:57:06 +02:00
|
|
|
.iter()
|
2023-04-19 20:54:05 +02:00
|
|
|
.map(|f| {
|
2023-04-20 11:57:06 +02:00
|
|
|
let _filename = f.file_name();
|
|
|
|
let filename = _filename.to_string_lossy();
|
2023-04-19 20:54:05 +02:00
|
|
|
let file_without_ext = filename.split_at(filename.len() - 3).0;
|
2023-04-19 21:16:39 +02:00
|
|
|
|
|
|
|
let file_metadata = match std::fs::read_to_string(format!("{location}/{filename}")) {
|
2023-04-21 16:48:31 +02:00
|
|
|
Ok(text) => {
|
|
|
|
let arena = Arena::new();
|
|
|
|
|
|
|
|
let options = get_options();
|
|
|
|
let root = parse_document(&arena, &text, &options);
|
|
|
|
let mut metadata = get_metadata(root);
|
2023-04-20 11:57:06 +02:00
|
|
|
|
|
|
|
metadata.title = match metadata.title {
|
2023-04-21 16:48:31 +02:00
|
|
|
Some(title) => Some(title),
|
2023-04-20 11:57:06 +02:00
|
|
|
None => Some(file_without_ext.to_string()),
|
|
|
|
};
|
|
|
|
|
2023-04-21 16:48:31 +02:00
|
|
|
metadata
|
2023-04-19 21:16:39 +02:00
|
|
|
}
|
2023-04-20 11:57:06 +02:00
|
|
|
Err(_) => FileMetadata {
|
|
|
|
title: Some(file_without_ext.to_string()),
|
|
|
|
link: None,
|
|
|
|
date: None,
|
|
|
|
},
|
2023-04-19 21:16:39 +02:00
|
|
|
};
|
|
|
|
|
2023-04-19 20:54:05 +02:00
|
|
|
Post {
|
|
|
|
url: file_without_ext.to_string(),
|
2023-04-20 11:57:06 +02:00
|
|
|
title: file_metadata.title.unwrap(),
|
2023-04-20 15:08:09 +02:00
|
|
|
date: file_metadata.date.unwrap_or({
|
|
|
|
let m = f.metadata().unwrap();
|
|
|
|
let date = std::convert::Into::<DateTime<Utc>>::into(
|
|
|
|
m.modified().unwrap_or(m.created().unwrap()),
|
|
|
|
)
|
|
|
|
.date_naive();
|
|
|
|
|
|
|
|
Date {
|
|
|
|
day: date.day(),
|
|
|
|
month: date.month(),
|
|
|
|
year: date.year(),
|
|
|
|
}
|
|
|
|
}),
|
2023-04-19 20:54:05 +02:00
|
|
|
}
|
|
|
|
})
|
2023-04-20 15:43:25 +02:00
|
|
|
.collect::<Vec<Post>>()
|
2023-04-19 20:17:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Content)]
|
|
|
|
struct BlogPostTemplate {
|
|
|
|
post: Option<File>,
|
2023-04-14 11:30:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/blog/{id}")]
|
2023-04-19 18:55:03 +02:00
|
|
|
pub async fn page(path: web::Path<(String,)>, config: web::Data<Config>) -> impl Responder {
|
2023-04-20 15:43:25 +02:00
|
|
|
HttpResponse::Ok().body(build_post(path.into_inner().0, config.get_ref().clone()))
|
2023-04-14 11:30:58 +02:00
|
|
|
}
|
|
|
|
|
2023-04-20 15:43:25 +02:00
|
|
|
pub fn build_post(file: String, config: Config) -> String {
|
2023-04-19 20:08:15 +02:00
|
|
|
let mut post = None;
|
2023-04-20 15:43:25 +02:00
|
|
|
let infos = get_post(&mut post, file);
|
2023-04-19 18:55:03 +02:00
|
|
|
|
|
|
|
config
|
|
|
|
.tmpl
|
2023-04-19 20:17:03 +02:00
|
|
|
.render("blog/post.html", BlogPostTemplate { post }, infos)
|
|
|
|
}
|
|
|
|
|
2023-04-20 15:43:25 +02:00
|
|
|
fn get_post(post: &mut Option<File>, filename: String) -> Infos {
|
2023-04-19 20:17:03 +02:00
|
|
|
let blog_dir = "data/blog";
|
|
|
|
let ext = ".md";
|
|
|
|
|
2023-04-21 16:27:06 +02:00
|
|
|
*post = read_file(&format!("{blog_dir}/{filename}{ext}"));
|
2023-04-19 20:17:03 +02:00
|
|
|
|
|
|
|
let title = match post {
|
|
|
|
Some(data) => match &data.metadata.info.title {
|
|
|
|
Some(text) => text,
|
|
|
|
None => &filename,
|
|
|
|
},
|
|
|
|
None => &filename,
|
|
|
|
};
|
|
|
|
|
|
|
|
Infos {
|
|
|
|
page_title: Some(format!("Post: {}", title)),
|
|
|
|
page_desc: Some("Blog d'Anri".to_string()),
|
|
|
|
page_kw: Some(["blog", "blogging", "write", "writing"].join(", ")),
|
|
|
|
}
|
2023-04-14 11:30:58 +02:00
|
|
|
}
|