aboutsummaryrefslogtreecommitdiff
path: root/src/assets.rs
blob: 32d26e9a9fd0640c1d042be0cbc8760f774b48b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use chrono::NaiveDate;
use regex::Regex;
use rust_embed::RustEmbed;
use sailfish::TemplateOnce;
use std::cmp::{Eq, Ord, PartialEq, PartialOrd};
use std::str;

pub const BLOG_REGEX: &str = r"(?P<date>[\d]{4}-[\d]{2}-[\d]{2})(?P<title>[a-zA-Z0-9-_]*)";

#[derive(RustEmbed)]
#[folder = "content/posts/"]
pub struct PostAsset;

#[derive(RustEmbed)]
#[folder = "content/projects/"]
pub struct ProjectsAsset;

#[derive(TemplateOnce)]
#[template(path = "index.html")]
pub struct IndexTemplate {
    pub posts: Vec<BlogEntry>,
}


#[derive(TemplateOnce)]
#[template(path = "projects.html")]
pub struct ProjectsTemplate {
    pub content: String,
}

#[derive(TemplateOnce)]
#[template(path = "post.html")]
pub struct PostTemplate {
    pub content: String,
    pub title: String,
    pub date: String,
}

#[derive(PartialEq, Eq, PartialOrd, Ord)]
pub struct BlogEntry {
    pub title: String,
    pub datetime: NaiveDate,
    pub file: String,
}

impl BlogEntry {
    pub fn new(path: &String) -> BlogEntry {
        let re = Regex::new(BLOG_REGEX).unwrap();
        let caps = re.captures(path).unwrap();
        let date = &caps["date"];
        let title = str::replace(&caps["title"], "_", " ");

        BlogEntry {
            title: String::from(title),
            file: String::from(path),
            datetime: NaiveDate::parse_from_str(date, "%Y-%m-%d").unwrap(),
        }
    }

}