2019-03-03 04:19:56 +01:00
|
|
|
use std::cell::{Ref, RefMut};
|
2019-03-06 07:10:08 +01:00
|
|
|
use std::fmt;
|
2019-03-07 00:47:15 +01:00
|
|
|
use std::marker::PhantomData;
|
2019-03-02 07:51:32 +01:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
2019-03-06 07:10:08 +01:00
|
|
|
use actix_http::body::{Body, MessageBody, ResponseBody};
|
2019-03-03 04:19:56 +01:00
|
|
|
use actix_http::http::{HeaderMap, Method, Uri, Version};
|
2019-03-02 07:51:32 +01:00
|
|
|
use actix_http::{
|
2019-03-05 19:08:08 +01:00
|
|
|
Error, Extensions, HttpMessage, Payload, PayloadStream, Request, RequestHead,
|
|
|
|
Response, ResponseHead,
|
2019-03-02 07:51:32 +01:00
|
|
|
};
|
2019-03-04 20:47:53 +01:00
|
|
|
use actix_router::{Path, Resource, Url};
|
2019-03-03 06:35:31 +01:00
|
|
|
use futures::future::{ok, FutureResult, IntoFuture};
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
use crate::config::{AppConfig, ServiceConfig};
|
2019-03-17 05:09:11 +01:00
|
|
|
use crate::data::RouteData;
|
2019-03-02 07:51:32 +01:00
|
|
|
use crate::request::HttpRequest;
|
2019-03-09 16:39:34 +01:00
|
|
|
use crate::rmap::ResourceMap;
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-03-07 00:47:15 +01:00
|
|
|
pub trait HttpServiceFactory<P> {
|
2019-03-09 23:06:24 +01:00
|
|
|
fn register(self, config: &mut ServiceConfig<P>);
|
2019-03-07 00:47:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) trait ServiceFactory<P> {
|
2019-03-09 23:06:24 +01:00
|
|
|
fn register(&mut self, config: &mut ServiceConfig<P>);
|
2019-03-07 00:47:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) struct ServiceFactoryWrapper<T, P> {
|
|
|
|
factory: Option<T>,
|
|
|
|
_t: PhantomData<P>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, P> ServiceFactoryWrapper<T, P> {
|
|
|
|
pub fn new(factory: T) -> Self {
|
|
|
|
Self {
|
|
|
|
factory: Some(factory),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, P> ServiceFactory<P> for ServiceFactoryWrapper<T, P>
|
|
|
|
where
|
|
|
|
T: HttpServiceFactory<P>,
|
|
|
|
{
|
2019-03-09 23:06:24 +01:00
|
|
|
fn register(&mut self, config: &mut ServiceConfig<P>) {
|
2019-03-07 00:47:15 +01:00
|
|
|
if let Some(item) = self.factory.take() {
|
|
|
|
item.register(config)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 19:08:08 +01:00
|
|
|
pub struct ServiceRequest<P = PayloadStream> {
|
2019-03-02 07:51:32 +01:00
|
|
|
req: HttpRequest,
|
|
|
|
payload: Payload<P>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> ServiceRequest<P> {
|
|
|
|
pub(crate) fn new(
|
|
|
|
path: Path<Url>,
|
|
|
|
request: Request<P>,
|
2019-03-09 16:39:34 +01:00
|
|
|
rmap: Rc<ResourceMap>,
|
2019-03-09 23:06:24 +01:00
|
|
|
config: AppConfig,
|
2019-03-02 07:51:32 +01:00
|
|
|
) -> Self {
|
|
|
|
let (head, payload) = request.into_parts();
|
|
|
|
ServiceRequest {
|
|
|
|
payload,
|
2019-03-09 23:06:24 +01:00
|
|
|
req: HttpRequest::new(head, path, rmap, config),
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn into_request(self) -> HttpRequest {
|
|
|
|
self.req
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create service response
|
|
|
|
#[inline]
|
|
|
|
pub fn into_response<B>(self, res: Response<B>) -> ServiceResponse<B> {
|
|
|
|
ServiceResponse::new(self.req, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create service response for error
|
|
|
|
#[inline]
|
2019-03-10 05:40:09 +01:00
|
|
|
pub fn error_response<B, E: Into<Error>>(self, err: E) -> ServiceResponse<B> {
|
|
|
|
let res: Response = err.into().into();
|
|
|
|
ServiceResponse::new(self.req, res.into_body())
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
/// This method returns reference to the request head
|
|
|
|
#[inline]
|
|
|
|
pub fn head(&self) -> &RequestHead {
|
|
|
|
&self.req.head
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This method returns reference to the request head
|
|
|
|
#[inline]
|
|
|
|
pub fn head_mut(&mut self) -> &mut RequestHead {
|
|
|
|
&mut self.req.head
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Request's uri.
|
|
|
|
#[inline]
|
|
|
|
pub fn uri(&self) -> &Uri {
|
|
|
|
&self.head().uri
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read the Request method.
|
|
|
|
#[inline]
|
|
|
|
pub fn method(&self) -> &Method {
|
|
|
|
&self.head().method
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read the Request Version.
|
|
|
|
#[inline]
|
|
|
|
pub fn version(&self) -> Version {
|
|
|
|
self.head().version
|
|
|
|
}
|
|
|
|
|
2019-03-06 04:10:45 +01:00
|
|
|
#[inline]
|
|
|
|
/// Returns mutable Request's headers.
|
|
|
|
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
|
|
|
&mut self.head_mut().headers
|
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
/// The target path of this Request.
|
|
|
|
#[inline]
|
|
|
|
pub fn path(&self) -> &str {
|
|
|
|
self.head().uri.path()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The query string in the URL.
|
|
|
|
///
|
|
|
|
/// E.g., id=10
|
|
|
|
#[inline]
|
|
|
|
pub fn query_string(&self) -> &str {
|
|
|
|
if let Some(query) = self.uri().query().as_ref() {
|
|
|
|
query
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a reference to the Path parameters.
|
|
|
|
///
|
|
|
|
/// Params is a container for url parameters.
|
|
|
|
/// A variable segment is specified in the form `{identifier}`,
|
|
|
|
/// where the identifier can be used later in a request handler to
|
|
|
|
/// access the matched value for that segment.
|
|
|
|
#[inline]
|
|
|
|
pub fn match_info(&self) -> &Path<Url> {
|
|
|
|
&self.req.path
|
|
|
|
}
|
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn match_info_mut(&mut self) -> &mut Path<Url> {
|
|
|
|
&mut self.req.path
|
|
|
|
}
|
2019-03-03 04:19:56 +01:00
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
/// Service configuration
|
2019-03-03 04:19:56 +01:00
|
|
|
#[inline]
|
2019-03-09 23:06:24 +01:00
|
|
|
pub fn app_config(&self) -> &AppConfig {
|
|
|
|
self.req.config()
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
2019-03-06 07:10:08 +01:00
|
|
|
|
|
|
|
/// Deconstruct request into parts
|
|
|
|
pub fn into_parts(self) -> (HttpRequest, Payload<P>) {
|
|
|
|
(self.req, self.payload)
|
|
|
|
}
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
|
2019-03-04 20:47:53 +01:00
|
|
|
impl<P> Resource<Url> for ServiceRequest<P> {
|
|
|
|
fn resource_path(&mut self) -> &mut Path<Url> {
|
|
|
|
self.match_info_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
impl<P> HttpMessage for ServiceRequest<P> {
|
|
|
|
type Stream = P;
|
|
|
|
|
|
|
|
#[inline]
|
2019-03-06 03:47:18 +01:00
|
|
|
/// Returns Request's headers.
|
2019-03-02 07:51:32 +01:00
|
|
|
fn headers(&self) -> &HeaderMap {
|
2019-03-06 03:47:18 +01:00
|
|
|
&self.head().headers
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Request extensions
|
|
|
|
#[inline]
|
|
|
|
fn extensions(&self) -> Ref<Extensions> {
|
|
|
|
self.req.head.extensions()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Mutable reference to a the request's extensions
|
|
|
|
#[inline]
|
|
|
|
fn extensions_mut(&self) -> RefMut<Extensions> {
|
|
|
|
self.req.head.extensions_mut()
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn take_payload(&mut self) -> Payload<Self::Stream> {
|
|
|
|
std::mem::replace(&mut self.payload, Payload::None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> std::ops::Deref for ServiceRequest<P> {
|
2019-03-03 04:19:56 +01:00
|
|
|
type Target = RequestHead;
|
|
|
|
|
|
|
|
fn deref(&self) -> &RequestHead {
|
|
|
|
self.req.head()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> std::ops::DerefMut for ServiceRequest<P> {
|
|
|
|
fn deref_mut(&mut self) -> &mut RequestHead {
|
|
|
|
self.head_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 07:10:08 +01:00
|
|
|
impl<P> fmt::Debug for ServiceRequest<P> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
writeln!(
|
|
|
|
f,
|
|
|
|
"\nServiceRequest {:?} {}:{}",
|
|
|
|
self.head().version,
|
|
|
|
self.head().method,
|
|
|
|
self.path()
|
|
|
|
)?;
|
|
|
|
if !self.query_string().is_empty() {
|
|
|
|
writeln!(f, " query: ?{:?}", self.query_string())?;
|
|
|
|
}
|
|
|
|
if !self.match_info().is_empty() {
|
|
|
|
writeln!(f, " params: {:?}", self.match_info())?;
|
|
|
|
}
|
|
|
|
writeln!(f, " headers:")?;
|
|
|
|
for (key, val) in self.headers().iter() {
|
|
|
|
writeln!(f, " {:?}: {:?}", key, val)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
pub struct ServiceFromRequest<P> {
|
|
|
|
req: HttpRequest,
|
|
|
|
payload: Payload<P>,
|
2019-03-17 05:09:11 +01:00
|
|
|
data: Option<Rc<Extensions>>,
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> ServiceFromRequest<P> {
|
2019-03-17 05:09:11 +01:00
|
|
|
pub(crate) fn new(req: ServiceRequest<P>, data: Option<Rc<Extensions>>) -> Self {
|
2019-03-03 09:57:48 +01:00
|
|
|
Self {
|
|
|
|
req: req.req,
|
|
|
|
payload: req.payload,
|
2019-03-17 05:09:11 +01:00
|
|
|
data,
|
2019-03-03 09:57:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn into_request(self) -> HttpRequest {
|
|
|
|
self.req
|
|
|
|
}
|
|
|
|
|
2019-03-04 00:32:47 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn match_info_mut(&mut self) -> &mut Path<Url> {
|
|
|
|
&mut self.req.path
|
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
/// Create service response for error
|
|
|
|
#[inline]
|
|
|
|
pub fn error_response<E: Into<Error>>(self, err: E) -> ServiceResponse {
|
|
|
|
ServiceResponse::new(self.req, err.into().into())
|
|
|
|
}
|
2019-03-03 09:57:48 +01:00
|
|
|
|
2019-03-17 05:09:11 +01:00
|
|
|
/// Load route data. Route data could be set during
|
|
|
|
/// route configuration with `Route::data()` method.
|
|
|
|
pub fn route_data<T: 'static>(&self) -> Option<&RouteData<T>> {
|
|
|
|
if let Some(ref ext) = self.data {
|
|
|
|
ext.get::<RouteData<T>>()
|
2019-03-10 18:53:56 +01:00
|
|
|
} else {
|
|
|
|
None
|
2019-03-03 09:57:48 +01:00
|
|
|
}
|
|
|
|
}
|
2019-03-03 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> std::ops::Deref for ServiceFromRequest<P> {
|
2019-03-02 07:51:32 +01:00
|
|
|
type Target = HttpRequest;
|
|
|
|
|
|
|
|
fn deref(&self) -> &HttpRequest {
|
2019-03-03 04:19:56 +01:00
|
|
|
&self.req
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> HttpMessage for ServiceFromRequest<P> {
|
|
|
|
type Stream = P;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn headers(&self) -> &HeaderMap {
|
|
|
|
self.req.headers()
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
/// Request extensions
|
|
|
|
#[inline]
|
|
|
|
fn extensions(&self) -> Ref<Extensions> {
|
|
|
|
self.req.head.extensions()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Mutable reference to a the request's extensions
|
|
|
|
#[inline]
|
|
|
|
fn extensions_mut(&self) -> RefMut<Extensions> {
|
|
|
|
self.req.head.extensions_mut()
|
|
|
|
}
|
|
|
|
|
2019-03-03 04:19:56 +01:00
|
|
|
#[inline]
|
|
|
|
fn take_payload(&mut self) -> Payload<Self::Stream> {
|
|
|
|
std::mem::replace(&mut self.payload, Payload::None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
pub struct ServiceResponse<B = Body> {
|
|
|
|
request: HttpRequest,
|
|
|
|
response: Response<B>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<B> ServiceResponse<B> {
|
|
|
|
/// Create service response instance
|
|
|
|
pub fn new(request: HttpRequest, response: Response<B>) -> Self {
|
|
|
|
ServiceResponse { request, response }
|
|
|
|
}
|
|
|
|
|
2019-03-06 07:10:08 +01:00
|
|
|
/// Create service response from the error
|
|
|
|
pub fn from_err<E: Into<Error>>(err: E, request: HttpRequest) -> Self {
|
|
|
|
let e: Error = err.into();
|
|
|
|
let res: Response = e.into();
|
|
|
|
ServiceResponse {
|
|
|
|
request,
|
|
|
|
response: res.into_body(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 05:40:09 +01:00
|
|
|
/// Create service response for error
|
|
|
|
#[inline]
|
|
|
|
pub fn error_response<E: Into<Error>>(self, err: E) -> Self {
|
|
|
|
Self::from_err(err, self.request)
|
|
|
|
}
|
|
|
|
|
2019-03-11 00:35:38 +01:00
|
|
|
/// Create service response
|
|
|
|
#[inline]
|
|
|
|
pub fn into_response<B1>(self, response: Response<B1>) -> ServiceResponse<B1> {
|
|
|
|
ServiceResponse::new(self.request, response)
|
|
|
|
}
|
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
/// Get reference to original request
|
|
|
|
#[inline]
|
|
|
|
pub fn request(&self) -> &HttpRequest {
|
|
|
|
&self.request
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get reference to response
|
|
|
|
#[inline]
|
|
|
|
pub fn response(&self) -> &Response<B> {
|
|
|
|
&self.response
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get mutable reference to response
|
|
|
|
#[inline]
|
|
|
|
pub fn response_mut(&mut self) -> &mut Response<B> {
|
|
|
|
&mut self.response
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
/// Execute closure and in case of error convert it to response.
|
|
|
|
pub fn checked_expr<F, E>(mut self, f: F) -> Self
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut Self) -> Result<(), E>,
|
|
|
|
E: Into<Error>,
|
|
|
|
{
|
|
|
|
match f(&mut self) {
|
|
|
|
Ok(_) => self,
|
|
|
|
Err(err) => {
|
|
|
|
let res: Response = err.into().into();
|
|
|
|
ServiceResponse::new(self.request, res.into_body())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 07:10:08 +01:00
|
|
|
|
|
|
|
/// Extract response body
|
|
|
|
pub fn take_body(&mut self) -> ResponseBody<B> {
|
|
|
|
self.response.take_body()
|
|
|
|
}
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
impl<B> ServiceResponse<B> {
|
2019-03-02 07:51:32 +01:00
|
|
|
/// Set a new body
|
2019-03-06 03:47:18 +01:00
|
|
|
pub fn map_body<F, B2>(self, f: F) -> ServiceResponse<B2>
|
2019-03-02 07:51:32 +01:00
|
|
|
where
|
|
|
|
F: FnOnce(&mut ResponseHead, ResponseBody<B>) -> ResponseBody<B2>,
|
|
|
|
{
|
|
|
|
let response = self.response.map_body(f);
|
|
|
|
|
|
|
|
ServiceResponse {
|
|
|
|
response,
|
|
|
|
request: self.request,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
impl<B> std::ops::Deref for ServiceResponse<B> {
|
2019-03-02 07:51:32 +01:00
|
|
|
type Target = Response<B>;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Response<B> {
|
|
|
|
self.response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
impl<B> std::ops::DerefMut for ServiceResponse<B> {
|
2019-03-02 07:51:32 +01:00
|
|
|
fn deref_mut(&mut self) -> &mut Response<B> {
|
|
|
|
self.response_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
impl<B> Into<Response<B>> for ServiceResponse<B> {
|
2019-03-02 07:51:32 +01:00
|
|
|
fn into(self) -> Response<B> {
|
|
|
|
self.response
|
|
|
|
}
|
|
|
|
}
|
2019-03-03 06:35:31 +01:00
|
|
|
|
2019-03-06 03:47:18 +01:00
|
|
|
impl<B> IntoFuture for ServiceResponse<B> {
|
2019-03-03 06:35:31 +01:00
|
|
|
type Item = ServiceResponse<B>;
|
|
|
|
type Error = Error;
|
|
|
|
type Future = FutureResult<ServiceResponse<B>, Error>;
|
|
|
|
|
|
|
|
fn into_future(self) -> Self::Future {
|
|
|
|
ok(self)
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 07:10:08 +01:00
|
|
|
|
|
|
|
impl<B: MessageBody> fmt::Debug for ServiceResponse<B> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let res = writeln!(
|
|
|
|
f,
|
|
|
|
"\nServiceResponse {:?} {}{}",
|
|
|
|
self.response.head().version,
|
|
|
|
self.response.head().status,
|
|
|
|
self.response.head().reason.unwrap_or(""),
|
|
|
|
);
|
|
|
|
let _ = writeln!(f, " headers:");
|
|
|
|
for (key, val) in self.response.head().headers.iter() {
|
|
|
|
let _ = writeln!(f, " {:?}: {:?}", key, val);
|
|
|
|
}
|
|
|
|
let _ = writeln!(f, " body: {:?}", self.response.body().length());
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|