NAME
Blosxom::Header - Missing interface to modify HTTP headers
SYNOPSIS
use Blosxom::Header;
my $headers = { -type => 'text/html' };
my $h = Blosxom::Header->new($headers);
my $value = $h->get($key);
my $bool = $h->exists($key);
$h->set($key, $value); # overwrites existent header
$h->remove($key);
$h->{headers}; # same reference as $headers
# Accessors
$h->type('text/plain');
$h->nph(1);
$h->expires('+1d');
$h->cookie('foo=bar');
$h->charset('utf-8');
$h->attachment('foo.png');
$h->p3p('foo');
DESCRIPTION
Blosxom, a weblog application, exports a global variable $header which is a reference to hash. This application passes $header CGI::header() to generate HTTP headers.
When plugin developers modify HTTP headers, they must write as follows:
package foo;
$blosxom::header->{'-type'} = 'text/plain';
It's obviously bad practice. Blosxom misses the interface to modify them.
This module allows you to modify them in an object-oriented way:
my $h = Blosxom::Header->new($blosxom::header);
$h->type('text/plain');
METHODS
- $h = Blosxom::Header->new($headers);
-
Creates a new Blosxom::Header object. The object holds a reference to the original given $headers argument.
- $h->get('foo')
-
Returns a value of the specified HTTP header.
- $h->exists('foo')
-
Returns a Boolean value telling whether the specified HTTP header exists.
- $h->set('foo' => 'bar')
-
Sets a value of the specified HTTP header.
- $h->remove('foo')
-
Deletes the specified element from HTTP headers.
ACCESSORS
Refer to CGI::header.
- $h->type()
-
Gets or sets the Content-Type header.
$h->type('text/plain')
- $h->nph()
-
Gets or sets a Boolean value telling whether to issue the correct headers to work with a NPH (no-parse-header) script.
$h->nph(1)
- $h->expires()
-
Gets or sets the Expires header. You can specify an absolute or relative expiration interval. The following forms are all valid for this field.
$h->expires('+30s') # 30 seconds from now $h->expires('+10m') # ten minutes from now $h->expires('+1h') # one hour from now $h->expires('-1d') # yesterday $h->expires('now') # immediately $h->expires('+3M') # in three months $h->expires('+10y') # in ten years time # at the indicated time & date $h->expires('Thu, 25 Apr 1999 00:40:33 GMT')
-
Gets or sets the Set-Cookie header. The parameter can be an arrayref:
use CGI qw(cookie); my $cookie1 = cookie(-name => 'foo', -value= 'bar'); my $cookie2 = cookie(-name => 'bar', -value= 'baz'); $h->cookie([$cookie1, $cookie2]);
or a string:
$h->cookie($cookie)
- $h->charset()
-
Gets or sets the character set sent to the browser. If not provided, defaults to ISO-8859-1.
$h->charset('utf-8')
- $h->attachment()
-
Can be used to turn the page into an attachment. The value of the argument is suggested name for the saved file.
$h->attachment('foo.png')
- $h->p3p()
-
Gets or sets the P3P tags. The parameter can be arrayref or a space-delimited string.
$h->p3p([qw(CAO DSP LAW CURa)]) $h->p3p('CAO DSP LAW CURa')
In either case, the outgoing header will be formatted as:
P3P: policyref="/w3c/p3p.xml" cp="CAO DSP LAW CURa"
EXAMPLES
The following code is a Blosxom plugin to enable conditional GET and HEAD using If-None-Match
and If-Modified-Since
headers. Refer to Plack::Middleware::ConditionalGET.
plugins/conditional_get:
package conditional_get;
use strict;
use warnings;
use Blosxom::Header;
sub start { !$blosxom::static_entries }
sub last {
return unless $ENV{REQUEST_METHOD} =~ /^(GET|HEAD)$/;
my $h = Blosxom::Header->new($blosxom::header);
if (etag_matches($h) or not_modified_since($h)) {
$h->set('Status' => '304 Not Modified');
$h->remove($_) for qw(Content-Length attachment);
# If the Content-Type header isn't defined,
# CGI::header will add default value.
# And so makes it defined.
$h->type(q{});
# Truncate output
$blosxom::output = q{};
}
return;
}
sub etag_matches {
my $h = shift;
return unless $h->exists('ETag');
$h->get('ETag') eq _value($ENV{HTTP_IF_NONE_MATCH});
}
sub not_modified_since {
my $h = shift;
return unless $h->exists('Last-Modified');
$h->get('Last-Modified') eq _value($ENV{HTTP_IF_MODIFIED_SINCE});
}
sub _value {
my $str = shift;
$str =~ s{;.*$}{};
$str;
}
1;
DEPENDENCIES
SEE ALSO
AUTHOR
Ryo Anazawa (anazawa@cpan.org)
LICENSE AND COPYRIGHT
Copyright (c) 2011 Ryo Anazawa. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.