Bugzilla – Attachment 17658 Details for
Bug 10075
Extend CGI to provide a param_utf8_decode method
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10075 - Extend CGI and overload the param method to one that decodes utf8 by default
Bug-10075---Extend-CGI-and-overload-the-param-meth.patch (text/plain), 3.19 KB, created by
Tomás Cohen Arazi (tcohen)
on 2013-04-24 17:30:59 UTC
(
hide
)
Description:
Bug 10075 - Extend CGI and overload the param method to one that decodes utf8 by default
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2013-04-24 17:30:59 UTC
Size:
3.19 KB
patch
obsolete
>From 625fce7c22d915de6cc48881c5fcad5c978ea2fe Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >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 <tomascohen at gmail dot com> >+ >+=cut >-- >1.8.1.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 10075
: 17658