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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
use chrono::{DateTime, Utc};
use serde::Deserialize;
use crate::Result;
use crate::{article::Article, posts::Post};
static DIRECTORY: &str = "./poetry";
#[derive(Clone)]
pub struct Poem {
pub file_name: String,
pub title: Option<String>,
pub created_at: DateTime<Utc>,
pub published_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
pub content: String,
// TODO: localisation (get lang from file names)
pub lang: String,
}
#[derive(Deserialize)]
pub struct PoemMetadata {
title: Option<String>,
created_at: String,
published_at: String,
updated_at: Option<String>,
}
impl Article for Poem {
type Article = Poem;
type Metadata = PoemMetadata;
fn directory() -> &'static str {
DIRECTORY
}
fn new(file_name: String, metadata: Self::Metadata, content: String) -> Result<Self::Article> {
let updated_at = if let Some(updated_at) = metadata.updated_at {
Some(updated_at.parse::<DateTime<Utc>>()?)
} else {
None
};
Ok(Poem {
file_name,
title: metadata.title,
created_at: metadata.created_at.parse::<DateTime<Utc>>()?,
published_at: metadata.published_at.parse::<DateTime<Utc>>()?,
updated_at,
content,
lang: "en".to_string(),
})
}
}
impl Post for Poem {
fn id(&self) -> &str {
&self.file_name
}
fn subject(&self) -> Option<&str> {
self.title.as_deref()
}
fn published_at(&self) -> &DateTime<Utc> {
&self.published_at
}
fn updated_at(&self) -> Option<&DateTime<Utc>> {
self.updated_at.as_ref()
}
fn tags(&self) -> Vec<&str> {
vec!["poetry"]
}
fn lang(&self) -> &str {
"en"
}
fn post_type(&self) -> crate::posts::PostType {
crate::posts::PostType::Article
}
fn content(&self) -> &str {
&self.content
}
}
|