Group
Extension

SPVM-Mojolicious/lib/SPVM/Mojo/Headers.pm

package SPVM::Mojo::Headers;



1;

=head1 Name

SPVM::Mojo::Headers - HTTP headers

=head1 Description

Mojo::Headers class in L<SPVM> is a container for HTTP headers, based on L<RFC 7230|https://tools.ietf.org/html/rfc7230> and L<RFC
7231|https://tools.ietf.org/html/rfc7231>.

=head1 Usage

  use Mojo::Headers;
  
  # Parse
  my $headers = Mojo::Headers->new;
  $headers->parse("Content-Length: 42\x0d\x0a");
  $headers->parse("Content-Type: text/html\x0d\x0a\x0d\x0a");
  say $headers->content_length;
  say $headers->content_type;
  
  # Build
  my $headers = Mojo::Headers->new;
  $headers->set_content_length(42);
  $headers->set_content_type("text/plain");
  say $headers->to_string;

=head1 Interfaces

=over 2

=item * L<Stringable|SPVM::Stringable>

=back

=head1 Fields

=head2 max_line_size

C<has max_line_size : rw int;>

Maximum header line size in bytes, defaults to the value of the C<SPVM_MOJO_MAX_LINE_SIZE> environment variable or C<8192>
(8KiB).

Examples:

  my $size = $headers->max_line_size;
  $headers->set_max_line_size(1024);

=head2 max_lines

C<has max_lines : rw int;>

Maximum number of header lines, defaults to the value of the C<SPVM_MOJO_MAX_LINES> environment variable or C<100>.

Examples:

  my $num  = $headers->max_lines;
  $headers->set_max_lines(200);

=head1 Class Methods

=head2 new

C<static method new : L<Mojo::Headers|SPVM::Mojo::Headers> ();>

Creates a new L<Mojo::Headers|SPVM::Mojo::Headers> object, and returns it.

=head1 Instance Methods

=head2 add

C<method add : void ($name : string, $value : string|L<Stringable|SPVM::Stringable>|string[]);>

Add header with one or more lines.

Examples:

  $headers->add(Foo => "one value");
  $headers->add(Foo => ["first value", "second value"]);
  
  # "Vary: Accept
  #  Vary: Accept-Encoding"
  $headers->add(Vary => "Accept")
  $headers->add(Vary => "Accept-Encoding");

=head2 append
  
C<method append : void ($name : string, $value : string);>

Append value to header and flatten it if necessary.

Examples:

  # "Vary: Accept"
  $headers->append(Vary => "Accept")->to_string;
  
  # "Vary: Accept, Accept-Encoding"
  $headers->set_vary("Accept")
  $headers->append(Vary => "Accept-Encoding");

=head2 clone
  
C<method clone : L<Mojo::Headers|SPVM::Mojo::Headers> ();>

Return a new L<Mojo::Headers|SPVM::Mojo::Headers> object cloned from these headers.

Examples:

  my $clone = $headers->clone;

=head2 dehop
  
C<method dehop : void ();>

Remove hop-by-hop headers that should not be retransmitted.

Examples:

  $headers->dehop;

=head2 every_header

C<method every_header : string[] ($name : string);>

Similar to L</"header">, but returns all headers sharing the same name as an array reference.

Examples:

  my $all = $headers->every_header("Location");
  
  # Get first header value
  say $headers->every_header("Location")->[0];

=head2 from_hash
  
C<method from_hash : L<Mojo::Headers|SPVM::Mojo::Headers> ($hash : L<Hash|SPVM::Hash>);>

Parse headers from a hash reference, an empty hash removes all headers.

Examples:

  $headers->from_hash(Hash->new({"Cookie" => "a=b"}));
  $headers->from_hash(Hash->new({"Cookie" => ["a=b", "c=d"]}));
  $headers->from_hash(Hash->new);

=head2 header
  
C<method header : string ($name : string);>

Get the current header values.

Examples:

  my $value = $headers->header("Foo");

=head2 set_header
  
