2024-04-03 20:40:26 -05:00
|
|
|
// SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra689@gmail.com>
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2024-05-30 14:45:18 -05:00
|
|
|
use actix_files::Files;
|
|
|
|
use actix_session::{storage::CookieSessionStore, SessionMiddleware};
|
|
|
|
use actix_web::{cookie::Key, middleware, web, App, HttpServer};
|
2023-04-03 18:52:17 -05:00
|
|
|
use rusqlite::Connection;
|
2024-04-03 17:40:59 -05:00
|
|
|
use std::{env, io::Result};
|
2024-05-30 14:45:18 -05:00
|
|
|
|
|
|
|
// Import modules
|
2023-04-08 02:52:16 -05:00
|
|
|
mod auth;
|
2023-04-02 22:26:23 -05:00
|
|
|
mod database;
|
2024-05-30 14:45:18 -05:00
|
|
|
mod services;
|
2023-04-02 22:26:23 -05:00
|
|
|
mod utils;
|
2023-04-02 16:53:55 -05:00
|
|
|
|
2023-04-03 18:52:17 -05:00
|
|
|
// This struct represents state
|
|
|
|
struct AppState {
|
|
|
|
db: Connection,
|
|
|
|
}
|
|
|
|
|
2023-04-02 22:26:23 -05:00
|
|
|
#[actix_web::main]
|
2024-04-03 17:40:59 -05:00
|
|
|
async fn main() -> Result<()> {
|
2023-04-10 11:51:20 -05:00
|
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("warn"));
|
|
|
|
|
|
|
|
// Generate session key in runtime so that restart invalidates older logins
|
2023-04-08 02:52:16 -05:00
|
|
|
let secret_key = Key::generate();
|
2024-05-29 10:34:45 -05:00
|
|
|
let db_location = env::var("db_url")
|
|
|
|
.ok()
|
|
|
|
.filter(|s| !s.trim().is_empty())
|
|
|
|
.unwrap_or(String::from("unset"));
|
|
|
|
|
2023-04-08 15:56:29 -05:00
|
|
|
let port = env::var("port")
|
2023-05-23 17:58:57 -05:00
|
|
|
.unwrap_or(String::from("4567"))
|
2023-04-08 15:56:29 -05:00
|
|
|
.parse::<u16>()
|
|
|
|
.expect("Supplied port is not an integer");
|
2023-04-08 15:36:33 -05:00
|
|
|
|
|
|
|
// Actually start the server
|
2023-04-08 02:52:16 -05:00
|
|
|
HttpServer::new(move || {
|
2023-04-02 16:53:55 -05:00
|
|
|
App::new()
|
2024-04-11 13:01:33 -05:00
|
|
|
.wrap(middleware::Logger::default())
|
|
|
|
.wrap(middleware::Compress::default())
|
2023-10-08 18:20:34 -05:00
|
|
|
.wrap(
|
|
|
|
SessionMiddleware::builder(CookieSessionStore::default(), secret_key.clone())
|
2024-04-02 18:07:29 -05:00
|
|
|
.cookie_same_site(actix_web::cookie::SameSite::Strict)
|
2023-10-08 18:20:34 -05:00
|
|
|
.cookie_secure(false)
|
|
|
|
.build(),
|
|
|
|
)
|
2023-04-08 15:36:33 -05:00
|
|
|
// Maintain a single instance of database throughout
|
2023-04-03 18:52:17 -05:00
|
|
|
.app_data(web::Data::new(AppState {
|
2024-05-29 10:34:45 -05:00
|
|
|
db: database::open_db(db_location.clone()),
|
2023-04-03 18:52:17 -05:00
|
|
|
}))
|
2024-05-30 14:45:18 -05:00
|
|
|
.service(services::link_handler)
|
|
|
|
.service(services::getall)
|
|
|
|
.service(services::siteurl)
|
|
|
|
.service(services::version)
|
|
|
|
.service(services::add_link)
|
|
|
|
.service(services::delete_link)
|
|
|
|
.service(services::login)
|
|
|
|
.service(services::logout)
|
2023-05-06 00:34:56 -05:00
|
|
|
.service(Files::new("/", "./resources/").index_file("index.html"))
|
2024-05-30 14:45:18 -05:00
|
|
|
.default_service(actix_web::web::get().to(services::error404))
|
2023-04-02 16:53:55 -05:00
|
|
|
})
|
2023-04-08 15:56:29 -05:00
|
|
|
.bind(("0.0.0.0", port))?
|
2023-04-02 16:53:55 -05:00
|
|
|
.run()
|
|
|
|
.await
|
|
|
|
}
|