From c49af480dcb59aadfa1edb76f246c68917a59765 Mon Sep 17 00:00:00 2001 From: "dkl%redhat.com" <> Date: Mon, 26 Jan 2009 20:40:22 +0000 Subject: Bug 473646 - WebService methods should check list parameters for scalars and convert before use Patch by Dave Lawrence - r/a=mkanat --- Bugzilla/WebService/Util.pm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'Bugzilla/WebService/Util.pm') diff --git a/Bugzilla/WebService/Util.pm b/Bugzilla/WebService/Util.pm index cd75bee8c..74c1f2f02 100644 --- a/Bugzilla/WebService/Util.pm +++ b/Bugzilla/WebService/Util.pm @@ -24,7 +24,7 @@ use strict; use base qw(Exporter); -our @EXPORT_OK = qw(filter); +our @EXPORT_OK = qw(filter validate); sub filter ($$) { my ($params, $hash) = @_; @@ -44,6 +44,23 @@ sub filter ($$) { return \%newhash; } +sub validate { + my ($self, $params, @keys) = @_; + + # If @keys is not empty then we convert any named + # parameters that have scalar values to arrayrefs + # that match. + foreach my $key (@keys) { + if (exists $params->{$key}) { + $params->{$key} = ref $params->{$key} + ? $params->{$key} + : [ $params->{$key} ]; + } + } + + return ($self, $params); +} + __END__ =head1 NAME @@ -61,6 +78,8 @@ internally in the WebService code. filter({ include_fields => ['id', 'name'], exclude_fields => ['name'] }, $hash); + validate(@_, 'ids'); + =head1 METHODS =over @@ -72,4 +91,11 @@ of WebService methods. Given a hash (the second argument to this subroutine), this will remove any keys that are I in C and then remove any keys that I in C. +=item C + +This helps in the validation of parameters passed into the WebSerice +methods. Currently it converts listed parameters into an array reference +if the client only passed a single scalar value. It modifies the parameters +hash in place so other parameters should be unaltered. + =back -- cgit v1.2.3-24-g4f1b