⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bug.pm

📁 bugzilla
💻 PM
字号:
# -*- Mode: perl; indent-tabs-mode: nil -*-## The contents of this file are subject to the Mozilla Public# License Version 1.1 (the "License"); you may not use this file# except in compliance with the License. You may obtain a copy of# the License at http://www.mozilla.org/MPL/## Software distributed under the License is distributed on an "AS# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or# implied. See the License for the specific language governing# rights and limitations under the License.## The Original Code is the Bugzilla Bug Tracking System.## Contributor(s): Marc Schumann <wurblzap@gmail.com>#                 Max Kanat-Alexander <mkanat@bugzilla.org>package Bugzilla::WebService::Bug;use strict;use base qw(Bugzilla::WebService);import SOAP::Data qw(type);use Bugzilla::Constants;use Bugzilla::Error;use Bugzilla::Field;use Bugzilla::WebService::Constants;use Bugzilla::Util qw(detaint_natural);use Bugzilla::Bug;use Bugzilla::BugMail;use Bugzilla::Constants;############## Constants ############### This maps the names of internal Bugzilla bug fields to things that would# make sense to somebody who's not intimately familiar with the inner workings# of Bugzilla. (These are the field names that the WebService uses.)use constant FIELD_MAP => {    status      => 'bug_status',    severity    => 'bug_severity',    description => 'comment',    summary     => 'short_desc',    platform    => 'rep_platform',};use constant GLOBAL_SELECT_FIELDS => qw(    bug_severity    bug_status    op_sys    priority    rep_platform    resolution);use constant PRODUCT_SPECIFIC_FIELDS => qw(version target_milestone component);############ Methods ############sub get_bugs {    my ($self, $params) = @_;    my $ids = $params->{ids};    defined $ids || ThrowCodeError('param_required', { param => 'ids' });    my @return;    foreach my $bug_id (@$ids) {        ValidateBugID($bug_id);        my $bug = new Bugzilla::Bug($bug_id);        # Timetracking fields are deleted if the user doesn't belong to        # the corresponding group.        unless (Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'})) {            delete $bug->{'estimated_time'};            delete $bug->{'remaining_time'};            delete $bug->{'deadline'};        }        # This is done in this fashion in order to produce a stable API.        # The internals of Bugzilla::Bug are not stable enough to just        # return them directly.        my $creation_ts = $self->datetime_format($bug->creation_ts);        my $delta_ts    = $self->datetime_format($bug->delta_ts);        my %item;        $item{'creation_time'}    = type('dateTime')->value($creation_ts);        $item{'last_change_time'} = type('dateTime')->value($delta_ts);        $item{'internals'}        = $bug;        $item{'id'}               = type('int')->value($bug->bug_id);        $item{'summary'}          = type('string')->value($bug->short_desc);        if (Bugzilla->params->{'usebugaliases'}) {            $item{'alias'} = type('string')->value($bug->alias);        }        else {            # For API reasons, we always want the value to appear, we just            # don't want it to have a value if aliases are turned off.            $item{'alias'} = undef;        }        push(@return, \%item);    }    return { bugs => \@return };}sub create {    my ($self, $params) = @_;    Bugzilla->login(LOGIN_REQUIRED);    my %field_values;    foreach my $field (keys %$params) {        my $field_name = FIELD_MAP->{$field} || $field;        $field_values{$field_name} = $params->{$field};     }    # WebService users can't set the creation date of a bug.    delete $field_values{'creation_ts'};    my $bug = Bugzilla::Bug->create(\%field_values);    Bugzilla::BugMail::Send($bug->bug_id, { changer => $bug->reporter->login });    return { id => type('int')->value($bug->bug_id) };}sub legal_values {    my ($self, $params) = @_;    my $field = FIELD_MAP->{$params->{field}} || $params->{field};    my @custom_select =        Bugzilla->get_fields({ type => FIELD_TYPE_SINGLE_SELECT });    # We only want field names.    @custom_select = map {$_->name} @custom_select;    my $values;    if (grep($_ eq $field, GLOBAL_SELECT_FIELDS, @custom_select)) {        $values = get_legal_field_values($field);    }    elsif (grep($_ eq $field, PRODUCT_SPECIFIC_FIELDS)) {        my $id = $params->{product_id};        defined $id || ThrowCodeError('param_required',            { function => 'Bug.legal_values', param => 'product_id' });        grep($_->id eq $id, @{Bugzilla->user->get_accessible_products})            || ThrowUserError('product_access_denied', { product => $id });        my $product = new Bugzilla::Product($id);        my @objects;        if ($field eq 'version') {            @objects = @{$product->versions};        }        elsif ($field eq 'target_milestone') {            @objects = @{$product->milestones};        }        elsif ($field eq 'component') {            @objects = @{$product->components};        }        $values = [map { $_->name } @objects];    }    else {        ThrowCodeError('invalid_field_name', { field => $params->{field} });    }    my @result;    foreach my $val (@$values) {        push(@result, type('string')->value($val));    }    return { values => \@result };}1;__END__=head1 NAMEBugzilla::Webservice::Bug - The API for creating, changing, and getting thedetails of bugs.=head1 DESCRIPTIONThis part of the Bugzilla API allows you to file a new bug in Bugzilla,or get information about bugs that have already been filed.=head1 METHODSSee L<Bugzilla::WebService> for a description of B<STABLE>, B<UNSTABLE>,and B<EXPERIMENTAL>.=head2 Utility Functions=over=item C<legal_values> B<EXPERIMENTAL>=over=item B<Description>Tells you what values are allowed for a particular field.=item B<Params>=over=item C<field> - The name of the field you want information about.This should be the same as the name you would use in L</create>, below.=item C<product_id> - If you're picking a product-specific field, you haveto specify the id of the product you want the values for.=back=item B<Returns> C<values> - An array of strings: the legal values for this field.The values will be sorted as they normally would be in Bugzilla.=item B<Errors>=over=item 106 (Invalid Product)You were required to specify a product, and either you didn't, or youspecified an invalid product (or a product that you can't access).=item 108 (Invalid Field Name)You specified a field that doesn't exist or isn't a drop-down field.=back=back=back=head2 Bug Creation and Modification=over=item C<get_bugs> B<EXPERIMENTAL>=over=item B<Description>Gets information about particular bugs in the database.=item B<Params>=over=item C<ids>An array of numbers and strings.If an element in the array is entirely numeric, it represents a bug_idfrom 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. Note that it's possible for aliases to be disabled in Bugzilla, in whichcase you will be told that you have specified an invalid bug_id if youtry to specify an alias. (It will be error 100.)=back=item B<Returns>A hash containing a single element, C<bugs>. This is an array of hashes. Each hash contains the following items:=over=item idC<int> The numeric bug_id of this bug.=item aliasC<string> The alias of this bug. If there is no alias or aliases are disabled in this Bugzilla, this will be an empty string.=item summaryC<string> The summary of this bug.=item creation_timeC<dateTime> When the bug was created.=item last_change_timeC<dateTime> When the bug was last changed.=item internals B<UNSTABLE>A hash. The internals of a L<Bugzilla::Bug> object. This is extremelyunstable, and you should only rely on this if you absolutely have to. Thestructure of the hash may even change between point releases of Bugzilla.=back=item B<Errors>=over=item 100 (Invalid Bug Alias)If you specified an alias and either: (a) the Bugzilla you're queryingdoesn't support aliases or (b) there is no bug with that alias.=item 101 (Invalid Bug ID)The bug_id you specified doesn't exist in the database.=item 102 (Access Denied)You do not have access to the bug_id you specified.=back=back=item C<create> B<EXPERIMENTAL>=over=item B<Description>This allows you to create a new bug in Bugzilla. If you specify anyinvalid fields, they will be ignored. If you specify any fields youare not allowed to set, they will just be set to their defaults or ignored.You cannot currently set all the items here that you can set on enter_bug.cgi.The WebService interface may allow you to set things other than those listedhere, but realize that anything undocumented is B<UNSTABLE> and will verylikely change in the future.=item B<Params>Some params must be set, or an error will be thrown. These params aremarked B<Required>. Some parameters can have defaults set in Bugzilla, by the administrator.If these parameters have defaults set, you can omit them. These parametersare marked B<Defaulted>.Clients that want to be able to interact uniformly with multipleBugzillas should always set both the params marked B<Required> and those marked B<Defaulted>, because some Bugzillas may not have defaults setfor B<Defaulted> parameters, and then this method will throw an errorif you don't specify them.The descriptions of the parameters below are what they mean when Bugzilla isbeing used to track software bugs. They may have other meanings in someinstallations.=over=item C<product> (string) B<Required> - The name of the product the bugis being filed against.=item C<component> (string) B<Required> - The name of a component in theproduct above.=item C<summary> (string) B<Required> - A brief description of the bug beingfiled.=item C<version> (string) B<Required> - A version of the product above;the version the bug was found in.=item C<description> (string) B<Defaulted> - The initial description for this bug. Some Bugzilla installations require this to not be blank.=item C<op_sys> (string) B<Defaulted> - The operating system the bug wasdiscovered on.=item C<platform> (string) B<Defaulted> - What type of hardware the bug wasexperienced on.=item C<priority> (string) B<Defaulted> - What order the bug will be fixedin by the developer, compared to the developer's other bugs.=item C<severity> (string) B<Defaulted> - How severe the bug is.=item C<alias> (string) - A brief alias for the bug that can be used instead of a bug number when accessing this bug. Must be unique inall of this Bugzilla.=item C<assigned_to> (username) - A user to assign this bug to, if youdon't want it to be assigned to the component owner.=item C<cc> (array) - An array of usernames to CC on this bug.=item C<qa_contact> (username) - If this installation has QA Contactsenabled, you can set the QA Contact here if you don't want to usethe component's default QA Contact.=item C<status> (string) - The status that this bug should start out as.Note that only certain statuses can be set on bug creation.=item C<target_milestone> (string) - A valid target milestone for thisproduct.=backIn addition to the above parameters, if your installation has any customfields, you can set them just by passing in the name of the field andits value as a string.=item B<Returns>A hash with one element, C<id>. This is the id of the newly-filed bug.=item B<Errors>=over=item 103 (Invalid Alias)The alias you specified is invalid for some reason. See the error messagefor more details.=item 104 (Invalid Field)One of the drop-down fields has an invalid value, or a value entered in atext field is too long. The error message will have more detail.=item 105 (Invalid Component)Either you didn't specify a component, or the component you specified wasinvalid.=item 106 (Invalid Product)Either you didn't specify a product, this product doesn't exist, oryou don't have permission to enter bugs in this product.=item 107 (Invalid Summary)You didn't specify a summary for the bug.=item 504 (Invalid User)Either the QA Contact, Assignee, or CC lists have some invalid userin them. The error message will have more details.=back=item B<History>=over=item Before B<3.0.4>, parameters marked as B<Defaulted> were actuallyB<Required>, due to a bug in Bugzilla.=back=back=back

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -