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 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
//! HTTP cookie parsing and cookie jar management.
//!
//! This crates provides the [`Cookie`] type, representing an HTTP cookie, and
//! the [`CookieJar`] type, which manages a collection of cookies for session
//! management, recording changes as they are made, and optional automatic
//! cookie encryption and signing.
//!
//! # Usage
//!
//! Add the following to the `[dependencies]` section of your `Cargo.toml`:
//!
//! ```toml
//! cookie = "0.16"
//! ```
//!
//! # Features
//!
//! This crate exposes several features, all of which are disabled by default:
//!
//! * **`percent-encode`**
//!
//! Enables _percent encoding and decoding_ of names and values in cookies.
//!
//! When this feature is enabled, the [`Cookie::encoded()`] and
//! [`Cookie::parse_encoded()`] methods are available. The `encoded` method
//! returns a wrapper around a `Cookie` whose `Display` implementation
//! percent-encodes the name and value of the cookie. The `parse_encoded`
//! method percent-decodes the name and value of a `Cookie` during parsing.
//!
//! * **`signed`**
//!
//! Enables _signed_ cookies via [`CookieJar::signed()`].
//!
//! When this feature is enabled, the [`CookieJar::signed()`] method,
//! [`SignedJar`] type, and [`Key`] type are available. The jar acts as "child
//! jar"; operations on the jar automatically sign and verify cookies as they
//! are added and retrieved from the parent jar.
//!
//! * **`private`**
//!
//! Enables _private_ (authenticated, encrypted) cookies via
//! [`CookieJar::private()`].
//!
//! When this feature is enabled, the [`CookieJar::private()`] method,
//! [`PrivateJar`] type, and [`Key`] type are available. The jar acts as "child
//! jar"; operations on the jar automatically encrypt and decrypt/authenticate
//! cookies as they are added and retrieved from the parent jar.
//!
//! * **`key-expansion`**
//!
//! Enables _key expansion_ or _key derivation_ via [`Key::derive_from()`].
//!
//! When this feature is enabled, and either `signed` or `private` are _also_
//! enabled, the [`Key::derive_from()`] method is available. The method can be
//! used to derive a `Key` structure appropriate for use with signed and
//! private jars from cryptographically valid key material that is shorter in
//! length than the full key.
//!
//! * **`secure`**
//!
//! A meta-feature that simultaneously enables `signed`, `private`, and
//! `key-expansion`.
//!
//! You can enable features via `Cargo.toml`:
//!
//! ```toml
//! [dependencies.cookie]
//! features = ["secure", "percent-encode"]
//! ```
#![cfg_attr(all(nightly, doc), feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/cookie/0.16")]
#![deny(missing_docs)]
pub use time;
mod builder;
mod parse;
mod jar;
mod delta;
mod draft;
mod expiration;
#[cfg(any(feature = "private", feature = "signed"))] #[macro_use] mod secure;
#[cfg(any(feature = "private", feature = "signed"))] pub use secure::*;
use std::borrow::Cow;
use std::fmt;
use std::str::FromStr;
#[allow(unused_imports, deprecated)]
use std::ascii::AsciiExt;
use time::{Duration, OffsetDateTime, UtcOffset, macros::datetime};
use crate::parse::parse_cookie;
pub use crate::parse::ParseError;
pub use crate::builder::CookieBuilder;
pub use crate::jar::{CookieJar, Delta, Iter};
pub use crate::draft::*;
pub use crate::expiration::*;
#[derive(Debug, Clone)]
enum CookieStr<'c> {
/// An string derived from indexes (start, end).
Indexed(usize, usize),
/// A string derived from a concrete string.
Concrete(Cow<'c, str>),
}
impl<'c> CookieStr<'c> {
/// Retrieves the string `self` corresponds to. If `self` is derived from
/// indexes, the corresponding subslice of `string` is returned. Otherwise,
/// the concrete string is returned.
///
/// # Panics
///
/// Panics if `self` is an indexed string and `string` is None.
fn to_str<'s>(&'s self, string: Option<&'s Cow<str>>) -> &'s str {
match *self {
CookieStr::Indexed(i, j) => {
let s = string.expect("`Some` base string must exist when \
converting indexed str to str! (This is a module invariant.)");
&s[i..j]
},
CookieStr::Concrete(ref cstr) => &*cstr,
}
}
#[allow(clippy::ptr_arg)]
fn to_raw_str<'s, 'b: 's>(&'s self, string: &'s Cow<'b, str>) -> Option<&'b str> {
match *self {
CookieStr::Indexed(i, j) => {
match *string {
Cow::Borrowed(s) => Some(&s[i..j]),
Cow::Owned(_) => None,
}
},
CookieStr::Concrete(_) => None,
}
}
fn into_owned(self) -> CookieStr<'static> {
use crate::CookieStr::*;
match self {
Indexed(a, b) => Indexed(a, b),
Concrete(Cow::Owned(c)) => Concrete(Cow::Owned(c)),
Concrete(Cow::Borrowed(c)) => Concrete(Cow::Owned(c.into())),
}
}
}
/// Representation of an HTTP cookie.
///
/// # Constructing a `Cookie`
///
/// To construct a cookie with only a name/value, use [`Cookie::new()`]:
///
/// ```rust
/// use cookie::Cookie;
///
/// let cookie = Cookie::new("name", "value");
/// assert_eq!(&cookie.to_string(), "name=value");
/// ```
///
/// To construct more elaborate cookies, use [`Cookie::build()`] and
/// [`CookieBuilder`] methods:
///
/// ```rust
/// use cookie::Cookie;
///
/// let cookie = Cookie::build("name", "value")
/// .domain("www.rust-lang.org")
/// .path("/")
/// .secure(true)
/// .http_only(true)
/// .finish();
/// ```
#[derive(Debug, Clone)]
pub struct Cookie<'c> {
/// Storage for the cookie string. Only used if this structure was derived
/// from a string that was subsequently parsed.
cookie_string: Option<Cow<'c, str>>,
/// The cookie's name.
name: CookieStr<'c>,
/// The cookie's value.
value: CookieStr<'c>,
/// The cookie's expiration, if any.
expires: Option<Expiration>,
/// The cookie's maximum age, if any.
max_age: Option<Duration>,
/// The cookie's domain, if any.
domain: Option<CookieStr<'c>>,
/// The cookie's path domain, if any.
path: Option<CookieStr<'c>>,
/// Whether this cookie was marked Secure.
secure: Option<bool>,
/// Whether this cookie was marked HttpOnly.
http_only: Option<bool>,
/// The draft `SameSite` attribute.
same_site: Option<SameSite>,
}
impl<'c> Cookie<'c> {
/// Creates a new `Cookie` with the given name and value.
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let cookie = Cookie::new("name", "value");
/// assert_eq!(cookie.name_value(), ("name", "value"));
/// ```
pub fn new<N, V>(name: N, value: V) -> Self
where N: Into<Cow<'c, str>>,
V: Into<Cow<'c, str>>
{
Cookie {
cookie_string: None,
name: CookieStr::Concrete(name.into()),
value: CookieStr::Concrete(value.into()),
expires: None,
max_age: None,
domain: None,
path: None,
secure: None,
http_only: None,
same_site: None,
}
}
/// Creates a new `Cookie` with the given name and an empty value.
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let cookie = Cookie::named("name");
/// assert_eq!(cookie.name(), "name");
/// assert!(cookie.value().is_empty());
/// ```
pub fn named<N>(name: N) -> Cookie<'c>
where N: Into<Cow<'c, str>>
{
Cookie::new(name, "")
}
/// Creates a new `CookieBuilder` instance from the given key and value
/// strings.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::build("foo", "bar").finish();
/// assert_eq!(c.name_value(), ("foo", "bar"));
/// ```
pub fn build<N, V>(name: N, value: V) -> CookieBuilder<'c>
where N: Into<Cow<'c, str>>,
V: Into<Cow<'c, str>>
{
CookieBuilder::new(name, value)
}
/// Parses a `Cookie` from the given HTTP cookie header value string. Does
/// not perform any percent-decoding.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("foo=bar%20baz; HttpOnly").unwrap();
/// assert_eq!(c.name_value(), ("foo", "bar%20baz"));
/// assert_eq!(c.http_only(), Some(true));
/// ```
pub fn parse<S>(s: S) -> Result<Cookie<'c>, ParseError>
where S: Into<Cow<'c, str>>
{
parse_cookie(s, false)
}
/// Parses a `Cookie` from the given HTTP cookie header value string where
/// the name and value fields are percent-encoded. Percent-decodes the
/// name/value fields.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse_encoded("foo=bar%20baz; HttpOnly").unwrap();
/// assert_eq!(c.name_value(), ("foo", "bar baz"));
/// assert_eq!(c.http_only(), Some(true));
/// ```
#[cfg(feature = "percent-encode")]
#[cfg_attr(all(nightly, doc), doc(cfg(feature = "percent-encode")))]
pub fn parse_encoded<S>(s: S) -> Result<Cookie<'c>, ParseError>
where S: Into<Cow<'c, str>>
{
parse_cookie(s, true)
}
/// Converts `self` into a `Cookie` with a static lifetime with as few
/// allocations as possible.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::new("a", "b");
/// let owned_cookie = c.into_owned();
/// assert_eq!(owned_cookie.name_value(), ("a", "b"));
/// ```
pub fn into_owned(self) -> Cookie<'static> {
Cookie {
cookie_string: self.cookie_string.map(|s| s.into_owned().into()),
name: self.name.into_owned(),
value: self.value.into_owned(),
expires: self.expires,
max_age: self.max_age,
domain: self.domain.map(|s| s.into_owned()),
path: self.path.map(|s| s.into_owned()),
secure: self.secure,
http_only: self.http_only,
same_site: self.same_site,
}
}
/// Returns the name of `self`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::new("name", "value");
/// assert_eq!(c.name(), "name");
/// ```
#[inline]
pub fn name(&self) -> &str {
self.name.to_str(self.cookie_string.as_ref())
}
/// Returns the value of `self`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::new("name", "value");
/// assert_eq!(c.value(), "value");
/// ```
#[inline]
pub fn value(&self) -> &str {
self.value.to_str(self.cookie_string.as_ref())
}
/// Returns the name and value of `self` as a tuple of `(name, value)`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::new("name", "value");
/// assert_eq!(c.name_value(), ("name", "value"));
/// ```
#[inline]
pub fn name_value(&self) -> (&str, &str) {
(self.name(), self.value())
}
/// Returns whether this cookie was marked `HttpOnly` or not. Returns
/// `Some(true)` when the cookie was explicitly set (manually or parsed) as
/// `HttpOnly`, `Some(false)` when `http_only` was manually set to `false`,
/// and `None` otherwise.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("name=value; httponly").unwrap();
/// assert_eq!(c.http_only(), Some(true));
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.http_only(), None);
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.http_only(), None);
///
/// // An explicitly set "false" value.
/// c.set_http_only(false);
/// assert_eq!(c.http_only(), Some(false));
///
/// // An explicitly set "true" value.
/// c.set_http_only(true);
/// assert_eq!(c.http_only(), Some(true));
/// ```
#[inline]
pub fn http_only(&self) -> Option<bool> {
self.http_only
}
/// Returns whether this cookie was marked `Secure` or not. Returns
/// `Some(true)` when the cookie was explicitly set (manually or parsed) as
/// `Secure`, `Some(false)` when `secure` was manually set to `false`, and
/// `None` otherwise.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("name=value; Secure").unwrap();
/// assert_eq!(c.secure(), Some(true));
///
/// let mut c = Cookie::parse("name=value").unwrap();
/// assert_eq!(c.secure(), None);
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.secure(), None);
///
/// // An explicitly set "false" value.
/// c.set_secure(false);
/// assert_eq!(c.secure(), Some(false));
///
/// // An explicitly set "true" value.
/// c.set_secure(true);
/// assert_eq!(c.secure(), Some(true));
/// ```
#[inline]
pub fn secure(&self) -> Option<bool> {
self.secure
}
/// Returns the `SameSite` attribute of this cookie if one was specified.
///
/// # Example
///
/// ```
/// use cookie::{Cookie, SameSite};
///
/// let c = Cookie::parse("name=value; SameSite=Lax").unwrap();
/// assert_eq!(c.same_site(), Some(SameSite::Lax));
/// ```
#[inline]
pub fn same_site(&self) -> Option<SameSite> {
self.same_site
}
/// Returns the specified max-age of the cookie if one was specified.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("name=value").unwrap();
/// assert_eq!(c.max_age(), None);
///
/// let c = Cookie::parse("name=value; Max-Age=3600").unwrap();
/// assert_eq!(c.max_age().map(|age| age.whole_hours()), Some(1));
/// ```
#[inline]
pub fn max_age(&self) -> Option<Duration> {
self.max_age
}
/// Returns the `Path` of the cookie if one was specified.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("name=value").unwrap();
/// assert_eq!(c.path(), None);
///
/// let c = Cookie::parse("name=value; Path=/").unwrap();
/// assert_eq!(c.path(), Some("/"));
///
/// let c = Cookie::parse("name=value; path=/sub").unwrap();
/// assert_eq!(c.path(), Some("/sub"));
/// ```
#[inline]
pub fn path(&self) -> Option<&str> {
match self.path {
Some(ref c) => Some(c.to_str(self.cookie_string.as_ref())),
None => None,
}
}
/// Returns the `Domain` of the cookie if one was specified.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("name=value").unwrap();
/// assert_eq!(c.domain(), None);
///
/// let c = Cookie::parse("name=value; Domain=crates.io").unwrap();
/// assert_eq!(c.domain(), Some("crates.io"));
/// ```
#[inline]
pub fn domain(&self) -> Option<&str> {
match self.domain {
Some(ref c) => Some(c.to_str(self.cookie_string.as_ref())),
None => None,
}
}
/// Returns the [`Expiration`] of the cookie if one was specified.
///
/// # Example
///
/// ```
/// use cookie::{Cookie, Expiration};
///
/// let c = Cookie::parse("name=value").unwrap();
/// assert_eq!(c.expires(), None);
///
/// // Here, `cookie.expires_datetime()` returns `None`.
/// let c = Cookie::build("name", "value").expires(None).finish();
/// assert_eq!(c.expires(), Some(Expiration::Session));
///
/// let expire_time = "Wed, 21 Oct 2017 07:28:00 GMT";
/// let cookie_str = format!("name=value; Expires={}", expire_time);
/// let c = Cookie::parse(cookie_str).unwrap();
/// assert_eq!(c.expires().and_then(|e| e.datetime()).map(|t| t.year()), Some(2017));
/// ```
#[inline]
pub fn expires(&self) -> Option<Expiration> {
self.expires
}
/// Returns the expiration date-time of the cookie if one was specified.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let c = Cookie::parse("name=value").unwrap();
/// assert_eq!(c.expires_datetime(), None);
///
/// // Here, `cookie.expires()` returns `Some`.
/// let c = Cookie::build("name", "value").expires(None).finish();
/// assert_eq!(c.expires_datetime(), None);
///
/// let expire_time = "Wed, 21 Oct 2017 07:28:00 GMT";
/// let cookie_str = format!("name=value; Expires={}", expire_time);
/// let c = Cookie::parse(cookie_str).unwrap();
/// assert_eq!(c.expires_datetime().map(|t| t.year()), Some(2017));
/// ```
#[inline]
pub fn expires_datetime(&self) -> Option<OffsetDateTime> {
self.expires.and_then(|e| e.datetime())
}
/// Sets the name of `self` to `name`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.name(), "name");
///
/// c.set_name("foo");
/// assert_eq!(c.name(), "foo");
/// ```
pub fn set_name<N: Into<Cow<'c, str>>>(&mut self, name: N) {
self.name = CookieStr::Concrete(name.into())
}
/// Sets the value of `self` to `value`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.value(), "value");
///
/// c.set_value("bar");
/// assert_eq!(c.value(), "bar");
/// ```
pub fn set_value<V: Into<Cow<'c, str>>>(&mut self, value: V) {
self.value = CookieStr::Concrete(value.into())
}
/// Sets the value of `http_only` in `self` to `value`. If `value` is
/// `None`, the field is unset.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.http_only(), None);
///
/// c.set_http_only(true);
/// assert_eq!(c.http_only(), Some(true));
///
/// c.set_http_only(false);
/// assert_eq!(c.http_only(), Some(false));
///
/// c.set_http_only(None);
/// assert_eq!(c.http_only(), None);
/// ```
#[inline]
pub fn set_http_only<T: Into<Option<bool>>>(&mut self, value: T) {
self.http_only = value.into();
}
/// Sets the value of `secure` in `self` to `value`. If `value` is `None`,
/// the field is unset.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.secure(), None);
///
/// c.set_secure(true);
/// assert_eq!(c.secure(), Some(true));
///
/// c.set_secure(false);
/// assert_eq!(c.secure(), Some(false));
///
/// c.set_secure(None);
/// assert_eq!(c.secure(), None);
/// ```
#[inline]
pub fn set_secure<T: Into<Option<bool>>>(&mut self, value: T) {
self.secure = value.into();
}
/// Sets the value of `same_site` in `self` to `value`. If `value` is
/// `None`, the field is unset. If `value` is `SameSite::None`, the "Secure"
/// flag will be set when the cookie is written out unless `secure` is
/// explicitly set to `false` via [`Cookie::set_secure()`] or the equivalent
/// builder method.
///
/// [HTTP draft]: https://tools.ietf.org/html/draft-west-cookie-incrementalism-00
///
/// # Example
///
/// ```
/// use cookie::{Cookie, SameSite};
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.same_site(), None);
///
/// c.set_same_site(SameSite::None);
/// assert_eq!(c.same_site(), Some(SameSite::None));
/// assert_eq!(c.to_string(), "name=value; SameSite=None; Secure");
///
/// c.set_secure(false);
/// assert_eq!(c.to_string(), "name=value; SameSite=None");
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.same_site(), None);
///
/// c.set_same_site(SameSite::Strict);
/// assert_eq!(c.same_site(), Some(SameSite::Strict));
/// assert_eq!(c.to_string(), "name=value; SameSite=Strict");
///
/// c.set_same_site(None);
/// assert_eq!(c.same_site(), None);
/// assert_eq!(c.to_string(), "name=value");
/// ```
#[inline]
pub fn set_same_site<T: Into<Option<SameSite>>>(&mut self, value: T) {
self.same_site = value.into();
}
/// Sets the value of `max_age` in `self` to `value`. If `value` is `None`,
/// the field is unset.
///
/// # Example
///
/// ```rust
/// # extern crate cookie;
/// use cookie::Cookie;
/// use cookie::time::Duration;
///
/// # fn main() {
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.max_age(), None);
///
/// c.set_max_age(Duration::hours(10));
/// assert_eq!(c.max_age(), Some(Duration::hours(10)));
///
/// c.set_max_age(None);
/// assert!(c.max_age().is_none());
/// # }
/// ```
#[inline]
pub fn set_max_age<D: Into<Option<Duration>>>(&mut self, value: D) {
self.max_age = value.into();
}
/// Sets the `path` of `self` to `path`.
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.path(), None);
///
/// c.set_path("/");
/// assert_eq!(c.path(), Some("/"));
/// ```
pub fn set_path<P: Into<Cow<'c, str>>>(&mut self, path: P) {
self.path = Some(CookieStr::Concrete(path.into()));
}
/// Unsets the `path` of `self`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.path(), None);
///
/// c.set_path("/");
/// assert_eq!(c.path(), Some("/"));
///
/// c.unset_path();
/// assert_eq!(c.path(), None);
/// ```
pub fn unset_path(&mut self) {
self.path = None;
}
/// Sets the `domain` of `self` to `domain`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.domain(), None);
///
/// c.set_domain("rust-lang.org");
/// assert_eq!(c.domain(), Some("rust-lang.org"));
/// ```
pub fn set_domain<D: Into<Cow<'c, str>>>(&mut self, domain: D) {
self.domain = Some(CookieStr::Concrete(domain.into()));
}
/// Unsets the `domain` of `self`.
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.domain(), None);
///
/// c.set_domain("rust-lang.org");
/// assert_eq!(c.domain(), Some("rust-lang.org"));
///
/// c.unset_domain();
/// assert_eq!(c.domain(), None);
/// ```
pub fn unset_domain(&mut self) {
self.domain = None;
}
/// Sets the expires field of `self` to `time`. If `time` is `None`, an
/// expiration of [`Session`](Expiration::Session) is set.
///
/// # Example
///
/// ```
/// # extern crate cookie;
/// use cookie::{Cookie, Expiration};
/// use cookie::time::{Duration, OffsetDateTime};
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.expires(), None);
///
/// let mut now = OffsetDateTime::now_utc();
/// now += Duration::weeks(52);
///
/// c.set_expires(now);
/// assert!(c.expires().is_some());
///
/// c.set_expires(None);
/// assert_eq!(c.expires(), Some(Expiration::Session));
/// ```
pub fn set_expires<T: Into<Expiration>>(&mut self, time: T) {
static MAX_DATETIME: OffsetDateTime = datetime!(9999-12-31 23:59:59.999_999 UTC);
// RFC 6265 requires dates not to exceed 9999 years.
self.expires = Some(time.into()
.map(|time| std::cmp::min(time, MAX_DATETIME)));
}
/// Unsets the `expires` of `self`.
///
/// # Example
///
/// ```
/// use cookie::{Cookie, Expiration};
///
/// let mut c = Cookie::new("name", "value");
/// assert_eq!(c.expires(), None);
///
/// c.set_expires(None);
/// assert_eq!(c.expires(), Some(Expiration::Session));
///
/// c.unset_expires();
/// assert_eq!(c.expires(), None);
/// ```
pub fn unset_expires(&mut self) {
self.expires = None;
}
/// Makes `self` a "permanent" cookie by extending its expiration and max
/// age 20 years into the future.
///
/// # Example
///
/// ```rust
/// # extern crate cookie;
/// use cookie::Cookie;
/// use cookie::time::Duration;
///
/// # fn main() {
/// let mut c = Cookie::new("foo", "bar");
/// assert!(c.expires().is_none());
/// assert!(c.max_age().is_none());
///
/// c.make_permanent();
/// assert!(c.expires().is_some());
/// assert_eq!(c.max_age(), Some(Duration::days(365 * 20)));
/// # }
/// ```
pub fn make_permanent(&mut self) {
let twenty_years = Duration::days(365 * 20);
self.set_max_age(twenty_years);
self.set_expires(OffsetDateTime::now_utc() + twenty_years);
}
/// Make `self` a "removal" cookie by clearing its value, setting a max-age
/// of `0`, and setting an expiration date far in the past.
///
/// # Example
///
/// ```rust
/// # extern crate cookie;
/// use cookie::Cookie;
/// use cookie::time::Duration;
///
/// # fn main() {
/// let mut c = Cookie::new("foo", "bar");
/// c.make_permanent();
/// assert_eq!(c.max_age(), Some(Duration::days(365 * 20)));
/// assert_eq!(c.value(), "bar");
///
/// c.make_removal();
/// assert_eq!(c.value(), "");
/// assert_eq!(c.max_age(), Some(Duration::ZERO));
/// # }
/// ```
pub fn make_removal(&mut self) {
self.set_value("");
self.set_max_age(Duration::seconds(0));
self.set_expires(OffsetDateTime::now_utc() - Duration::days(365));
}
fn fmt_parameters(&self, f: &mut fmt::Formatter) -> fmt::Result {
if let Some(true) = self.http_only() {
write!(f, "; HttpOnly")?;
}
if let Some(same_site) = self.same_site() {
write!(f, "; SameSite={}", same_site)?;
if same_site.is_none() && self.secure().is_none() {
write!(f, "; Secure")?;
}
}
if let Some(true) = self.secure() {
write!(f, "; Secure")?;
}
if let Some(path) = self.path() {
write!(f, "; Path={}", path)?;
}
if let Some(domain) = self.domain() {
write!(f, "; Domain={}", domain)?;
}
if let Some(max_age) = self.max_age() {
write!(f, "; Max-Age={}", max_age.whole_seconds())?;
}
if let Some(time) = self.expires_datetime() {
let time = time.to_offset(UtcOffset::UTC);
write!(f, "; Expires={}", time.format(&crate::parse::FMT1).map_err(|_| fmt::Error)?)?;
}
Ok(())
}
/// Returns the name of `self` as a string slice of the raw string `self`
/// was originally parsed from. If `self` was not originally parsed from a
/// raw string, returns `None`.
///
/// This method differs from [`Cookie::name()`] in that it returns a string
/// with the same lifetime as the originally parsed string. This lifetime
/// may outlive `self`. If a longer lifetime is not required, or you're
/// unsure if you need a longer lifetime, use [`Cookie::name()`].
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let cookie_string = format!("{}={}", "foo", "bar");
///
/// // `c` will be dropped at the end of the scope, but `name` will live on
/// let name = {
/// let c = Cookie::parse(cookie_string.as_str()).unwrap();
/// c.name_raw()
/// };
///
/// assert_eq!(name, Some("foo"));
/// ```
#[inline]
pub fn name_raw(&self) -> Option<&'c str> {
self.cookie_string.as_ref()
.and_then(|s| self.name.to_raw_str(s))
}
/// Returns the value of `self` as a string slice of the raw string `self`
/// was originally parsed from. If `self` was not originally parsed from a
/// raw string, returns `None`.
///
/// This method differs from [`Cookie::value()`] in that it returns a
/// string with the same lifetime as the originally parsed string. This
/// lifetime may outlive `self`. If a longer lifetime is not required, or
/// you're unsure if you need a longer lifetime, use [`Cookie::value()`].
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let cookie_string = format!("{}={}", "foo", "bar");
///
/// // `c` will be dropped at the end of the scope, but `value` will live on
/// let value = {
/// let c = Cookie::parse(cookie_string.as_str()).unwrap();
/// c.value_raw()
/// };
///
/// assert_eq!(value, Some("bar"));
/// ```
#[inline]
pub fn value_raw(&self) -> Option<&'c str> {
self.cookie_string.as_ref()
.and_then(|s| self.value.to_raw_str(s))
}
/// Returns the `Path` of `self` as a string slice of the raw string `self`
/// was originally parsed from. If `self` was not originally parsed from a
/// raw string, or if `self` doesn't contain a `Path`, or if the `Path` has
/// changed since parsing, returns `None`.
///
/// This method differs from [`Cookie::path()`] in that it returns a
/// string with the same lifetime as the originally parsed string. This
/// lifetime may outlive `self`. If a longer lifetime is not required, or
/// you're unsure if you need a longer lifetime, use [`Cookie::path()`].
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let cookie_string = format!("{}={}; Path=/", "foo", "bar");
///
/// // `c` will be dropped at the end of the scope, but `path` will live on
/// let path = {
/// let c = Cookie::parse(cookie_string.as_str()).unwrap();
/// c.path_raw()
/// };
///
/// assert_eq!(path, Some("/"));
/// ```
#[inline]
pub fn path_raw(&self) -> Option<&'c str> {
match (self.path.as_ref(), self.cookie_string.as_ref()) {
(Some(path), Some(string)) => path.to_raw_str(string),
_ => None,
}
}
/// Returns the `Domain` of `self` as a string slice of the raw string
/// `self` was originally parsed from. If `self` was not originally parsed
/// from a raw string, or if `self` doesn't contain a `Domain`, or if the
/// `Domain` has changed since parsing, returns `None`.
///
/// This method differs from [`Cookie::domain()`] in that it returns a
/// string with the same lifetime as the originally parsed string. This
/// lifetime may outlive `self` struct. If a longer lifetime is not
/// required, or you're unsure if you need a longer lifetime, use
/// [`Cookie::domain()`].
///
/// # Example
///
/// ```
/// use cookie::Cookie;
///
/// let cookie_string = format!("{}={}; Domain=crates.io", "foo", "bar");
///
/// //`c` will be dropped at the end of the scope, but `domain` will live on
/// let domain = {
/// let c = Cookie::parse(cookie_string.as_str()).unwrap();
/// c.domain_raw()
/// };
///
/// assert_eq!(domain, Some("crates.io"));
/// ```
#[inline]
pub fn domain_raw(&self) -> Option<&'c str> {
match (self.domain.as_ref(), self.cookie_string.as_ref()) {
(Some(domain), Some(string)) => domain.to_raw_str(string),
_ => None,
}
}
/// Wraps `self` in an encoded [`Display`]: a cost-free wrapper around
/// `Cookie` whose [`fmt::Display`] implementation percent-encodes the name
/// and value of the wrapped `Cookie`.
///
/// The returned structure can be chained with [`Display::stripped()`] to
/// display only the name and value.
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let mut c = Cookie::build("my name", "this; value?").secure(true).finish();
/// assert_eq!(&c.encoded().to_string(), "my%20name=this%3B%20value%3F; Secure");
/// assert_eq!(&c.encoded().stripped().to_string(), "my%20name=this%3B%20value%3F");
/// ```
#[cfg(feature = "percent-encode")]
#[cfg_attr(all(nightly, doc), doc(cfg(feature = "percent-encode")))]
#[inline(always)]
pub fn encoded<'a>(&'a self) -> Display<'a, 'c> {
Display::new_encoded(self)
}
/// Wraps `self` in a stripped `Display`]: a cost-free wrapper around
/// `Cookie` whose [`fmt::Display`] implementation prints only the `name`
/// and `value` of the wrapped `Cookie`.
///
/// The returned structure can be chained with [`Display::encoded()`] to
/// encode the name and value.
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let mut c = Cookie::build("key?", "value").secure(true).path("/").finish();
/// assert_eq!(&c.stripped().to_string(), "key?=value");
#[cfg_attr(feature = "percent-encode", doc = r##"
// Note: `encoded()` is only available when `percent-encode` is enabled.
assert_eq!(&c.stripped().encoded().to_string(), "key%3F=value");
#"##)]
/// ```
#[inline(always)]
pub fn stripped<'a>(&'a self) -> Display<'a, 'c> {
Display::new_stripped(self)
}
}
#[cfg(feature = "percent-encode")]
mod encoding {
use percent_encoding::{AsciiSet, CONTROLS};
/// https://url.spec.whatwg.org/#fragment-percent-encode-set
const FRAGMENT: &AsciiSet = &CONTROLS
.add(b' ')
.add(b'"')
.add(b'<')
.add(b'>')
.add(b'`');
/// https://url.spec.whatwg.org/#path-percent-encode-set
const PATH: &AsciiSet = &FRAGMENT
.add(b'#')
.add(b'?')
.add(b'{')
.add(b'}');
/// https://url.spec.whatwg.org/#userinfo-percent-encode-set
const USERINFO: &AsciiSet = &PATH
.add(b'/')
.add(b':')
.add(b';')
.add(b'=')
.add(b'@')
.add(b'[')
.add(b'\\')
.add(b']')
.add(b'^')
.add(b'|')
.add(b'%');
/// https://www.rfc-editor.org/rfc/rfc6265#section-4.1.1 + '(', ')'
const COOKIE: &AsciiSet = &USERINFO
.add(b'(')
.add(b')')
.add(b',');
/// Percent-encode a cookie name or value with the proper encoding set.
pub fn encode(string: &str) -> impl std::fmt::Display + '_ {
percent_encoding::percent_encode(string.as_bytes(), COOKIE)
}
}
/// Wrapper around `Cookie` whose `Display` implementation either
/// percent-encodes the cookie's name and value, skips displaying the cookie's
/// parameters (only displaying it's name and value), or both.
///
/// A value of this type can be obtained via [`Cookie::encoded()`] and
/// [`Cookie::stripped()`], or an arbitrary chaining of the two methods. This
/// type should only be used for its `Display` implementation.
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let c = Cookie::build("my name", "this; value%?").secure(true).finish();
/// assert_eq!(&c.stripped().to_string(), "my name=this; value%?");
#[cfg_attr(feature = "percent-encode", doc = r##"
// Note: `encoded()` is only available when `percent-encode` is enabled.
assert_eq!(&c.encoded().to_string(), "my%20name=this%3B%20value%25%3F; Secure");
assert_eq!(&c.stripped().encoded().to_string(), "my%20name=this%3B%20value%25%3F");
assert_eq!(&c.encoded().stripped().to_string(), "my%20name=this%3B%20value%25%3F");
"##)]
/// ```
pub struct Display<'a, 'c: 'a> {
cookie: &'a Cookie<'c>,
#[cfg(feature = "percent-encode")]
encode: bool,
strip: bool,
}
impl<'a, 'c: 'a> fmt::Display for Display<'a, 'c> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
#[cfg(feature = "percent-encode")] {
if self.encode {
let name = encoding::encode(self.cookie.name());
let value = encoding::encode(self.cookie.value());
write!(f, "{}={}", name, value)?;
} else {
write!(f, "{}={}", self.cookie.name(), self.cookie.value())?;
}
}
#[cfg(not(feature = "percent-encode"))] {
write!(f, "{}={}", self.cookie.name(), self.cookie.value())?;
}
match self.strip {
true => Ok(()),
false => self.cookie.fmt_parameters(f)
}
}
}
impl<'a, 'c> Display<'a, 'c> {
#[cfg(feature = "percent-encode")]
fn new_encoded(cookie: &'a Cookie<'c>) -> Self {
Display { cookie, strip: false, encode: true }
}
fn new_stripped(cookie: &'a Cookie<'c>) -> Self {
Display { cookie, strip: true, #[cfg(feature = "percent-encode")] encode: false }
}
/// Percent-encode the name and value pair.
#[inline]
#[cfg(feature = "percent-encode")]
#[cfg_attr(all(nightly, doc), doc(cfg(feature = "percent-encode")))]
pub fn encoded(mut self) -> Self {
self.encode = true;
self
}
/// Only display the name and value.
#[inline]
pub fn stripped(mut self) -> Self {
self.strip = true;
self
}
}
impl<'c> fmt::Display for Cookie<'c> {
/// Formats the cookie `self` as a `Set-Cookie` header value.
///
/// Does _not_ percent-encode any values. To percent-encode, use
/// [`Cookie::encoded()`].
///
/// # Example
///
/// ```rust
/// use cookie::Cookie;
///
/// let mut cookie = Cookie::build("foo", "bar")
/// .path("/")
/// .finish();
///
/// assert_eq!(&cookie.to_string(), "foo=bar; Path=/");
/// ```
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}={}", self.name(), self.value())?;
self.fmt_parameters(f)
}
}
impl FromStr for Cookie<'static> {
type Err = ParseError;
fn from_str(s: &str) -> Result<Cookie<'static>, ParseError> {
Cookie::parse(s).map(|c| c.into_owned())
}
}
impl<'a, 'b> PartialEq<Cookie<'b>> for Cookie<'a> {
fn eq(&self, other: &Cookie<'b>) -> bool {
let so_far_so_good = self.name() == other.name()
&& self.value() == other.value()
&& self.http_only() == other.http_only()
&& self.secure() == other.secure()
&& self.max_age() == other.max_age()
&& self.expires() == other.expires();
if !so_far_so_good {
return false;
}
match (self.path(), other.path()) {
(Some(a), Some(b)) if a.eq_ignore_ascii_case(b) => {}
(None, None) => {}
_ => return false,
};
match (self.domain(), other.domain()) {
(Some(a), Some(b)) if a.eq_ignore_ascii_case(b) => {}
(None, None) => {}
_ => return false,
};
true
}
}
#[cfg(test)]
mod tests {
use crate::{Cookie, SameSite, parse::parse_date};
use time::{Duration, OffsetDateTime};
#[test]
fn format() {
let cookie = Cookie::new("foo", "bar");
assert_eq!(&cookie.to_string(), "foo=bar");
let cookie = Cookie::build("foo", "bar")
.http_only(true).finish();
assert_eq!(&cookie.to_string(), "foo=bar; HttpOnly");
let cookie = Cookie::build("foo", "bar")
.max_age(Duration::seconds(10)).finish();
assert_eq!(&cookie.to_string(), "foo=bar; Max-Age=10");
let cookie = Cookie::build("foo", "bar")
.secure(true).finish();
assert_eq!(&cookie.to_string(), "foo=bar; Secure");
let cookie = Cookie::build("foo", "bar")
.path("/").finish();
assert_eq!(&cookie.to_string(), "foo=bar; Path=/");
let cookie = Cookie::build("foo", "bar")
.domain("www.rust-lang.org").finish();
assert_eq!(&cookie.to_string(), "foo=bar; Domain=www.rust-lang.org");
let time_str = "Wed, 21 Oct 2015 07:28:00 GMT";
let expires = parse_date(time_str, &crate::parse::FMT1).unwrap();
let cookie = Cookie::build("foo", "bar")
.expires(expires).finish();
assert_eq!(&cookie.to_string(),
"foo=bar; Expires=Wed, 21 Oct 2015 07:28:00 GMT");
let cookie = Cookie::build("foo", "bar")
.same_site(SameSite::Strict).finish();
assert_eq!(&cookie.to_string(), "foo=bar; SameSite=Strict");
let cookie = Cookie::build("foo", "bar")
.same_site(SameSite::Lax).finish();
assert_eq!(&cookie.to_string(), "foo=bar; SameSite=Lax");
let mut cookie = Cookie::build("foo", "bar")
.same_site(SameSite::None).finish();
assert_eq!(&cookie.to_string(), "foo=bar; SameSite=None; Secure");
cookie.set_same_site(None);
assert_eq!(&cookie.to_string(), "foo=bar");
let mut cookie = Cookie::build("foo", "bar")
.same_site(SameSite::None)
.secure(false)
.finish();
assert_eq!(&cookie.to_string(), "foo=bar; SameSite=None");
cookie.set_secure(true);
assert_eq!(&cookie.to_string(), "foo=bar; SameSite=None; Secure");
}
#[test]
#[ignore]
fn format_date_wraps() {
let expires = OffsetDateTime::UNIX_EPOCH + Duration::MAX;
let cookie = Cookie::build("foo", "bar").expires(expires).finish();
assert_eq!(&cookie.to_string(), "foo=bar; Expires=Fri, 31 Dec 9999 23:59:59 GMT");
let expires = time::macros::datetime!(9999-01-01 0:00 UTC) + Duration::days(1000);
let cookie = Cookie::build("foo", "bar").expires(expires).finish();
assert_eq!(&cookie.to_string(), "foo=bar; Expires=Fri, 31 Dec 9999 23:59:59 GMT");
}
#[test]
fn cookie_string_long_lifetimes() {
let cookie_string = "bar=baz; Path=/subdir; HttpOnly; Domain=crates.io".to_owned();
let (name, value, path, domain) = {
// Create a cookie passing a slice
let c = Cookie::parse(cookie_string.as_str()).unwrap();
(c.name_raw(), c.value_raw(), c.path_raw(), c.domain_raw())
};
assert_eq!(name, Some("bar"));
assert_eq!(value, Some("baz"));
assert_eq!(path, Some("/subdir"));
assert_eq!(domain, Some("crates.io"));
}
#[test]
fn owned_cookie_string() {
let cookie_string = "bar=baz; Path=/subdir; HttpOnly; Domain=crates.io".to_owned();
let (name, value, path, domain) = {
// Create a cookie passing an owned string
let c = Cookie::parse(cookie_string).unwrap();
(c.name_raw(), c.value_raw(), c.path_raw(), c.domain_raw())
};
assert_eq!(name, None);
assert_eq!(value, None);
assert_eq!(path, None);
assert_eq!(domain, None);
}
#[test]
fn owned_cookie_struct() {
let cookie_string = "bar=baz; Path=/subdir; HttpOnly; Domain=crates.io";
let (name, value, path, domain) = {
// Create an owned cookie
let c = Cookie::parse(cookie_string).unwrap().into_owned();
(c.name_raw(), c.value_raw(), c.path_raw(), c.domain_raw())
};
assert_eq!(name, None);
assert_eq!(value, None);
assert_eq!(path, None);
assert_eq!(domain, None);
}
#[test]
#[cfg(feature = "percent-encode")]
fn format_encoded() {
let cookie = Cookie::build("foo !%?=", "bar;;, a").finish();
let cookie_str = cookie.encoded().to_string();
assert_eq!(&cookie_str, "foo%20!%25%3F%3D=bar%3B%3B%2C%20a");
let cookie = Cookie::parse_encoded(cookie_str).unwrap();
assert_eq!(cookie.name_value(), ("foo !%?=", "bar;;, a"));
}
}