NAME
Blosxom::Header - Object representing CGI response headers
SYNOPSIS
use Blosxom::Header;
my $header = Blosxom::Header->instance;
my $status = $header->get( 'Status' ); # 304 Not Modified
$header->set(
Content_Length => 12345,
Last_Modified => 'Wed, 23 Sep 2009 13:36:33 GMT',
);
DESCRIPTION
This module provides Blosxom plugin developers with an interface to handle CGI response headers. Blosxom starts speaking HTTP at last.
BACKGROUND
Blosxom, an weblog application, globalizes $header
which is a hash reference. This application passes $header
to CGI::header()
to generate CGI response headers.
Blosxom plugins may modify $header
directly because the variable is global. The problem is that there is no agreement with how to normalize keys
of $header
. This module standardizes this process and also provides some convenience methods.
CLASS METHODS
- $header = Blosxom::Header->instance
-
Returns a current Blosxom::Header object instance or create a new one.
- $header = Blosxom::Header->has_instance
-
Returns a reference to any existing instance or
undef
if none is defined. - $bool = Blosxom::Header->is_initialized
-
Returns a Boolean value telling whether
$blosxom::header
is initialized or not. Blosxom initializes the variable just beforeblosxom::generate()
is called. If$bool
was false,instance()
would throw an exception.Internally, this method is a shortcut for
$bool = ref $blosxom::header eq 'HASH';
INSTANCE METHODS
- $value = $header->get( $field )
- @values = $header->get( @fields )
-
Returns the value of one or more header fields. Accepts a list of field names case-insensitive. You can use underscores as a replacement for dashes in header names.
# field names are case-insensitive $header->get( 'Content-Length' ); $header->get( 'Content_length' );
- $header->set( $field => $value )
- $header->set( $f1 => $v1, $f2 => $v2, ... )
-
Sets the value of one or more header fields. Accepts a list of named arguments.
The $value argument must be a plain string, except for when the Set-Cookie header is specified. In an exceptional case, $value may be a reference to an array.
use CGI::Cookie; my $cookie1 = CGI::Cookie->new( -name => 'foo' ); my $cookie2 = CGI::Cookie->new( -name => 'bar' ); $header->set( Set_Cookie => [ $cookie1, $cookie2 ] );
- $bool = $header->exists( $field )
-
Returns a Boolean value telling whether the specified HTTP header exists.
if ( $header->exists( 'ETag' ) ) { .... }
- @deleted = $header->delete( @fields )
-
Deletes the specified fields from HTTP headers. Returns values of deleted fields.
$header->delete( qw/Content-Type Content-Length Content-Disposition/ );
- $header->clear
-
This will remove all header fields.
$header->clear;
Internally, this method is a shortcut for
%{ $blosxom::header } = ( -type => q{} );
- @fields = $header->field_names
-
Returns the list of distinct names for the fields present in the header. The field names have case as returned by
CGI::header()
.my @fields = $header->field_names; # => ( 'Set-Cookie', 'Content-length', 'Content-Type' )
In scalar context return the number of distinct field names.
if ( $header->field_names == 0 ) { # no header fields }
- $header->each( \&callback )
-
Apply a subroutine to each header field in turn. The callback routine is called with two parameters; the name of the field and a value. Any return values of the callback routine are ignored.
$header->each(sub { my ( $field, $value ) = @_; ... });
- $field = $header->each
- ( $field, $value ) = $header->each
-
This feature is obsolete and will disappear in 0.06.
- $bool = $header->is_empty
-
Returns a Boolean value telling whether
$header->field_names
returns a null array or not.$header->clear; my $is_empty = $header->is_empty; # true
- @headers = $header->flatten
-
Returns pairs of fields and values.
my @headers = $header->flatten; # => ( 'Status', '304 Not Modified', 'Content-Type', 'text/plain' )
- $header->as_hashref
HANDLING COOKIES
cookie()
and push_cookie()
are obsolete and will be removed in 0.06. These methods were replaced with set_cookie()
and get_cookie()
.
-
Overwrites existent cookie.
$header->set_cookie( ID => 123456 ); $header->set_cookie( ID => { value => '123456', path => '/', domain => '.example.com', expires => '+3M', } );
-
Returns a CGI::Cookie object whose
name()
is stringwise equal to$name
.my $id = $header->get_cookie( 'ID' ); # CGI::Cookie object my $value = $id->value; # 123456
-
This method is obsolete and will be removed in 0.06. Use
$header->get_cookie
or$header->set_cookie
instead. -
This method is obsolete and will be removed in 0.06. Use
$header->set_cookie
instead.use CGI::Cookie; my $cookie = CGI::Cookie->new( -name => 'ID', -value => 123456, ); $header->push_cookie( $cookie ); # become $header->set_cookie( ID => 123456 );
DATE HEADERS
These methods always convert their value to system time (seconds since Jan 1, 1970).
- $mtime = $header->date
- $header->date( $mtime )
-
This header represents the date and time at which the message was originated. This method expects machine time when the header value is set.
$header->date( time ); # set current date
- $mtime = $header->expires
- $header->expires( $mtime )
-
The Expires header gives the date and time after which the entity should be considered stale. You can specify an absolute or relative expiration interval. The following forms are all valid for this field:
$header->expires( '+30s' ); # 30 seconds from now $header->expires( '+10m' ); # ten minutes from now $header->expires( '+1h' ); # one hour from now $header->expires( '-1d' ); # yesterday $header->expires( 'now' ); # immediately $header->expires( '+3M' ); # in three months $header->expires( '+10y' ); # in ten years time # at the indicated time & date $header->expires( 'Thu, 25 Apr 1999 00:40:33 GMT' ); # another representation of 'now' $header->expires( time );
- $mtime = $header->last_modified
- $header->last_modified( $mtime )
-
This header indicates the date and time at which the resource was last modified. This method expects machine time when the header value is set.
# check if document is more than 1 hour old if ( my $last_modified = $header->last_modified ) { if ( $last_modified < time - 60 * 60 ) { ... } }
CONVENIENCE METHODS
The following methods were named after parameters recognized by CGI::header()
. These can both be used to read and to set the value of a header. The value is set if you pass an argument to the method. If the given header wasn't defined then undef
would be returned.
- $header->attachment
-
Can be used to turn the page into an attachment. Represents suggested name for the saved file.
$header->attachment( 'genome.jpg' ); my $attachment = $header->attachment; # genome.jpg my $disposition = $header->get( 'Content-Disposition' ); # => 'attachment; filename="genome.jpg"'
- $charset = $header->charset
-
Returns the upper-cased character set specified in the Content-Type header.
$header->content_type( 'text/plain; charset=utf-8' ); my $charset = $header->charset; # UTF-8
This method doesn't receive any arguments.
# wrong $header->charset( 'euc-jp' );
- $media_type = $header->content_type
- ( $media_type, $rest ) = $header->content_type
- $header->content_type( 'text/html; charset=ISO-88591' )
-
Represents the Content-Type header which indicates the media type of the message content.
type()
is an alias.$header->content_type( 'text/plain; charset=utf-8' );
The value returned will be converted to lower case, and potential parameters will be chopped off and returned as a separate value if in an array context.
my $type = $header->content_type; # 'text/plain' my @type = $header->content_type; # ( 'text/plain', 'charset=utf-8' )
If there is no such header field, then the empty string is returned. This makes it safe to do the following:
if ( $header->content_type eq 'text/html' ) { ... }
- $header->nph
-
If set to a true value, will issue the correct headers to work with a NPH (no-parse-header) script:
$header->nph( 1 );
-
Represents the P3P tags.
p3p()
is an alias. The parameter can be an array or a space-delimited string.$header->p3p( qw/CAO DSP LAW CURa/ ); $header->p3p( 'CAO DSP LAW CURa' ); my @tags = $header->p3p; # ( 'CAO', 'DSP', 'LAW', 'CURa' )
In this case, the outgoing header will be formatted as:
P3P: policyref="/w3c/p3p.xml" CP="CAO DSP LAW CURa"
-
Adds P3P tags to the P3P header.
push_p3p()
is an alias. Accepts a list of P3P tags.# get P3P tags my @tags = $header->p3p; # ( 'CAO', 'DSP', 'LAW' ) # add P3P tags $header->push_p3p( 'CURa' ); @tags = $header->p3p; # ( 'CAO', 'DSP', 'LAW', 'CURa' )
- $code = $header->status
- $header->status( $code )
-
Represents HTTP status code.
$header->status( 304 ); my $code = $header->status; # 304
cf.
$header->set( Status => '304 Not Modified' ); my $status = $header->get( 'Status' ); # 304 Not Modified
- $header->target
-
Represents the Window-Target header.
$header->target( 'ResultsWindow' ); my $target = $header->target; # ResultsWindow
cf.
$header->set( Window_Target => 'ResultsWindow' ); $target = $header->get( 'Window-Target' ); # ResultsWindow
FUNCTIONS
The following functions are exported on demand.
- @values = header_get( @fields )
-
A shortcut for
@values = Blosxom::Header->instance->get( @fields );
- header_set( $field => $value )
- header_set( $f1 => $v2, $f2 => $v2, ... )
-
A shorcut for
Blosxom::Header->instance->set( $field => $value ); Blosxom::Header->instance->set( $f1 => $v1, $f2 => $v2, ... );
- $bool = header_exists( $field )
-
A shortcut for
$bool = Blosxom::Header->instance->exists( $field );
- @deleted = header_delete( @fields )
-
A shorcut for
@deleted = Blosxom::Header->instance->delete( @fields );
-
This function is obsolete and will be removed in 0.06. See "HANDLING COOKIES".
-
A shorcut for
Blosxom::Header->instance->push_p3p( @tags );
- header_iter( \&callback )
-
A shortcut for
Blosxom::Header->instance->each( \&callback );
E.g.:
header_iter sub { my ($field, $value) = @_; print "$field: $value"; }; # wrong my $field = header_iter(); my ( $field, $value ) = header_iter();
- each_header( CodeRef )
- $field = each_header()
- ( $field, $value ) = each_header()
-
This function is obsolete and will be removed in 0.06. Use
header_iter()
instead. - header_push()
-
This function is obsolete and will be removed in 0.06.
LIMITATIONS
Each header field is restricted to appear only once, except for the Set-Cookie header. That's why $header
can't push()
header fields unlike HTTP::Headers objects. This feature originates from how CGI::header()
behaves.
THE P3P HEADER
CGI::header()
restricts where the policy-reference file is located and so you can't modify the location (/w3c/p3p.xml
). The subroutine outputs the P3P header in the following format:
P3P: policyref="/w3c/p3p.xml" CP="%s"
therefore the following code doesn't work correctly:
# wrong
$header->set( P3P => q{policyref="/path/to/p3p.xml"} );
$header->p3p( q{policyref="/path/to/p3p.xml"} );
You're allowed to set or add P3P tags by using $header->p3p_tags
or $header->push_p3p_tags
.
THE DATE HEADER
CGI::header()
fixes the Date header when any of $header->get( 'Set-Cookie' )
, $header->expires
or $header->nph
returns true. When the Date header is fixed, you can't modify the value:
$header->set_cookie( ID => 123456 );
# => CGI::header() fixes the Date header
my $bool = $header->date == CORE::time(); # true
# wrong
$header->date( $time );
$header->set( Date => $date );
DIAGNOSTICS
- $blosxom::header hasn't been initialized yet
-
You attempted to create a Blosxom::Header object before the variable was initialized. See
Blosxom::Header->is_initialized()
. - Useless use of %s with no values
-
You used the
push_cookie()
orpush_p3p()
method with no argument apart from the array, like$header->push_cookie()
or$header->push_p3p()
. - Unknown status code "%d%d%d" passed to status()
-
The given status code is unknown to HTTP::Status.
DEPENDENCIES
Blosxom 2.0.0 or higher.
SEE ALSO
Blosxom::Header::Adapter, HTTP::Headers, Plack::Util, Class::Singleton
- D. Robinson and K.Coar, "The Common Gateway Interface (CGI) Version 1.1", RFC 3875, October 2004
ACKNOWLEDGEMENT
Blosxom was originally written by Rael Dornfest. The Blosxom Development Team succeeded to the maintenance.
BUGS
There are no known bugs in this module. Please report problems to ANAZAWA (anazawa@cpan.org). Patches are welcome.
MAINTAINER
Ryo Anazawa (anazawa@cpan.org)
LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.