libreddit/src/search.rs

54 lines
1.2 KiB
Rust
Raw Normal View History

2021-01-01 00:54:13 +01:00
// CRATES
2021-01-01 06:03:44 +01:00
use crate::utils::{error, fetch_posts, param, Post};
2021-01-03 05:50:23 +01:00
use actix_web::{HttpRequest, HttpResponse};
2021-01-01 00:54:13 +01:00
use askama::Template;
// STRUCTS
2021-01-03 07:37:54 +01:00
struct SearchParams {
q: String,
sort: String,
t: String,
before: String,
after: String,
restrict_sr: String,
}
2021-01-01 00:54:13 +01:00
#[derive(Template)]
#[template(path = "search.html", escape = "none")]
struct SearchTemplate {
posts: Vec<Post>,
sub: String,
2021-01-03 07:37:54 +01:00
params: SearchParams,
2021-01-01 00:54:13 +01:00
}
// SERVICES
2021-01-03 05:50:23 +01:00
pub async fn find(req: HttpRequest) -> HttpResponse {
2021-01-01 00:54:13 +01:00
let path = format!("{}.json?{}", req.path(), req.query_string());
2021-01-01 21:33:57 +01:00
let sort = if param(&path, "sort").is_empty() {
2021-01-01 00:54:13 +01:00
"relevance".to_string()
} else {
2021-01-01 21:33:57 +01:00
param(&path, "sort")
2021-01-01 00:54:13 +01:00
};
let sub = req.match_info().get("sub").unwrap_or("").to_string();
2021-01-02 00:28:13 +01:00
match fetch_posts(&path, String::new()).await {
2021-01-03 05:50:23 +01:00
Ok(posts) => HttpResponse::Ok().content_type("text/html").body(
SearchTemplate {
2021-01-02 00:28:13 +01:00
posts: posts.0,
sub,
2021-01-03 07:37:54 +01:00
params: SearchParams {
q: param(&path, "q"),
sort,
t: param(&path, "t"),
before: param(&path, "after"),
after: posts.1,
restrict_sr: param(&path, "restrict_sr"),
},
2021-01-02 00:28:13 +01:00
}
.render()
2021-01-03 05:50:23 +01:00
.unwrap(),
),
2021-01-02 07:21:43 +01:00
Err(msg) => error(msg.to_string()).await,
2021-01-01 00:54:13 +01:00
}
}