2022-09-11 22:55:40 +02:00
|
|
|
use actix_web::{dev::ServiceRequest, middleware, web, App, Error, HttpServer};
|
|
|
|
use actix_web_httpauth::{extractors::basic::BasicAuth, middleware::HttpAuthentication};
|
2019-06-07 23:20:55 +02:00
|
|
|
|
2022-07-19 02:40:01 +02:00
|
|
|
async fn validator(
|
|
|
|
req: ServiceRequest,
|
|
|
|
_credentials: BasicAuth,
|
|
|
|
) -> Result<ServiceRequest, (Error, ServiceRequest)> {
|
2020-01-06 17:00:43 +01:00
|
|
|
Ok(req)
|
2019-06-07 23:20:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-18 16:08:03 +01:00
|
|
|
#[actix_web::main]
|
2020-01-06 17:00:43 +01:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-06-07 23:20:55 +02:00
|
|
|
HttpServer::new(|| {
|
|
|
|
let auth = HttpAuthentication::basic(validator);
|
|
|
|
App::new()
|
|
|
|
.wrap(middleware::Logger::default())
|
|
|
|
.wrap(auth)
|
2020-01-06 17:00:43 +01:00
|
|
|
.service(web::resource("/").to(|| async { "Test\r\n" }))
|
2019-06-07 23:20:55 +02:00
|
|
|
})
|
|
|
|
.bind("127.0.0.1:8080")?
|
|
|
|
.workers(1)
|
|
|
|
.run()
|
2020-01-06 17:00:43 +01:00
|
|
|
.await
|
2019-06-07 23:20:55 +02:00
|
|
|
}
|