aboutsummaryrefslogtreecommitdiff
path: root/src/handlers/talks.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers/talks.rs')
-rw-r--r--src/handlers/talks.rs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/handlers/talks.rs b/src/handlers/talks.rs
new file mode 100644
index 0000000..54f1e64
--- /dev/null
+++ b/src/handlers/talks.rs
@@ -0,0 +1,40 @@
+use super::PostNotFound;
+use crate::{
+ app::State,
+ post::Post,
+ templates::{self, Html, RenderRucte},
+};
+use lazy_static::lazy_static;
+use prometheus::{IntCounterVec, register_int_counter_vec, opts};
+use std::sync::Arc;
+use warp::{http::Response, Rejection, Reply};
+
+lazy_static! {
+ static ref HIT_COUNTER: IntCounterVec =
+ register_int_counter_vec!(opts!("talks_hits", "Number of hits to talks images"), &["name"])
+ .unwrap();
+}
+
+pub async fn index(state: Arc<State>) -> Result<impl Reply, Rejection> {
+ let state = state.clone();
+ Response::builder().html(|o| templates::talkindex_html(o, state.talks.clone()))
+}
+
+pub async fn post_view(name: String, state: Arc<State>) -> Result<impl Reply, Rejection> {
+ let mut want: Option<Post> = None;
+
+ for post in &state.talks {
+ if post.link == format!("talks/{}", name) {
+ want = Some(post.clone());
+ }
+ }
+
+ match want {
+ None => Err(PostNotFound("talks".into(), name).into()),
+ Some(post) => {
+ HIT_COUNTER.with_label_values(&[name.clone().as_str()]).inc();
+ let body = Html(post.body_html.clone());
+ Response::builder().html(|o| templates::talkpost_html(o, post, body))
+ }
+ }
+}