diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2018-11-26 21:15:23 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2018-11-26 21:15:23 +0100 |
commit | cf40041946626b105102e3dab2515d2ef2fb0506 (patch) | |
tree | 54566468adc3c3dd9fdc30d9c0c19988f8ad8a5a /src/request_handler/mod.rs | |
parent | 16055300c760c636399f555ce30c07deff2a6820 (diff) | |
download | nginx-auth-totp-cf40041946626b105102e3dab2515d2ef2fb0506.tar.gz nginx-auth-totp-cf40041946626b105102e3dab2515d2ef2fb0506.zip |
Implement logout
Diffstat (limited to 'src/request_handler/mod.rs')
-rw-r--r-- | src/request_handler/mod.rs | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/request_handler/mod.rs b/src/request_handler/mod.rs index 72e9142..6812bb4 100644 --- a/src/request_handler/mod.rs +++ b/src/request_handler/mod.rs @@ -13,6 +13,7 @@ use std::cell::RefCell; use time; use http::{Request, Response, StatusCode, Method}; use http::response::Builder; +use http::header::SET_COOKIE; use tokio::prelude::*; use horrorshow; use cookie::{Cookie, CookieBuilder}; @@ -141,18 +142,24 @@ fn login<'a>(state: &super::ApplicationState, req: &Request<Bytes>, path_rest: & } } -// unimplemented fn logout<'a>(state: &super::ApplicationState, req: &Request<Bytes>, path_rest: &'a str, ) -> Response<String> { let header_infos = match parse_header_infos(req) { Ok(infos) => infos, Err(message) => return error_handler_internal(message), }; + + let cookie_delete = CookieBuilder::new(COOKIE_NAME, "") + .http_only(true) + .path("/") + .expires(time::at_utc(time::Timespec::new(0, 0))) + .finish(); + Response::builder().set_defaults() - .body(format!("Rest: {}", path_rest)).unwrap() + .header(SET_COOKIE, cookie_delete.to_string()) + .body(views::logout()).unwrap() } - fn check<'a>(state: &super::ApplicationState, req: &Request<Bytes>, path_rest: &'a str) -> Response<String> { let header_infos = match parse_header_infos(req) { Ok(infos) => infos, @@ -180,6 +187,9 @@ fn parse_header_infos(req: &Request<Bytes>) -> Result<HeaderExtract, String> { for header_value in req.headers().get_all(::http::header::COOKIE) { let value = header_value.to_str().or(Err("Failed to read cookie value"))?; for cookie_part in value.split("; ") { + if cookie_part.is_empty() { + continue; + } let cookie = Cookie::parse(cookie_part).or(Err("Failed to parse cookie value"))?; cookies.push(cookie); } |