NAME
BZ::Client::Bug - Client side representation of a bug in Bugzilla
VERSION
version 2.0_1
SYNOPSIS
This class provides methods for accessing and managing bugs in Bugzilla.
my $client = BZ::Client->new( url => $url,
user => $user,
password => $password );
my $bugs = BZ::Client::Bug->get( $client, $ids );
UTILITY FUNCTIONS
This section lists the utility functions provided by this module.
These deal with bug-related information, but not bugs directly.
fields
$fields = BZ::Client::Bug->fields( $client, $params )
@fields = BZ::Client::Bug->fields( $client, $params )
Get information about valid bug fields, including the lists of legal values for each field.
Added in Bugzilla 3.6
Parameters
You can pass either field ids or field names.
Note: If neither ids nor names is specified, then all non-obsolete fields will be returned.
- ids
-
ids (array) - An array of integer field ids
- names
-
names (array) - An array of strings representing field names.
In addition to the parameters above, this method also accepts the standard include_fields and exclude_fields arguments.
Returns
Returns an array or an arrayref of hashes, containing the following keys:
- id
-
id (int) - An integer id uniquely identifying this field in this installation only.
- type
-
type (int) The number of the fieldtype. The following values are defined:
- is_custom
-
is_custom (boolean) True when this is a custom field, false otherwise.
- name
-
name (string) The internal name of this field. This is a unique identifier for this field. If this is not a custom field, then this name will be the same across all Bugzilla installations.
- display_name
-
display_name (string) The name of the field, as it is shown in the user interface.
- is_mandatory
-
is_mandatory (boolean) True if the field must have a value when filing new bugs. Also, mandatory fields cannot have their value cleared when updating bugs.
This return value was added in Bugzilla 4.0.
- is_on_bug_entry
-
is_on_bug_entry (boolean) For custom fields, this is true if the field is shown when you enter a new bug. For standard fields, this is currently always false, even if the field shows up when entering a bug. (To know whether or not a standard field is valid on bug entry, see "create".)
- visibility_field
-
visibility_field (string) The name of a field that controls the visibility of this field in the user interface. This field only appears in the user interface when the named field is equal to one of the values in visibility_values. Can be null.
- visibility_values
-
visibility_values (array) of strings This field is only shown when visibility_field matches one of these values. When visibility_field is null, then this is an empty array.
- value_field
-
value_field (string) The name of the field that controls whether or not particular values of the field are shown in the user interface. Can be null.
- values
-
This is an array of hashes, representing the legal values for select-type (drop-down and multiple-selection) fields. This is also populated for the component, version, target_milestone, and keywords fields, but not for the product field (you must use "get_accessible_products" in BZ::Client::Product for that).
For fields that aren't select-type fields, this will simply be an empty array.
Each hash has the following keys:
- name
-
name (string) The actual value--this is what you would specify for this field in "create", etc.
- sort_key
-
sort_key (int) Values, when displayed in a list, are sorted first by this integer and then secondly by their name.
- sortkey
-
DEPRECATED - Use sort_key instead.
Renamed to sort_key in Bugzilla 4.2.
- visibility_values
-
If "value_field" is defined for this field, then this value is only shown if the "value_field" is set to one of the values listed in this array.
Note that for per-product fields, "value_field" is set to 'product' and "visibility_values" will reflect which product(s) this value appears in.
- is_active
-
is_active (boolean) This value is defined only for certain product specific fields such as version, target_milestone or component.
When true, the value is active, otherwise the value is not active.
Added in Bugzilla 4.4.
- description
-
description (string) The description of the value. This item is only included for the keywords field.
- is_open
-
is_open (boolean) For "bug_status" values, determines whether this status specifies that the bug is "open" (true) or "closed" (false). This item is only included for the "bug_status" field.
- can_change_to
-
For "bug_status" values, this is an array of hashes that determines which statuses you can transition to from this status. (This item is only included for the "bug_status" field.)
Each hash contains the following items:
- name
-
The name of the new status
- comment_required
-
comment_required (boolean) True if a comment is required when you change a bug into this status using this transition.
Errors:
legal_values
$values = BZ::Client::Bug->legal_values( $client, $field )
@values = BZ::Client::Bug->legal_values( $client, $field )
Tells you what values are allowed for a particular field.
Note: This is deprecated in Bugzilla, use "fields" instead.
Parameters
- field
-
The name of the field you want information about. This should be the same as the name you would use in "create", below.
- product_id
-
If you're picking a product-specific field, you have to specify the id of the product you want the values for.
Returns
- values
-
An array or arrayref of strings: the legal values for this field. The values will be sorted as they normally would be in Bugzilla.
Errors
- 106 - Invalid Product
-
You were required to specify a product, and either you didn't, or you specified an invalid product (or a product that you can't access).
- 108 - Invalid Field Name
-
You specified a field that doesn't exist or isn't a drop-down field.
FUNCTIONS FOR FINDING AND RETRIEVING BUGS
This section lists the class methods pertaining to finding and retrieving bugs from your server.
Listed here in order of what you most likely want to do... maybe?
get
$bugs = BZ::Client::Bug->get( $client, \%params );
@bugs = BZ::Client::Bug->get( $client, \%params );
Gets information about particular bugs in the database.
Parameters
- ids
-
An array of numbers and strings.
If an element in the array is entirely numeric, it represents a bug_id from the Bugzilla database to fetch. If it contains any non-numeric characters, it is considered to be a bug alias instead, and the bug with that alias will be loaded.
- permissive
-
permissive (boolean) Normally, if you request any inaccessible or invalid bug ids, will throw an error.
If this parameter is True, instead of throwing an error we return an array of hashes with a id, faultString and faultCode for each bug that fails, and return normal information for the other bugs that were accessible.
Note: marked as EXPERIMENTAL in Bugzilla 4.4
Added in Bugzilla 3.4.
Returns
An array or arrayref of bug instance objects with the given ID's.
See "INSTANCE METHODS" for how to use them.
FIXME missing the faults return values (added in 3.4)
Errors
- 100 - Invalid Bug Alias
-
If you specified an alias and there is no bug with that alias.
- 101 - Invalid Bug ID
-
The bug_id you specified doesn't exist in the database.
- 102 - Access Denied
-
You do not have access to the bug_id you specified.
search
my $bugs = BZ::Client::Bug->search( $client, \%params );
my @bugs = BZ::Client::Bug->search( $client, \%params );
Searches for bugs matching the given parameters.
Returns an array or arrayref of bug instance objects with the given ID's.
See "INSTANCE METHODS" for how to use them.
possible_duplicates
TODO
FUNCTIONS FOR CREATING AND MODIFYING BUGS
This section lists the class methods pertaining to the creation and modification of bugs.
Listed here in order of what you most likely want to do... maybe?
create
my $id = BZ::Client::Bug->create( $client, \%params );
Creates a new bug in your Bugzilla server and returns the bug ID.
update
my $id = BZ::Client::Bug->update( $client, \%params );
Allows you to update the fields of a bug.
(Your Bugzilla server may automatically sends emails out about the changes)
FIXME more details needed
update_see_also
$changes = BZ::Client::Bug->update_see_also( $client, \%params );
@changes = BZ::Client::Bug->update_see_also( $client, \%params );
Adds or removes URLs for the See Also field on bugs. These URLs must point to some valid bug in some Bugzilla installation or in Launchpad.
This is marked as EXPERIMENTAL in Bugzilla 4.4
Added in Bugzilla 3.4.
Parameters
- ids
-
An array of integers or strings. The IDs or aliases of bugs that you want to modify.
- add
-
Array of strings. URLs to Bugzilla bugs. These URLs will be added to the See Also field.
If the URLs don't start with
http://
orhttps://
, it will be assumed thathttp://
should be added to the beginning of the string.It is safe to specify URLs that are already in the See Also field on a bug as they will just be silently ignored.
- remove
-
An array of strings. These URLs will be removed from the See Also field. You must specify the full URL that you want removed. However, matching is done case-insensitively, so you don't have to specify the URL in exact case, if you don't want to.
If you specify a URL that is not in the See Also field of a particular bug, it will just be silently ignored. Invaild URLs are currently silently ignored, though this may change in some future version of Bugzilla.
NOTE: If you specify the same URL in both add and remove, it will be added. (That is, add overrides remove.)
Returns
A hash or hashref where the keys are numeric bug ids and the contents are a hash with one key, see_also.
see_also points to a hash, which contains two keys, added and removed.
These are arrays of strings, representing the actual changes that were made to the bug.
Here's a diagram of what the return value looks like for updating bug ids 1 and 2:
{
1 => {
see_also => {
added => [(an array of bug URLs)],
removed => [(an array of bug URLs)],
}
},
2 => {
see_also => {
added => [(an array of bug URLs)],
removed => [(an array of bug URLs)],
}
}
}
This return value allows you to tell what this method actually did.
It is in this format to be compatible with the return value of a future \update method.
Errors
This method can throw all of the errors that "get" throws, plus:
- 109 - Bug Edit Denied
-
You did not have the necessary rights to edit the bug.
- 112 - Invalid Bug URL
-
One of the URLs you provided did not look like a valid bug URL.
- 115 - See Also Edit Denied
-
You did not have the necessary rights to edit the See Also field for this bug.
Before Bugzilla 3.6, error 115 had a generic error code of 32000.
update_tags
$changes = BZ::Client::Bug->update_tags( $client, \%params );
@changes = BZ::Client::Bug->update_tags( $client, \%params );
Adds or removes tags on bugs.
This is marked as UNSTABLE in Bugzilla 4.4
Added in Bugzilla 4.4.
Parameters
- ids
-
An array of ints and/or strings--the ids or aliases of bugs that you want to add or remove tags to. All the tags will be added or removed to all these bugs.
-
A hash representing tags to be added and/or removed. The hash has the following fields:
- add
-
An array of strings representing tag names to be added to the bugs.
It is safe to specify tags that are already associated with the bugs as they will just be silently ignored.
- remove
-
An array of strings representing tag names to be removed from the bugs.
It is safe to specify tags that are not associated with any bugs as they will just be silently ignored.
Returns
A hash or hashref where the keys are numeric bug ids and the contents are a hash with one key, tags.
tags points to a hash, which contains two keys, added and removed.
These are arrays of strings, representing the actual changes that were made to the bug.
Here's a diagram of what the return value looks like for updating bug ids 1 and 2:
{
1 => {
tags => {
added => [(an array of tags)],
removed => [(an array of tags)],
}
},
2 => {
tags => {
added => [(an array of tags)],
removed => [(an array of tags)],
}
}
}
This return value allows you to tell what this method actually did.
Errors
This method can throw all of the errors that "get" throws.
new
my $bug = BZ::Client::Bug->new( id => $id );
Creates a new bug object instance with the given ID.
Note: Doesn't actually touch your bugzilla server.
See "INSTANCE METHODS" for how to use it.
INSTANCE METHODS
This section lists the modules instance methods.
Once you have a bug object, you can use these methods to inspect and manipulate the bug.
id
my $id = $bug->id();
$bug->id( $id );
Gets or sets the bugs ID.
alias
my $alias = $bug->alias();
$bug->alias( $alias );
Gets or sets the bugs alias. If there is no alias or aliases are disabled in Bugzilla, this will be an empty string.
assigned_to
my $assigned_to = $bug->assigned_to();
$bug->assigned_to( $assigned_to );
Gets or sets the login name of the user to whom the bug is assigned.
component
my $component = $bug->component();
$bug->component( $component );
Gets or sets the name of the current component of this bug.
creation_time
my $dateTime = $bug->creation_time();
$bug->creation_time( $dateTime );
Gets or sets the date and time, when the bug was created.
dupe_of
my $dupeOf = $bug->dupe_of();
$bug->dupe_of( $dupeOf );
Gets or sets the bug ID of the bug that this bug is a duplicate of. If this bug isn't a duplicate of any bug, this will be an empty int.
is_open
my $isOpen = $bug->is_open();
$bug->is_open( $isOpen );
Gets or sets, whether this bug is closed. The return value, or parameter value is true (1) if this bug is open, false (0) if it is closed.
last_change_time
my $lastChangeTime = $bug->last_change_time();
$bug->last_change_time( $lastChangeTime );
Gets or sets the date and time, when the bug was last changed.
priority
my $priority = $bug->priority();
$bug->priority( $priority );
Gets or sets the priority of the bug.
product
my $product = $bug->product();
$bug->product( $product );
Gets or sets the name of the product this bug is in.
resolution
my $resolution = $bug->resolution();
$bug->resolution( $resolution );
Gets or sets the current resolution of the bug, or an empty string if the bug is open.
severity
my $severity = $bug->severity();
$bug->severity( $severity );
Gets or sets the current severity of the bug.
status
my $status = $bug->status();
$bug->status( $status );
Gets or sets the current status of the bug.
summary
my $summary = $bug->summary();
$bug->summary( $summary );
Gets or sets the summary of this bug.
SEE ALSO
L<BZ::Client>, L<BZ::Client::API>, L<Bugzilla API|https://www.bugzilla.org/docs/4.4/en/html/api/Bugzilla/WebService/Bug.html>
AUTHORS
Dean Hamstead <dean@bytefoundry.com.au>
Jochen Wiedmann <jochen.wiedmann@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by Dean Hamstad.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.