diff --git a/ntex/src/web/app.rs b/ntex/src/web/app.rs index 767b3306..0809c000 100644 --- a/ntex/src/web/app.rs +++ b/ntex/src/web/app.rs @@ -20,11 +20,11 @@ use super::dev::ResourceDef; use super::resource::Resource; use super::route::Route; use super::service::{ - AppServiceFactory, HttpServiceFactory, ServiceFactoryWrapper, ServiceRequest, - ServiceResponse, + AppServiceFactory, HttpServiceFactory, ServiceFactoryWrapper, WebRequest, + WebResponse, }; -type HttpNewService = BoxServiceFactory<(), ServiceRequest, ServiceResponse, Error, ()>; +type HttpNewService = BoxServiceFactory<(), WebRequest, WebResponse, Error, ()>; type FnDataFactory = Box LocalBoxFuture<'static, Result, ()>>>; @@ -65,8 +65,8 @@ where B: MessageBody, T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -270,8 +270,8 @@ where F: IntoServiceFactory, U: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, > + 'static, U::InitError: fmt::Debug, @@ -353,8 +353,8 @@ where ) -> App< impl ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -363,8 +363,8 @@ where where M: Transform< T::Service, - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -420,8 +420,8 @@ where ) -> App< impl ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -429,8 +429,8 @@ where > where B1: MessageBody, - F: FnMut(ServiceRequest, &mut T::Service) -> R + Clone, - R: Future, Error>>, + F: FnMut(WebRequest, &mut T::Service) -> R + Clone, + R: Future, Error>>, { App { endpoint: apply_fn_factory(self.endpoint, mw), @@ -451,8 +451,8 @@ where B: MessageBody, T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -480,7 +480,7 @@ mod tests { use crate::http::header::{self, HeaderValue}; use crate::http::{Method, StatusCode}; use crate::web::middleware::DefaultHeaders; - use crate::web::service::ServiceRequest; + use crate::web::service::WebRequest; use crate::web::test::{call_service, init_service, read_body, TestRequest}; use crate::web::{self, HttpRequest, HttpResponse}; use crate::Service; @@ -504,12 +504,12 @@ mod tests { .service(web::resource("/test").to(|| HttpResponse::Ok())) .service( web::resource("/test2") - .default_service(|r: ServiceRequest| { + .default_service(|r: WebRequest| { ok(r.into_response(HttpResponse::Created())) }) .route(web::get().to(|| HttpResponse::Ok())), ) - .default_service(|r: ServiceRequest| { + .default_service(|r: WebRequest| { ok(r.into_response(HttpResponse::MethodNotAllowed())) }), ) diff --git a/ntex/src/web/app_service.rs b/ntex/src/web/app_service.rs index f73dddfb..fb9abf2b 100644 --- a/ntex/src/web/app_service.rs +++ b/ntex/src/web/app_service.rs @@ -17,50 +17,50 @@ use super::data::DataFactory; use super::guard::Guard; use super::request::{HttpRequest, HttpRequestPool}; use super::rmap::ResourceMap; -use super::service::{AppServiceFactory, ServiceRequest, ServiceResponse}; +use super::service::{AppServiceFactory, WebRequest, WebResponse}; type Guards = Vec>; -type HttpService = BoxService; -type HttpNewService = BoxServiceFactory<(), ServiceRequest, ServiceResponse, Error, ()>; -type BoxResponse = LocalBoxFuture<'static, Result>; +type HttpService = BoxService; +type HttpNewService = BoxServiceFactory<(), WebRequest, WebResponse, Error, ()>; +type BoxResponse = LocalBoxFuture<'static, Result>; type FnDataFactory = Box LocalBoxFuture<'static, Result, ()>>>; -/// Service factory to convert `Request` to a `ServiceRequest`. +/// Service factory to convert `Request` to a `WebRequest`. /// It also executes data factories. pub struct AppInit where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, { - pub(crate) endpoint: T, - pub(crate) extensions: RefCell>, - pub(crate) data: Rc>>, - pub(crate) data_factories: Rc>, - pub(crate) services: Rc>>>, - pub(crate) default: Option>, - pub(crate) factory_ref: Rc>>, - pub(crate) external: RefCell>, + pub(super) endpoint: T, + pub(super) extensions: RefCell>, + pub(super) data: Rc>>, + pub(super) data_factories: Rc>, + pub(super) services: Rc>>>, + pub(super) default: Option>, + pub(super) factory_ref: Rc>>, + pub(super) external: RefCell>, } impl ServiceFactory for AppInit where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, { type Config = AppConfig; type Request = Request; - type Response = ServiceResponse; + type Response = WebResponse; type Error = T::Error; type InitError = T::InitError; type Service = AppInitService; @@ -69,7 +69,7 @@ where fn new_service(&self, config: AppConfig) -> Self::Future { // update resource default service let default = self.default.clone().unwrap_or_else(|| { - Rc::new(boxed::factory(fn_service(|req: ServiceRequest| { + Rc::new(boxed::factory(fn_service(|req: WebRequest| { ok(req.into_response(Response::NotFound().finish())) }))) }); @@ -149,8 +149,8 @@ impl Future for AppInitResult where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -202,10 +202,10 @@ where } } -/// Service to convert `Request` to a `ServiceRequest` +/// Service to convert `Request` to a `WebRequest` pub struct AppInitService where - T: Service, Error = Error>, + T: Service, Error = Error>, { service: T, rmap: Rc, @@ -216,10 +216,10 @@ where impl Service for AppInitService where - T: Service, Error = Error>, + T: Service, Error = Error>, { type Request = Request; - type Response = ServiceResponse; + type Response = WebResponse; type Error = T::Error; type Future = T::Future; @@ -249,13 +249,13 @@ where self.pool, ) }; - self.service.call(ServiceRequest::new(req)) + self.service.call(WebRequest::new(req)) } } impl Drop for AppInitService where - T: Service, Error = Error>, + T: Service, Error = Error>, { fn drop(&mut self) { self.pool.clear(); @@ -269,8 +269,8 @@ pub struct AppRoutingFactory { impl ServiceFactory for AppRoutingFactory { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = AppRouting; @@ -374,13 +374,13 @@ impl Future for AppRoutingFactoryResponse { pub struct AppRouting { router: Router, - ready: Option<(ServiceRequest, ResourceInfo)>, + ready: Option<(WebRequest, ResourceInfo)>, default: Option, } impl Service for AppRouting { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = BoxResponse; @@ -392,7 +392,7 @@ impl Service for AppRouting { } } - fn call(&mut self, mut req: ServiceRequest) -> Self::Future { + fn call(&mut self, mut req: WebRequest) -> Self::Future { let res = self.router.recognize_mut_checked(&mut req, |req, guards| { if let Some(ref guards) = guards { for f in guards { @@ -410,7 +410,7 @@ impl Service for AppRouting { default.call(req) } else { let req = req.into_parts().0; - ok(ServiceResponse::new(req, Response::NotFound().finish())).boxed_local() + ok(WebResponse::new(req, Response::NotFound().finish())).boxed_local() } } } @@ -428,8 +428,8 @@ impl AppEntry { impl ServiceFactory for AppEntry { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = AppRouting; diff --git a/ntex/src/web/config.rs b/ntex/src/web/config.rs index d94232f3..3a254076 100644 --- a/ntex/src/web/config.rs +++ b/ntex/src/web/config.rs @@ -12,13 +12,12 @@ use super::resource::Resource; use super::rmap::ResourceMap; use super::route::Route; use super::service::{ - AppServiceFactory, HttpServiceFactory, ServiceFactoryWrapper, ServiceRequest, - ServiceResponse, + AppServiceFactory, HttpServiceFactory, ServiceFactoryWrapper, WebRequest, + WebResponse, }; type Guards = Vec>; -type HttpNewService = - boxed::BoxServiceFactory<(), ServiceRequest, ServiceResponse, Error, ()>; +type HttpNewService = boxed::BoxServiceFactory<(), WebRequest, WebResponse, Error, ()>; /// Application configuration pub struct AppService { @@ -108,8 +107,8 @@ impl AppService { F: IntoServiceFactory, S: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), > + 'static, @@ -174,9 +173,9 @@ impl Default for AppConfig { /// to set of external methods. This could help with /// modularization of big application configuration. pub struct ServiceConfig { - pub(crate) services: Vec>, - pub(crate) data: Vec>, - pub(crate) external: Vec, + pub(super) services: Vec>, + pub(super) data: Vec>, + pub(super) external: Vec, } impl ServiceConfig { diff --git a/ntex/src/web/handler.rs b/ntex/src/web/handler.rs index 13419e6c..0d904702 100644 --- a/ntex/src/web/handler.rs +++ b/ntex/src/web/handler.rs @@ -14,7 +14,7 @@ use crate::{Service, ServiceFactory}; use super::extract::FromRequest; use super::request::HttpRequest; use super::responder::Responder; -use super::service::{ServiceRequest, ServiceResponse}; +use super::service::{WebRequest, WebResponse}; /// Async handler converter factory pub trait Factory: Clone + 'static @@ -82,16 +82,16 @@ where O: Responder, { type Request = (T, HttpRequest); - type Response = ServiceResponse; + type Response = WebResponse; type Error = Infallible; - type Future = HandlerServiceResponse; + type Future = HandlerWebResponse; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } fn call(&mut self, (param, req): (T, HttpRequest)) -> Self::Future { - HandlerServiceResponse { + HandlerWebResponse { fut: self.hnd.call(param), fut2: None, req: Some(req), @@ -101,7 +101,7 @@ where #[doc(hidden)] #[pin_project] -pub struct HandlerServiceResponse +pub struct HandlerWebResponse where T: Future, R: Responder, @@ -113,12 +113,12 @@ where req: Option, } -impl Future for HandlerServiceResponse +impl Future for HandlerWebResponse where T: Future, R: Responder, { - type Output = Result; + type Output = Result; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.as_mut().project(); @@ -126,12 +126,12 @@ where if let Some(fut) = this.fut2.as_pin_mut() { return match fut.poll(cx) { Poll::Ready(Ok(res)) => { - Poll::Ready(Ok(ServiceResponse::new(this.req.take().unwrap(), res))) + Poll::Ready(Ok(WebResponse::new(this.req.take().unwrap(), res))) } Poll::Pending => Poll::Pending, Poll::Ready(Err(e)) => { let res: Response = e.into().into(); - Poll::Ready(Ok(ServiceResponse::new(this.req.take().unwrap(), res))) + Poll::Ready(Ok(WebResponse::new(this.req.take().unwrap(), res))) } }; } @@ -164,16 +164,13 @@ impl Extract { impl ServiceFactory for Extract where - S: Service< - Request = (T, HttpRequest), - Response = ServiceResponse, - Error = Infallible, - > + Clone, + S: Service + + Clone, { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; - type Error = (Error, ServiceRequest); + type Request = WebRequest; + type Response = WebResponse; + type Error = (Error, WebRequest); type InitError = (); type Service = ExtractService; type Future = Ready>; @@ -193,22 +190,19 @@ pub struct ExtractService { impl Service for ExtractService where - S: Service< - Request = (T, HttpRequest), - Response = ServiceResponse, - Error = Infallible, - > + Clone, + S: Service + + Clone, { - type Request = ServiceRequest; - type Response = ServiceResponse; - type Error = (Error, ServiceRequest); + type Request = WebRequest; + type Response = WebResponse; + type Error = (Error, WebRequest); type Future = ExtractResponse; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { let (req, mut payload) = req.into_parts(); let fut = T::from_request(&req, &mut payload); @@ -233,13 +227,9 @@ pub struct ExtractResponse { impl Future for ExtractResponse where - S: Service< - Request = (T, HttpRequest), - Response = ServiceResponse, - Error = Infallible, - >, + S: Service, { - type Output = Result; + type Output = Result; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.as_mut().project(); @@ -250,7 +240,7 @@ where match ready!(this.fut.poll(cx)) { Err(e) => { - let req = ServiceRequest::new(this.req.clone()); + let req = WebRequest::new(this.req.clone()); Poll::Ready(Err((e.into(), req))) } Ok(item) => { diff --git a/ntex/src/web/middleware/compress.rs b/ntex/src/web/middleware/compress.rs index 96ac7531..ccff05bd 100644 --- a/ntex/src/web/middleware/compress.rs +++ b/ntex/src/web/middleware/compress.rs @@ -16,7 +16,7 @@ use crate::http::Error; use crate::service::{Service, Transform}; use crate::web::dev::BodyEncoding; -use crate::web::service::{ServiceRequest, ServiceResponse}; +use crate::web::service::{WebRequest, WebResponse}; #[derive(Debug, Clone)] /// `Middleware` for compressing response body. @@ -55,10 +55,10 @@ impl Default for Compress { impl Transform for Compress where B: MessageBody, - S: Service, Error = Error>, + S: Service, Error = Error>, { - type Request = ServiceRequest; - type Response = ServiceResponse>; + type Request = WebRequest; + type Response = WebResponse>; type Error = Error; type InitError = (); type Transform = CompressMiddleware; @@ -80,10 +80,10 @@ pub struct CompressMiddleware { impl Service for CompressMiddleware where B: MessageBody, - S: Service, Error = Error>, + S: Service, Error = Error>, { - type Request = ServiceRequest; - type Response = ServiceResponse>; + type Request = WebRequest; + type Response = WebResponse>; type Error = Error; type Future = CompressResponse; @@ -91,7 +91,7 @@ where self.service.poll_ready(cx) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { // negotiate content-encoding let encoding = if let Some(val) = req.headers().get(&ACCEPT_ENCODING) { if let Ok(enc) = val.to_str() { @@ -127,9 +127,9 @@ where impl Future for CompressResponse where B: MessageBody, - S: Service, Error = Error>, + S: Service, Error = Error>, { - type Output = Result>, Error>; + type Output = Result>, Error>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.project(); diff --git a/ntex/src/web/middleware/cors.rs b/ntex/src/web/middleware/cors.rs index 429fe9ea..6ff62d99 100644 --- a/ntex/src/web/middleware/cors.rs +++ b/ntex/src/web/middleware/cors.rs @@ -46,7 +46,7 @@ use std::rc::Rc; use std::task::{Context, Poll}; use actix_service::{Service, Transform}; -use actix_web::dev::{RequestHead, ServiceRequest, ServiceResponse}; +use actix_web::dev::{RequestHead, WebRequest, WebResponse}; use actix_web::error::{Error, ResponseError, Result}; use actix_web::http::header::{self, HeaderName, HeaderValue}; use actix_web::http::{self, Error as HttpError, Method, StatusCode, Uri}; @@ -535,12 +535,12 @@ pub struct CorsFactory { impl Transform for CorsFactory where - S: Service, Error = Error>, + S: Service, Error = Error>, S::Future: 'static, B: 'static, { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Transform = CorsMiddleware; @@ -678,12 +678,12 @@ impl Inner { impl Service for CorsMiddleware where - S: Service, Error = Error>, + S: Service, Error = Error>, S::Future: 'static, B: 'static, { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = Either< Ready>, @@ -694,7 +694,7 @@ where self.service.poll_ready(cx) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { if self.inner.preflight && Method::OPTIONS == *req.method() { if let Err(e) = self .inner @@ -1083,7 +1083,7 @@ mod tests { .expose_headers(exposed_headers.clone()) .allowed_header(header::CONTENT_TYPE) .finish() - .new_transform(fn_service(|req: ServiceRequest| { + .new_transform(fn_service(|req: WebRequest| { ok(req.into_response( HttpResponse::Ok().header(header::VARY, "Accept").finish(), )) diff --git a/ntex/src/web/middleware/defaultheaders.rs b/ntex/src/web/middleware/defaultheaders.rs index 99783dee..0e7dc67b 100644 --- a/ntex/src/web/middleware/defaultheaders.rs +++ b/ntex/src/web/middleware/defaultheaders.rs @@ -8,7 +8,7 @@ use futures::future::{ok, FutureExt, LocalBoxFuture, Ready}; use crate::http::error::{Error, HttpError}; use crate::http::header::{HeaderMap, HeaderName, HeaderValue, CONTENT_TYPE}; use crate::service::{Service, Transform}; -use crate::web::service::{ServiceRequest, ServiceResponse}; +use crate::web::service::{WebRequest, WebResponse}; /// `Middleware` for setting default response headers. /// @@ -91,11 +91,11 @@ impl DefaultHeaders { impl Transform for DefaultHeaders where - S: Service, Error = Error>, + S: Service, Error = Error>, S::Future: 'static, { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Transform = DefaultHeadersMiddleware; @@ -116,11 +116,11 @@ pub struct DefaultHeadersMiddleware { impl Service for DefaultHeadersMiddleware where - S: Service, Error = Error>, + S: Service, Error = Error>, S::Future: 'static, { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = LocalBoxFuture<'static, Result>; @@ -128,7 +128,7 @@ where self.service.poll_ready(cx) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { let inner = self.inner.clone(); let fut = self.service.call(req); @@ -161,7 +161,7 @@ mod tests { use super::*; use crate::http::header::CONTENT_TYPE; use crate::service::IntoService; - use crate::web::service::ServiceRequest; + use crate::web::service::WebRequest; use crate::web::test::{ok_service, TestRequest}; use crate::web::HttpResponse; @@ -178,7 +178,7 @@ mod tests { assert_eq!(resp.headers().get(CONTENT_TYPE).unwrap(), "0001"); let req = TestRequest::default().to_srv_request(); - let srv = |req: ServiceRequest| { + let srv = |req: WebRequest| { ok(req .into_response(HttpResponse::Ok().header(CONTENT_TYPE, "0002").finish())) }; @@ -193,8 +193,7 @@ mod tests { #[actix_rt::test] async fn test_content_type() { - let srv = - |req: ServiceRequest| ok(req.into_response(HttpResponse::Ok().finish())); + let srv = |req: WebRequest| ok(req.into_response(HttpResponse::Ok().finish())); let mut mw = DefaultHeaders::new() .content_type() .new_transform(srv.into_service()) diff --git a/ntex/src/web/middleware/logger.rs b/ntex/src/web/middleware/logger.rs index 0e39e1d6..026e7403 100644 --- a/ntex/src/web/middleware/logger.rs +++ b/ntex/src/web/middleware/logger.rs @@ -20,7 +20,7 @@ use crate::http::error::Error; use crate::http::header::HeaderName; use crate::http::StatusCode; use crate::service::{Service, Transform}; -use crate::web::service::{ServiceRequest, ServiceResponse}; +use crate::web::service::{WebRequest, WebResponse}; use crate::web::HttpResponse; /// `Middleware` for logging request and response info to the terminal. @@ -121,11 +121,11 @@ impl Default for Logger { impl Transform for Logger where - S: Service, Error = Error>, + S: Service, Error = Error>, B: MessageBody, { - type Request = ServiceRequest; - type Response = ServiceResponse>; + type Request = WebRequest; + type Response = WebResponse>; type Error = Error; type InitError = (); type Transform = LoggerMiddleware; @@ -147,11 +147,11 @@ pub struct LoggerMiddleware { impl Service for LoggerMiddleware where - S: Service, Error = Error>, + S: Service, Error = Error>, B: MessageBody, { - type Request = ServiceRequest; - type Response = ServiceResponse>; + type Request = WebRequest; + type Response = WebResponse>; type Error = Error; type Future = LoggerResponse; @@ -159,7 +159,7 @@ where self.service.poll_ready(cx) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { if self.inner.exclude.contains(req.path()) { LoggerResponse { fut: self.service.call(req), @@ -201,9 +201,9 @@ where impl Future for LoggerResponse where B: MessageBody, - S: Service, Error = Error>, + S: Service, Error = Error>, { - type Output = Result>, Error>; + type Output = Result>, Error>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.project(); @@ -418,7 +418,7 @@ impl FormatText { } } - fn render_request(&mut self, now: OffsetDateTime, req: &ServiceRequest) { + fn render_request(&mut self, now: OffsetDateTime, req: &WebRequest) { match *self { FormatText::RequestLine => { *self = if req.query_string().is_empty() { @@ -488,7 +488,7 @@ mod tests { #[actix_rt::test] async fn test_logger() { - let srv = |req: ServiceRequest| { + let srv = |req: WebRequest| { ok(req.into_response( HttpResponse::build(StatusCode::OK) .header("X-Test", "ttt") diff --git a/ntex/src/web/mod.rs b/ntex/src/web/mod.rs index c1930f9d..d0bd40f7 100644 --- a/ntex/src/web/mod.rs +++ b/ntex/src/web/mod.rs @@ -115,7 +115,7 @@ pub mod dev { pub use crate::web::info::ConnectionInfo; pub use crate::web::rmap::ResourceMap; pub use crate::web::service::{ - HttpServiceFactory, ServiceRequest, ServiceResponse, WebService, + HttpServiceFactory, WebRequest, WebResponse, WebService, }; pub use crate::web::types::form::UrlEncoded; diff --git a/ntex/src/web/resource.rs b/ntex/src/web/resource.rs index 89db6c3e..04e921e5 100644 --- a/ntex/src/web/resource.rs +++ b/ntex/src/web/resource.rs @@ -20,10 +20,10 @@ use crate::web::guard::Guard; use crate::web::handler::Factory; use crate::web::responder::Responder; use crate::web::route::{CreateRouteService, Route, RouteService}; -use crate::web::service::{ServiceRequest, ServiceResponse}; +use crate::web::service::{WebRequest, WebResponse}; -type HttpService = BoxService; -type HttpNewService = BoxServiceFactory<(), ServiceRequest, ServiceResponse, Error, ()>; +type HttpService = BoxService; +type HttpNewService = BoxServiceFactory<(), WebRequest, WebResponse, Error, ()>; /// *Resource* is an entry in resources table which corresponds to requested URL. /// @@ -79,8 +79,8 @@ impl Resource where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -250,8 +250,8 @@ where ) -> Resource< impl ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -259,8 +259,8 @@ where where M: Transform< T::Service, - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -279,7 +279,7 @@ where /// Register a resource middleware function. /// - /// This function accepts instance of `ServiceRequest` type and + /// This function accepts instance of `WebRequest` type and /// mutable reference to the next middleware in chain. /// /// This is similar to `App's` middlewares, but middleware get invoked on resource level. @@ -317,15 +317,15 @@ where ) -> Resource< impl ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, > where - F: FnMut(ServiceRequest, &mut T::Service) -> R + Clone, - R: Future>, + F: FnMut(WebRequest, &mut T::Service) -> R + Clone, + R: Future>, { Resource { endpoint: apply_fn_factory(self.endpoint, mw), @@ -347,8 +347,8 @@ where F: IntoServiceFactory, U: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, > + 'static, U::InitError: fmt::Debug, @@ -368,8 +368,8 @@ impl HttpServiceFactory for Resource where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), > + 'static, @@ -400,8 +400,8 @@ impl IntoServiceFactory for Resource where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -425,8 +425,8 @@ pub struct ResourceFactory { impl ServiceFactory for ResourceFactory { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = ResourceService; @@ -519,19 +519,19 @@ pub struct ResourceService { } impl Service for ResourceService { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = Either< - Ready>, - LocalBoxFuture<'static, Result>, + Ready>, + LocalBoxFuture<'static, Result>, >; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } - fn call(&mut self, mut req: ServiceRequest) -> Self::Future { + fn call(&mut self, mut req: WebRequest) -> Self::Future { for route in self.routes.iter_mut() { if route.check(&mut req) { if let Some(ref data) = self.data { @@ -544,7 +544,7 @@ impl Service for ResourceService { Either::Right(default.call(req)) } else { let req = req.into_parts().0; - Either::Left(ok(ServiceResponse::new( + Either::Left(ok(WebResponse::new( req, Response::MethodNotAllowed().finish(), ))) @@ -565,8 +565,8 @@ impl ResourceEndpoint { impl ServiceFactory for ResourceEndpoint { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = ResourceService; @@ -587,7 +587,7 @@ mod tests { use crate::http::header::{self, HeaderValue}; use crate::http::{Error, Method, StatusCode}; use crate::web::middleware::DefaultHeaders; - use crate::web::service::ServiceRequest; + use crate::web::service::WebRequest; use crate::web::test::{call_service, init_service, TestRequest}; use crate::web::{self, guard, App, HttpResponse}; use crate::Service; @@ -683,7 +683,7 @@ mod tests { .service( web::resource("/test").route(web::get().to(|| HttpResponse::Ok())), ) - .default_service(|r: ServiceRequest| { + .default_service(|r: WebRequest| { ok(r.into_response(HttpResponse::BadRequest())) }), ) @@ -702,7 +702,7 @@ mod tests { App::new().service( web::resource("/test") .route(web::get().to(|| HttpResponse::Ok())) - .default_service(|r: ServiceRequest| { + .default_service(|r: WebRequest| { ok(r.into_response(HttpResponse::BadRequest())) }), ), diff --git a/ntex/src/web/route.rs b/ntex/src/web/route.rs index 94ed94ff..7437d078 100644 --- a/ntex/src/web/route.rs +++ b/ntex/src/web/route.rs @@ -12,7 +12,7 @@ use crate::web::extract::FromRequest; use crate::web::guard::{self, Guard}; use crate::web::handler::{Extract, Factory, Handler}; use crate::web::responder::Responder; -use crate::web::service::{ServiceRequest, ServiceResponse}; +use crate::web::service::{WebRequest, WebResponse}; use crate::web::HttpResponse; type BoxedRouteService = Box< @@ -41,7 +41,7 @@ type BoxedRouteNewService = Box< /// Route uses builder-like pattern for configuration. /// If handler is not explicitly set, default *404 Not Found* handler is used. pub struct Route { - service: BoxedRouteNewService, + service: BoxedRouteNewService, guards: Rc>>, } @@ -63,8 +63,8 @@ impl Route { impl ServiceFactory for Route { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = RouteService; @@ -78,10 +78,8 @@ impl ServiceFactory for Route { } } -type RouteFuture = LocalBoxFuture< - 'static, - Result, ()>, ->; +type RouteFuture = + LocalBoxFuture<'static, Result, ()>>; #[pin_project::pin_project] pub struct CreateRouteService { @@ -107,12 +105,12 @@ impl Future for CreateRouteService { } pub struct RouteService { - service: BoxedRouteService, + service: BoxedRouteService, guards: Rc>>, } impl RouteService { - pub fn check(&self, req: &mut ServiceRequest) -> bool { + pub fn check(&self, req: &mut WebRequest) -> bool { for f in self.guards.iter() { if !f.check(req.head()) { return false; @@ -123,8 +121,8 @@ impl RouteService { } impl Service for RouteService { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = LocalBoxFuture<'static, Result>; @@ -132,7 +130,7 @@ impl Service for RouteService { self.service.poll_ready(cx) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { self.service.call(req).boxed_local() } } @@ -239,7 +237,7 @@ impl Route { struct RouteNewService where - T: ServiceFactory, + T: ServiceFactory, { service: T, } @@ -248,9 +246,9 @@ impl RouteNewService where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, - Error = (Error, ServiceRequest), + Request = WebRequest, + Response = WebResponse, + Error = (Error, WebRequest), >, T::Future: 'static, T::Service: 'static, @@ -265,20 +263,20 @@ impl ServiceFactory for RouteNewService where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, - Error = (Error, ServiceRequest), + Request = WebRequest, + Response = WebResponse, + Error = (Error, WebRequest), >, T::Future: 'static, T::Service: 'static, ::Future: 'static, { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); - type Service = BoxedRouteService; + type Service = BoxedRouteService; type Future = LocalBoxFuture<'static, Result>; fn new_service(&self, _: ()) -> Self::Future { @@ -304,13 +302,13 @@ impl Service for RouteServiceWrapper where T::Future: 'static, T: Service< - Request = ServiceRequest, - Response = ServiceResponse, - Error = (Error, ServiceRequest), + Request = WebRequest, + Response = WebResponse, + Error = (Error, WebRequest), >, { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = LocalBoxFuture<'static, Result>; @@ -318,7 +316,7 @@ where self.service.poll_ready(cx).map_err(|(e, _)| e) } - fn call(&mut self, req: ServiceRequest) -> Self::Future { + fn call(&mut self, req: WebRequest) -> Self::Future { self.service .call(req) .map(|res| match res { diff --git a/ntex/src/web/scope.rs b/ntex/src/web/scope.rs index 65f7200b..35523112 100644 --- a/ntex/src/web/scope.rs +++ b/ntex/src/web/scope.rs @@ -20,13 +20,13 @@ use crate::web::resource::Resource; use crate::web::rmap::ResourceMap; use crate::web::route::Route; use crate::web::service::{ - AppServiceFactory, ServiceFactoryWrapper, ServiceRequest, ServiceResponse, + AppServiceFactory, ServiceFactoryWrapper, WebRequest, WebResponse, }; type Guards = Vec>; -type HttpService = BoxService; -type HttpNewService = BoxServiceFactory<(), ServiceRequest, ServiceResponse, Error, ()>; -type BoxedResponse = LocalBoxFuture<'static, Result>; +type HttpService = BoxService; +type HttpNewService = BoxServiceFactory<(), WebRequest, WebResponse, Error, ()>; +type BoxedResponse = LocalBoxFuture<'static, Result>; /// Resources scope. /// @@ -89,8 +89,8 @@ impl Scope where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -283,8 +283,8 @@ where F: IntoServiceFactory, U: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, > + 'static, U::InitError: fmt::Debug, @@ -305,7 +305,7 @@ where /// necessary, across all requests managed by the *Scope*. Scope-level /// middleware is more limited in what it can modify, relative to Route or /// Application level middleware, in that Scope-level middleware can not modify - /// ServiceResponse. + /// WebResponse. /// /// Use middleware when you need to read or modify *every* request in some way. pub fn wrap( @@ -314,8 +314,8 @@ where ) -> Scope< impl ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -323,8 +323,8 @@ where where M: Transform< T::Service, - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, @@ -346,7 +346,7 @@ where /// request as necessary, across all requests managed by the *Scope*. /// Scope-level middleware is more limited in what it can modify, relative /// to Route or Application level middleware, in that Scope-level middleware - /// can not modify ServiceResponse. + /// can not modify WebResponse. /// /// ```rust /// use ntex::service::Service; @@ -379,15 +379,15 @@ where ) -> Scope< impl ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), >, > where - F: FnMut(ServiceRequest, &mut T::Service) -> R + Clone, - R: Future>, + F: FnMut(WebRequest, &mut T::Service) -> R + Clone, + R: Future>, { Scope { endpoint: apply_fn_factory(self.endpoint, mw), @@ -406,8 +406,8 @@ impl HttpServiceFactory for Scope where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), > + 'static, @@ -477,8 +477,8 @@ pub struct ScopeFactory { impl ServiceFactory for ScopeFactory { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = ScopeService; @@ -593,12 +593,12 @@ pub struct ScopeService { data: Option>, router: Router>>, default: Option, - _ready: Option<(ServiceRequest, ResourceInfo)>, + _ready: Option<(WebRequest, ResourceInfo)>, } impl Service for ScopeService { - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type Future = Either>>; @@ -606,7 +606,7 @@ impl Service for ScopeService { Poll::Ready(Ok(())) } - fn call(&mut self, mut req: ServiceRequest) -> Self::Future { + fn call(&mut self, mut req: WebRequest) -> Self::Future { let res = self.router.recognize_mut_checked(&mut req, |req, guards| { if let Some(ref guards) = guards { for f in guards { @@ -627,7 +627,7 @@ impl Service for ScopeService { Either::Left(default.call(req)) } else { let req = req.into_parts().0; - Either::Right(ok(ServiceResponse::new(req, Response::NotFound().finish()))) + Either::Right(ok(WebResponse::new(req, Response::NotFound().finish()))) } } } @@ -645,8 +645,8 @@ impl ScopeEndpoint { impl ServiceFactory for ScopeEndpoint { type Config = (); - type Request = ServiceRequest; - type Response = ServiceResponse; + type Request = WebRequest; + type Response = WebResponse; type Error = Error; type InitError = (); type Service = ScopeService; @@ -667,7 +667,7 @@ mod tests { use crate::http::{Method, StatusCode}; use crate::service::Service; use crate::web::middleware::DefaultHeaders; - use crate::web::service::ServiceRequest; + use crate::web::service::WebRequest; use crate::web::test::{call_service, init_service, read_body, TestRequest}; use crate::web::{self, guard, App, HttpRequest, HttpResponse}; @@ -993,7 +993,7 @@ mod tests { App::new().service( web::scope("/app") .service(web::resource("/path1").to(|| HttpResponse::Ok())) - .default_service(|r: ServiceRequest| { + .default_service(|r: WebRequest| { ok(r.into_response(HttpResponse::BadRequest())) }), ), @@ -1017,7 +1017,7 @@ mod tests { web::resource("").to(|| HttpResponse::BadRequest()), )) .service(web::scope("/app2")) - .default_service(|r: ServiceRequest| { + .default_service(|r: WebRequest| { ok(r.into_response(HttpResponse::MethodNotAllowed())) }), ) diff --git a/ntex/src/web/service.rs b/ntex/src/web/service.rs index b899dbd1..1bdb2a57 100644 --- a/ntex/src/web/service.rs +++ b/ntex/src/web/service.rs @@ -23,11 +23,11 @@ pub trait HttpServiceFactory { fn register(self, config: &mut AppService); } -pub(crate) trait AppServiceFactory { +pub(super) trait AppServiceFactory { fn register(&mut self, config: &mut AppService); } -pub(crate) struct ServiceFactoryWrapper { +pub(super) struct ServiceFactoryWrapper { factory: Option, } @@ -52,13 +52,13 @@ where /// An service http request /// -/// ServiceRequest allows mutable access to request's internal structures -pub struct ServiceRequest(HttpRequest); +/// WebRequest allows mutable access to request's internal structures +pub struct WebRequest(HttpRequest); -impl ServiceRequest { - /// Construct service request +impl WebRequest { + /// Construct web request pub(crate) fn new(req: HttpRequest) -> Self { - ServiceRequest(req) + WebRequest(req) } /// Deconstruct request into parts @@ -69,14 +69,14 @@ impl ServiceRequest { /// Construct request from parts. /// - /// `ServiceRequest` can be re-constructed only if `req` hasnt been cloned. + /// `WebRequest` can be re-constructed only if `req` hasnt been cloned. pub fn from_parts( mut req: HttpRequest, pl: Payload, ) -> Result { if Rc::strong_count(&req.0) == 1 && Rc::weak_count(&req.0) == 0 { Rc::get_mut(&mut req.0).unwrap().payload = pl; - Ok(ServiceRequest(req)) + Ok(WebRequest(req)) } else { Err((req, pl)) } @@ -84,28 +84,28 @@ impl ServiceRequest { /// Construct request from request. /// - /// `HttpRequest` implements `Clone` trait via `Rc` type. `ServiceRequest` + /// `HttpRequest` implements `Clone` trait via `Rc` type. `WebRequest` /// can be re-constructed only if rc's strong pointers count eq 1 and /// weak pointers count is 0. pub fn from_request(req: HttpRequest) -> Result { if Rc::strong_count(&req.0) == 1 && Rc::weak_count(&req.0) == 0 { - Ok(ServiceRequest(req)) + Ok(WebRequest(req)) } else { Err(req) } } - /// Create service response + /// Create web response #[inline] - pub fn into_response>>(self, res: R) -> ServiceResponse { - ServiceResponse::new(self.0, res.into()) + pub fn into_response>>(self, res: R) -> WebResponse { + WebResponse::new(self.0, res.into()) } - /// Create service response for error + /// Create web response for error #[inline] - pub fn error_response>(self, err: E) -> ServiceResponse { + pub fn error_response>(self, err: E) -> WebResponse { let res: Response = err.into().into(); - ServiceResponse::new(self.0, res.into_body()) + WebResponse::new(self.0, res.into_body()) } /// This method returns reference to the request head @@ -236,13 +236,13 @@ impl ServiceRequest { } } -impl Resource for ServiceRequest { +impl Resource for WebRequest { fn resource_path(&mut self) -> &mut Path { self.match_info_mut() } } -impl HttpMessage for ServiceRequest { +impl HttpMessage for WebRequest { type Stream = PayloadStream; #[inline] @@ -269,11 +269,11 @@ impl HttpMessage for ServiceRequest { } } -impl fmt::Debug for ServiceRequest { +impl fmt::Debug for WebRequest { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { writeln!( f, - "\nServiceRequest {:?} {}:{}", + "\nWebRequest {:?} {}:{}", self.head().version, self.head().method, self.path() @@ -292,37 +292,37 @@ impl fmt::Debug for ServiceRequest { } } -pub struct ServiceResponse { +pub struct WebResponse { request: HttpRequest, response: Response, } -impl ServiceResponse { - /// Create service response instance +impl WebResponse { + /// Create web response instance pub fn new(request: HttpRequest, response: Response) -> Self { - ServiceResponse { request, response } + WebResponse { request, response } } - /// Create service response from the error + /// Create web response from the error pub fn from_err>(err: E, request: HttpRequest) -> Self { let e: Error = err.into(); let res: Response = e.into(); - ServiceResponse { + WebResponse { request, response: res.into_body(), } } - /// Create service response for error + /// Create web response for error #[inline] pub fn error_response>(self, err: E) -> Self { Self::from_err(err, self.request) } - /// Create service response + /// Create web response #[inline] - pub fn into_response(self, response: Response) -> ServiceResponse { - ServiceResponse::new(self.request, response) + pub fn into_response(self, response: Response) -> WebResponse { + WebResponse::new(self.request, response) } /// Get reference to original request @@ -371,7 +371,7 @@ impl ServiceResponse { Ok(_) => self, Err(err) => { let res: Response = err.into().into(); - ServiceResponse::new(self.request, res.into_body()) + WebResponse::new(self.request, res.into_body()) } } } @@ -382,32 +382,32 @@ impl ServiceResponse { } } -impl ServiceResponse { +impl WebResponse { /// Set a new body - pub fn map_body(self, f: F) -> ServiceResponse + pub fn map_body(self, f: F) -> WebResponse where F: FnOnce(&mut ResponseHead, ResponseBody) -> ResponseBody, { let response = self.response.map_body(f); - ServiceResponse { + WebResponse { response, request: self.request, } } } -impl Into> for ServiceResponse { +impl Into> for WebResponse { fn into(self) -> Response { self.response } } -impl fmt::Debug for ServiceResponse { +impl fmt::Debug for WebResponse { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let res = writeln!( f, - "\nServiceResponse {:?} {}{}", + "\nWebResponse {:?} {}{}", self.response.head().version, self.response.head().status, self.response.head().reason.unwrap_or(""), @@ -451,7 +451,7 @@ impl WebService { /// use ntex::http; /// use ntex::web::{self, guard, dev, App, HttpResponse}; /// - /// async fn index(req: dev::ServiceRequest) -> Result { + /// async fn index(req: dev::WebRequest) -> Result { /// Ok(req.into_response(HttpResponse::Ok().finish())) /// } /// @@ -475,8 +475,8 @@ impl WebService { F: IntoServiceFactory, T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), > + 'static, @@ -501,8 +501,8 @@ impl HttpServiceFactory for WebServiceImpl where T: ServiceFactory< Config = (), - Request = ServiceRequest, - Response = ServiceResponse, + Request = WebRequest, + Response = WebResponse, Error = Error, InitError = (), > + 'static, @@ -540,28 +540,28 @@ mod tests { fn test_service_request() { let req = TestRequest::default().to_srv_request(); let (r, pl) = req.into_parts(); - assert!(ServiceRequest::from_parts(r, pl).is_ok()); + assert!(WebRequest::from_parts(r, pl).is_ok()); let req = TestRequest::default().to_srv_request(); let (r, pl) = req.into_parts(); let _r2 = r.clone(); - assert!(ServiceRequest::from_parts(r, pl).is_err()); + assert!(WebRequest::from_parts(r, pl).is_err()); let req = TestRequest::default().to_srv_request(); let (r, _pl) = req.into_parts(); - assert!(ServiceRequest::from_request(r).is_ok()); + assert!(WebRequest::from_request(r).is_ok()); let req = TestRequest::default().to_srv_request(); let (r, _pl) = req.into_parts(); let _r2 = r.clone(); - assert!(ServiceRequest::from_request(r).is_err()); + assert!(WebRequest::from_request(r).is_err()); } #[actix_rt::test] async fn test_service() { let mut srv = init_service( App::new().service(web::service("/test").name("test").finish( - |req: ServiceRequest| ok(req.into_response(HttpResponse::Ok().finish())), + |req: WebRequest| ok(req.into_response(HttpResponse::Ok().finish())), )), ) .await; @@ -571,7 +571,7 @@ mod tests { let mut srv = init_service( App::new().service(web::service("/test").guard(guard::Get()).finish( - |req: ServiceRequest| ok(req.into_response(HttpResponse::Ok().finish())), + |req: WebRequest| ok(req.into_response(HttpResponse::Ok().finish())), )), ) .await; @@ -589,7 +589,7 @@ mod tests { .header("x-test", "111") .to_srv_request(); let s = format!("{:?}", req); - assert!(s.contains("ServiceRequest")); + assert!(s.contains("WebRequest")); assert!(s.contains("test=1")); assert!(s.contains("x-test")); @@ -599,7 +599,7 @@ mod tests { .to_srv_response(res); let s = format!("{:?}", res); - assert!(s.contains("ServiceResponse")); + assert!(s.contains("WebResponse")); assert!(s.contains("x-test")); } } diff --git a/ntex/src/web/test.rs b/ntex/src/web/test.rs index 025240fd..220d6cd9 100644 --- a/ntex/src/web/test.rs +++ b/ntex/src/web/test.rs @@ -34,22 +34,20 @@ use crate::{map_config, IntoService, IntoServiceFactory, Service, ServiceFactory use crate::web::config::AppConfig; use crate::web::request::HttpRequestPool; use crate::web::rmap::ResourceMap; -use crate::web::service::{ServiceRequest, ServiceResponse}; +use crate::web::service::{WebRequest, WebResponse}; use crate::web::{HttpRequest, HttpResponse}; /// Create service that always responds with `HttpResponse::Ok()` pub fn ok_service( -) -> impl Service, Error = Error> -{ +) -> impl Service, Error = Error> { default_service(StatusCode::OK) } /// Create service that responds with response with specified status code pub fn default_service( status_code: StatusCode, -) -> impl Service, Error = Error> -{ - (move |req: ServiceRequest| { +) -> impl Service, Error = Error> { + (move |req: WebRequest| { ok(req.into_response(HttpResponse::build(status_code).finish())) }) .into_service() @@ -80,13 +78,13 @@ pub fn default_service( /// ``` pub async fn init_service( app: R, -) -> impl Service, Error = E> +) -> impl Service, Error = E> where R: IntoServiceFactory, S: ServiceFactory< Config = AppConfig, Request = Request, - Response = ServiceResponse, + Response = WebResponse, Error = E, >, S::InitError: std::fmt::Debug, @@ -120,7 +118,7 @@ where /// ``` pub async fn call_service(app: &mut S, req: R) -> S::Response where - S: Service, Error = E>, + S: Service, Error = E>, E: std::fmt::Debug, { app.call(req).await.unwrap() @@ -154,7 +152,7 @@ where /// ``` pub async fn read_response(app: &mut S, req: Request) -> Bytes where - S: Service, Error = Error>, + S: Service, Error = Error>, B: MessageBody, { let mut resp = app @@ -170,7 +168,7 @@ where bytes.freeze() } -/// Helper function that returns a response body of a ServiceResponse. +/// Helper function that returns a response body of a WebResponse. /// /// ```rust /// use bytes::Bytes; @@ -197,7 +195,7 @@ where /// assert_eq!(result, Bytes::from_static(b"welcome!")); /// } /// ``` -pub async fn read_body(mut res: ServiceResponse) -> Bytes +pub async fn read_body(mut res: WebResponse) -> Bytes where B: MessageBody, { @@ -257,7 +255,7 @@ where /// ``` pub async fn read_response_json(app: &mut S, req: Request) -> T where - S: Service, Error = Error>, + S: Service, Error = Error>, B: MessageBody, T: DeserializeOwned, { @@ -272,8 +270,8 @@ where /// For unit testing, actix provides a request builder type and a simple handler runner. TestRequest implements a builder-like pattern. /// You can generate various types of request via TestRequest's methods: /// * `TestRequest::to_request` creates `actix_http::Request` instance. -/// * `TestRequest::to_srv_request` creates `ServiceRequest` instance, which is used for testing middlewares and chain adapters. -/// * `TestRequest::to_srv_response` creates `ServiceResponse` instance. +/// * `TestRequest::to_srv_request` creates `WebRequest` instance, which is used for testing middlewares and chain adapters. +/// * `TestRequest::to_srv_response` creates `WebResponse` instance. /// * `TestRequest::to_http_request` creates `HttpRequest` instance, which is used for testing handlers. /// /// ```rust @@ -461,13 +459,13 @@ impl TestRequest { req } - /// Complete request creation and generate `ServiceRequest` instance - pub fn to_srv_request(mut self) -> ServiceRequest { + /// Complete request creation and generate `WebRequest` instance + pub fn to_srv_request(mut self) -> WebRequest { let (mut head, payload) = self.req.finish().into_parts(); head.peer_addr = self.peer_addr; self.path.get_mut().update(&head.uri); - ServiceRequest::new(HttpRequest::new( + WebRequest::new(HttpRequest::new( self.path, head, payload, @@ -478,8 +476,8 @@ impl TestRequest { )) } - /// Complete request creation and generate `ServiceResponse` instance - pub fn to_srv_response(self, res: HttpResponse) -> ServiceResponse { + /// Complete request creation and generate `WebResponse` instance + pub fn to_srv_response(self, res: HttpResponse) -> WebResponse { self.to_srv_request().into_response(res) } diff --git a/ntex/src/web/types/json.rs b/ntex/src/web/types/json.rs index 180d96f0..90452603 100644 --- a/ntex/src/web/types/json.rs +++ b/ntex/src/web/types/json.rs @@ -288,7 +288,6 @@ impl Default for JsonConfig { } /// Request's payload json parser, it resolves to a deserialized `T` value. -/// This future could be used with `ServiceRequest` and `ServiceFromRequest`. /// /// Returns error: /// diff --git a/ntex/src/web/util.rs b/ntex/src/web/util.rs index 78b1dca8..a76951c5 100644 --- a/ntex/src/web/util.rs +++ b/ntex/src/web/util.rs @@ -237,7 +237,7 @@ where /// use ntex::http::Error; /// use ntex::web::{self, dev, guard, App, HttpResponse}; /// -/// async fn my_service(req: dev::ServiceRequest) -> Result { +/// async fn my_service(req: dev::WebRequest) -> Result { /// Ok(req.into_response(HttpResponse::Ok().finish())) /// } ///