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
56189de6
Commit
56189de6
authored
Sep 21, 2012
by
Koosha Khajeh Moogahi
Committed by
Frédéric Buclin
Sep 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 694755: Add Classification API to WebServices (implement Classification.get())
r/a=LpSolit
parent
0ebb96a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
205 additions
and
5 deletions
+205
-5
Classification.pm
Bugzilla/WebService/Classification.pm
+196
-0
Constants.pm
Bugzilla/WebService/Constants.pm
+9
-5
No files found.
Bugzilla/WebService/Classification.pm
0 → 100644
View file @
56189de6
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
package
Bugzilla::WebService::
Classification
;
use
5.10.1
;
use
strict
;
use
base
qw (Bugzilla::WebService);
use
Bugzilla::
Classification
;
use
Bugzilla::
Error
;
use
Bugzilla::WebService::
Util
qw(filter validate params_to_objects)
;
use
constant
READ_ONLY
=>
qw(
get
)
;
sub
get
{
my
(
$self
,
$params
)
=
validate
(
@_
,
'names'
,
'ids'
);
defined
$params
->
{
names
}
||
defined
$params
->
{
ids
}
||
ThrowCodeError
(
'params_required'
,
{
function
=>
'Classification.get'
,
params
=>
[
'names'
,
'ids'
]
});
my
$user
=
Bugzilla
->
user
;
Bugzilla
->
params
->
{
'useclassification'
}
||
$user
->
in_group
(
'editclassifications'
)
||
ThrowUserError
(
'auth_classification_not_enabled'
);
Bugzilla
->
switch_to_shadow_db
;
my
@classification_objs
=
@
{
params_to_objects
(
$params
,
'Bugzilla::Classification'
)
};
unless
(
$user
->
in_group
(
'editclassifications'
))
{
my
%
selectable_class
=
map
{
$_
->
id
=>
1
}
@
{
$user
->
get_selectable_classifications
};
@classification_objs
=
grep
{
$selectable_class
{
$_
->
id
}
}
@classification_objs
;
}
my
@classifications
=
map
{
filter
(
$params
,
$self
->
_classification_to_hash
(
$_
))
}
@classification_objs
;
return
{
classifications
=>
\
@classifications
};
}
sub
_classification_to_hash
{
my
(
$self
,
$classification
)
=
@_
;
my
$user
=
Bugzilla
->
user
;
return
unless
(
Bugzilla
->
params
->
{
'useclassification'
}
||
$user
->
in_group
(
'editclassifications'
));
my
$products
=
$user
->
in_group
(
'editclassifications'
)
?
$classification
->
products
:
$user
->
get_selectable_products
(
$classification
->
id
);
my
%
hash
=
(
id
=>
$self
->
type
(
'int'
,
$classification
->
id
),
name
=>
$self
->
type
(
'string'
,
$classification
->
name
),
description
=>
$self
->
type
(
'string'
,
$classification
->
description
),
sort_key
=>
$self
->
type
(
'int'
,
$classification
->
sortkey
),
products
=>
[
map
{
$self
->
_product_to_hash
(
$_
)
}
@$products
],
);
return
\%
hash
;
}
sub
_product_to_hash
{
my
(
$self
,
$product
)
=
@_
;
my
%
hash
=
(
id
=>
$self
->
type
(
'int'
,
$product
->
id
),
name
=>
$self
->
type
(
'string'
,
$product
->
name
),
description
=>
$self
->
type
(
'string'
,
$product
->
description
),
);
return
\%
hash
;
}
1
;
__END__
=head1 NAME
Bugzilla::Webservice::Classification - The Classification API
=head1 DESCRIPTION
This part of the Bugzilla API allows you to deal with the available Classifications.
You will be able to get information about them as well as manipulate them.
=head1 METHODS
See L<Bugzilla::WebService> for a description of how parameters are passed,
and what B<STABLE>, B<UNSTABLE>, and B<EXPERIMENTAL> mean.
=head1 Classification Retrieval
=head2 get
B<EXPERIMENTAL>
=over
=item B<Description>
Returns a hash containing information about a set of classifications.
=item B<Params>
In addition to the parameters below, this method also accepts the
standard L<include_fields|Bugzilla::WebService/include_fields> and
L<exclude_fields|Bugzilla::WebService/exclude_fields> arguments.
You could get classifications info by supplying their names and/or ids.
So, this method accepts the following parameters:
=over
=item C<ids>
An array of classification ids.
=item C<names>
An array of classification names.
=back
=item B<Returns>
A hash with the key C<classifications> and an array of hashes as the corresponding value.
Each element of the array represents a classification that the user is authorized to see
and has the following keys:
=over
=item C<id>
C<int> The id of the classification.
=item C<name>
C<string> The name of the classification.
=item C<description>
C<string> The description of the classificaion.
=item C<sort_key>
C<int> The value which determines the order the classification is sorted.
=item C<products>
An array of hashes. The array contains the products the user is authorized to
access within the classification. Each hash has the following keys:
=over
=item C<name>
C<string> The name of the product.
=item C<id>
C<int> The id of the product.
=item C<description>
C<string> The description of the product.
=back
=back
=item B<Errors>
=over
=item 900 (Classification not enabled)
Classification is not enabled on this installation.
=back
=item B<History>
=over
=item Added in Bugzilla B<4.4>.
=back
=back
Bugzilla/WebService/Constants.pm
View file @
56189de6
...
...
@@ -159,6 +159,9 @@ use constant WS_ERROR_CODE => {
empty_group_description
=>
802
,
invalid_regexp
=>
803
,
# Classification errors are 900-1000
auth_classification_not_enabled
=>
900
,
# Errors thrown by the WebService itself. The ones that are negative
# conform to http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php
xmlrpc_invalid_value
=>
-
32600
,
...
...
@@ -187,11 +190,12 @@ sub WS_DISPATCH {
Bugzilla::Hook::
process
(
'webservice'
,
{
dispatch
=>
\%
hook_dispatch
});
my
$dispatch
=
{
'Bugzilla'
=>
'Bugzilla::WebService::Bugzilla'
,
'Bug'
=>
'Bugzilla::WebService::Bug'
,
'User'
=>
'Bugzilla::WebService::User'
,
'Product'
=>
'Bugzilla::WebService::Product'
,
'Group'
=>
'Bugzilla::WebService::Group'
,
'Bugzilla'
=>
'Bugzilla::WebService::Bugzilla'
,
'Bug'
=>
'Bugzilla::WebService::Bug'
,
'Classification'
=>
'Bugzilla::WebService::Classification'
,
'Group'
=>
'Bugzilla::WebService::Group'
,
'Product'
=>
'Bugzilla::WebService::Product'
,
'User'
=>
'Bugzilla::WebService::User'
,
%
hook_dispatch
};
return
$dispatch
;
...
...
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