C<method set_header : void ($name : string, $value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace the current header values.

Examples:

  $headers->set_header(Foo => "one value");
  $headers->set_header(Foo => ["first value", "second value"]);

=head2 is_finished
  
C<method is_finished : int ();>

Check if header parser is finished.

Examples:

  my $bool = $headers->is_finished;

=head2 is_limit_exceeded
  
C<method is_limit_exceeded : int ();>

Check if headers have exceeded L</"max_line_size"> or L</"max_lines">.

Examples:

  my $bool = $headers->is_limit_exceeded;

=head2 leftovers
  
C<method leftovers : string ();>

Get and remove leftover data from header parser.

Examples:

  my $bytes = $headers->leftovers;

=head2 names
  
C<method names : string[] ();>

Return an array reference with all currently defined headers.

Examples:

  my $names = $headers->names;
  
  # Names of all headers
  for my $_ (@{$headers->names}) {
    say $_;
  }

=head2 parse
  
C<method parse : void ($chunk : string);>

Parse formatted headers.

Examples:

  $headers->parse("Content-Type: text/plain\x0d\x0a\x0d\x0a");

=head2 remove
  
C<method remove : void ($name : string);>

Remove a header.

Examples:

  $headers->remove("Foo");

=head2 to_hash
  
C<method to_hash : L<Hash|SPVM::Hash> ($multi : int = 0);>

Turn headers into hash reference, array references to represent multiple headers with the same name are disabled by
default.

Examples:

  my $single = $headers->to_hash;
  my $multi  = $headers->to_hash(1);
  
  say $headers->to_hash->{"DNT"}->(string);

=head2 to_string
  
C<method to_string : string ();>

Turn headers into a string, suitable for HTTP messages.

Examples:

  my $str = $headers->to_string;

=head2 accept
  
C<method accept : string ();>

Get current header value, shortcut for the C<Accept> header.

Examples:

  my $accept = $headers->accept;

=head2 set_accept

C<method set_accept : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Accept> header.

Examples:

  $headers->set_accept("application/json");

=head2 accept_charset

C<method accept_charset : string ();>

Get current header value, shortcut for the C<Accept-Charset> header.

Examples:

  my $charset = $headers->accept_charset;

=head2 set_accept_charset

C<method set_accept_charset : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Accept-Charset> header.

Examples:

  $headers->set_accept_charset("UTF-8");

=head2 accept_encoding

C<method accept_encoding : string ();>

Get current header value, shortcut for the C<Accept-Encoding> header.

Examples:

  my $encoding = $headers->accept_encoding;

=head2 set_accept_encoding

C<method set_accept_encoding : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Accept-Encoding> header.

Examples:

  $headers->set_accept_encoding("gzip");

=head2 accept_language

C<method accept_language : string ();>

Get current header value, shortcut for the C<Accept-Language> header.

Examples:

  my $language = $headers->accept_language;

=head2 set_accept_language

C<method set_accept_language : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Accept-Language> header.

Examples:

  $headers->set_accept_language("de, en");

=head2 accept_ranges

C<method accept_ranges : string ();>

Get current header value, shortcut for the C<Accept-Ranges> header.

Examples:

  my $ranges = $headers->accept_ranges;

=head2 set_accept_ranges

C<method set_accept_ranges : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Accept-Ranges> header.

Examples:

  $headers->set_accept_ranges("bytes");

=head2 access_control_allow_origin

C<method access_control_allow_origin : string ();>

Get current header value, shortcut for the C<Access-Control-Allow-Origin> header from L<Cross-Origin
Resource Sharing|https://www.w3.org/TR/cors/>.

Examples:

  my $origin = $headers->access_control_allow_origin;

=head2 set_access_control_allow_origin

C<method set_access_control_allow_origin : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Access-Control-Allow-Origin> header from L<Cross-Origin
Resource Sharing|https://www.w3.org/TR/cors/>.

Examples:

  $headers->set_access_control_allow_origin("*");

=head2 allow

C<method allow : string ();>

Get current header value, shortcut for the C<Allow> header.

Examples:

  my $allow = $headers->allow;

=head2 set_allow

C<method set_allow : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Allow> header.

Examples:

  $headers->set_allow(["GET, POST"]);

=head2 authorization

C<method authorization : string ();>

Ge current header value, shortcut for the C<Authorization> header.

Examples:

  my $authorization = $headers->authorization;

=head2 set_authorization

C<method set_authorization : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Authorization> header.

Examples:

  $headers->set_authorization("Basic Zm9vOmJhcg==");

=head2 cache_control

C<method cache_control : string ();>

Get current header value, shortcut for the C<Cache-Control> header.

Examples:

  my $cache_control = $headers->cache_control;

=head2 set_cache_control

C<method set_cache_control : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Cache-Control> header.

Examples:

  $headers->set_cache_control("max-age=1, no-cache");

=head2 connection

C<method connection : string ();>

Get current header value, shortcut for the C<Connection> header.

Examples:

  my $connection = $headers->connection;

=head2 set_connection

C<method set_connection : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Connection> header.

Examples:

  $headers->set_connection("close");

=head2 content_disposition

C<method content_disposition : string ();>

Get current header value, shortcut for the C<Content-Disposition> header.

Examples:

  my $disposition = $headers->content_disposition;

=head2 set_content_disposition

C<method set_content_disposition : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Disposition> header.

Examples:

  $headers->set_content_disposition("foo");

=head2 content_encoding

C<method content_encoding : string ();>

Get current header value, shortcut for the C<Content-Encoding> header.

Examples:

  my $encoding = $headers->content_encoding;

=head2 set_content_encoding

C<method set_content_encoding : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Encoding> header.

Examples:

  $headers->set_content_encoding("gzip");

=head2 content_language

C<method content_language : string ();>

Get current header value, shortcut for the C<Content-Language> header.

Examples:

  my $language = $headers->content_language;

=head2 set_content_language

C<method set_content_language : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Language> header.

Examples:

  $headers->set_content_language("en");

=head2 content_length

C<method content_length : string ();>

Get current header value, shortcut for the C<Content-Length> header.

Examples:

  my $len  = $headers->content_length;

=head2 set_content_length

C<method set_content_length : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Length> header.

Examples:

  $headers->set_content_length(4000);

=head2 content_location

C<method content_location : string ();>

Get current header value, shortcut for the C<Content-Location> header.

Examples:

  my $location = $headers->content_location;

=head2 set_content_location

C<method set_content_location : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Location> header.

Examples:

  $headers->set_content_location("http://127.0.0.1/foo");

=head2 content_range

C<method content_range : string ();>

Get current header value, shortcut for the C<Content-Range> header.

Examples:

  my $range = $headers->content_range;

=head2 set_content_range

C<method set_content_range : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Range> header.

Examples:

  $headers->set_content_range("bytes 2-8/100");

=head2 content_security_policy

C<method content_security_policy : string ();>

Get current header value, shortcut for the C<Content-Security-Policy> header from L<Content Security Policy
1.0|https://www.w3.org/TR/CSP/>.

Examples:

  my $policy = $headers->content_security_policy;

=head2 set_content_security_policy

C<method set_content_security_policy : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Security-Policy> header from L<Content Security Policy
1.0|https://www.w3.org/TR/CSP/>.

Examples:

  $headers->set_content_security_policy("default-src https:");

=head2 content_type

C<method content_type : string ();>

Get current header value, shortcut for the C<Content-Type> header.

Examples:

  my $type = $headers->content_type;

=head2 set_content_type

C<method set_content_type : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Content-Type> header.

Examples:

  $headers->set_content_type("text/plain");

=head2 cookie

C<method cookie : string ();>

Get current header value, shortcut for the C<Cookie> header from L<RFC
6265|https://tools.ietf.org/html/rfc6265>.

Examples:

  my $cookie = $headers->cookie;

=head2 set_cookie

C<method set_cookie : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Cookie> header from L<RFC
6265|https://tools.ietf.org/html/rfc6265>.

Examples:

  $headers->set_cookie("f=b");

=head2 date

C<method date : string ();>

Get current header value, shortcut for the C<Date> header.

Examples:

  my $date = $headers->date;

=head2 set_date

C<method set_date : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Date> header.

Examples:

  $headers->set_date("Sun, 17 Aug 2008 16:27:35 GMT");

=head2 dnt

C<method dnt : string ();>

Get current header value, shortcut for the C<DNT> (Do Not Track) header, which has no specification yet, but
is very commonly used.

Examples:

  my $dnt  = $headers->dnt;

=head2 set_dnt

C<method set_dnt : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<DNT> (Do Not Track) header, which has no specification yet, but
is very commonly used.

Examples:

  $headers->set_dnt(1);

=head2 etag

C<method etag : string ();>

Get current header value, shortcut for the C<ETag> header.

Examples:

  my $etag = $headers->etag;

=head2 set_etag

C<method set_etag : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<ETag> header.

Examples:

  $headers->set_etag("\"abc321\"");

=head2 expect

C<method expect : string ();>

Get current header value, shortcut for the C<Expect> header.

Examples:

  my $expect = $headers->expect;

=head2 set_expect

C<method set_expect : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Expect> header.

Examples:

  $headers->set_expect("100-continue");

=head2 expires

C<method expires : string ();>

Get current header value, shortcut for the C<Expires> header.

Examples:

  my $expires = $headers->expires;

=head2 set_expires

C<method set_expires : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Expires> header.

Examples:

  $headers->set_expires("Thu, 01 Dec 1994 16:00:00 GMT");

=head2 host

C<method host : string ();>

Get current header value, shortcut for the C<Host> header.

Examples:

  my $host = $headers->host;

=head2 set_host

C<method set_host : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Host> header.

Examples:

  $headers->set_host("127.0.0.1");

=head2 if_modified_since

C<method if_modified_since : string ();>

Get current header value, shortcut for the C<If-Modified-Since> header.

C<method set_if_modified_since : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Examples:

  my $date = $headers->if_modified_since;

=head2 set_if_modified_since

Replace current header value, shortcut for the C<If-Modified-Since> header.

Examples:

  $headers->set_if_modified_since("Sun, 17 Aug 2008 16:27:35 GMT");

=head2 if_none_match

C<method if_none_match : string ();>

Get current header value, shortcut for the C<If-None-Match> header.

Examples:

  my $etag = $headers->if_none_match;

=head2 set_if_none_match

C<method set_if_none_match : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<If-None-Match> header.

Examples:

  $headers->set_if_none_match("\"abc321\"");

=head2 last_modified

C<method last_modified : string ();>

Get current header value, shortcut for the C<Last-Modified> header.

Examples:

  my $date = $headers->last_modified;

=head2 set_last_modified

C<method set_last_modified : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Last-Modified> header.

Examples:

  $headers->set_last_modified("Sun, 17 Aug 2008 16:27:35 GMT");

=head2 link

C<method link : string ();>

Get current header value, shortcut for the Link header from L<RFC5988|https://tools.ietf.org/html/rfc5988>.

Examples:

  my $link = $headers->link;

=head2 set_link

C<method set_link : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the Link header from L<RFC
5988|https://tools.ietf.org/html/rfc5988>.

Examples:

  $headers->set_link("<http://127.0.0.1/foo/3>; rel=\"next\"");

=head2 links
  
C<method links : L<Hash|SPVM::Hash> of Hash of string ();>

Get web links from or to Link header according to L<RFC 5988|http://tools.ietf.org/html/rfc5988>.

  # Extract information about next page
  say $headers->links->get("next")->{"link"}->(string);
  say $headers->links->get("next")->{"title"}->(string);

Examples:

  my $links = $headers->links;

=head2 set_links
  
C<method set_links : void ($links : object[]);>

Set web links from or to Link header according to L<RFC 5988|http://tools.ietf.org/html/rfc5988>.

Examples:

  $headers->set_links({next => "http://example.com/foo", prev => "http://example.com/bar"});

=head2 location

C<method location : string ();>

Get current header value, shortcut for the C<Location> header.

Examples:

  my $location = $headers->location;

=head2 set_location

C<method set_location : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Location> header.

Examples:

  $headers->set_location("http://127.0.0.1/foo");

=head2 origin

C<method origin : string ();>

Get current header value, shortcut for the C<Origin> header from L<RFC
6454|https://tools.ietf.org/html/rfc6454>.

Examples:

  my $origin = $headers->origin;

=head2 set_origin

C<method set_origin : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Origin> header from L<RFC
6454|https://tools.ietf.org/html/rfc6454>.

Examples:

  $headers->set_origin("http://example.com");

=head2 proxy_authenticate

C<method proxy_authenticate : string ();>

Get current header value, shortcut for the C<Proxy-Authenticate> header.

Examples:

  my $authenticate = $headers->proxy_authenticate;

=head2 set_proxy_authenticate

C<method set_proxy_authenticate : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Proxy-Authenticate> header.

Examples:

  $headers->set_proxy_authenticate("Basic \"realm\"");

=head2 proxy_authorization

C<method proxy_authorization : string ();>

Get current header value, shortcut for the C<Proxy-Authorization> header.

Examples:

  my $authorization = $headers->proxy_authorization;

=head2 set_proxy_authorization

C<method set_proxy_authorization : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Proxy-Authorization> header.

Examples:

  $headers->set_proxy_authorization("Basic Zm9vOmJhcg==");

=head2 range

C<method range : string ();>

Get current header value, shortcut for the C<Range> header.

Examples:

  my $range = $headers->range;

=head2 set_range

C<method set_range : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Range> header.

Examples:

  $headers->set_range("bytes=2-8");

=head2 referer
  
C<method referer : string ();>

Alias for L</"referrer">.

Examples:

  my $referrer = $headers->referer;

=head2 set_referer
  
C<method set_referer : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Alias for L</"set_referrer">.

Examples:

  $headers->set_referer("http://example.com");

=head2 referrer
  
C<method referrer : string ();>

Get current header value, shortcut for the C<Referer> header, there was a typo in L<RFC
2068|https://tools.ietf.org/html/rfc2068> which resulted in C<Referer> becoming an official header.

Examples:

  my $referrer = $headers->referrer;

=head2 set_referrer
  
C<method set_referrer : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Referer> header, there was a typo in L<RFC
2068|https://tools.ietf.org/html/rfc2068> which resulted in C<Referer> becoming an official header.

  $headers->set_referrer("http://example.com");

=head2 sec_websocket_accept

C<method sec_websocket_accept : string ();>

Get current header value, shortcut for the C<Sec-WebSocket-Accept> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  my $accept = $headers->sec_websocket_accept;

=head2 set_sec_websocket_accept

C<method set_sec_websocket_accept : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Sec-WebSocket-Accept> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  $headers->set_sec_websocket_accept("s3pPLMBiTxaQ9kYGzzhZRbK+xOo=");

=head2 sec_websocket_extensions

C<method sec_websocket_extensions : string ();>

Get current header value, shortcut for the C<Sec-WebSocket-Extensions> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  my $extensions = $headers->sec_websocket_extensions;

=head2 set_sec_websocket_extensions

C<method set_sec_websocket_extensions : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Sec-WebSocket-Extensions> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  $headers->set_sec_websocket_extensions("foo");

=head2 sec_websocket_key

C<method sec_websocket_key : string ();>

Get current header value, shortcut for the C<Sec-WebSocket-Key> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  my $key  = $headers->sec_websocket_key;

=head2 set_sec_websocket_key

C<method set_sec_websocket_key : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Sec-WebSocket-Key> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  $headers->set_sec_websocket_key("dGhlIHNhbXBsZSBub25jZQ==");

=head2 sec_websocket_protocol

C<method sec_websocket_protocol : string ();>

Get current header value, shortcut for the C<Sec-WebSocket-Protocol> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  my $proto = $headers->sec_websocket_protocol;

=head2 set_sec_websocket_protocol

C<method set_sec_websocket_protocol : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Sec-WebSocket-Protocol> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  $headers->set_sec_websocket_protocol("sample");

=head2 sec_websocket_version

C<method sec_websocket_version : string ();>

Get current header value, shortcut for the C<Sec-WebSocket-Version> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  my $version = $headers->sec_websocket_version;

=head2 set_sec_websocket_version

C<method set_sec_websocket_version : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Sec-WebSocket-Version> header from L<RFC
6455|https://tools.ietf.org/html/rfc6455>.

Examples:

  $headers->set_sec_websocket_version(13);

=head2 server

C<method server : string ();>

Get current header value, shortcut for the C<Server> header.

Examples:

  my $server = $headers->server;

=head2 set_server

C<method set_server : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Server> header.

Examples:

  $headers->set_server("Mojo");

=head2 server_timing

C<method server_timing : string ();>

Get current header value, shortcut for the C<Server-Timing> header from L<Server
Timing|https://www.w3.org/TR/server-timing/>.

Examples:

  my $timing = $headers->server_timing;

=head2 set_server_timing

C<method set_server_timing : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Server-Timing> header from L<Server
Timing|https://www.w3.org/TR/server-timing/>.

Examples:

  $headers->set_server_timing("app;desc=Mojolicious;dur=0.0001");

=head2 get_set_cookie

C<method get_set_cookie : string ();>

Get current header value, shortcut for the C<Set-Cookie> header from L<RFC
6265|https://tools.ietf.org/html/rfc6265>.

Examples:

  my $cookie = $headers->set_cookie;

=head2 set_set_cookie

C<method set_set_cookie : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Set-Cookie> header from L<RFC
6265|https://tools.ietf.org/html/rfc6265>.

Examples:

  $headers->set_set_cookie("f=b; path=/");

=head2 status

C<method status : string ();>

Get current header value, shortcut for the C<Status> header from L<RFC
3875|https://tools.ietf.org/html/rfc3875>.

Examples:

  my $status = $headers->status;

=head2 set_status

C<method set_status : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Status> header from L<RFC
3875|https://tools.ietf.org/html/rfc3875>.

Examples:

  $headers->set_status("200 OK");

=head2 strict_transport_security

C<method strict_transport_security : string ();>

Get current header value, shortcut for the C<Strict-Transport-Security> header from L<RFC
6797|https://tools.ietf.org/html/rfc6797>.

Examples:

  my $policy = $headers->strict_transport_security;

=head2 set_strict_transport_security

C<method set_strict_transport_security : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Strict-Transport-Security> header from L<RFC
6797|https://tools.ietf.org/html/rfc6797>.

Examples:

  $headers->set_strict_transport_security("max-age=31536000");

=head2 te

C<method te : string ();>

Get current header value, shortcut for the C<TE> header.

Examples:

  my $te   = $headers->te;

=head2 set_te

C<method set_te : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<TE> header.

Examples:

  $headers->set_te("chunked");

=head2 trailer

C<method trailer : string ();>

Get current header value, shortcut for the C<Trailer> header.

Examples:

  my $trailer = $headers->trailer;

=head2 set_trailer

C<method set_trailer : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Trailer> header.

Examples:

  $headers->set_trailer("X-Foo");

=head2 transfer_encoding

C<method transfer_encoding : string ();>

Get current header value, shortcut for the C<Transfer-Encoding> header.

Examples:

  my $encoding = $headers->transfer_encoding;

=head2 set_transfer_encoding

C<method set_transfer_encoding : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Transfer-Encoding> header.

Examples:

  $headers->set_transfer_encoding("chunked");

=head2 upgrade

C<method upgrade : string ();>

Get current header value, shortcut for the C<Upgrade> header.

Examples:

  my $upgrade = $headers->upgrade;

=head2 set_upgrade

C<method set_upgrade : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<Upgrade> header.

Examples:

  $headers->set_upgrade("websocket");

=head2 user_agent

C<method user_agent : string ();>

Get current header value, shortcut for the C<User-Agent> header.

Examples:

  my $agent = $headers->user_agent;

=head2 set_user_agent

C<method set_user_agent : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<User-Agent> header.

Examples:

  $headers->set_user_agent("Mojo/1.0");

=head2 vary

C<method vary : string ();>

C<method set_vary : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Get current header value, shortcut for the C<Vary> header.

Examples:

  my $vary = $headers->vary;

=head2 set_vary

Replace current header value, shortcut for the C<Vary> header.

Examples:

  $headers->set_vary("*");

=head2 www_authenticate

C<method www_authenticate : string ();>

Get current header value, shortcut for the C<WWW-Authenticate> header.

Examples:

  my $authenticate = $headers->www_authenticate;

=head2 set_www_authenticate

C<method set_www_authenticate : void ($value : string|L<Stringable|SPVM::Stringable>|string[]);>

Replace current header value, shortcut for the C<WWW-Authenticate> header.

Examples:

  $headers->set_www_authenticate("Basic realm=\"realm\"");

=head1 See Also

=over 2

=item * L<SPVM::Mojolicious>

=back

=head1 Copyright & License

Copyright (c) 2025 Yuki Kimoto

MIT License


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.