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
use std::sync::{Mutex, PoisonError};
use serde::Serialize;
use tera::Context;
use crate::functions::compute_data_etag;
use crate::EtagIfNoneMatch;
use super::{ReloadableTera, TeraResponse};
#[derive(Educe)]
#[educe(Debug)]
pub struct TeraContextManager {
pub tera: Mutex<ReloadableTera>,
}
impl TeraContextManager {
#[inline]
pub(crate) fn new(tera: Mutex<ReloadableTera>, _cache_capacity: usize) -> TeraContextManager {
TeraContextManager {
tera,
}
}
#[inline]
pub fn build<S: AsRef<str>, V: Serialize>(
&self,
etag_if_none_match: &EtagIfNoneMatch<'_>,
minify: bool,
name: S,
context: V,
) -> TeraResponse {
self.tera
.lock()
.unwrap_or_else(PoisonError::into_inner)
.render(name.as_ref(), &Context::from_serialize(context).unwrap())
.map(|html| {
let etag = compute_data_etag(html.as_bytes());
if etag_if_none_match.weak_eq(&etag) {
TeraResponse::not_modified()
} else {
let html = if minify {
html_minifier::minify(html).unwrap()
} else {
html
};
TeraResponse::build_not_cache(html, &etag)
}
})
.unwrap()
}
#[inline]
pub fn render<S: AsRef<str>, V: Serialize>(&self, name: S, context: V) -> String {
self.tera
.lock()
.unwrap_or_else(PoisonError::into_inner)
.render(name.as_ref(), &Context::from_serialize(context).unwrap())
.unwrap()
}
}