2020-07-16 19:32:30 +00:00
|
|
|
use super::PostNotFound;
|
|
|
|
use crate::{
|
|
|
|
app::State,
|
|
|
|
post::Post,
|
|
|
|
templates::{self, Html, RenderRucte},
|
|
|
|
};
|
|
|
|
use lazy_static::lazy_static;
|
2021-03-13 14:03:19 +00:00
|
|
|
use prometheus::{opts, register_int_counter_vec, IntCounterVec};
|
2020-07-16 19:32:30 +00:00
|
|
|
use std::sync::Arc;
|
2020-10-02 22:36:57 +00:00
|
|
|
use tracing::instrument;
|
2021-03-13 14:03:19 +00:00
|
|
|
use warp::{http::Response, Rejection, Reply};
|
2020-07-16 19:32:30 +00:00
|
|
|
|
|
|
|
lazy_static! {
|
2021-03-13 14:03:19 +00:00
|
|
|
static ref HIT_COUNTER: IntCounterVec = register_int_counter_vec!(
|
|
|
|
opts!("talks_hits", "Number of hits to talks images"),
|
|
|
|
&["name"]
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-07-16 19:32:30 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 22:36:57 +00:00
|
|
|
#[instrument(skip(state))]
|
2020-07-16 19:32:30 +00:00
|
|
|
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()))
|
|
|
|
}
|
|
|
|
|
2020-10-02 22:36:57 +00:00
|
|
|
#[instrument(skip(state))]
|
2020-07-16 19:32:30 +00:00
|
|
|
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) => {
|
2021-03-13 14:03:19 +00:00
|
|
|
HIT_COUNTER
|
|
|
|
.with_label_values(&[name.clone().as_str()])
|
|
|
|
.inc();
|
2020-07-16 19:32:30 +00:00
|
|
|
let body = Html(post.body_html.clone());
|
|
|
|
Response::builder().html(|o| templates::talkpost_html(o, post, body))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|