From 6abb5a40dfa2661f6fd349fbf3c2afee3e951973 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 12 Apr 2020 01:30:50 +0600 Subject: [PATCH] update ntex --- ntex-cors/Cargo.toml | 2 +- ntex-cors/src/lib.rs | 40 +++++++++++++------------------------- ntex-files/Cargo.toml | 2 +- ntex-identity/Cargo.toml | 2 +- ntex-identity/src/lib.rs | 26 ++++++++++++------------- ntex-multipart/Cargo.toml | 2 +- ntex-session/Cargo.toml | 2 +- ntex-session/src/cookie.rs | 20 +++++++++---------- ntex-session/src/lib.rs | 4 ++-- 9 files changed, 41 insertions(+), 59 deletions(-) diff --git a/ntex-cors/Cargo.toml b/ntex-cors/Cargo.toml index c738009c..f5d6551a 100644 --- a/ntex-cors/Cargo.toml +++ b/ntex-cors/Cargo.toml @@ -17,6 +17,6 @@ name = "ntex_cors" path = "src/lib.rs" [dependencies] -ntex = "0.1.7" +ntex = "0.1.8" derive_more = "0.99.5" futures = "0.3.4" \ No newline at end of file diff --git a/ntex-cors/src/lib.rs b/ntex-cors/src/lib.rs index d6e14ae9..9ecd054d 100644 --- a/ntex-cors/src/lib.rs +++ b/ntex-cors/src/lib.rs @@ -48,7 +48,6 @@ use std::collections::HashSet; use std::convert::TryFrom; use std::iter::FromIterator; -use std::marker::PhantomData; use std::rc::Rc; use std::task::{Context, Poll}; @@ -172,19 +171,14 @@ impl AllOrSome { /// .max_age(3600); /// ``` #[derive(Default)] -pub struct Cors { +pub struct Cors { cors: Option, methods: bool, expose_hdrs: HashSet, error: Option, - _t: PhantomData, } -impl Cors -where - Err: ErrorRenderer, - CorsError: WebResponseError, -{ +impl Cors { /// Build a new CORS middleware instance pub fn new() -> Self { Cors { @@ -203,12 +197,11 @@ where methods: false, error: None, expose_hdrs: HashSet::new(), - _t: PhantomData, } } /// Build a new CORS default middleware - pub fn default() -> CorsFactory { + pub fn default() -> CorsFactory { let inner = Inner { origins: AllOrSome::default(), origins_str: None, @@ -234,7 +227,6 @@ where }; CorsFactory { inner: Rc::new(inner), - _t: PhantomData, } } @@ -477,7 +469,7 @@ where } /// Construct cors middleware - pub fn finish(self) -> CorsFactory { + pub fn finish(self) -> CorsFactory { let mut slf = if !self.methods { self.allowed_methods(vec![ Method::GET, @@ -520,7 +512,6 @@ where CorsFactory { inner: Rc::new(cors), - _t: PhantomData, } } } @@ -539,32 +530,29 @@ fn cors<'a>( /// /// The Cors struct contains the settings for CORS requests to be validated and /// for responses to be generated. -pub struct CorsFactory { +pub struct CorsFactory { inner: Rc, - _t: PhantomData, } -impl Transform for CorsFactory +impl Transform for CorsFactory where - S: Service, Response = WebResponse>, + S: Service, Response = WebResponse>, S::Future: 'static, - B: 'static, Err: ErrorRenderer, Err::Container: From, CorsError: WebResponseError, { type Request = WebRequest; - type Response = WebResponse; + type Response = WebResponse; type Error = S::Error; type InitError = (); - type Transform = CorsMiddleware; + type Transform = CorsMiddleware; type Future = Ready>; fn new_transform(&self, service: S) -> Self::Future { ok(CorsMiddleware { service, inner: self.inner.clone(), - _t: PhantomData, }) } } @@ -574,10 +562,9 @@ where /// The Cors struct contains the settings for CORS requests to be validated and /// for responses to be generated. #[derive(Clone)] -pub struct CorsMiddleware { +pub struct CorsMiddleware { service: S, inner: Rc, - _t: PhantomData, } struct Inner { @@ -692,17 +679,16 @@ impl Inner { } } -impl Service for CorsMiddleware +impl Service for CorsMiddleware where - S: Service, Response = WebResponse>, + S: Service, Response = WebResponse>, S::Future: 'static, - B: 'static, Err: ErrorRenderer, Err::Container: From, CorsError: WebResponseError, { type Request = WebRequest; - type Response = WebResponse; + type Response = WebResponse; type Error = S::Error; type Future = Either< Ready>, diff --git a/ntex-files/Cargo.toml b/ntex-files/Cargo.toml index fc8ab448..2a000642 100644 --- a/ntex-files/Cargo.toml +++ b/ntex-files/Cargo.toml @@ -18,7 +18,7 @@ name = "ntex_files" path = "src/lib.rs" [dependencies] -ntex = "0.1.7" +ntex = "0.1.8" bitflags = "1" bytes = "0.5.4" futures = "0.3.4" diff --git a/ntex-identity/Cargo.toml b/ntex-identity/Cargo.toml index 5147575c..4f5799d7 100644 --- a/ntex-identity/Cargo.toml +++ b/ntex-identity/Cargo.toml @@ -21,7 +21,7 @@ default = ["cookie-policy"] cookie-policy = ["cookie/secure", "ntex/cookie"] [dependencies] -ntex = "0.1.7" +ntex = "0.1.8" futures = "0.3.4" serde = "1.0" serde_json = "1.0" diff --git a/ntex-identity/src/lib.rs b/ntex-identity/src/lib.rs index ca232624..c4826fc9 100644 --- a/ntex-identity/src/lib.rs +++ b/ntex-identity/src/lib.rs @@ -190,11 +190,11 @@ pub trait IdentityPolicy: Sized + 'static { fn from_request(&self, request: &mut WebRequest) -> Self::Future; /// Write changes to response - fn to_response( + fn to_response( &self, identity: Option, changed: bool, - response: &mut WebResponse, + response: &mut WebResponse, ) -> Self::ResponseFuture; } @@ -226,18 +226,17 @@ impl IdentityService { } } -impl Transform for IdentityService +impl Transform for IdentityService where - S: Service, Response = WebResponse> + 'static, + S: Service, Response = WebResponse> + 'static, S::Future: 'static, T: IdentityPolicy, - B: 'static, Err: ErrorRenderer, Err::Container: From, Err::Container: From, { type Request = WebRequest; - type Response = WebResponse; + type Response = WebResponse; type Error = S::Error; type InitError = (); type Transform = IdentityServiceMiddleware; @@ -269,10 +268,9 @@ impl Clone for IdentityServiceMiddleware { } } -impl Service for IdentityServiceMiddleware +impl Service for IdentityServiceMiddleware where - B: 'static, - S: Service, Response = WebResponse> + 'static, + S: Service, Response = WebResponse> + 'static, S::Future: 'static, T: IdentityPolicy, Err: ErrorRenderer, @@ -280,7 +278,7 @@ where Err::Container: From, { type Request = WebRequest; - type Response = WebResponse; + type Response = WebResponse; type Error = S::Error; type Future = LocalBoxFuture<'static, Result>; @@ -370,9 +368,9 @@ impl CookieIdentityInner { } } - fn set_cookie( + fn set_cookie( &self, - resp: &mut WebResponse, + resp: &mut WebResponse, value: Option, ) -> Result<(), CookieIdentityPolicyError> { let add_cookie = value.is_some(); @@ -592,11 +590,11 @@ impl IdentityPolicy for CookieIdentityPolicy { )) } - fn to_response( + fn to_response( &self, id: Option, changed: bool, - res: &mut WebResponse, + res: &mut WebResponse, ) -> Self::ResponseFuture { let _ = if changed { let login_timestamp = SystemTime::now(); diff --git a/ntex-multipart/Cargo.toml b/ntex-multipart/Cargo.toml index 64e3a299..507b0429 100644 --- a/ntex-multipart/Cargo.toml +++ b/ntex-multipart/Cargo.toml @@ -16,7 +16,7 @@ name = "ntex_multipart" path = "src/lib.rs" [dependencies] -ntex = "0.1.7" +ntex = "0.1.8" bytes = "0.5.4" derive_more = "0.99.5" httparse = "1.3" diff --git a/ntex-session/Cargo.toml b/ntex-session/Cargo.toml index 2acab72e..62608a6a 100644 --- a/ntex-session/Cargo.toml +++ b/ntex-session/Cargo.toml @@ -22,7 +22,7 @@ default = ["cookie-session"] cookie-session = ["cookie/secure", "ntex/cookie"] [dependencies] -ntex = "0.1.7" +ntex = "0.1.8" bytes = "0.5.4" cookie = "0.13.3" derive_more = "0.99.5" diff --git a/ntex-session/src/cookie.rs b/ntex-session/src/cookie.rs index fd391cd2..ca1da63b 100644 --- a/ntex-session/src/cookie.rs +++ b/ntex-session/src/cookie.rs @@ -83,9 +83,9 @@ impl CookieSessionInner { } } - fn set_cookie( + fn set_cookie( &self, - res: &mut WebResponse, + res: &mut WebResponse, state: impl Iterator, ) -> Result<(), CookieSessionError> { let state: HashMap = state.collect(); @@ -132,7 +132,7 @@ impl CookieSessionInner { } /// invalidates session cookie - fn remove_cookie(&self, res: &mut WebResponse) -> Result<(), Infallible> { + fn remove_cookie(&self, res: &mut WebResponse) -> Result<(), Infallible> { let mut cookie = Cookie::named(self.name.clone()); cookie.set_value(""); cookie.set_max_age(Duration::zero()); @@ -294,17 +294,16 @@ impl CookieSession { } } -impl Transform for CookieSession +impl Transform for CookieSession where - S: Service, Response = WebResponse>, + S: Service, Response = WebResponse>, S::Future: 'static, S::Error: 'static, - B: 'static, Err: ErrorRenderer, Err::Container: From, { type Request = WebRequest; - type Response = WebResponse; + type Response = WebResponse; type Error = S::Error; type InitError = (); type Transform = CookieSessionMiddleware; @@ -324,17 +323,16 @@ pub struct CookieSessionMiddleware { inner: Rc>, } -impl Service for CookieSessionMiddleware +impl Service for CookieSessionMiddleware where - S: Service, Response = WebResponse>, + S: Service, Response = WebResponse>, S::Future: 'static, S::Error: 'static, - B: 'static, Err: ErrorRenderer, Err::Container: From, { type Request = WebRequest; - type Response = WebResponse; + type Response = WebResponse; type Error = S::Error; type Future = LocalBoxFuture<'static, Result>; diff --git a/ntex-session/src/lib.rs b/ntex-session/src/lib.rs index 07bb1fc4..9aa4beec 100644 --- a/ntex-session/src/lib.rs +++ b/ntex-session/src/lib.rs @@ -188,8 +188,8 @@ impl Session { inner.state.extend(data); } - pub fn get_changes( - res: &mut WebResponse, + pub fn get_changes( + res: &mut WebResponse, ) -> ( SessionStatus, Option>,