zino_ntex/request/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
use crate::response::NtexRejection;
use ntex::{
    http::{Method, Payload, Uri},
    util::Bytes,
    web::{
        error::{DefaultError, ErrorRenderer},
        FromRequest, HttpRequest, WebRequest,
    },
};
use std::{
    borrow::Cow,
    convert::Infallible,
    net::IpAddr,
    ops::{Deref, DerefMut},
};
use zino_core::{error::Error, state::Data};
use zino_http::{
    request::{Context, RequestContext},
    response::Rejection,
};

/// An HTTP request extractor.
pub struct Extractor<T>(T, Payload);

impl<T> Deref for Extractor<T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<T> DerefMut for Extractor<T> {
    #[inline]
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}

impl RequestContext for Extractor<HttpRequest> {
    type Method = Method;
    type Uri = Uri;

    #[inline]
    fn request_method(&self) -> &Self::Method {
        self.method()
    }

    #[inline]
    fn original_uri(&self) -> &Self::Uri {
        self.uri()
    }

    #[inline]
    fn matched_route(&self) -> Cow<'_, str> {
        self.match_info().path().into()
    }

    #[inline]
    fn request_path(&self) -> &str {
        self.uri().path()
    }

    #[inline]
    fn get_query_string(&self) -> Option<&str> {
        self.uri().query()
    }

    #[inline]
    fn get_header(&self, name: &str) -> Option<&str> {
        self.headers().get(name)?.to_str().ok()
    }

    #[inline]
    fn client_ip(&self) -> Option<IpAddr> {
        self.connection_info().remote().and_then(|s| s.parse().ok())
    }

    #[inline]
    fn get_context(&self) -> Option<Context> {
        let extensions = self.extensions();
        extensions.get::<Context>().cloned()
    }

    #[inline]
    fn get_data<T: Clone + Send + Sync + 'static>(&self) -> Option<T> {
        self.extensions().get::<Data<T>>().map(|data| data.get())
    }

    #[inline]
    fn set_data<T: Clone + Send + Sync + 'static>(&mut self, value: T) -> Option<T> {
        self.extensions_mut()
            .insert(Data::new(value))
            .map(|data| data.into_inner())
    }

    #[inline]
    async fn read_body_bytes(&mut self) -> Result<Vec<u8>, Error> {
        let bytes =
            <Bytes as FromRequest<DefaultError>>::from_request(&self.0, &mut self.1).await?;
        Ok(bytes.to_vec())
    }
}

impl<Err: ErrorRenderer> From<WebRequest<Err>> for Extractor<HttpRequest> {
    #[inline]
    fn from(request: WebRequest<Err>) -> Self {
        let (request, payload) = request.into_parts();
        Self(request, payload)
    }
}

impl<Err: ErrorRenderer> TryFrom<Extractor<HttpRequest>> for WebRequest<Err> {
    type Error = NtexRejection;

    #[inline]
    fn try_from(extractor: Extractor<HttpRequest>) -> Result<Self, Self::Error> {
        Self::from_parts(extractor.0, extractor.1).map_err(|_| {
            let error = Error::new("fail to re-constructed `WebRequest`");
            Rejection::internal_server_error(error).into()
        })
    }
}

impl From<HttpRequest> for Extractor<HttpRequest> {
    #[inline]
    fn from(request: HttpRequest) -> Self {
        Self(request, Payload::None)
    }
}

impl From<Extractor<HttpRequest>> for HttpRequest {
    #[inline]
    fn from(extractor: Extractor<HttpRequest>) -> Self {
        extractor.0
    }
}

impl FromRequest<DefaultError> for Extractor<HttpRequest> {
    type Error = Infallible;

    #[inline]
    async fn from_request(req: &HttpRequest, payload: &mut Payload) -> Result<Self, Self::Error> {
        Ok(Extractor(req.clone(), payload.take()))
    }
}