Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
c49af480
Commit
c49af480
authored
Jan 26, 2009
by
dkl%redhat.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 473646 - WebService methods should check list parameters for scalars and convert before use
Patch by Dave Lawrence <dkl@redhat.com> - r/a=mkanat
parent
2319f5f6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
8 deletions
+37
-8
Bug.pm
Bugzilla/WebService/Bug.pm
+6
-4
Product.pm
Bugzilla/WebService/Product.pm
+2
-1
User.pm
Bugzilla/WebService/User.pm
+2
-2
Util.pm
Bugzilla/WebService/Util.pm
+27
-1
No files found.
Bugzilla/WebService/Bug.pm
View file @
c49af480
...
...
@@ -27,7 +27,7 @@ use Bugzilla::Constants;
use
Bugzilla::
Error
;
use
Bugzilla::
Field
;
use
Bugzilla::WebService::
Constants
;
use
Bugzilla::WebService::
Util
qw(filter)
;
use
Bugzilla::WebService::
Util
qw(filter
validate
)
;
use
Bugzilla::
Bug
;
use
Bugzilla::
BugMail
;
use
Bugzilla::
Util
qw(trim)
;
...
...
@@ -67,7 +67,8 @@ BEGIN { *get_bugs = \&get }
###########
sub
comments
{
my
(
$self
,
$params
)
=
@_
;
my
(
$self
,
$params
)
=
validate
(
@_
,
'bug_ids'
,
'comment_ids'
);
if
(
!
(
defined
$params
->
{
bug_ids
}
||
defined
$params
->
{
comment_ids
}))
{
ThrowCodeError
(
'params_required'
,
{
function
=>
'Bug.comments'
,
...
...
@@ -145,7 +146,8 @@ sub _translate_comment {
}
sub
get
{
my
(
$self
,
$params
)
=
@_
;
my
(
$self
,
$params
)
=
validate
(
@_
,
'ids'
);
my
$ids
=
$params
->
{
ids
};
defined
$ids
||
ThrowCodeError
(
'param_required'
,
{
param
=>
'ids'
});
...
...
@@ -162,7 +164,7 @@ sub get {
# it can be called as the following:
# $call = $rpc->call( 'Bug.get_history', { ids => [1,2] });
sub
get_history
{
my
(
$self
,
$params
)
=
@_
;
my
(
$self
,
$params
)
=
validate
(
@_
,
'ids'
)
;
my
$ids
=
$params
->
{
ids
};
defined
$ids
||
ThrowCodeError
(
'param_required'
,
{
param
=>
'ids'
});
...
...
Bugzilla/WebService/Product.pm
View file @
c49af480
...
...
@@ -21,6 +21,7 @@ use strict;
use
base
qw(Bugzilla::WebService)
;
use
Bugzilla::
Product
;
use
Bugzilla::
User
;
use
Bugzilla::WebService::
Util
qw(validate)
;
##################################################
# Add aliases here for method name compatibility #
...
...
@@ -45,7 +46,7 @@ sub get_accessible_products {
# Get a list of actual products, based on list of ids
sub
get
{
my
(
$self
,
$params
)
=
@_
;
my
(
$self
,
$params
)
=
validate
(
@_
,
'ids'
)
;
# Only products that are in the users accessible products,
# can be allowed to be returned
...
...
Bugzilla/WebService/User.pm
View file @
c49af480
...
...
@@ -28,7 +28,7 @@ use Bugzilla::Error;
use
Bugzilla::
User
;
use
Bugzilla::
Util
qw(trim)
;
use
Bugzilla::
Token
;
use
Bugzilla::WebService::
Util
qw(filter)
;
use
Bugzilla::WebService::
Util
qw(filter
validate
)
;
# Don't need auth to login
use
constant
LOGIN_EXEMPT
=>
{
...
...
@@ -131,7 +131,7 @@ sub create {
# $call = $rpc->call( 'User.get', { ids => [1,2,3],
# names => ['testusera@redhat.com', 'testuserb@redhat.com'] });
sub
get
{
my
(
$self
,
$params
)
=
@_
;
my
(
$self
,
$params
)
=
validate
(
@_
,
'names'
,
'ids'
)
;
my
@user_objects
;
@user_objects
=
map
{
Bugzilla::
User
->
check
(
$_
)
}
@
{
$params
->
{
names
}
}
...
...
Bugzilla/WebService/Util.pm
View file @
c49af480
...
...
@@ -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<not> in C<include_fields> and then remove
any keys that I<are> in C<exclude_fields>.
=item C<validate>
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment