0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-23 06:28:23 -05:00
websurfx/src/server/routes.rs

121 lines
4.2 KiB
Rust
Raw Normal View History

2023-04-27 10:53:28 -04:00
//! This module provides the functionality to handle different routes of the `websurfx`
//! meta search engine website and provide approriate response to each route/page
//! when requested.
2023-04-22 07:35:07 -04:00
use std::fs::read_to_string;
use crate::{config_parser::parser::Config, search_results_handler::aggregator::aggregate};
2023-04-22 07:35:07 -04:00
use actix_web::{get, web, HttpRequest, HttpResponse};
use handlebars::Handlebars;
use serde::Deserialize;
2023-04-27 10:53:28 -04:00
/// A named struct which deserializes all the user provided search parameters and stores them.
///
/// # Fields
///
/// * `q` - It stores the search parameter option `q` (or query in simple words)
/// of the search url.
/// * `page` - It stores the search parameter `page` (or pageno in simple words)
/// of the search url.
2023-04-22 07:35:07 -04:00
#[derive(Debug, Deserialize)]
struct SearchParams {
q: Option<String>,
page: Option<u32>,
}
2023-04-27 10:53:28 -04:00
/// Handles the route of index page or main page of the `websurfx` meta search engine website.
2023-04-22 07:35:07 -04:00
#[get("/")]
pub async fn index(
hbs: web::Data<Handlebars<'_>>,
config: web::Data<Config>,
2023-04-22 07:35:07 -04:00
) -> Result<HttpResponse, Box<dyn std::error::Error>> {
let page_content: String = hbs.render("index", &config.style).unwrap();
2023-04-22 07:35:07 -04:00
Ok(HttpResponse::Ok().body(page_content))
}
2023-04-27 10:53:28 -04:00
/// Handles the route of any other accessed route/page which is not provided by the
/// website essentially the 404 error page.
2023-04-22 07:35:07 -04:00
pub async fn not_found(
hbs: web::Data<Handlebars<'_>>,
config: web::Data<Config>,
2023-04-22 07:35:07 -04:00
) -> Result<HttpResponse, Box<dyn std::error::Error>> {
let page_content: String = hbs.render("404", &config.style)?;
2023-04-22 07:35:07 -04:00
Ok(HttpResponse::Ok()
.content_type("text/html; charset=utf-8")
.body(page_content))
}
2023-04-27 10:53:28 -04:00
/// Handles the route of search page of the `websurfx` meta search engine website and it takes
/// two search url parameters `q` and `page` where `page` parameter is optional.
///
/// # Example
///
/// ```bash
/// curl "http://127.0.0.1:8080/search?q=sweden&page=1"
/// ```
///
2023-04-27 10:53:28 -04:00
/// Or
///
/// ```bash
/// curl "http://127.0.0.1:8080/search?q=sweden"
/// ```
2023-04-22 07:35:07 -04:00
#[get("/search")]
pub async fn search(
hbs: web::Data<Handlebars<'_>>,
req: HttpRequest,
config: web::Data<Config>,
2023-04-22 07:35:07 -04:00
) -> Result<HttpResponse, Box<dyn std::error::Error>> {
let params = web::Query::<SearchParams>::from_query(req.query_string())?;
match &params.q {
Some(query) => {
if query.trim().is_empty() {
Ok(HttpResponse::Found()
.insert_header(("location", "/"))
.finish())
} else {
let mut results_json: crate::search_results_handler::aggregation_models::SearchResults =
2023-04-22 07:35:07 -04:00
aggregate(query, params.page).await?;
results_json.add_style(config.style.clone());
2023-04-22 07:35:07 -04:00
let page_content: String = hbs.render("search", &results_json)?;
Ok(HttpResponse::Ok().body(page_content))
}
}
None => Ok(HttpResponse::Found()
.insert_header(("location", "/"))
.finish()),
}
}
2023-04-27 10:53:28 -04:00
/// Handles the route of robots.txt page of the `websurfx` meta search engine website.
2023-04-22 07:35:07 -04:00
#[get("/robots.txt")]
pub async fn robots_data(_req: HttpRequest) -> Result<HttpResponse, Box<dyn std::error::Error>> {
let page_content: String = read_to_string("./public/robots.txt")?;
Ok(HttpResponse::Ok()
.content_type("text/plain; charset=ascii")
.body(page_content))
}
2023-04-27 10:53:28 -04:00
/// Handles the route of about page of the `websurfx` meta search engine website.
2023-04-22 07:35:07 -04:00
#[get("/about")]
pub async fn about(
hbs: web::Data<Handlebars<'_>>,
config: web::Data<Config>,
2023-04-22 07:35:07 -04:00
) -> Result<HttpResponse, Box<dyn std::error::Error>> {
let page_content: String = hbs.render("about", &config.style)?;
2023-04-22 07:35:07 -04:00
Ok(HttpResponse::Ok().body(page_content))
}
2023-04-27 10:53:28 -04:00
/// Handles the route of settings page of the `websurfx` meta search engine website.
2023-04-22 07:35:07 -04:00
#[get("/settings")]
pub async fn settings(
hbs: web::Data<Handlebars<'_>>,
config: web::Data<Config>,
2023-04-22 07:35:07 -04:00
) -> Result<HttpResponse, Box<dyn std::error::Error>> {
let page_content: String = hbs.render("settings", &config.style)?;
2023-04-22 07:35:07 -04:00
Ok(HttpResponse::Ok().body(page_content))
}
2023-04-27 10:53:28 -04:00
// TODO: Write tests for tesing parameters for search function that if provided with something
// other than u32 like alphabets and special characters than it should panic