1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-web/src/http/header/if_match.rs

69 lines
2.4 KiB
Rust
Raw Normal View History

2021-12-02 15:25:39 +00:00
use super::{common_header, EntityTag, IF_MATCH};
2019-02-07 21:24:24 +00:00
2021-12-02 15:25:39 +00:00
common_header! {
/// `If-Match` header, defined
/// in [RFC 7232 §3.1](https://datatracker.ietf.org/doc/html/rfc7232#section-3.1)
2019-02-07 21:24:24 +00:00
///
/// The `If-Match` header field makes the request method conditional on
/// the recipient origin server either having at least one current
/// representation of the target resource, when the field-value is "*",
/// or having a current representation of the target resource that has an
/// entity-tag matching a member of the list of entity-tags provided in
/// the field-value.
///
/// An origin server MUST use the strong comparison function when
/// comparing entity-tags for `If-Match`, since the client
/// intends this precondition to prevent the method from being applied if
/// there have been any changes to the representation data.
///
/// # ABNF
2021-12-02 15:25:39 +00:00
/// ```plain
2019-02-07 21:24:24 +00:00
/// If-Match = "*" / 1#entity-tag
/// ```
///
/// # Example Values
2019-02-07 21:24:24 +00:00
/// * `"xyzzy"`
/// * "xyzzy", "r2d2xxxx", "c3piozzzz"
///
/// # Examples
2021-01-15 02:11:10 +00:00
/// ```
/// use actix_web::HttpResponse;
/// use actix_web::http::header::IfMatch;
2019-02-07 21:24:24 +00:00
///
/// let mut builder = HttpResponse::Ok();
2021-01-15 02:11:10 +00:00
/// builder.insert_header(IfMatch::Any);
2019-02-07 21:24:24 +00:00
/// ```
///
2021-01-15 02:11:10 +00:00
/// ```
/// use actix_web::HttpResponse;
/// use actix_web::http::header::{IfMatch, EntityTag};
2019-02-07 21:24:24 +00:00
///
/// let mut builder = HttpResponse::Ok();
2021-01-15 02:11:10 +00:00
/// builder.insert_header(
2019-02-07 21:24:24 +00:00
/// IfMatch::Items(vec![
/// EntityTag::new(false, "xyzzy".to_owned()),
/// EntityTag::new(false, "foobar".to_owned()),
/// EntityTag::new(false, "bazquux".to_owned()),
/// ])
/// );
/// ```
(IfMatch, IF_MATCH) => {Any / (EntityTag)+}
test_parse_and_format {
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(
2019-02-07 21:24:24 +00:00
test1,
vec![b"\"xyzzy\""],
Some(HeaderField::Items(
2022-01-03 18:46:04 +00:00
vec![EntityTag::new_strong("xyzzy".to_owned())])));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(
2019-02-07 21:24:24 +00:00
test2,
vec![b"\"xyzzy\", \"r2d2xxxx\", \"c3piozzzz\""],
Some(HeaderField::Items(
2022-01-03 18:46:04 +00:00
vec![EntityTag::new_strong("xyzzy".to_owned()),
EntityTag::new_strong("r2d2xxxx".to_owned()),
EntityTag::new_strong("c3piozzzz".to_owned())])));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test3, vec![b"*"], Some(IfMatch::Any));
2019-02-07 21:24:24 +00:00
}
}