/usr/share/perl5/Plack/Middleware/Deflater.pm is in libplack-middleware-deflater-perl 0.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Plack::Middleware::Deflater;
use strict;
use 5.008001;
our $VERSION = '0.12';
use parent qw(Plack::Middleware);
use Plack::Util::Accessor qw( content_type vary_user_agent);
use Plack::Util;
sub prepare_app {
my $self = shift;
if ( my $match_cts = $self->content_type ) {
$match_cts = [$match_cts] if ! ref $match_cts;
$self->content_type($match_cts);
}
}
sub call {
my($self, $env) = @_;
my $res = $self->app->($env);
$self->response_cb($res, sub {
my $res = shift;
# can't operate on Content-Ranges
return if $env->{HTTP_CONTENT_RANGE};
return if $env->{"plack.skip-deflater"};
my $h = Plack::Util::headers($res->[1]);
my $content_type = $h->get('Content-Type') || '';
$content_type =~ s/(;.*)$//;
if ( my $match_cts = $self->content_type ) {
my $match=0;
for my $match_ct ( @{$match_cts} ) {
if ( $content_type eq $match_ct ) {
$match++;
last;
}
}
return unless $match;
}
if (Plack::Util::status_with_no_entity_body($res->[0]) or
$h->exists('Cache-Control') && $h->get('Cache-Control') =~ /\bno-transform\b/) {
return;
}
my @vary = split /\s*,\s*/, ($h->get('Vary') || '');
push @vary, 'Accept-Encoding';
push @vary, 'User-Agent' if $self->vary_user_agent;
$h->set('Vary' => join(",", @vary));
# some browsers might have problems, so set no-compress
return if $env->{"psgix.no-compress"};
# Some browsers might have problems with content types
# other than text/html, so set compress-only-text/html
if ( $env->{"psgix.compress-only-text/html"} ) {
return if $content_type ne 'text/html';
}
# TODO check quality
my $encoding = 'identity';
if ( defined $env->{HTTP_ACCEPT_ENCODING} ) {
for my $enc (qw(gzip deflate identity)) {
if ( $env->{HTTP_ACCEPT_ENCODING} =~ /\b$enc\b/ ) {
$encoding = $enc;
last;
}
}
}
my $encoder;
if ($encoding eq 'gzip' || $encoding eq 'deflate') {
$encoder = Plack::Middleware::Deflater::Encoder->new($encoding);
} elsif ($encoding ne 'identity') {
my $msg = "An acceptable encoding for the requested resource is not found.";
@$res = (406, ['Content-Type' => 'text/plain'], [ $msg ]);
return;
}
if ($encoder) {
$h->set('Content-Encoding' => $encoding);
$h->remove('Content-Length');
# normal response
if ( $res->[2] && ref($res->[2]) && ref($res->[2]) eq 'ARRAY' ) {
my $buf = '';
foreach (@{$res->[2]}) {
$buf .= $encoder->print($_) if defined $_;
}
$buf .= $encoder->close();
$res->[2] = [$buf];
return;
}
# delayed or stream
return sub {
$encoder->print(shift);
};
}
});
}
1;
package Plack::Middleware::Deflater::Encoder;
use strict;
use warnings;
use Compress::Zlib;
use constant GZIP_MAGIC => 0x1f8b;
sub new {
my $class = shift;
my $encoding = shift;
my ($encoder,$status) = $encoding eq 'gzip'
? deflateInit(-WindowBits => -MAX_WBITS())
: deflateInit(-WindowBits => MAX_WBITS());
die 'Cannot create a deflation stream' if $status != Z_OK;
bless {
header => 0,
closed => 0,
encoding => $encoding,
encoder => $encoder,
crc => crc32(undef),
length => 0,
}, $class;
}
sub print : method {
my $self = shift;
return if $self->{closed};
my $chunk = shift;
if ( ! defined $chunk ) {
my ($buf,$status) = $self->{encoder}->flush();
die "deflate failed: $status" if ( $status != Z_OK );
if ( !$self->{header} && $self->{encoding} eq 'gzip' ) {
$buf = pack("nccVcc",GZIP_MAGIC,Z_DEFLATED,0,time(),0,$Compress::Raw::Zlib::gzip_os_code) . $buf
}
$buf .= pack("LL", $self->{crc},$self->{length}) if $self->{encoding} eq 'gzip';
$self->{closed} = 1;
return $buf;
}
my ($buf,$status) = $self->{encoder}->deflate($chunk);
die "deflate failed: $status" if ( $status != Z_OK );
$self->{length} += length $chunk;
$self->{crc} = crc32($chunk,$self->{crc});
if ( length $buf ) {
if ( !$self->{header} && $self->{encoding} eq 'gzip' ) {
$buf = pack("nccVcc",GZIP_MAGIC,Z_DEFLATED,0,time(),0,$Compress::Raw::Zlib::gzip_os_code) . $buf
}
$self->{header} = 1;
return $buf;
}
return '';
}
sub close : method {
$_[0]->print(undef);
}
sub closed {
$_[0]->{closed};
}
1;
__END__
=head1 NAME
Plack::Middleware::Deflater - Compress response body with Gzip or Deflate
=head1 SYNOPSIS
use Plack::Builder;
builder {
enable sub {
my $app = shift;
sub {
my $env = shift;
my $ua = $env->{HTTP_USER_AGENT} || '';
# Netscape has some problem
$env->{"psgix.compress-only-text/html"} = 1 if $ua =~ m!^Mozilla/4!;
# Netscape 4.06-4.08 have some more problems
$env->{"psgix.no-compress"} = 1 if $ua =~ m!^Mozilla/4\.0[678]!;
# MSIE (7|8) masquerades as Netscape, but it is fine
if ( $ua =~ m!\bMSIE (?:7|8)! ) {
$env->{"psgix.no-compress"} = 0;
$env->{"psgix.compress-only-text/html"} = 0;
}
$app->($env);
}
};
enable "Deflater",
content_type => ['text/css','text/html','text/javascript','application/javascript'],
vary_user_agent => 1;
sub { [200,['Content-Type','text/html'],["OK"]] }
};
=head1 DESCRIPTION
Plack::Middleware::Deflater is a middleware to encode your response
body in gzip or deflate, based on C<Accept-Encoding> HTTP request
header. It would save the bandwidth a little bit but should increase
the Plack server load, so ideally you should handle this on the
frontend reverse proxy servers.
This middleware removes C<Content-Length> and streams encoded content,
which means the server should support HTTP/1.1 chunked response or
downgrade to HTTP/1.0 and closes the connection.
=head1 CONFIGURATIONS
=over 4
=item content_type
content_type => 'text/html',
content_type => [ 'text/html', 'text/css', 'text/javascript', 'application/javascript', 'application/x-javascript' ]
Content-Type header to apply deflater. if content-type is not defined, Deflater will try to deflate all contents.
=item vary_user_agent
vary_user_agent => 1
Add "User-Agent" to Vary header.
=back
=head1 ENVIRONMENT VALUE
=over 4
=item psgix.no-compress
Do not apply deflater
=item psgix.compress-only-text/html
Apply deflater only if content_type is "text/html"
=item plack.skip-deflater
Skip all Deflater features
=back
=head2 Compare psgix.no-compress with plack.skip-deflater
If no-compress is true, PM::Deflater skips gzip or deflate. But adds Vary: Accept-Encoding and Vary: User-Agent header. skip-deflater forces to skip all PM::Deflater feature, doesn't allow to add Vary header.
=head1 LICENSE
This software is licensed under the same terms as Perl itself.
=head1 AUTHOR
Tatsuhiko Miyagawa
=head1 SEE ALSO
L<Plack>, L<http://httpd.apache.org/docs/2.2/en/mod/mod_deflate.html>
=cut
|