1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/actix-web-httpauth/examples/middleware.rs

28 lines
711 B
Rust
Raw Normal View History

use actix_web::dev::ServiceRequest;
use actix_web::{middleware, web, App, Error, HttpServer};
use actix_web_httpauth::extractors::basic::BasicAuth;
use actix_web_httpauth::middleware::HttpAuthentication;
2020-01-06 17:00:43 +01:00
async fn validator(
req: ServiceRequest,
_credentials: BasicAuth,
2020-01-06 17:00:43 +01:00
) -> Result<ServiceRequest, Error> {
Ok(req)
}
#[actix_web::main]
2020-01-06 17:00:43 +01:00
async fn main() -> std::io::Result<()> {
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" }))
})
.bind("127.0.0.1:8080")?
.workers(1)
.run()
2020-01-06 17:00:43 +01:00
.await
}