0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04:00
websurfx/src/lib.rs

93 lines
3.1 KiB
Rust
Raw Normal View History

//! This main library module provides the functionality to provide and handle the Tcp server
//! and register all the routes for the `websurfx` meta search engine website.
pub mod cache;
pub mod config;
2023-04-22 07:35:07 -04:00
pub mod engines;
2023-05-25 04:50:37 -04:00
pub mod handler;
pub mod results;
pub mod server;
2023-04-27 22:39:58 -04:00
use std::net::TcpListener;
use crate::server::routes;
use actix_cors::Cors;
2023-04-27 22:39:58 -04:00
use actix_files as fs;
use actix_web::{dev::Server, http::header, middleware::Logger, web, App, HttpServer};
use config::parser::Config;
2023-04-27 22:39:58 -04:00
use handlebars::Handlebars;
2023-07-04 18:11:30 -04:00
use handler::public_paths::public_path;
2023-04-27 22:39:58 -04:00
/// Runs the web server on the provided TCP listener and returns a `Server` instance.
///
2023-04-27 22:39:58 -04:00
/// # Arguments
///
/// * `listener` - A `TcpListener` instance representing the address and port to listen on.
///
/// # Returns
///
/// Returns a `Result` containing a `Server` instance on success, or an `std::io::Error` on failure.
///
/// # Example
///
/// ```rust
2023-04-27 22:39:58 -04:00
/// use std::net::TcpListener;
2023-07-03 13:38:17 -04:00
/// use websurfx::{config::parser::Config, run};
2023-04-27 22:39:58 -04:00
///
2023-08-02 18:03:56 -04:00
/// let config = Config::parse(true).unwrap();
2023-04-27 22:39:58 -04:00
/// let listener = TcpListener::bind("127.0.0.1:8080").expect("Failed to bind address");
/// let server = run(listener,config).expect("Failed to start server");
2023-04-27 22:39:58 -04:00
/// ```
pub fn run(listener: TcpListener, config: Config) -> std::io::Result<Server> {
2023-04-27 22:39:58 -04:00
let mut handlebars: Handlebars = Handlebars::new();
2023-07-04 18:11:30 -04:00
let public_folder_path: String = public_path()?;
2023-04-27 22:39:58 -04:00
handlebars
2023-05-25 04:50:37 -04:00
.register_templates_directory(".html", format!("{}/templates", public_folder_path))
2023-04-27 22:39:58 -04:00
.unwrap();
let handlebars_ref: web::Data<Handlebars> = web::Data::new(handlebars);
let cloned_config_threads_opt: u8 = config.threads;
2023-04-27 22:39:58 -04:00
let server = HttpServer::new(move || {
let cors: Cors = Cors::default()
.allow_any_origin()
.allowed_methods(vec!["GET"])
.allowed_headers(vec![
header::ORIGIN,
header::CONTENT_TYPE,
header::REFERER,
header::COOKIE,
]);
2023-04-27 22:39:58 -04:00
App::new()
.app_data(handlebars_ref.clone())
.app_data(web::Data::new(config.clone()))
.wrap(cors)
2023-04-27 22:39:58 -04:00
.wrap(Logger::default()) // added logging middleware for logging.
// Serve images and static files (css and js files).
.service(
2023-05-25 04:50:37 -04:00
fs::Files::new("/static", format!("{}/static", public_folder_path))
.show_files_listing(),
)
.service(
2023-05-25 04:50:37 -04:00
fs::Files::new("/images", format!("{}/images", public_folder_path))
.show_files_listing(),
)
2023-04-27 22:39:58 -04:00
.service(routes::robots_data) // robots.txt
.service(routes::index) // index page
.service(routes::search) // search page
.service(routes::about) // about page
.service(routes::settings) // settings page
.default_service(web::route().to(routes::not_found)) // error page
})
.workers(cloned_config_threads_opt as usize)
2023-04-27 22:39:58 -04:00
// Start server on 127.0.0.1 with the user provided port number. for example 127.0.0.1:8080.
.listen(listener)?
.run();
Ok(server)
}