82 lines
2.3 KiB
Rust
Executable File
82 lines
2.3 KiB
Rust
Executable File
extern crate diesel;
|
|
extern crate dotenv;
|
|
|
|
use actix_cors::Cors;
|
|
use actix_service::Service;
|
|
use actix_web::{App, HttpResponse, HttpServer};
|
|
use dotenv::dotenv;
|
|
use futures::future::{ok, Either};
|
|
use std::env;
|
|
mod auth;
|
|
mod database;
|
|
mod json_serialization;
|
|
mod models;
|
|
mod reader;
|
|
mod schema;
|
|
#[cfg(test)]
|
|
mod test_helpers;
|
|
mod views;
|
|
|
|
#[actix_rt::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
dotenv().ok();
|
|
env_logger::init();
|
|
|
|
database::run_migrations(&mut database::establish_connection());
|
|
|
|
let frontend_origin =
|
|
env::var("FRONTEND_ORIGIN").unwrap_or_else(|_| String::from("http://localhost:5173"));
|
|
|
|
HttpServer::new(move || {
|
|
let cors = Cors::default()
|
|
.allowed_origin(&frontend_origin)
|
|
.allow_any_method()
|
|
.allow_any_header()
|
|
.supports_credentials();
|
|
|
|
App::new()
|
|
.wrap_fn(|req, srv| {
|
|
let mut passed: bool;
|
|
let request_url: String = String::from(req.uri().path());
|
|
|
|
log::info!("Request Url: {}", request_url);
|
|
if req.path().contains("/article/") {
|
|
match auth::process_token(&req) {
|
|
Ok(user_id) => {
|
|
log::info!("Authenticated user {} for {}", user_id, request_url);
|
|
passed = true;
|
|
}
|
|
Err(_message) => passed = false,
|
|
}
|
|
} else {
|
|
log::warn!("No auth check done.");
|
|
passed = true;
|
|
}
|
|
|
|
if req.path().contains("user/create") {
|
|
passed = true;
|
|
}
|
|
|
|
log::info!("passed: {:?}", passed);
|
|
|
|
let end_result = match passed {
|
|
true => Either::Left(srv.call(req)),
|
|
false => Either::Right(ok(req.into_response(
|
|
HttpResponse::Unauthorized().finish().map_into_boxed_body(),
|
|
))),
|
|
};
|
|
|
|
async move {
|
|
let result = end_result.await?;
|
|
log::info!("{} -> {}", request_url, &result.status());
|
|
Ok(result)
|
|
}
|
|
})
|
|
.wrap(cors)
|
|
.configure(views::views_factory)
|
|
})
|
|
.bind("0.0.0.0:8001")?
|
|
.run()
|
|
.await
|
|
}
|