From 625fce7c22d915de6cc48881c5fcad5c978ea2fe Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 24 Apr 2013 12:39:02 -0300 Subject: [PATCH] Bug 10075 - Extend CGI and overload the param method to one that decodes utf8 by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The key idea is to provide a way to avoid writing decode stuff every time we read a param from CGI. Adds a method for explicitly not decoding input (for images, iso data, etc). Regards To+ Sponsored-by: Universidad Nacional de Córdoba --- Koha/CGI.pm | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 Koha/CGI.pm diff --git a/Koha/CGI.pm b/Koha/CGI.pm new file mode 100644 index 0000000..5b39741 --- /dev/null +++ b/Koha/CGI.pm @@ -0,0 +1,106 @@ +package Koha::CGI; + +# Copyright 2013 Universidad Nacional de Cordoba +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# Koha 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. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +=head1 NAME + +Koha::CGI - class to wrap the CGI module + +=head1 SYNOPSIS + +Object-oriented class that encapsulates the CGI module use. Its goal is +overloading the 'param' method so it decodes UTF-8 data by default. + +It provides a way to avoid decoding, using a the method param_utf8_nodecode. + +=head1 DESCRIPTION + +CGI module wrapper. + +=cut + +use Modern::Perl; + +use Carp; +use Encode qw/decode/; +use Try::Tiny; + +use parent 'CGI'; + +=head2 param + + my $param = Koha::CGI->param($paramname); + +Read $paramname from the CGI parameters. It decodes UTF-8 data by default. + +=cut + +sub param { + my ($self,@p) = @_; + my @result = map { _decode_utf8_param($_); } $self->SUPER::param(@p); + + return wantarray ? @result : $result[0]; +} + +=head2 param_utf8_nodecode + + my $param = Koha::CGI->param_utf8_nodecode($paramname); + +Read $paramname from the CGI parameters. It doesn't decode UTF-8 data +by default. + +=cut + +sub param_utf8_nodecode { + my ($self,@p) = @_; + my @result = $self->SUPER::param(@p); + + return wantarray ? @result : $result[0]; +} + +=head2 _decode_utf8_param (internal) + +Internal method that decodes UTF-8 data. It carps if exception +raises during decoding. + +=cut + +sub _decode_utf8_param { + my ($self,$param) = @_; + + try { + $param = decode( 'UTF-8', $param, Encode::FB_CROAK ); + } catch { + carp "Error decoding: $_"; + } + + return $param; +} + +1; +__END__ + +=head1 SEE ALSO + +CGI.pm + +=head1 AUTHORS + +Tomas Cohen Arazi + +=cut -- 1.8.1.2