.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Cookie::Baker 3pm" .TH Cookie::Baker 3pm 2024-01-20 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Cookie::Baker \- Cookie string generator / parser .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& use Cookie::Baker; \& \& $headers\->push_header(\*(AqSet\-Cookie\*(Aq, bake_cookie($key,$val)); \& \& my $cookies_hashref = crush_cookie($headers\->header(\*(AqCookie\*(Aq)); .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" Cookie::Baker provides simple cookie string generator and parser. .SH "XS IMPLEMENTATION" .IX Header "XS IMPLEMENTATION" This module tries to use Cookie::Baker::XS's crush_cookie by default. If this fails, it will use Cookie::Baker's pure Perl crush_cookie. .PP There is no XS implementation of bake_cookie yet. .SH FUNCTION .IX Header "FUNCTION" .IP bake_cookie 4 .IX Item "bake_cookie" .Vb 7 \& my $cookie = bake_cookie(\*(Aqfoo\*(Aq,\*(Aqval\*(Aq); \& my $cookie = bake_cookie(\*(Aqfoo\*(Aq, { \& value => \*(Aqval\*(Aq, \& path => "test", \& domain => \*(Aq.example.com\*(Aq, \& expires => \*(Aq+24h\*(Aq \& } ); .Ve .Sp Generates a cookie string for an HTTP response header. The first argument is the cookie's name and the second argument is a plain string or hash reference that can contain keys such as \f(CW\*(C`value\*(C'\fR, \f(CW\*(C`domain\*(C'\fR, \f(CW\*(C`expires\*(C'\fR, \f(CW\*(C`path\*(C'\fR, \f(CW\*(C`httponly\*(C'\fR, \f(CW\*(C`secure\*(C'\fR, \&\f(CW\*(C`max\-age\*(C'\fR, \f(CW\*(C`samesite\*(C'\fR. .RS 4 .IP value 4 .IX Item "value" Cookie's value. .IP domain 4 .IX Item "domain" Cookie's domain. .IP partitioned 4 .IX Item "partitioned" If true, sets Partitioned flag, and also enforces secure, SameSite=None. false by default. Cookies Having Independent Partitioned State specification .IP expires 4 .IX Item "expires" Cookie's expires date time. Several formats are supported: .Sp .Vb 9 \& expires => time + 24 * 60 * 60 # epoch time \& expires => \*(AqWed, 03\-Nov\-2010 20:54:16 GMT\*(Aq \& expires => \*(Aq+30s\*(Aq # 30 seconds from now \& expires => \*(Aq+10m\*(Aq # ten minutes from now \& expires => \*(Aq+1h\*(Aq # one hour from now \& expires => \*(Aq\-1d\*(Aq # yesterday (i.e. "ASAP!") \& expires => \*(Aq+3M\*(Aq # in three months \& expires => \*(Aq+10y\*(Aq # in ten years time (60*60*24*365*10 seconds) \& expires => \*(Aqnow\*(Aq #immediately .Ve .IP max-age 4 .IX Item "max-age" If defined, sets the max-age for the cookie. .IP path 4 .IX Item "path" Cookie's path. .IP httponly 4 .IX Item "httponly" If true, sets HttpOnly flag. false by default. .IP secure 4 .IX Item "secure" If true, sets secure flag. false by default. .IP samesite 4 .IX Item "samesite" If defined as 'lax' or 'strict' or 'none' (case-insensitive), sets the SameSite restriction for the cookie as described in the draft proposal , which is already implemented in Chrome (v51), Safari (v12), Edge (v16), Opera (v38) and Firefox (v60). .RE .RS 4 .RE .IP crush_cookie 4 .IX Item "crush_cookie" Parses cookie string and returns a hashref. .Sp .Vb 2 \& my $cookies_hashref = crush_cookie($headers\->header(\*(AqCookie\*(Aq)); \& my $cookie_value = $cookies_hashref\->{cookie_name} .Ve .SH "SEE ALSO" .IX Header "SEE ALSO" CPAN already has many cookie related modules. But there is no simple cookie string generator and parser module. .PP CGI, CGI::Simple, Plack, Dancer::Cookie .SH LICENSE .IX Header "LICENSE" Copyright (C) Masahiro Nagano. .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. .SH AUTHOR .IX Header "AUTHOR" Masahiro Nagano