/usr/share/perl5/Catalyst/Plugin/Compress.pm is in libcatalyst-plugin-compress-perl 0.5-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 | package Catalyst::Plugin::Compress;
use strict;
use Catalyst::Utils;
use MRO::Compat;
our $VERSION = '0.005';
my $_method;
my %_compression_lib = (
gzip => 'Compress::Zlib',
deflate => 'Compress::Zlib',
bzip2 => 'Compress::Bzip2',
);
sub _gzip_compress {
Compress::Zlib::memGzip(shift);
}
sub _bzip2_compress {
Compress::Bzip2::memBzip(shift);
}
sub _deflate_compress {
my $content = shift;
my $result;
my ($d, $out, $status);
($d, $status) = Compress::Zlib::deflateInit(
-WindowBits => -Compress::Zlib::MAX_WBITS(),
);
unless ($status == Compress::Zlib::Z_OK()) {
die("Cannot create a deflation stream. Error: $status");
}
($out, $status) = $d->deflate($content);
unless ($status == Compress::Zlib::Z_OK()) {
die("Deflation failed. Error: $status");
}
$result .= $out;
($out, $status) = $d->flush;
unless ($status == Compress::Zlib::Z_OK()) {
die("Deflation failed. Error: $status");
}
return $result . $out;
}
sub setup {
my $c = shift;
if ($_method = $c->config->{compression_format}) {
$_method = 'gzip'
if $_method eq 'zlib';
my $lib_name = $_compression_lib{$_method};
die qq{No compression_format named "$_method"}
unless $lib_name;
Catalyst::Utils::ensure_class_loaded($lib_name);
*_do_compress = \&{"_${_method}_compress"};
}
if ($c->debug) {
$_method
? $c->log->debug(qq{Catalyst::Plugin::Compress sets compression_format to '$_method'})
: $c->log->debug(qq{Catalyst::Plugin::Compress has no compression_format config - disabled.});
}
$c->maybe::next::method(@_);
}
use List::Util qw(first);
sub should_compress_response {
my ($self) = @_;
my ($ct) = split /;/, $self->res->content_type;
my @compress_types = qw(
application/javascript
application/json
application/x-javascript
application/xml
);
return 1
if ($ct =~ m{^text/})
or ($ct =~ m{\+xml$}
or (first { lc($ct) eq $_ } @compress_types));
}
sub finalize {
my $c = shift;
if ((not defined $_method)
or $c->res->content_encoding
or (not $c->res->body)
or ($c->res->status != 200)
or (not $c->should_compress_response)
) {
return $c->maybe::next::method(@_);
}
my $accept = $c->request->header('Accept-Encoding') || '';
unless (index($accept, $_method) >= 0) {
return $c->maybe::next::method(@_);
}
my $body = $c->res->body;
if (ref $body) {
eval { local $/; $body = <$body> };
die "Unknown type of ref in body."
if ref $body;
}
my $compressed = _do_compress($body);
$c->response->body($compressed);
$c->response->content_length(length($compressed));
$c->response->content_encoding($_method);
$c->response->headers->push_header('Vary', 'Accept-Encoding');
$c->maybe::next::method(@_);
}
1;
__END__
=head1 NAME
Catalyst::Plugin::Compress - Compress response
=head1 SYNOPSIS
use Catalyst qw/Compress/;
or
use Catalyst qw/
Unicode
Compress
/;
If you want to use this plugin with L<Catalyst::Plugin::Unicode>.
Remember to specify compression_format with:
__PACKAGE__->config(
compression_format => $format,
);
$format can be either gzip bzip2 zlib or deflate. bzip2 is B<*only*> supported
by lynx and some other console text-browsers.
=head1 DESCRIPTION
This module combines L<Catalyst::Plugin::Deflate> L<Catalyst::Plugin::Gzip>
L<Catalyst::Plugin::Zlib> into one.
It compress response to [gzip bzip2 zlib deflate] if client supports it.
B<NOTE>: If you want to use this module with L<Catalyst::Plugin::Unicode>, You
B<MUST> load this plugin B<AFTER> L<Catalyst::Plugin::Unicode>.
use Catalyst qw/
Unicode
Compress
/;
If you don't, You'll get error which is like:
[error] Caught exception in engine "Wide character in subroutine entry at
/usr/lib/perl5/site_perl/5.8.8/Compress/Zlib.pm line xxx."
=head1 INTERNAL METHODS
=head2 should_compress_response
This method determine wether compressing the reponse using this plugin.
=head1 SEE ALSO
L<Catalyst>.
=head1 AUTHOR
Yiyi Hu C<yiyihu@gmail.com>
=head1 LICENSE
This library is free software. You can redistribute it and/or modify it under
the same terms as perl itself.
=cut
|