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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
use std::{any::Any, convert::Infallible};
use http::Error as HttpError;
use thiserror::Error;
use crate::{header::HeaderMap, method::MethodParseError, Body, Extensions, Method, Uri, Version};
/// Represents an HTTP request.
///
/// An HTTP request consists of a head and a optional body.
///
/// # Examples
///
/// Creating a `Request` to send
///
/// ```no_run
/// use axol_http::{Request, Response};
///
/// let mut request = Request::builder()
/// .uri("https://www.rust-lang.org/")
/// .header("User-Agent", "my-awesome-agent/1.0");
///
/// if needs_awesome_header() {
/// request = request.header("Awesome", "yes");
/// }
///
/// let response = send(request.body(()).unwrap());
///
/// # fn needs_awesome_header() -> bool {
/// # true
/// # }
/// #
/// fn send(req: Request<()>) -> Response<()> {
/// // ...
/// # panic!()
/// }
/// ```
///
/// Inspecting a request to see what was sent.
///
/// ```
/// use axol_http::{Request, Response, StatusCode};
///
/// fn respond_to(req: Request<()>) -> axol_http::Result<Response<()>> {
/// if req.uri() != "/awesome-url" {
/// return Response::builder()
/// .status(StatusCode::NOT_FOUND)
/// .body(())
/// }
///
/// let has_awesome_header = req.headers().contains_key("Awesome");
/// let body = req.body();
///
/// // ...
/// # panic!()
/// }
/// ```
///
/// Deserialize a request of bytes via json:
///
/// ```
/// # extern crate serde;
/// # extern crate serde_json;
/// # extern crate http;
/// use axol_http::Request;
/// use serde::de;
///
/// fn deserialize<T>(req: Request<Vec<u8>>) -> serde_json::Result<Request<T>>
/// where for<'de> T: de::Deserialize<'de>,
/// {
/// let (parts, body) = req.into_parts();
/// let body = serde_json::from_slice(&body)?;
/// Ok(Request::from_parts(parts, body))
/// }
/// #
/// # fn main() {}
/// ```
///
/// Or alternatively, serialize the body of a request to json
///
/// ```
/// # extern crate serde;
/// # extern crate serde_json;
/// # extern crate http;
/// use axol_http::Request;
/// use serde::ser;
///
/// fn serialize<T>(req: Request<T>) -> serde_json::Result<Request<Vec<u8>>>
/// where T: ser::Serialize,
/// {
/// let (parts, body) = req.into_parts();
/// let body = serde_json::to_vec(&body)?;
/// Ok(Request::from_parts(parts, body))
/// }
/// #
/// # fn main() {}
/// ```
#[derive(Debug, Default)]
pub struct Request {
/// The request's method
pub method: Method,
/// The request's URI
pub uri: Uri,
/// The request's version
pub version: Version,
/// The request's headers. All headers are always lowercased.
pub headers: HeaderMap,
/// The request's extensions
pub extensions: Extensions,
/// The request's body
pub body: Body,
}
/// Component parts of an HTTP `Request`
///
/// The HTTP request head consists of a method, uri, version, and a set of
/// header fields.
#[derive(Debug, Default)]
pub struct RequestParts {
/// The request's method
pub method: Method,
/// The request's URI
pub uri: Uri,
/// The request's version
pub version: Version,
/// The request's headers. All headers are always lowercased.
pub headers: HeaderMap,
/// The request's extensions
pub extensions: Extensions,
}
impl RequestParts {
pub fn as_ref(&self) -> RequestPartsRef<'_> {
RequestPartsRef {
method: self.method,
uri: &self.uri,
version: self.version,
headers: &self.headers,
extensions: &self.extensions,
}
}
}
#[derive(Debug, Clone, Copy)]
pub struct RequestPartsRef<'a> {
/// The request's method
pub method: Method,
/// The request's URI
pub uri: &'a Uri,
/// The request's version
pub version: Version,
/// The request's headers. All headers are always lowercased.
pub headers: &'a HeaderMap,
/// The request's extensions.
pub extensions: &'a Extensions,
}
impl<'a> RequestPartsRef<'a> {
pub fn into_owned(&self) -> RequestParts {
RequestParts {
method: self.method,
uri: self.uri.clone(),
version: self.version,
headers: self.headers.clone(),
extensions: self.extensions.clone(),
}
}
}
impl Request {
pub fn parts(&mut self) -> RequestPartsRef<'_> {
RequestPartsRef {
method: self.method,
uri: &self.uri,
version: self.version,
headers: &self.headers,
extensions: &self.extensions,
}
}
/// Creates a new builder-style object to manufacture a `Request`
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
/// let request = Request::builder()
/// .method("GET")
/// .uri("https://www.rust-lang.org/")
/// .header("X-Custom-Foo", "Bar")
/// .body(())
/// .unwrap();
/// ```
pub fn builder() -> Builder {
Builder::new()
}
/// Creates a new `Builder` initialized with a GET method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::get("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn get<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Get).uri(uri)
}
/// Creates a new `Builder` initialized with a PUT method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::put("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn put<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Put).uri(uri)
}
/// Creates a new `Builder` initialized with a POST method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::post("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn post<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Post).uri(uri)
}
/// Creates a new `Builder` initialized with a DELETE method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::delete("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn delete<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Delete).uri(uri)
}
/// Creates a new `Builder` initialized with an OPTIONS method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::options("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// # assert_eq!(*request.method(), Method::OPTIONS);
/// ```
pub fn options<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Options).uri(uri)
}
/// Creates a new `Builder` initialized with a HEAD method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::head("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn head<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Head).uri(uri)
}
/// Creates a new `Builder` initialized with a CONNECT method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::connect("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn connect<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Connect).uri(uri)
}
/// Creates a new `Builder` initialized with a PATCH method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::patch("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn patch<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Patch).uri(uri)
}
/// Creates a new `Builder` initialized with a TRACE method and the given URI.
///
/// This method returns an instance of `Builder` which can be used to
/// create a `Request`.
///
/// # Example
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::trace("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn trace<T>(uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
Builder::new().method(Method::Trace).uri(uri)
}
/// Creates a new blank `Request` with the body
///
/// The component parts of this request will be set to their default, e.g.
/// the GET method, no headers, etc.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
/// let request = Request::new("hello world");
///
/// assert_eq!(*request.method(), Method::GET);
/// assert_eq!(*request.body(), "hello world");
/// ```
pub fn new(body: impl Into<Body>) -> Request {
Self::from_parts(Default::default(), body)
}
/// Creates a new `Request` with the given components parts and body.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
/// let request = Request::new("hello world");
/// let (mut parts, body) = request.into_parts();
/// parts.method = Method::POST;
///
/// let request = Request::from_parts(parts, body);
/// ```
pub fn from_parts(parts: RequestParts, body: impl Into<Body>) -> Request {
Request {
method: parts.method,
uri: parts.uri,
version: parts.version,
headers: parts.headers,
extensions: parts.extensions,
body: body.into(),
}
}
/// Consumes the request returning the head and body parts.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
/// let request = Request::new(());
/// let (parts, body) = request.into_parts();
/// assert_eq!(parts.method, Method::GET);
/// ```
pub fn into_parts(self) -> (RequestParts, Body) {
(
RequestParts {
method: self.method,
uri: self.uri,
version: self.version,
headers: self.headers,
extensions: self.extensions,
},
self.body,
)
}
}
#[derive(Error, Debug)]
pub enum RequestBuilderError {
#[error("")]
Infallible(#[from] Infallible),
#[error("method parse error: {0}")]
MethodParse(#[from] MethodParseError),
#[error("http error: {0}")]
Http(#[from] HttpError),
}
/// An HTTP request builder
///
/// This type can be used to construct an instance or `Request`
/// through a builder-like pattern.
#[derive(Debug)]
pub struct Builder {
inner: Result<Request, RequestBuilderError>,
}
impl Builder {
/// Creates a new default instance of `Builder` to construct a `Request`.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let req = request::Builder::new()
/// .method("POST")
/// .body(())
/// .unwrap();
/// ```
pub fn new() -> Builder {
Builder::default()
}
/// Set the HTTP method for this request.
///
/// This function will configure the HTTP method of the `Request` that will
/// be returned from `Builder::build`.
///
/// By default this is `GET`.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let req = Request::builder()
/// .method("POST")
/// .body(())
/// .unwrap();
/// ```
pub fn method(self, method: Method) -> Builder {
self.and_then(move |mut head| {
head.method = method;
Ok(head)
})
}
/// Get the HTTP Method for this request.
///
/// By default this is `GET`. If builder has error, returns None.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let mut req = Request::builder();
/// assert_eq!(req.method_ref(),Some(&Method::GET));
///
/// req = req.method("POST");
/// assert_eq!(req.method_ref(),Some(&Method::POST));
/// ```
pub fn method_ref(&self) -> Option<Method> {
self.inner.as_ref().ok().map(|h| h.method)
}
/// Set the URI for this request.
///
/// This function will configure the URI of the `Request` that will
/// be returned from `Builder::build`.
///
/// By default this is `/`.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let req = Request::builder()
/// .uri("https://www.rust-lang.org/")
/// .body(())
/// .unwrap();
/// ```
pub fn uri<T>(self, uri: T) -> Builder
where
Uri: TryFrom<T>,
<Uri as TryFrom<T>>::Error: Into<HttpError>,
{
self.and_then(move |mut head| {
head.uri = TryFrom::try_from(uri).map_err(Into::into)?;
Ok(head)
})
}
/// Get the URI for this request
///
/// By default this is `/`.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let mut req = Request::builder();
/// assert_eq!(req.uri_ref().unwrap(), "/" );
///
/// req = req.uri("https://www.rust-lang.org/");
/// assert_eq!(req.uri_ref().unwrap(), "https://www.rust-lang.org/" );
/// ```
pub fn uri_ref(&self) -> Option<&Uri> {
self.inner.as_ref().ok().map(|h| &h.uri)
}
/// Set the HTTP version for this request.
///
/// This function will configure the HTTP version of the `Request` that
/// will be returned from `Builder::build`.
///
/// By default this is HTTP/1.1
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let req = Request::builder()
/// .version(Version::HTTP_2)
/// .body(())
/// .unwrap();
/// ```
pub fn version(self, version: Version) -> Builder {
self.and_then(move |mut head| {
head.version = version;
Ok(head)
})
}
/// Get the HTTP version for this request
///
/// By default this is HTTP/1.1.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let mut req = Request::builder();
/// assert_eq!(req.version_ref().unwrap(), &Version::HTTP_11 );
///
/// req = req.version(Version::HTTP_2);
/// assert_eq!(req.version_ref().unwrap(), &Version::HTTP_2 );
/// ```
pub fn version_ref(&self) -> Option<&Version> {
self.inner.as_ref().ok().map(|h| &h.version)
}
/// Appends a header to this request builder.
///
/// This function will append the provided key/value as a header to the
/// internal `HeaderMap` being constructed. Essentially this is equivalent
/// to calling `HeaderMap::append`.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
/// # use axol_http::header::HeaderValue;
///
/// let req = Request::builder()
/// .header("Accept", "text/html")
/// .header("X-Custom-Foo", "bar")
/// .body(())
/// .unwrap();
/// ```
pub fn header(self, name: impl AsRef<str>, value: impl Into<String>) -> Builder {
self.and_then(move |mut head| {
head.headers.insert(name, value);
Ok(head)
})
}
/// Get header on this request builder.
/// when builder has error returns None
///
/// # Example
///
/// ```
/// # use axol_http::Request;
/// let req = Request::builder()
/// .header("Accept", "text/html")
/// .header("X-Custom-Foo", "bar");
/// let headers = req.headers_ref().unwrap();
/// assert_eq!( headers["Accept"], "text/html" );
/// assert_eq!( headers["X-Custom-Foo"], "bar" );
/// ```
pub fn headers_ref(&self) -> Option<&HeaderMap> {
self.inner.as_ref().ok().map(|h| &h.headers)
}
/// Get headers on this request builder.
///
/// When builder has error returns None.
///
/// # Example
///
/// ```
/// # use axol_http::{header::HeaderValue, Request};
/// let mut req = Request::builder();
/// {
/// let headers = req.headers_mut().unwrap();
/// headers.insert("Accept", HeaderValue::from_static("text/html"));
/// headers.insert("X-Custom-Foo", HeaderValue::from_static("bar"));
/// }
/// let headers = req.headers_ref().unwrap();
/// assert_eq!( headers["Accept"], "text/html" );
/// assert_eq!( headers["X-Custom-Foo"], "bar" );
/// ```
pub fn headers_mut(&mut self) -> Option<&mut HeaderMap> {
self.inner.as_mut().ok().map(|h| &mut h.headers)
}
/// Adds an extension to this builder
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let req = Request::builder()
/// .extension("My Extension")
/// .body(())
/// .unwrap();
///
/// assert_eq!(req.extensions().get::<&'static str>(),
/// Some(&"My Extension"));
/// ```
pub fn extension<T>(self, extension: T) -> Builder
where
T: Any + Send + Sync + 'static,
{
self.and_then(move |head| {
head.extensions.insert(extension);
Ok(head)
})
}
/// Get a reference to the extensions for this request builder.
///
/// If the builder has an error, this returns `None`.
///
/// # Example
///
/// ```
/// # use axol_http::Request;
/// let req = Request::builder().extension("My Extension").extension(5u32);
/// let extensions = req.extensions_ref().unwrap();
/// assert_eq!(extensions.get::<&'static str>(), Some(&"My Extension"));
/// assert_eq!(extensions.get::<u32>(), Some(&5u32));
/// ```
pub fn extensions(&self) -> Option<&Extensions> {
self.inner.as_ref().ok().map(|h| &h.extensions)
}
pub fn extensions_mut(&mut self) -> Option<&mut Extensions> {
self.inner.as_mut().ok().map(|h| &mut h.extensions)
}
/// "Consumes" this builder, using the provided `body` to return a
/// constructed `Request`.
///
/// # Errors
///
/// This function may return an error if any previously configured argument
/// failed to parse or get converted to the internal representation. For
/// example if an invalid `head` was specified via `header("Foo",
/// "Bar\r\n")` the error will be returned when this function is called
/// rather than when `header` was called.
///
/// # Examples
///
/// ```
/// # use axol_http::*;
///
/// let request = Request::builder()
/// .body(())
/// .unwrap();
/// ```
pub fn body(self, body: impl Into<Body>) -> Result<Request, RequestBuilderError> {
self.inner.map(move |mut head| {
head.body = body.into();
head
})
}
fn and_then<F>(self, func: F) -> Self
where
F: FnOnce(Request) -> Result<Request, RequestBuilderError>,
{
Builder {
inner: self.inner.and_then(func),
}
}
}
impl Default for Builder {
fn default() -> Builder {
Builder {
inner: Ok(Request::default()),
}
}
}