mirror of
https://github.com/actix/actix-web.git
synced 2024-11-23 01:51:11 +00:00
119 lines
3.4 KiB
Rust
119 lines
3.4 KiB
Rust
use std::{
|
|
path::{Path, PathBuf},
|
|
str::FromStr,
|
|
};
|
|
|
|
use actix_utils::future::{ready, Ready};
|
|
use actix_web::{dev::Payload, FromRequest, HttpRequest};
|
|
|
|
use crate::error::UriSegmentError;
|
|
|
|
#[derive(Debug)]
|
|
pub(crate) struct PathBufWrap(PathBuf);
|
|
|
|
impl FromStr for PathBufWrap {
|
|
type Err = UriSegmentError;
|
|
|
|
fn from_str(path: &str) -> Result<Self, Self::Err> {
|
|
Self::parse_path(path, false)
|
|
}
|
|
}
|
|
|
|
impl PathBufWrap {
|
|
/// Parse a path, giving the choice of allowing hidden files to be considered valid segments.
|
|
pub fn parse_path(path: &str, hidden_files: bool) -> Result<Self, UriSegmentError> {
|
|
let mut buf = PathBuf::new();
|
|
|
|
for segment in path.split('/') {
|
|
if segment == ".." {
|
|
buf.pop();
|
|
} else if !hidden_files && segment.starts_with('.') {
|
|
return Err(UriSegmentError::BadStart('.'));
|
|
} else if segment.starts_with('*') {
|
|
return Err(UriSegmentError::BadStart('*'));
|
|
} else if segment.ends_with(':') {
|
|
return Err(UriSegmentError::BadEnd(':'));
|
|
} else if segment.ends_with('>') {
|
|
return Err(UriSegmentError::BadEnd('>'));
|
|
} else if segment.ends_with('<') {
|
|
return Err(UriSegmentError::BadEnd('<'));
|
|
} else if segment.is_empty() {
|
|
continue;
|
|
} else if cfg!(windows) && segment.contains('\\') {
|
|
return Err(UriSegmentError::BadChar('\\'));
|
|
} else {
|
|
buf.push(segment)
|
|
}
|
|
}
|
|
|
|
Ok(PathBufWrap(buf))
|
|
}
|
|
}
|
|
|
|
impl AsRef<Path> for PathBufWrap {
|
|
fn as_ref(&self) -> &Path {
|
|
self.0.as_ref()
|
|
}
|
|
}
|
|
|
|
impl FromRequest for PathBufWrap {
|
|
type Error = UriSegmentError;
|
|
type Future = Ready<Result<Self, Self::Error>>;
|
|
type Config = ();
|
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
|
ready(req.match_info().path().parse())
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::iter::FromIterator;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_path_buf() {
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/test/.tt").map(|t| t.0),
|
|
Err(UriSegmentError::BadStart('.'))
|
|
);
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/test/*tt").map(|t| t.0),
|
|
Err(UriSegmentError::BadStart('*'))
|
|
);
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/test/tt:").map(|t| t.0),
|
|
Err(UriSegmentError::BadEnd(':'))
|
|
);
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/test/tt<").map(|t| t.0),
|
|
Err(UriSegmentError::BadEnd('<'))
|
|
);
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/test/tt>").map(|t| t.0),
|
|
Err(UriSegmentError::BadEnd('>'))
|
|
);
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/seg1/seg2/").unwrap().0,
|
|
PathBuf::from_iter(vec!["seg1", "seg2"])
|
|
);
|
|
assert_eq!(
|
|
PathBufWrap::from_str("/seg1/../seg2/").unwrap().0,
|
|
PathBuf::from_iter(vec!["seg2"])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_parse_path() {
|
|
assert_eq!(
|
|
PathBufWrap::parse_path("/test/.tt", false).map(|t| t.0),
|
|
Err(UriSegmentError::BadStart('.'))
|
|
);
|
|
|
|
assert_eq!(
|
|
PathBufWrap::parse_path("/test/.tt", true).unwrap().0,
|
|
PathBuf::from_iter(vec!["test", ".tt"])
|
|
);
|
|
}
|
|
}
|