showdependencytree.cgi 6.8 KB
Newer Older
1
#!/usr/bin/perl -wT
2 3
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
4 5 6 7 8 9 10 11 12 13
# 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.
#
14
# The Original Code is the Bugzilla Bug Tracking System.
15
#
16
# The Initial Developer of the Original Code is Netscape Communications
17 18 19 20
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
21
# Contributor(s): Terry Weissman <terry@mozilla.org>
22 23
#                 Andreas Franke <afranke@mathweb.org>
#                 Christian Reis <kiko@async.com.br>
24
#                 Myk Melez <myk@mozilla.org>
25 26 27

use strict;

28
use lib qw(.);
29
require "globals.pl";
30
use Bugzilla;
31
use Bugzilla::User;
32
use Bugzilla::Bug;
33

34
Bugzilla->login();
35

36
my $cgi = Bugzilla->cgi;
37 38
my $template = Bugzilla->template;
my $vars = {};
39 40
# Connect to the shadow database if this installation is using one to improve
# performance.
41
my $dbh = Bugzilla->switch_to_shadow_db();
42

43 44 45
################################################################################
# Data/Security Validation                                                     #
################################################################################
46 47

# Make sure the bug ID is a positive integer representing an existing
48
# bug that the user is authorized to access.
49 50
my $id = $cgi->param('id');
ValidateBugID($id);
51

52
my $hide_resolved = $cgi->param('hide_resolved') ? 1 : 0;
53

54
my $maxdepth = $cgi->param('maxdepth') || 0;
55
if ($maxdepth !~ /^\d+$/) { $maxdepth = 0 };
56

57 58 59
################################################################################
# Main Section                                                                 #
################################################################################
60

61 62 63 64 65 66
# The column/value to select as the target milestone for bugs,
# either the target_milestone column or the empty string value
# (for installations that don't use target milestones).  Makes
# it easier to query the database for bugs because we don't
# have to embed a conditional statement into each query.
my $milestone_column = Param('usetargetmilestone') ? "target_milestone" : "''";
67

68
# Stores the greatest depth to which either tree goes.
69 70
my $realdepth = 0;

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
# Generate the tree of bugs that this bug depends on and a list of IDs
# appearing in the tree.
my $dependson_tree = { $id => GetBug($id) };
my $dependson_ids = {};
GenerateTree($id, "dependson", 1, $dependson_tree, $dependson_ids);
$vars->{'dependson_tree'} = $dependson_tree;
$vars->{'dependson_ids'} = [keys(%$dependson_ids)];

# Generate the tree of bugs that this bug blocks and a list of IDs
# appearing in the tree.
my $blocked_tree = { $id => GetBug($id) };
my $blocked_ids = {};
GenerateTree($id, "blocked", 1, $blocked_tree, $blocked_ids);
$vars->{'blocked_tree'} = $blocked_tree;
$vars->{'blocked_ids'} = [keys(%$blocked_ids)];

$vars->{'realdepth'}      = $realdepth;

$vars->{'bugid'}          = $id;
$vars->{'maxdepth'}       = $maxdepth;
$vars->{'hide_resolved'}  = $hide_resolved;
$vars->{'canedit'}        = UserInGroup("editbugs");

94
print $cgi->header();
95 96
$template->process("bug/dependency-tree.html.tmpl", $vars)
  || ThrowTemplateError($template->error());
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

################################################################################
# Recursive Tree Generation Function                                           #
################################################################################

sub GenerateTree {
    # Generates a dependency tree for a given bug.  Calls itself recursively
    # to generate sub-trees for the bug's dependencies.
    
    my ($bug_id, $relationship, $depth, $bugs, $ids) = @_;
    
    # Query the database for bugs with the given dependency relationship.
    my @dependencies = GetDependencies($bug_id, $relationship);
    
    # Don't do anything if this bug doesn't have any dependencies.
    return unless scalar(@dependencies);
    
    # Record this depth in the global $realdepth variable if it's farther 
    # than we've gone before.
    $realdepth = max($realdepth, $depth);

    foreach my $dep_id (@dependencies) {
        # Get this dependency's record from the database and generate
        # its sub-tree if we haven't already done so (which happens
        # when bugs appear in dependency trees multiple times).
        if (!$bugs->{$dep_id}) {
            $bugs->{$dep_id} = GetBug($dep_id);
            GenerateTree($dep_id, $relationship, $depth+1, $bugs, $ids);
        }
126

127 128 129 130 131 132 133 134 135 136
        # Add this dependency to the list of this bug's dependencies 
        # if it exists, if we haven't exceeded the maximum depth the user 
        # wants the tree to go, and if the dependency isn't resolved 
        # (if we're ignoring resolved dependencies).
        if ($bugs->{$dep_id}->{'exists'}
            && (!$maxdepth || $depth <= $maxdepth) 
            && ($bugs->{$dep_id}->{'open'} || !$hide_resolved))
        {
            push (@{$bugs->{$bug_id}->{'dependencies'}}, $dep_id);
            $ids->{$dep_id} = 1;
137 138 139 140
        }
    }
}

141 142 143 144
sub GetBug {
    # Retrieves the necessary information about a bug, stores it in the bug cache,
    # and returns it to the calling code.
    my ($id) = @_;
145 146
    my $dbh = Bugzilla->dbh;

147
    my $bug = {};
148
    if (Bugzilla->user->can_see_bug($id)) {
149 150
        ($bug->{'exists'},
         $bug->{'status'},
151
         $bug->{'resolution'},
152 153 154 155 156
         $bug->{'summary'},
         $bug->{'milestone'},
         $bug->{'assignee_id'},
         $bug->{'assignee_email'}) = $dbh->selectrow_array(
                "SELECT 1,
157
                        bug_status, 
158
                        resolution,
159 160 161 162
                        short_desc, 
                        $milestone_column, 
                        assignee.userid, 
                        assignee.login_name
163
                   FROM bugs
164 165
             INNER JOIN profiles AS assignee
                     ON bugs.assigned_to = assignee.userid
166
                  WHERE bugs.bug_id = ?", undef, $id);
167
     }
168
    
169
    $bug->{'open'} = $bug->{'exists'} && IsOpenedState($bug->{'status'});
170
    $bug->{'dependencies'} = [];
171 172
    
    return $bug;
173 174
}

175 176 177
sub GetDependencies {
    # Returns a list of dependencies for a given bug.
    my ($id, $relationship) = @_;
178 179
    my $dbh = Bugzilla->dbh;

180
    my $bug_type = ($relationship eq "blocked") ? "dependson" : "blocked";
181
    
182 183
    my $dependencies = $dbh->selectcol_arrayref(
              "SELECT $relationship
184
                 FROM dependencies 
185 186
                WHERE $bug_type = ?
             ORDER BY $relationship", undef, $id);
187
    
188
    return @$dependencies;
189 190
}