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
use crate::prelude::*;

#[derive(Debug)]
pub struct EntryBuilder {
    entry: Entry,
}

impl AsRef<Entry> for EntryBuilder {
    fn as_ref(&self) -> &Entry {
        &self.entry
    }
}

impl EntryBuilder {
    pub(super) fn new<S>(topic: S) -> EntryBuilder
    where
        S: Into<TopicName>,
    {
        Self {
            entry: Entry {
                topic: topic.into(),
                content: String::new(),
                meta: EntryMeta::default(),
                created_at: Utc::now(),
                file_loc: None,
            },
        }
    }

    pub fn created_at<D>(mut self, created_at: D) -> Self
    where
        D: Into<UtcDateTime>,
    {
        self.entry.created_at = created_at.into();
        self
    }

    pub fn content<S>(mut self, content: S) -> Self
    where
        S: Into<String>,
    {
        self.entry.content = content.into();
        self
    }

    pub fn file_name<N>(mut self, file_name: N) -> Self
    where
        N: Into<PathBuf>,
    {
        let filename: PathBuf = file_name.into();
        self.entry.file_loc = filename.file_name().map(Into::into);
        self
    }

    pub fn add_meta(mut self, meta: EntryMeta) -> Self {
        self.entry.meta = meta;
        self
    }

    pub fn add_meta_value<K, V>(mut self, key: K, value: V) -> Self
    where
        K: Into<String>,
        V: Into<MetaValue>,
    {
        self.entry.meta.insert(key, value);
        self
    }

    pub fn build(self) -> Entry {
        self.entry
    }
}