summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Keyword.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-07-02 01:45:53 +0200
committermkanat%bugzilla.org <>2006-07-02 01:45:53 +0200
commitf301c9241af577f8f3df94338f1329d91c82d252 (patch)
treeaff46880248e76011b2a3d6afa793be7117e9154 /Bugzilla/Keyword.pm
parent0fd94fa00dc3429814a97c106f2ff0a0550e6ac0 (diff)
downloadbugzilla-f301c9241af577f8f3df94338f1329d91c82d252.tar.gz
bugzilla-f301c9241af577f8f3df94338f1329d91c82d252.tar.xz
Bug 343248: SQL query to get all keywords with bug count is duplicated in editkeywords.cgi and describekeywords.cgi
Patch By Remi Zara <remi_zara@mac.com> r=mkanat, a=justdave
Diffstat (limited to 'Bugzilla/Keyword.pm')
-rw-r--r--Bugzilla/Keyword.pm45
1 files changed, 45 insertions, 0 deletions
diff --git a/Bugzilla/Keyword.pm b/Bugzilla/Keyword.pm
index 6ba72479c..2e0f19f4c 100644
--- a/Bugzilla/Keyword.pm
+++ b/Bugzilla/Keyword.pm
@@ -38,6 +38,16 @@ use constant DB_TABLE => 'keyworddefs';
sub description { return $_[0]->{'description'}; }
+sub bug_count {
+ ($_[0]->{'bug_count'}) ||=
+ Bugzilla->dbh->selectrow_array('SELECT COUNT(keywords.bug_id) AS bug_count
+ FROM keyworddefs
+ LEFT JOIN keywords
+ ON keyworddefs.id = keywords.keywordid
+ WHERE keyworddefs.id=?', undef, ($_[0]->id));
+ return $_[0]->{'bug_count'};
+}
+
###############################
#### Subroutines ######
###############################
@@ -48,6 +58,29 @@ sub keyword_count {
return $count;
}
+sub get_all_with_bug_count {
+ my $class = shift;
+ my $dbh = Bugzilla->dbh;
+ my $keywords =
+ $dbh->selectall_arrayref('SELECT ' . join(', ', DB_COLUMNS) . ',
+ COUNT(keywords.bug_id) AS bug_count
+ FROM keyworddefs
+ LEFT JOIN keywords
+ ON keyworddefs.id = keywords.keywordid ' .
+ $dbh->sql_group_by('keyworddefs.id',
+ 'keyworddefs.name,
+ keyworddefs.description') . '
+ ORDER BY keyworddefs.name', {'Slice' => {}});
+ if (!$keywords) {
+ return [];
+ }
+
+ foreach my $keyword (@$keywords) {
+ bless($keyword, $class);
+ }
+ return $keywords;
+}
+
1;
__END__
@@ -64,6 +97,8 @@ Bugzilla::Keyword - A Keyword that can be added to a bug.
my $description = $keyword->description;
+ my $keywords = Bugzilla::Keyword->get_all_with_bug_count();
+
=head1 DESCRIPTION
Bugzilla::Keyword represents a keyword that can be added to a bug.
@@ -87,6 +122,16 @@ implements.
Params: none
Returns: An integer, the count of keywords.
+=item C<get_all_with_bug_count()>
+
+ Description: Returns all defined keywords. This is an efficient way
+ to get the associated bug counts, as only one SQL query
+ is executed with this method, instead of one per keyword
+ when calling get_all and then bug_count.
+ Params: none
+ Returns: A reference to an array of Keyword objects, or an empty
+ arrayref if there are no keywords.
+
=back
=cut