User.pm 73.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# -*- 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.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Myk Melez <myk@mozilla.org>
21
#                 Erik Stambaugh <erik@dasbistro.com>
22 23
#                 Bradley Baetz <bbaetz@acm.org>
#                 Joel Peshkin <bugreport@peshkin.net> 
24
#                 Byron Jones <bugzilla@glob.com.au>
25
#                 Shane H. W. Travis <travis@sedsystems.ca>
26
#                 Max Kanat-Alexander <mkanat@bugzilla.org>
27
#                 Gervase Markham <gerv@gerv.net>
28
#                 Lance Larsh <lance.larsh@oracle.com>
29
#                 Justin C. De Vries <judevries@novell.com>
30
#                 Dennis Melentyev <dennis.melentyev@infopulse.com.ua>
31
#                 Frédéric Buclin <LpSolit@gmail.com>
32
#                 Mads Bondo Dydensborg <mbd@dbc.dk>
33 34 35 36 37 38 39 40 41 42 43

################################################################################
# Module Initialization
################################################################################

# Make it harder for us to do dangerous things in Perl.
use strict;

# This module implements utilities for dealing with Bugzilla users.
package Bugzilla::User;

44
use Bugzilla::Error;
45
use Bugzilla::Util;
46
use Bugzilla::Constants;
47
use Bugzilla::User::Setting;
48
use Bugzilla::Product;
49
use Bugzilla::Classification;
50
use Bugzilla::Field;
51

52
use base qw(Bugzilla::Object Exporter);
53
@Bugzilla::User::EXPORT = qw(is_available_username
54
    login_to_id user_id_to_login validate_password
55 56
    USER_MATCH_MULTIPLE USER_MATCH_FAILED USER_MATCH_SUCCESS
    MATCH_SKIP_CONFIRM
57
);
58

59 60 61 62 63 64 65 66 67 68
#####################################################################
# Constants
#####################################################################

use constant USER_MATCH_MULTIPLE => -1;
use constant USER_MATCH_FAILED   => 0;
use constant USER_MATCH_SUCCESS  => 1;

use constant MATCH_SKIP_CONFIRM  => 1;

69
use constant DEFAULT_USER => {
70
    'userid'         => 0,
71 72
    'realname'       => '',
    'login_name'     => '',
73 74 75 76 77 78 79 80 81 82 83 84
    'showmybugslink' => 0,
    'disabledtext'   => '',
    'disable_mail'   => 0,
};

use constant DB_TABLE => 'profiles';

# XXX Note that Bugzilla::User->name does not return the same thing
# that you passed in for "name" to new(). That's because historically
# Bugzilla::User used "name" for the realname field. This should be
# fixed one day.
use constant DB_COLUMNS => (
85
    'profiles.userid',
86 87
    'profiles.login_name',
    'profiles.realname',
88 89 90 91 92 93
    'profiles.mybugslink AS showmybugslink',
    'profiles.disabledtext',
    'profiles.disable_mail',
);
use constant NAME_FIELD => 'login_name';
use constant ID_FIELD   => 'userid';
94
use constant LIST_ORDER => NAME_FIELD;
95

96 97 98 99 100 101 102 103 104 105
use constant REQUIRED_CREATE_FIELDS => qw(login_name cryptpassword);

use constant VALIDATORS => {
    cryptpassword => \&_check_password,
    disable_mail  => \&_check_disable_mail,
    disabledtext  => \&_check_disabledtext,
    login_name    => \&check_login_name_for_creation,
    realname      => \&_check_realname,
};

106 107 108 109 110 111 112 113 114 115 116 117
sub UPDATE_COLUMNS {
    my $self = shift;
    my @cols = qw(
        disable_mail
        disabledtext
        login_name
        realname
    );
    push(@cols, 'cryptpassword') if exists $self->{cryptpassword};
    return @cols;
};

118 119 120 121 122 123 124
################################################################################
# Functions
################################################################################

sub new {
    my $invocant = shift;
    my $class = ref($invocant) || $invocant;
125
    my ($param) = @_;
126

127 128 129
    my $user = DEFAULT_USER;
    bless ($user, $class);
    return $user unless $param;
130

131
    return $class->SUPER::new(@_);
132 133
}

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
sub update {
    my $self = shift;
    my $changes = $self->SUPER::update(@_);
    my $dbh = Bugzilla->dbh;

    if (exists $changes->{login_name}) {
        # If we changed the login, silently delete any tokens.
        $dbh->do('DELETE FROM tokens WHERE userid = ?', undef, $self->id);
        # And rederive regex groups
        $self->derive_regexp_groups();
    }

    # Logout the user if necessary.
    Bugzilla->logout_user($self) 
        if (exists $changes->{login_name} || exists $changes->{disabledtext}
            || exists $changes->{cryptpassword});

    # XXX Can update profiles_activity here as soon as it understands
    #     field names like login_name.

    return $changes;
}

157 158 159 160
################################################################################
# Validators
################################################################################

161 162
sub _check_disable_mail { return $_[1] ? 1 : 0; }
sub _check_disabledtext { return trim($_[1]) || ''; }
163 164 165 166

# This is public since createaccount.cgi needs to use it before issuing
# a token for account creation.
sub check_login_name_for_creation {
167
    my ($invocant, $name) = @_;
168 169 170 171
    $name = trim($name);
    $name || ThrowUserError('user_login_required');
    validate_email_syntax($name)
        || ThrowUserError('illegal_email_address', { addr => $name });
172 173 174 175 176 177 178

    # Check the name if it's a new user, or if we're changing the name.
    if (!ref($invocant) || $invocant->login ne $name) {
        is_available_username($name) 
            || ThrowUserError('account_exists', { email => $name });
    }

179 180 181 182
    return $name;
}

sub _check_password {
183
    my ($self, $pass) = @_;
184 185 186 187 188 189 190 191 192 193 194

    # If the password is '*', do not encrypt it or validate it further--we 
    # are creating a user who should not be able to log in using DB 
    # authentication.
    return $pass if $pass eq '*';

    validate_password($pass);
    my $cryptpassword = bz_crypt($pass);
    return $cryptpassword;
}

195
sub _check_realname { return trim($_[1]) || ''; }
196

197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
################################################################################
# Mutators
################################################################################

sub set_disabledtext { $_[0]->set('disabledtext', $_[1]); }
sub set_disable_mail { $_[0]->set('disable_mail', $_[1]); }

sub set_login {
    my ($self, $login) = @_;
    $self->set('login_name', $login);
    delete $self->{identity};
    delete $self->{nick};
}

sub set_name {
    my ($self, $name) = @_;
    $self->set('realname', $name);
    delete $self->{identity};
}

sub set_password { $_[0]->set('cryptpassword', $_[1]); }


220 221 222 223
################################################################################
# Methods
################################################################################

224
# Accessors for user attributes
225 226 227
sub name  { $_[0]->{realname};   }
sub login { $_[0]->{login_name}; }
sub email { $_[0]->login . Bugzilla->params->{'emailsuffix'}; }
228 229
sub disabledtext { $_[0]->{'disabledtext'}; }
sub is_disabled { $_[0]->disabledtext ? 1 : 0; }
230
sub showmybugslink { $_[0]->{showmybugslink}; }
231 232
sub email_disabled { $_[0]->{disable_mail}; }
sub email_enabled { !($_[0]->{disable_mail}); }
233

234 235 236
sub set_authorizer {
    my ($self, $authorizer) = @_;
    $self->{authorizer} = $authorizer;
237
}
238 239 240 241 242 243 244
sub authorizer {
    my ($self) = @_;
    if (!$self->{authorizer}) {
        require Bugzilla::Auth;
        $self->{authorizer} = new Bugzilla::Auth();
    }
    return $self->{authorizer};
245 246
}

247 248
# Generate a string to identify the user by name + login if the user
# has a name or by login only if she doesn't.
249 250 251
sub identity {
    my $self = shift;

252 253
    return "" unless $self->id;

254 255
    if (!defined $self->{identity}) {
        $self->{identity} = 
256
          $self->name ? $self->name . " <" . $self->login. ">" : $self->login;
257 258 259 260 261 262 263 264
    }

    return $self->{identity};
}

sub nick {
    my $self = shift;

265 266
    return "" unless $self->id;

267
    if (!defined $self->{nick}) {
268
        $self->{nick} = (split(/@/, $self->login, 2))[0];
269 270 271 272 273 274 275 276
    }

    return $self->{nick};
}

sub queries {
    my $self = shift;
    return $self->{queries} if defined $self->{queries};
277
    return [] unless $self->id;
278 279

    my $dbh = Bugzilla->dbh;
280 281 282 283 284 285
    my $query_ids = $dbh->selectcol_arrayref(
        'SELECT id FROM namedqueries WHERE userid = ?', undef, $self->id);
    require Bugzilla::Search::Saved;
    $self->{queries} = Bugzilla::Search::Saved->new_from_list($query_ids);
    return $self->{queries};
}
286

287 288 289 290
sub queries_subscribed {
    my $self = shift;
    return $self->{queries_subscribed} if defined $self->{queries_subscribed};
    return [] unless $self->id;
291

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
    # Exclude the user's own queries.
    my @my_query_ids = map($_->id, @{$self->queries});
    my $query_id_string = join(',', @my_query_ids) || '-1';

    # Only show subscriptions that we can still actually see. If a
    # user changes the shared group of a query, our subscription
    # will remain but we won't have access to the query anymore.
    my $subscribed_query_ids = Bugzilla->dbh->selectcol_arrayref(
        "SELECT lif.namedquery_id
           FROM namedqueries_link_in_footer lif
                INNER JOIN namedquery_group_map ngm
                ON ngm.namedquery_id = lif.namedquery_id
          WHERE lif.user_id = ? 
                AND lif.namedquery_id NOT IN ($query_id_string)
                AND ngm.group_id IN (" . $self->groups_as_string . ")",
          undef, $self->id);
    require Bugzilla::Search::Saved;
    $self->{queries_subscribed} =
        Bugzilla::Search::Saved->new_from_list($subscribed_query_ids);
    return $self->{queries_subscribed};
}
313

314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
sub queries_available {
    my $self = shift;
    return $self->{queries_available} if defined $self->{queries_available};
    return [] unless $self->id;

    # Exclude the user's own queries.
    my @my_query_ids = map($_->id, @{$self->queries});
    my $query_id_string = join(',', @my_query_ids) || '-1';

    my $avail_query_ids = Bugzilla->dbh->selectcol_arrayref(
        'SELECT namedquery_id FROM namedquery_group_map
          WHERE group_id IN (' . $self->groups_as_string . ")
                AND namedquery_id NOT IN ($query_id_string)");
    require Bugzilla::Search::Saved;
    $self->{queries_available} =
        Bugzilla::Search::Saved->new_from_list($avail_query_ids);
    return $self->{queries_available};
331 332
}

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
sub settings {
    my ($self) = @_;

    return $self->{'settings'} if (defined $self->{'settings'});

    # IF the user is logged in
    # THEN get the user's settings
    # ELSE get default settings
    if ($self->id) {
        $self->{'settings'} = get_all_settings($self->id);
    } else {
        $self->{'settings'} = get_defaults();
    }

    return $self->{'settings'};
}

350 351 352 353
sub flush_queries_cache {
    my $self = shift;

    delete $self->{queries};
354 355
    delete $self->{queries_subscribed};
    delete $self->{queries_available};
356 357 358 359 360 361
}

sub groups {
    my $self = shift;

    return $self->{groups} if defined $self->{groups};
362
    return {} unless $self->id;
363 364 365 366 367 368 369 370

    my $dbh = Bugzilla->dbh;
    my $groups = $dbh->selectcol_arrayref(q{SELECT DISTINCT groups.name, group_id
                                              FROM groups, user_group_map
                                             WHERE groups.id=user_group_map.group_id
                                               AND user_id=?
                                               AND isbless=0},
                                          { Columns=>[1,2] },
371
                                          $self->id);
372 373 374 375

    # The above gives us an arrayref [name, id, name, id, ...]
    # Convert that into a hashref
    my %groups = @$groups;
376 377
    my @groupidstocheck = values(%groups);
    my %groupidschecked = ();
378 379
    my $rows = $dbh->selectall_arrayref(
                "SELECT DISTINCT groups.name, groups.id, member_id
380 381 382
                            FROM group_group_map
                      INNER JOIN groups
                              ON groups.id = grantor_id
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
                           WHERE grant_type = " . GROUP_MEMBERSHIP);
    my %group_names = ();
    my %group_membership = ();
    foreach my $row (@$rows) {
        my ($member_name, $grantor_id, $member_id) = @$row; 
        # Just save the group names
        $group_names{$grantor_id} = $member_name;
        
        # And group membership
        push (@{$group_membership{$member_id}}, $grantor_id);
    }
    
    # Let's walk the groups hierarchy tree (using FIFO)
    # On the first iteration it's pre-filled with direct groups 
    # membership. Later on, each group can add its own members into the
    # FIFO. Circular dependencies are eliminated by checking
    # $groupidschecked{$member_id} hash values.
    # As a result, %groups will have all the groups we are the member of.
    while ($#groupidstocheck >= 0) {
        # Pop the head group from FIFO
        my $member_id = shift @groupidstocheck;
        
        # Skip the group if we have already checked it
        if (!$groupidschecked{$member_id}) {
            # Mark group as checked
            $groupidschecked{$member_id} = 1;
            
            # Add all its members to the FIFO check list
            # %group_membership contains arrays of group members 
            # for all groups. Accessible by group number.
            foreach my $newgroupid (@{$group_membership{$member_id}}) {
                push @groupidstocheck, $newgroupid 
                    if (!$groupidschecked{$newgroupid});
416
            }
417 418 419 420
            # Note on if clause: we could have group in %groups from 1st
            # query and do not have it in second one
            $groups{$group_names{$member_id}} = $member_id 
                if $group_names{$member_id} && $member_id;
421 422
        }
    }
423 424 425 426 427
    $self->{groups} = \%groups;

    return $self->{groups};
}

428 429 430 431 432
sub groups_as_string {
    my $self = shift;
    return (join(',',values(%{$self->groups})) || '-1');
}

433 434 435
sub bless_groups {
    my $self = shift;

436
    return $self->{'bless_groups'} if defined $self->{'bless_groups'};
437
    return [] unless $self->id;
438 439

    my $dbh = Bugzilla->dbh;
440 441 442
    my $query;
    my $connector;
    my @bindValues;
443

444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
    if ($self->in_group('editusers')) {
        # Users having editusers permissions may bless all groups.
        $query = 'SELECT DISTINCT id, name, description FROM groups';
        $connector = 'WHERE';
    }
    else {
        # Get all groups for the user where:
        #    + They have direct bless privileges
        #    + They are a member of a group that inherits bless privs.
        $query = q{
            SELECT DISTINCT groups.id, groups.name, groups.description
                       FROM groups, user_group_map, group_group_map AS ggm
                      WHERE user_group_map.user_id = ?
                        AND ((user_group_map.isbless = 1
                              AND groups.id=user_group_map.group_id)
                             OR (groups.id = ggm.grantor_id
                                 AND ggm.grant_type = ?
461 462 463
                                 AND ggm.member_id IN(} .
                                 $self->groups_as_string . 
                               q{)))};
464 465 466
        $connector = 'AND';
        @bindValues = ($self->id, GROUP_BLESS);
    }
467

468
    # If visibilitygroups are used, restrict the set of groups.
469 470 471
    if (!$self->in_group('editusers')
        && Bugzilla->params->{'usevisibilitygroups'}) 
    {
472 473 474 475 476 477 478 479 480 481
        # Users need to see a group in order to bless it.
        my $visibleGroups = join(', ', @{$self->visible_groups_direct()})
            || return $self->{'bless_groups'} = [];
        $query .= " $connector id in ($visibleGroups)";
    }

    $query .= ' ORDER BY name';

    return $self->{'bless_groups'} =
        $dbh->selectall_arrayref($query, {'Slice' => {}}, @bindValues);
482 483
}

484
sub in_group {
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
    my ($self, $group, $product_id) = @_;
    if (exists $self->groups->{$group}) {
        return 1;
    }
    elsif ($product_id && detaint_natural($product_id)) {
        # Make sure $group exists on a per-product basis.
        return 0 unless (grep {$_ eq $group} PER_PRODUCT_PRIVILEGES);

        $self->{"product_$product_id"} = {} unless exists $self->{"product_$product_id"};
        if (!defined $self->{"product_$product_id"}->{$group}) {
            my $dbh = Bugzilla->dbh;
            my $in_group = $dbh->selectrow_array(
                           "SELECT 1
                              FROM group_control_map
                             WHERE product_id = ?
                                   AND $group != 0
                                   AND group_id IN (" . $self->groups_as_string . ") " .
                              $dbh->sql_limit(1),
                             undef, $product_id);

            $self->{"product_$product_id"}->{$group} = $in_group ? 1 : 0;
        }
        return $self->{"product_$product_id"}->{$group};
    }
    # If we come here, then the user is not in the requested group.
    return 0;
511
}
512

513 514 515 516
sub in_group_id {
    my ($self, $id) = @_;
    my %j = reverse(%{$self->groups});
    return exists $j{$id} ? 1 : 0;
517 518
}

519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
sub get_products_by_permission {
    my ($self, $group) = @_;
    # Make sure $group exists on a per-product basis.
    return [] unless (grep {$_ eq $group} PER_PRODUCT_PRIVILEGES);

    my $product_ids = Bugzilla->dbh->selectcol_arrayref(
                          "SELECT DISTINCT product_id
                             FROM group_control_map
                            WHERE $group != 0
                              AND group_id IN(" . $self->groups_as_string . ")");

    # No need to go further if the user has no "special" privs.
    return [] unless scalar(@$product_ids);

    # We will restrict the list to products the user can see.
    my $selectable_products = $self->get_selectable_products;
    my @products = grep {lsearch($product_ids, $_->id) > -1} @$selectable_products;
    return \@products;
}

539 540 541 542
sub can_see_user {
    my ($self, $otherUser) = @_;
    my $query;

543
    if (Bugzilla->params->{'usevisibilitygroups'}) {
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
        # If the user can see no groups, then no users are visible either.
        my $visibleGroups = $self->visible_groups_as_string() || return 0;
        $query = qq{SELECT COUNT(DISTINCT userid)
                    FROM profiles, user_group_map
                    WHERE userid = ?
                    AND user_id = userid
                    AND isbless = 0
                    AND group_id IN ($visibleGroups)
                   };
    } else {
        $query = qq{SELECT COUNT(userid)
                    FROM profiles
                    WHERE userid = ?
                   };
    }
    return Bugzilla->dbh->selectrow_array($query, undef, $otherUser->id);
}

562 563 564
sub can_edit_product {
    my ($self, $prod_id) = @_;
    my $dbh = Bugzilla->dbh;
565 566 567 568 569 570 571 572 573 574

    my $has_external_groups =
      $dbh->selectrow_array('SELECT 1
                               FROM group_control_map
                              WHERE product_id = ?
                                AND canedit != 0
                                AND group_id NOT IN(' . $self->groups_as_string . ')',
                             undef, $prod_id);

    return !$has_external_groups;
575 576
}

577 578 579 580
sub can_see_bug {
    my ($self, $bugid) = @_;
    my $dbh = Bugzilla->dbh;
    my $sth  = $self->{sthCanSeeBug};
581
    my $userid  = $self->id;
582 583 584 585 586
    # Get fields from bug, presence of user on cclist, and determine if
    # the user is missing any groups required by the bug. The prepared query
    # is cached because this may be called for every row in buglists or
    # every bug in a dependency list.
    unless ($sth) {
587
        $sth = $dbh->prepare("SELECT 1, reporter, assigned_to, qa_contact,
588 589 590 591 592 593 594 595 596
                             reporter_accessible, cclist_accessible,
                             COUNT(cc.who), COUNT(bug_group_map.bug_id)
                             FROM bugs
                             LEFT JOIN cc 
                               ON cc.bug_id = bugs.bug_id
                               AND cc.who = $userid
                             LEFT JOIN bug_group_map 
                               ON bugs.bug_id = bug_group_map.bug_id
                               AND bug_group_map.group_ID NOT IN(" .
597
                               $self->groups_as_string .
598 599
                               ") WHERE bugs.bug_id = ? 
                               AND creation_ts IS NOT NULL " .
600 601 602
                             $dbh->sql_group_by('bugs.bug_id', 'reporter, ' .
                             'assigned_to, qa_contact, reporter_accessible, ' .
                             'cclist_accessible'));
603 604
    }
    $sth->execute($bugid);
605
    my ($ready, $reporter, $owner, $qacontact, $reporter_access, $cclist_access,
606
        $isoncclist, $missinggroup) = $sth->fetchrow_array();
607
    $sth->finish;
608
    $self->{sthCanSeeBug} = $sth;
609 610
    return ($ready
            && ((($reporter == $userid) && $reporter_access)
611 612
                || (Bugzilla->params->{'useqacontact'} 
                    && $qacontact && ($qacontact == $userid))
613 614 615
                || ($owner == $userid)
                || ($isoncclist && $cclist_access)
                || (!$missinggroup)));
616 617
}

618 619 620 621 622 623
sub can_see_product {
    my ($self, $product_name) = @_;

    return scalar(grep {$_->name eq $product_name} @{$self->get_selectable_products});
}

624
sub get_selectable_products {
625
    my $self = shift;
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
    my $class_id = shift;
    my $class_restricted = Bugzilla->params->{'useclassification'} && $class_id;

    if (!defined $self->{selectable_products}) {
        my $query = "SELECT id " .
                    "  FROM products " .
                 "LEFT JOIN group_control_map " .
                    "    ON group_control_map.product_id = products.id ";
        if (Bugzilla->params->{'useentrygroupdefault'}) {
            $query .= " AND group_control_map.entry != 0 ";
        } else {
            $query .= " AND group_control_map.membercontrol = " . CONTROLMAPMANDATORY;
        }
        $query .= "     AND group_id NOT IN(" . $self->groups_as_string . ") " .
                  "   WHERE group_id IS NULL " .
                  "ORDER BY name";
642

643 644
        my $prod_ids = Bugzilla->dbh->selectcol_arrayref($query);
        $self->{selectable_products} = Bugzilla::Product->new_from_list($prod_ids);
645 646
    }

647 648 649
    # Restrict the list of products to those being in the classification, if any.
    if ($class_restricted) {
        return [grep {$_->classification_id == $class_id} @{$self->{selectable_products}}];
650
    }
651
    # If we come here, then we want all selectable products.
652
    return $self->{selectable_products};
653 654
}

655
sub get_selectable_classifications {
656 657 658 659 660
    my ($self) = @_;

    if (defined $self->{selectable_classifications}) {
        return $self->{selectable_classifications};
    }
661 662 663 664 665

    my $products = $self->get_selectable_products;

    my $class;
    foreach my $product (@$products) {
666 667
        $class->{$product->classification_id} ||= 
            new Bugzilla::Classification($product->classification_id);
668
    }
669 670
    my @sorted_class = sort {$a->sortkey <=> $b->sortkey 
                             || lc($a->name) cmp lc($b->name)} (values %$class);
671
    $self->{selectable_classifications} = \@sorted_class;
672 673 674
    return $self->{selectable_classifications};
}

675 676 677 678 679
sub can_enter_product {
    my ($self, $product_name, $warn) = @_;
    my $dbh = Bugzilla->dbh;

    if (!defined($product_name)) {
680
        return unless $warn == THROW_ERROR;
681 682 683
        ThrowUserError('no_products');
    }
    trick_taint($product_name);
684 685
    my $can_enter =
        grep($_->name eq $product_name, @{$self->get_enterable_products});
686

687 688 689
    return 1 if $can_enter;

    return 0 unless $warn == THROW_ERROR;
690

691 692 693 694 695 696 697 698 699 700 701
    # Check why access was denied. These checks are slow,
    # but that's fine, because they only happen if we fail.

    my $product = new Bugzilla::Product({name => $product_name});

    # The product could not exist or you could be denied...
    if (!$product || !$product->user_has_access($self)) {
        ThrowUserError('entry_access_denied', {product => $product_name});
    }
    # It could be closed for bug entry...
    elsif ($product->disallow_new) {
702
        ThrowUserError('product_disabled', {product => $product});
703
    }
704 705
    # It could have no components...
    elsif (!@{$product->components}) {
706
        ThrowUserError('missing_component', {product => $product});
707 708 709
    }
    # It could have no versions...
    elsif (!@{$product->versions}) {
710
        ThrowUserError ('missing_version', {product => $product});
711 712 713
    }

    die "can_enter_product reached an unreachable location.";
714 715 716 717
}

sub get_enterable_products {
    my $self = shift;
718
    my $dbh = Bugzilla->dbh;
719 720 721 722 723

    if (defined $self->{enterable_products}) {
        return $self->{enterable_products};
    }

724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
     # All products which the user has "Entry" access to.
     my @enterable_ids =@{$dbh->selectcol_arrayref(
           'SELECT products.id FROM products
         LEFT JOIN group_control_map
                   ON group_control_map.product_id = products.id
                      AND group_control_map.entry != 0
                      AND group_id NOT IN (' . $self->groups_as_string . ')
            WHERE group_id IS NULL
                  AND products.disallownew = 0') || []};

    if (@enterable_ids) {
        # And all of these products must have at least one component
        # and one version.
        @enterable_ids = @{$dbh->selectcol_arrayref(
               'SELECT DISTINCT products.id FROM products
            INNER JOIN components ON components.product_id = products.id
            INNER JOIN versions ON versions.product_id = products.id
                 WHERE products.id IN (' . (join(',', @enterable_ids)) .
            ')') || []};
743
    }
744 745 746

    $self->{enterable_products} =
         Bugzilla::Product->new_from_list(\@enterable_ids);
747 748 749
    return $self->{enterable_products};
}

750 751 752 753 754 755 756 757 758 759 760
sub get_accessible_products {
    my $self = shift;
    
    # Map the objects into a hash using the ids as keys
    my %products = map { $_->id => $_ }
                       @{$self->get_selectable_products},
                       @{$self->get_enterable_products};
    
    return [ values %products ];
}

761 762 763 764 765 766 767 768
sub check_can_admin_product {
    my ($self, $product_name) = @_;

    # First make sure the product name is valid.
    my $product = Bugzilla::Product::check_product($product_name);

    ($self->in_group('editcomponents', $product->id)
       && $self->can_see_product($product->name))
769
         || ThrowUserError('product_admin_denied', {product => $product->name});
770 771 772 773 774

    # Return the validated product object.
    return $product;
}

775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
sub can_request_flag {
    my ($self, $flag_type) = @_;

    return ($self->can_set_flag($flag_type)
            || !$flag_type->request_group
            || $self->in_group_id($flag_type->request_group->id)) ? 1 : 0;
}

sub can_set_flag {
    my ($self, $flag_type) = @_;

    return (!$flag_type->grant_group
            || $self->in_group_id($flag_type->grant_group->id)) ? 1 : 0;
}

790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
sub direct_group_membership {
    my $self = shift;
    my $dbh = Bugzilla->dbh;

    if (!$self->{'direct_group_membership'}) {
        my $gid = $dbh->selectcol_arrayref('SELECT id
                                              FROM groups
                                        INNER JOIN user_group_map
                                                ON groups.id = user_group_map.group_id
                                             WHERE user_id = ?
                                               AND isbless = 0',
                                             undef, $self->id);
        $self->{'direct_group_membership'} = Bugzilla::Group->new_from_list($gid);
    }
    return $self->{'direct_group_membership'};
}


808 809 810 811 812
# visible_groups_inherited returns a reference to a list of all the groups
# whose members are visible to this user.
sub visible_groups_inherited {
    my $self = shift;
    return $self->{visible_groups_inherited} if defined $self->{visible_groups_inherited};
813
    return [] unless $self->id;
814
    my @visgroups = @{$self->visible_groups_direct};
815
    @visgroups = @{$self->flatten_group_membership(@visgroups)};
816 817 818 819 820 821 822 823 824 825
    $self->{visible_groups_inherited} = \@visgroups;
    return $self->{visible_groups_inherited};
}

# visible_groups_direct returns a reference to a list of all the groups that
# are visible to this user.
sub visible_groups_direct {
    my $self = shift;
    my @visgroups = ();
    return $self->{visible_groups_direct} if defined $self->{visible_groups_direct};
826
    return [] unless $self->id;
827 828

    my $dbh = Bugzilla->dbh;
829 830 831 832 833 834 835 836 837 838 839 840 841
    my $sth;
   
    if (Bugzilla->params->{'usevisibilitygroups'}) {
        my $glist = join(',',(-1,values(%{$self->groups})));
        $sth = $dbh->prepare("SELECT DISTINCT grantor_id
                                 FROM group_group_map
                                WHERE member_id IN($glist)
                                  AND grant_type=" . GROUP_VISIBLE);
    }
    else {
        # All groups are visible if usevisibilitygroups is off.
        $sth = $dbh->prepare('SELECT id FROM groups');
    }
842 843 844 845 846 847 848 849 850 851
    $sth->execute();

    while (my ($row) = $sth->fetchrow_array) {
        push @visgroups,$row;
    }
    $self->{visible_groups_direct} = \@visgroups;

    return $self->{visible_groups_direct};
}

852 853 854 855 856
sub visible_groups_as_string {
    my $self = shift;
    return join(', ', @{$self->visible_groups_inherited()});
}

857 858 859 860 861
# This function defines the groups a user may share a query with.
# More restrictive sites may want to build this reference to a list of group IDs
# from bless_groups instead of mirroring visible_groups_inherited, perhaps.
sub queryshare_groups {
    my $self = shift;
862 863 864 865
    my @queryshare_groups;

    return $self->{queryshare_groups} if defined $self->{queryshare_groups};

866
    if ($self->in_group(Bugzilla->params->{'querysharegroup'})) {
867 868 869 870 871 872 873 874 875 876 877 878
        # We want to be allowed to share with groups we're in only.
        # If usevisibilitygroups is on, then we need to restrict this to groups
        # we may see.
        if (Bugzilla->params->{'usevisibilitygroups'}) {
            foreach(@{$self->visible_groups_inherited()}) {
                next unless $self->in_group_id($_);
                push(@queryshare_groups, $_);
            }
        }
        else {
            @queryshare_groups = values(%{$self->groups});
        }
879
    }
880 881

    return $self->{queryshare_groups} = \@queryshare_groups;
882 883 884 885 886 887 888
}

sub queryshare_groups_as_string {
    my $self = shift;
    return join(', ', @{$self->queryshare_groups()});
}

889 890
sub derive_regexp_groups {
    my ($self) = @_;
891 892

    my $id = $self->id;
893
    return unless $id;
894 895 896 897 898 899 900

    my $dbh = Bugzilla->dbh;

    my $sth;

    # add derived records for any matching regexps

901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
    $sth = $dbh->prepare("SELECT id, userregexp, user_group_map.group_id
                            FROM groups
                       LEFT JOIN user_group_map
                              ON groups.id = user_group_map.group_id
                             AND user_group_map.user_id = ?
                             AND user_group_map.grant_type = ?");
    $sth->execute($id, GRANT_REGEXP);

    my $group_insert = $dbh->prepare(q{INSERT INTO user_group_map
                                       (user_id, group_id, isbless, grant_type)
                                       VALUES (?, ?, 0, ?)});
    my $group_delete = $dbh->prepare(q{DELETE FROM user_group_map
                                       WHERE user_id = ?
                                         AND group_id = ?
                                         AND isbless = 0
                                         AND grant_type = ?});
    while (my ($group, $regexp, $present) = $sth->fetchrow_array()) {
918
        if (($regexp ne '') && ($self->login =~ m/$regexp/i)) {
919 920 921
            $group_insert->execute($id, $group, GRANT_REGEXP) unless $present;
        } else {
            $group_delete->execute($id, $group, GRANT_REGEXP) if $present;
922 923 924 925
        }
    }
}

926 927
sub product_responsibilities {
    my $self = shift;
928
    my $dbh = Bugzilla->dbh;
929 930 931 932

    return $self->{'product_resp'} if defined $self->{'product_resp'};
    return [] unless $self->id;

933 934 935 936 937
    my $list = $dbh->selectall_arrayref('SELECT product_id, id
                                           FROM components
                                          WHERE initialowner = ?
                                             OR initialqacontact = ?',
                                  {Slice => {}}, ($self->id, $self->id));
938

939 940 941 942 943 944 945
    unless ($list) {
        $self->{'product_resp'} = [];
        return $self->{'product_resp'};
    }

    my @prod_ids = map {$_->{'product_id'}} @$list;
    my $products = Bugzilla::Product->new_from_list(\@prod_ids);
946 947
    # We cannot |use| it, because Component.pm already |use|s User.pm.
    require Bugzilla::Component;
948 949 950 951 952 953 954 955 956 957 958 959
    my @comp_ids = map {$_->{'id'}} @$list;
    my $components = Bugzilla::Component->new_from_list(\@comp_ids);

    my @prod_list;
    # @$products is already sorted alphabetically.
    foreach my $prod (@$products) {
        # We use @components instead of $prod->components because we only want
        # components where the user is either the default assignee or QA contact.
        push(@prod_list, {product    => $prod,
                          components => [grep {$_->product_id == $prod->id} @$components]});
    }
    $self->{'product_resp'} = \@prod_list;
960
    return $self->{'product_resp'};
961 962
}

963 964 965
sub can_bless {
    my $self = shift;

966 967 968
    if (!scalar(@_)) {
        # If we're called without an argument, just return 
        # whether or not we can bless at all.
969
        return scalar(@{$self->bless_groups}) ? 1 : 0;
970 971
    }

972
    # Otherwise, we're checking a specific group
973 974
    my $group_id = shift;
    return (grep {$$_{'id'} eq $group_id} (@{$self->bless_groups})) ? 1 : 0;
975 976
}

977
sub flatten_group_membership {
978
    my ($self, @groups) = @_;
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997

    my $dbh = Bugzilla->dbh;
    my $sth;
    my @groupidstocheck = @groups;
    my %groupidschecked = ();
    $sth = $dbh->prepare("SELECT member_id FROM group_group_map
                             WHERE grantor_id = ? 
                               AND grant_type = " . GROUP_MEMBERSHIP);
    while (my $node = shift @groupidstocheck) {
        $sth->execute($node);
        my $member;
        while (($member) = $sth->fetchrow_array) {
            if (!$groupidschecked{$member}) {
                $groupidschecked{$member} = 1;
                push @groupidstocheck, $member;
                push @groups, $member unless grep $_ == $member, @groups;
            }
        }
    }
998
    return \@groups;
999 1000
}

1001 1002
sub match {
    # Generates a list of users whose login name (email address) or real name
1003
    # matches a substring or wildcard.
1004 1005
    # This is also called if matches are disabled (for error checking), but
    # in this case only the exact match code will end up running.
1006

1007
    # $str contains the string to match, while $limit contains the
1008 1009
    # maximum number of records to retrieve.
    my ($str, $limit, $exclude_disabled) = @_;
1010 1011
    my $user = Bugzilla->user;
    my $dbh = Bugzilla->dbh;
1012

1013
    my @users = ();
1014 1015
    return \@users if $str =~ /^\s*$/;

1016
    # The search order is wildcards, then exact match, then substring search.
1017 1018 1019 1020 1021 1022 1023
    # Wildcard matching is skipped if there is no '*', and exact matches will
    # not (?) have a '*' in them.  If any search comes up with something, the
    # ones following it will not execute.

    # first try wildcards
    my $wildstr = $str;

1024 1025 1026 1027
    if ($wildstr =~ s/\*/\%/g # don't do wildcards if no '*' in the string
        # or if we only want exact matches
        && Bugzilla->params->{'usermatchmode'} ne 'off') 
    {
1028 1029

        # Build the query.
1030 1031
        trick_taint($wildstr);
        my $query  = "SELECT DISTINCT login_name FROM profiles ";
1032
        if (Bugzilla->params->{'usevisibilitygroups'}) {
1033 1034
            $query .= "INNER JOIN user_group_map
                               ON user_group_map.user_id = profiles.userid ";
1035
        }
1036 1037 1038
        $query .= "WHERE ("
            . $dbh->sql_istrcmp('login_name', '?', "LIKE") . " OR " .
              $dbh->sql_istrcmp('realname', '?', "LIKE") . ") ";
1039
        if (Bugzilla->params->{'usevisibilitygroups'}) {
1040
            $query .= "AND isbless = 0 " .
1041
                      "AND group_id IN(" .
1042
                      join(', ', (-1, @{$user->visible_groups_inherited})) . ") ";
1043 1044
        }
        $query    .= " AND disabledtext = '' " if $exclude_disabled;
1045
        $query    .= " ORDER BY login_name ";
1046
        $query    .= $dbh->sql_limit($limit) if $limit;
1047 1048 1049

        # Execute the query, retrieve the results, and make them into
        # User objects.
1050 1051
        my $user_logins = $dbh->selectcol_arrayref($query, undef, ($wildstr, $wildstr));
        foreach my $login_name (@$user_logins) {
1052
            push(@users, new Bugzilla::User({ name => $login_name }));
1053
        }
1054 1055
    }
    else {    # try an exact match
1056
        # Exact matches don't care if a user is disabled.
1057 1058 1059 1060
        trick_taint($str);
        my $user_id = $dbh->selectrow_array('SELECT userid FROM profiles
                                             WHERE ' . $dbh->sql_istrcmp('login_name', '?'),
                                             undef, $str);
1061

1062
        push(@users, new Bugzilla::User($user_id)) if $user_id;
1063 1064
    }

1065
    # then try substring search
1066
    if ((scalar(@users) == 0)
1067
        && (Bugzilla->params->{'usermatchmode'} eq 'search')
1068 1069
        && (length($str) >= 3))
    {
1070 1071
        $str = lc($str);
        trick_taint($str);
1072

1073
        my $query   = "SELECT DISTINCT login_name FROM profiles ";
1074
        if (Bugzilla->params->{'usevisibilitygroups'}) {
1075 1076
            $query .= "INNER JOIN user_group_map
                               ON user_group_map.user_id = profiles.userid ";
1077
        }
1078
        $query     .= " WHERE (" .
1079 1080
                $dbh->sql_position('?', 'LOWER(login_name)') . " > 0" . " OR " .
                $dbh->sql_position('?', 'LOWER(realname)') . " > 0) ";
1081
        if (Bugzilla->params->{'usevisibilitygroups'}) {
1082
            $query .= " AND isbless = 0" .
1083
                      " AND group_id IN(" .
1084
                join(', ', (-1, @{$user->visible_groups_inherited})) . ") ";
1085
        }
1086 1087 1088
        $query     .= " AND disabledtext = '' " if $exclude_disabled;
        $query    .= " ORDER BY login_name ";
        $query     .= $dbh->sql_limit($limit) if $limit;
1089

1090 1091
        my $user_logins = $dbh->selectcol_arrayref($query, undef, ($str, $str));
        foreach my $login_name (@$user_logins) {
1092
            push(@users, new Bugzilla::User({ name => $login_name }));
1093 1094
        }
    }
1095 1096 1097
    return \@users;
}

1098 1099 1100 1101 1102
# match_field() is a CGI wrapper for the match() function.
#
# Here's what it does:
#
# 1. Accepts a list of fields along with whether they may take multiple values
1103 1104
# 2. Takes the values of those fields from the first parameter, a $cgi object 
#    and passes them to match()
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
# 3. Checks the results of the match and displays confirmation or failure
#    messages as appropriate.
#
# The confirmation screen functions the same way as verify-new-product and
# confirm-duplicate, by rolling all of the state information into a
# form which is passed back, but in this case the searched fields are
# replaced with the search results.
#
# The act of displaying the confirmation or failure messages means it must
# throw a template and terminate.  When confirmation is sent, all of the
# searchable fields have been replaced by exact fields and the calling script
# is executed as normal.
#
1118 1119 1120 1121 1122
# You also have the choice of *never* displaying the confirmation screen.
# In this case, match_field will return one of the three USER_MATCH 
# constants described in the POD docs. To make match_field behave this
# way, pass in MATCH_SKIP_CONFIRM as the third argument.
#
1123 1124 1125 1126 1127 1128 1129 1130 1131
# match_field must be called early in a script, before anything external is
# done with the form data.
#
# In order to do a simple match without dealing with templates, confirmation,
# or globals, simply calling Bugzilla::User::match instead will be
# sufficient.

# How to call it:
#
1132
# Bugzilla::User::match_field($cgi, {
1133 1134 1135 1136 1137 1138 1139 1140 1141
#   'field_name'    => { 'type' => fieldtype },
#   'field_name2'   => { 'type' => fieldtype },
#   [...]
# });
#
# fieldtype can be either 'single' or 'multi'.
#

sub match_field {
1142 1143
    my $cgi          = shift;   # CGI object to look up fields in
    my $fields       = shift;   # arguments as a hash
1144
    my $behavior     = shift || 0; # A constant that tells us how to act
1145 1146 1147
    my $matches      = {};      # the values sent to the template
    my $matchsuccess = 1;       # did the match fail?
    my $need_confirm = 0;       # whether to display confirmation screen
1148
    my $match_multiple = 0;     # whether we ever matched more than one user
1149

1150 1151
    my $params = Bugzilla->params;

1152 1153
    # prepare default form values

1154
    # What does a "--do_not_change--" field look like (if any)?
1155
    my $dontchange = $cgi->param('dontchange');
1156

1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
    # Fields can be regular expressions matching multiple form fields
    # (f.e. "requestee-(\d+)"), so expand each non-literal field
    # into the list of form fields it matches.
    my $expanded_fields = {};
    foreach my $field_pattern (keys %{$fields}) {
        # Check if the field has any non-word characters.  Only those fields
        # can be regular expressions, so don't expand the field if it doesn't
        # have any of those characters.
        if ($field_pattern =~ /^\w+$/) {
            $expanded_fields->{$field_pattern} = $fields->{$field_pattern};
        }
        else {
1169
            my @field_names = grep(/$field_pattern/, $cgi->param());
1170 1171 1172 1173
            foreach my $field_name (@field_names) {
                $expanded_fields->{$field_name} = 
                  { type => $fields->{$field_pattern}->{'type'} };
                
1174 1175 1176
                # The field is a requestee field; in order for its name 
                # to show up correctly on the confirmation page, we need 
                # to find out the name of its flag type.
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
                if ($field_name =~ /^requestee(_type)?-(\d+)$/) {
                    my $flag_type;
                    if ($1) {
                        require Bugzilla::FlagType;
                        $flag_type = new Bugzilla::FlagType($2);
                    }
                    else {
                        require Bugzilla::Flag;
                        my $flag = new Bugzilla::Flag($2);
                        $flag_type = $flag->type if $flag;
                    }
                    if ($flag_type) {
                        $expanded_fields->{$field_name}->{'flag_type'} = $flag_type;
                    }
                    else {
                        # No need to look for a valid requestee if the flag(type)
                        # has been deleted (may occur in race conditions).
                        delete $expanded_fields->{$field_name};
                        $cgi->delete($field_name);
                    }
1197 1198 1199 1200 1201 1202
                }
            }
        }
    }
    $fields = $expanded_fields;

1203 1204 1205 1206 1207
    for my $field (keys %{$fields}) {

        # Tolerate fields that do not exist.
        #
        # This is so that fields like qa_contact can be specified in the code
1208
        # and it won't break if the CGI object does not know about them.
1209 1210 1211 1212
        #
        # It has the side-effect that if a bad field name is passed it will be
        # quietly ignored rather than raising a code error.

1213
        next if !defined $cgi->param($field);
1214

1215
        # Skip it if this is a --do_not_change-- field
1216
        next if $dontchange && $dontchange eq $cgi->param($field);
1217

1218
        # We need to move the query to $raw_field, where it will be split up,
1219
        # modified by the search, and put back into the CGI environment
1220 1221
        # incrementally.

1222 1223 1224
        my $raw_field = join(" ", $cgi->param($field));

        # When we add back in values later, it matters that we delete
1225
        # the field here, and not set it to '', so that we will add
1226
        # things to an empty list, and not to a list containing one
1227
        # empty string.
1228 1229
        # If the field accepts only one match (type eq "single") and
        # no match or more than one match is found for this field,
1230 1231
        # we will set it back to '' so that the field remains defined
        # outside this function (it was if we came here; else we would
1232 1233 1234
        # have returned earlier above).
        # If the field accepts several matches (type eq "multi") and no match
        # is found, we leave this field undefined (= empty array).
1235
        $cgi->delete($field);
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256

        my @queries = ();

        # Now we either split $raw_field by spaces/commas and put the list
        # into @queries, or in the case of fields which only accept single
        # entries, we simply use the verbatim text.

        $raw_field =~ s/^\s+|\s+$//sg;  # trim leading/trailing space

        # single field
        if ($fields->{$field}->{'type'} eq 'single') {
            @queries = ($raw_field) unless $raw_field =~ /^\s*$/;

        # multi-field
        }
        elsif ($fields->{$field}->{'type'} eq 'multi') {
            @queries =  split(/[\s,]+/, $raw_field);

        }
        else {
            # bad argument
1257 1258 1259 1260
            ThrowCodeError('bad_arg',
                           { argument => $fields->{$field}->{'type'},
                             function =>  'Bugzilla::User::match_field',
                           });
1261 1262
        }

1263
        my $limit = 0;
1264 1265
        if ($params->{'maxusermatches'}) {
            $limit = $params->{'maxusermatches'} + 1;
1266 1267
        }

1268 1269 1270
        for my $query (@queries) {

            my $users = match(
1271 1272 1273
                $query,   # match string
                $limit,   # match limit
                1         # exclude_disabled
1274 1275 1276 1277
            );

            # skip confirmation for exact matches
            if ((scalar(@{$users}) == 1)
1278 1279
                && (lc(@{$users}[0]->login) eq lc($query)))

1280
            {
1281
                $cgi->append(-name=>$field,
1282
                             -values=>[@{$users}[0]->login]);
1283

1284 1285 1286
                next;
            }

1287 1288
            $matches->{$field}->{$query}->{'users'}  = $users;
            $matches->{$field}->{$query}->{'status'} = 'success';
1289 1290 1291

            # here is where it checks for multiple matches

1292
            if (scalar(@{$users}) == 1) { # exactly one match
1293 1294

                $cgi->append(-name=>$field,
1295
                             -values=>[@{$users}[0]->login]);
1296

1297
                $need_confirm = 1 if $params->{'confirmuniqueusermatch'};
1298 1299 1300

            }
            elsif ((scalar(@{$users}) > 1)
1301
                    && ($params->{'maxusermatches'} != 1)) {
1302
                $need_confirm = 1;
1303
                $match_multiple = 1;
1304

1305 1306
                if (($params->{'maxusermatches'})
                   && (scalar(@{$users}) > $params->{'maxusermatches'}))
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
                {
                    $matches->{$field}->{$query}->{'status'} = 'trunc';
                    pop @{$users};  # take the last one out
                }

            }
            else {
                # everything else fails
                $matchsuccess = 0; # fail
                $matches->{$field}->{$query}->{'status'} = 'fail';
                $need_confirm = 1;  # confirmation screen shows failures
            }
        }
1320
        # Above, we deleted the field before adding matches. If no match
1321 1322
        # or more than one match has been found for a field expecting only
        # one match (type eq "single"), we set it back to '' so
1323 1324
        # that the caller of this function can still check whether this
        # field was defined or not (and it was if we came here).
1325 1326 1327 1328
        if (!defined $cgi->param($field)
            && $fields->{$field}->{'type'} eq 'single') {
            $cgi->param($field, '');
        }
1329 1330
    }

1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
    my $retval;
    if (!$matchsuccess) {
        $retval = USER_MATCH_FAILED;
    }
    elsif ($match_multiple) {
        $retval = USER_MATCH_MULTIPLE;
    }
    else {
        $retval = USER_MATCH_SUCCESS;
    }

    # Skip confirmation if we were told to, or if we don't need to confirm.
    return $retval if ($behavior == MATCH_SKIP_CONFIRM || !$need_confirm);
1344

1345 1346 1347
    my $template = Bugzilla->template;
    my $vars = {};

1348
    $vars->{'script'}        = Bugzilla->cgi->url(-relative => 1); # for self-referencing URLs
1349
    $vars->{'fields'}        = $fields; # fields being matched
1350 1351
    $vars->{'matches'}       = $matches; # matches that were made
    $vars->{'matchsuccess'}  = $matchsuccess; # continue or fail
1352
    $vars->{'matchmultiple'} = $match_multiple;
1353

1354
    print Bugzilla->cgi->header();
1355

1356 1357
    $template->process("global/confirm-user-match.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
1358 1359 1360 1361 1362

    exit;

}

1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
# Changes in some fields automatically trigger events. The 'field names' are
# from the fielddefs table. We really should be using proper field names 
# throughout.
our %names_to_events = (
    'Resolution'             => EVT_OPENED_CLOSED,
    'Keywords'               => EVT_KEYWORD,
    'CC'                     => EVT_CC,
    'Severity'               => EVT_PROJ_MANAGEMENT,
    'Priority'               => EVT_PROJ_MANAGEMENT,
    'Status'                 => EVT_PROJ_MANAGEMENT,
    'Target Milestone'       => EVT_PROJ_MANAGEMENT,
    'Attachment description' => EVT_ATTACHMENT_DATA,
    'Attachment mime type'   => EVT_ATTACHMENT_DATA,
1376
    'Attachment is patch'    => EVT_ATTACHMENT_DATA,
1377 1378
    'Depends on'             => EVT_DEPEND_BLOCK,
    'Blocks'                 => EVT_DEPEND_BLOCK);
1379 1380 1381 1382

# Returns true if the user wants mail for a given bug change.
# Note: the "+" signs before the constants suppress bareword quoting.
sub wants_bug_mail {
1383
    my $self = shift;
1384 1385
    my ($bug_id, $relationship, $fieldDiffs, $commentField, $dependencyText,
        $changer, $bug_is_new) = @_;
1386 1387 1388 1389 1390

    # Make a list of the events which have happened during this bug change,
    # from the point of view of this user.    
    my %events;    
    foreach my $ref (@$fieldDiffs) {
1391
        my ($who, $whoname, $fieldName, $when, $old, $new) = @$ref;
1392 1393 1394 1395 1396 1397
        # A change to any of the above fields sets the corresponding event
        if (defined($names_to_events{$fieldName})) {
            $events{$names_to_events{$fieldName}} = 1;
        }
        else {
            # Catch-all for any change not caught by a more specific event
1398
            $events{+EVT_OTHER} = 1;            
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
        }

        # If the user is in a particular role and the value of that role
        # changed, we need the ADDED_REMOVED event.
        if (($fieldName eq "AssignedTo" && $relationship == REL_ASSIGNEE) ||
            ($fieldName eq "QAContact" && $relationship == REL_QA)) 
        {
            $events{+EVT_ADDED_REMOVED} = 1;
        }
        
        if ($fieldName eq "CC") {
            my $login = $self->login;
1411 1412
            my $inold = ($old =~ /^(.*,\s*)?\Q$login\E(,.*)?$/);
            my $innew = ($new =~ /^(.*,\s*)?\Q$login\E(,.*)?$/);
1413 1414 1415 1416 1417 1418 1419
            if ($inold != $innew)
            {
                $events{+EVT_ADDED_REMOVED} = 1;
            }
        }
    }

1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
    # You role is new if the bug itself is.
    # Only makes sense for the assignee, QA contact and the CC list.
    if ($bug_is_new
        && ($relationship == REL_ASSIGNEE
            || $relationship == REL_QA
            || $relationship == REL_CC))
    {
        $events{+EVT_ADDED_REMOVED} = 1;
    }

1430 1431 1432 1433 1434 1435
    if ($commentField =~ /Created an attachment \(/) {
        $events{+EVT_ATTACHMENT} = 1;
    }
    elsif ($commentField ne '') {
        $events{+EVT_COMMENT} = 1;
    }
1436
    
1437 1438 1439 1440 1441 1442
    # Dependent changed bugmails must have an event to ensure the bugmail is
    # emailed.
    if ($dependencyText ne '') {
        $events{+EVT_DEPEND_BLOCK} = 1;
    }

1443
    my @event_list = keys %events;
1444
    
1445 1446 1447 1448 1449 1450 1451
    my $wants_mail = $self->wants_mail(\@event_list, $relationship);

    # The negative events are handled separately - they can't be incorporated
    # into the first wants_mail call, because they are of the opposite sense.
    # 
    # We do them separately because if _any_ of them are set, we don't want
    # the mail.
1452
    if ($wants_mail && $changer && ($self->login eq $changer)) {
1453 1454 1455 1456 1457 1458 1459 1460 1461
        $wants_mail &= $self->wants_mail([EVT_CHANGED_BY_ME], $relationship);
    }    
    
    if ($wants_mail) {
        my $dbh = Bugzilla->dbh;
        # We don't create a Bug object from the bug_id here because we only
        # need one piece of information, and doing so (as of 2004-11-23) slows
        # down bugmail sending by a factor of 2. If Bug creation was more
        # lazy, this might not be so bad.
1462 1463 1464 1465
        my $bug_status = $dbh->selectrow_array('SELECT bug_status
                                                FROM bugs WHERE bug_id = ?',
                                                undef, $bug_id);

1466 1467
        if ($bug_status eq "UNCONFIRMED") {
            $wants_mail &= $self->wants_mail([EVT_UNCONFIRMED], $relationship);
1468 1469 1470
        }
    }
    
1471
    return $wants_mail;
1472 1473
}

1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
# Returns true if the user wants mail for a given set of events.
sub wants_mail {
    my $self = shift;
    my ($events, $relationship) = @_;
    
    # Don't send any mail, ever, if account is disabled 
    # XXX Temporary Compatibility Change 1 of 2:
    # This code is disabled for the moment to make the behaviour like the old
    # system, which sent bugmail to disabled accounts.
    # return 0 if $self->{'disabledtext'};
    
    # No mail if there are no events
    return 0 if !scalar(@$events);
1487

1488 1489 1490 1491
    # If a relationship isn't given, default to REL_ANY.
    if (!defined($relationship)) {
        $relationship = REL_ANY;
    }
1492 1493 1494 1495 1496 1497

    # Skip DB query if relationship is explicit
    return 1 if $relationship == REL_GLOBAL_WATCHER;

    my $dbh = Bugzilla->dbh;

1498
    my $wants_mail = 
1499 1500 1501 1502 1503 1504
        $dbh->selectrow_array('SELECT 1
                                 FROM email_setting
                                WHERE user_id = ?
                                  AND relationship = ?
                                  AND event IN (' . join(',', @$events) . ') ' .
                                      $dbh->sql_limit(1),
1505
                              undef, ($self->id, $relationship));
1506

1507
    return defined($wants_mail) ? 1 : 0;
1508
}
1509 1510 1511 1512 1513

sub is_mover {
    my $self = shift;

    if (!defined $self->{'is_mover'}) {
1514
        my @movers = map { trim($_) } split(',', Bugzilla->params->{'movers'});
1515 1516 1517 1518 1519 1520
        $self->{'is_mover'} = ($self->id
                               && lsearch(\@movers, $self->login) != -1);
    }
    return $self->{'is_mover'};
}

1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
sub is_insider {
    my $self = shift;

    if (!defined $self->{'is_insider'}) {
        my $insider_group = Bugzilla->params->{'insidergroup'};
        $self->{'is_insider'} =
            ($insider_group && $self->in_group($insider_group)) ? 1 : 0;
    }
    return $self->{'is_insider'};
}

1532 1533 1534 1535 1536
sub is_global_watcher {
    my $self = shift;

    if (!defined $self->{'is_global_watcher'}) {
        my @watchers = split(/[,\s]+/, Bugzilla->params->{'globalwatchers'});
1537
        $self->{'is_global_watcher'} = scalar(grep { $_ eq $self->login } @watchers) ? 1 : 0;
1538 1539 1540 1541
    }
    return  $self->{'is_global_watcher'};
}

1542 1543 1544 1545 1546
sub get_userlist {
    my $self = shift;

    return $self->{'userlist'} if defined $self->{'userlist'};

1547
    my $dbh = Bugzilla->dbh;
1548
    my $query  = "SELECT DISTINCT login_name, realname,";
1549
    if (Bugzilla->params->{'usevisibilitygroups'}) {
1550 1551 1552 1553
        $query .= " COUNT(group_id) ";
    } else {
        $query .= " 1 ";
    }
1554
    $query     .= "FROM profiles ";
1555
    if (Bugzilla->params->{'usevisibilitygroups'}) {
1556 1557 1558
        $query .= "LEFT JOIN user_group_map " .
                  "ON user_group_map.user_id = userid AND isbless = 0 " .
                  "AND group_id IN(" .
1559
                  join(', ', (-1, @{$self->visible_groups_inherited})) . ")";
1560
    }
1561 1562
    $query    .= " WHERE disabledtext = '' ";
    $query    .= $dbh->sql_group_by('userid', 'login_name, realname');
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580

    my $sth = $dbh->prepare($query);
    $sth->execute;

    my @userlist;
    while (my($login, $name, $visible) = $sth->fetchrow_array) {
        push @userlist, {
            login => $login,
            identity => $name ? "$name <$login>" : $login,
            visible => $visible,
        };
    }
    @userlist = sort { lc $$a{'identity'} cmp lc $$b{'identity'} } @userlist;

    $self->{'userlist'} = \@userlist;
    return $self->{'userlist'};
}

1581 1582 1583
sub create {
    my $invocant = shift;
    my $class = ref($invocant) || $invocant;
1584 1585
    my $dbh = Bugzilla->dbh;

1586
    $dbh->bz_start_transaction();
1587

1588
    my $user = $class->SUPER::create(@_);
1589

1590 1591 1592
    # Turn on all email for the new user
    foreach my $rel (RELATIONSHIPS) {
        foreach my $event (POS_EVENTS, NEG_EVENTS) {
1593 1594 1595 1596 1597 1598 1599
            # These "exceptions" define the default email preferences.
            # 
            # We enable mail unless the change was made by the user, or it's
            # just a CC list addition and the user is not the reporter.
            next if ($event == EVT_CHANGED_BY_ME);
            next if (($event == EVT_CC) && ($rel != REL_REPORTER));

1600
            $dbh->do('INSERT INTO email_setting (user_id, relationship, event)
1601
                      VALUES (?, ?, ?)', undef, ($user->id, $rel, $event));
1602
        }
1603 1604 1605
    }

    foreach my $event (GLOBAL_EVENTS) {
1606
        $dbh->do('INSERT INTO email_setting (user_id, relationship, event)
1607
                  VALUES (?, ?, ?)', undef, ($user->id, REL_ANY, $event));
1608
    }
1609 1610 1611

    $user->derive_regexp_groups();

1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622
    # Add the creation date to the profiles_activity table.
    # $who is the user who created the new user account, i.e. either an
    # admin or the new user himself.
    my $who = Bugzilla->user->id || $user->id;
    my $creation_date_fieldid = get_field_id('creation_ts');

    $dbh->do('INSERT INTO profiles_activity
                          (userid, who, profiles_when, fieldid, newvalue)
                   VALUES (?, ?, NOW(), ?, NOW())',
                   undef, ($user->id, $who, $creation_date_fieldid));

1623
    $dbh->bz_commit_transaction();
1624

1625 1626
    # Return the newly created user account.
    return $user;
1627 1628
}

1629
sub is_available_username {
1630 1631
    my ($username, $old_username) = @_;

1632
    if(login_to_id($username) != 0) {
1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
        return 0;
    }

    my $dbh = Bugzilla->dbh;
    # $username is safe because it is only used in SELECT placeholders.
    trick_taint($username);
    # Reject if the new login is part of an email change which is
    # still in progress
    #
    # substring/locate stuff: bug 165221; this used to use regexes, but that
    # was unsafe and required weird escaping; using substring to pull out
1644
    # the new/old email addresses and sql_position() to find the delimiter (':')
1645
    # is cleaner/safer
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
    my $eventdata = $dbh->selectrow_array(
        "SELECT eventdata
           FROM tokens
          WHERE (tokentype = 'emailold'
                AND SUBSTRING(eventdata, 1, (" .
                    $dbh->sql_position(q{':'}, 'eventdata') . "-  1)) = ?)
             OR (tokentype = 'emailnew'
                AND SUBSTRING(eventdata, (" .
                    $dbh->sql_position(q{':'}, 'eventdata') . "+ 1)) = ?)",
         undef, ($username, $username));

    if ($eventdata) {
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
        # Allow thru owner of token
        if($old_username && ($eventdata eq "$old_username:$username")) {
            return 1;
        }
        return 0;
    }

    return 1;
}

1668
sub login_to_id {
1669
    my ($login, $throw_error) = @_;
1670
    my $dbh = Bugzilla->dbh;
1671 1672
    # No need to validate $login -- it will be used by the following SELECT
    # statement only, so it's safe to simply trick_taint.
1673
    trick_taint($login);
1674 1675 1676
    my $user_id = $dbh->selectrow_array("SELECT userid FROM profiles WHERE " .
                                        $dbh->sql_istrcmp('login_name', '?'),
                                        undef, $login);
1677
    if ($user_id) {
1678
        return $user_id;
1679 1680
    } elsif ($throw_error) {
        ThrowUserError('invalid_username', { name => $login });
1681 1682 1683 1684 1685
    } else {
        return 0;
    }
}

1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696
sub user_id_to_login {
    my $user_id = shift;
    my $dbh = Bugzilla->dbh;

    return '' unless ($user_id && detaint_natural($user_id));

    my $login = $dbh->selectrow_array('SELECT login_name FROM profiles
                                       WHERE userid = ?', undef, $user_id);
    return $login || '';
}

1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
sub validate_password {
    my ($password, $matchpassword) = @_;

    if (length($password) < USER_PASSWORD_MIN_LENGTH) {
        ThrowUserError('password_too_short');
    } elsif (length($password) > USER_PASSWORD_MAX_LENGTH) {
        ThrowUserError('password_too_long');
    } elsif ((defined $matchpassword) && ($password ne $matchpassword)) {
        ThrowUserError('passwords_dont_match');
    }
1707 1708
    # Having done these checks makes us consider the password untainted.
    trick_taint($_[0]);
1709 1710 1711
    return 1;
}

1712

1713
1;
1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726

__END__

=head1 NAME

Bugzilla::User - Object for a Bugzilla user

=head1 SYNOPSIS

  use Bugzilla::User;

  my $user = new Bugzilla::User($id);

1727 1728 1729
  my @get_selectable_classifications = 
      $user->get_selectable_classifications;

1730
  # Class Functions
1731 1732 1733 1734 1735 1736
  $user = Bugzilla::User->create({ 
      login_name    => $username, 
      realname      => $realname, 
      cryptpassword => $plaintext_password, 
      disabledtext  => $disabledtext,
      disable_mail  => 0});
1737

1738 1739 1740 1741 1742 1743 1744 1745
=head1 DESCRIPTION

This package handles Bugzilla users. Data obtained from here is read-only;
there is currently no way to modify a user from this package.

Note that the currently logged in user (if any) is available via
L<Bugzilla-E<gt>user|Bugzilla/"user">.

1746 1747 1748 1749
C<Bugzilla::User> is an implementation of L<Bugzilla::Object>, and thus
provides all the methods of L<Bugzilla::Object> in addition to the
methods listed below.

1750 1751
=head1 CONSTANTS

1752 1753
=over

1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
=item C<USER_MATCH_MULTIPLE>

Returned by C<match_field()> when at least one field matched more than 
one user, but no matches failed.

=item C<USER_MATCH_FAILED>

Returned by C<match_field()> when at least one field failed to match 
anything.

=item C<USER_MATCH_SUCCESS>

Returned by C<match_field()> when all fields successfully matched only one
user.

=item C<MATCH_SKIP_CONFIRM>

Passed in to match_field to tell match_field to never display a 
confirmation screen.

1774 1775
=back

1776 1777
=head1 METHODS

1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
=head2 Saved and Shared Queries

=over

=item C<queries>

Returns an arrayref of the user's own saved queries, sorted by name. The 
array contains L<Bugzilla::Search::Saved> objects.

=item C<queries_subscribed>

Returns an arrayref of shared queries that the user has subscribed to.
That is, these are shared queries that the user sees in their footer.
This array contains L<Bugzilla::Search::Saved> objects.

=item C<queries_available>

Returns an arrayref of all queries to which the user could possibly
subscribe. This includes the contents of L</queries_subscribed>.
An array of L<Bugzilla::Search::Saved> objects.

=item C<flush_queries_cache>

Some code modifies the set of stored queries. Because C<Bugzilla::User> does
not handle these modifications, but does cache the result of calling C<queries>
internally, such code must call this method to flush the cached result.

=item C<queryshare_groups>

An arrayref of group ids. The user can share their own queries with these
groups.

=back

=head2 Other Methods

1814
=over
1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839

=item C<id>

Returns the userid for this user.

=item C<login>

Returns the login name for this user.

=item C<email>

Returns the user's email address. Currently this is the same value as the
login.

=item C<name>

Returns the 'real' name for this user, if any.

=item C<showmybugslink>

Returns C<1> if the user has set his preference to show the 'My Bugs' link in
the page footer, and C<0> otherwise.

=item C<identity>

1840
Returns a string for the identity of the user. This will be of the form
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
C<name E<lt>emailE<gt>> if the user has specified a name, and C<email>
otherwise.

=item C<nick>

Returns a user "nickname" -- i.e. a shorter, not-necessarily-unique name by
which to identify the user. Currently the part of the user's email address
before the at sign (@), but that could change, especially if we implement
usernames not dependent on email address.

1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
=item C<authorizer>

This is the L<Bugzilla::Auth> object that the User logged in with.
If the user hasn't logged in yet, a new, empty Bugzilla::Auth() object is
returned.

=item C<set_authorizer($authorizer)>

Sets the L<Bugzilla::Auth> object to be returned by C<authorizer()>.
Should only be called by C<Bugzilla::Auth::login>, for the most part.

1862 1863 1864 1865
=item C<disabledtext>

Returns the disable text of the user, if any.

1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
=item C<settings>

Returns a hash of hashes which holds the user's settings. The first key is
the name of the setting, as found in setting.name. The second key is one of:
is_enabled     - true if the user is allowed to set the preference themselves;
                 false to force the site defaults
                 for themselves or must accept the global site default value
default_value  - the global site default for this setting
value          - the value of this setting for this user. Will be the same
                 as the default_value if the user is not logged in, or if 
                 is_default is true.
is_default     - a boolean to indicate whether the user has chosen to make
                 a preference for themself or use the site default.

1880 1881 1882 1883 1884
=item C<groups>

Returns a hashref of group names for groups the user is a member of. The keys
are the names of the groups, whilst the values are the respective group ids.
(This is so that a set of all groupids for groups the user is in can be
1885
obtained by C<values(%{$user-E<gt>groups})>.)
1886

1887 1888
=item C<groups_as_string>

1889
Returns a string containing a comma-separated list of numeric group ids.  If
1890 1891 1892
the user is not a member of any groups, returns "-1". This is most often used
within an SQL IN() function.

1893
=item C<in_group($group_name, $product_id)>
1894

1895 1896 1897
Determines whether or not a user is in the given group by name.
If $product_id is given, it also checks for local privileges for
this product.
1898 1899 1900 1901

=item C<in_group_id>

Determines whether or not a user is in the given group by id. 
1902

1903 1904
=item C<bless_groups>

1905 1906 1907 1908 1909 1910
Returns an arrayref of hashes of C<groups> entries, where the keys of each hash
are the names of C<id>, C<name> and C<description> columns of the C<groups>
table.
The arrayref consists of the groups the user can bless, taking into account
that having editusers permissions means that you can bless all groups, and
that you need to be aware of a group in order to bless a group.
1911

1912 1913 1914 1915 1916 1917
=item C<get_products_by_permission($group)>

Returns a list of product objects for which the user has $group privileges
and which he can access.
$group must be one of the groups defined in PER_PRODUCT_PRIVILEGES.

1918 1919 1920 1921 1922
=item C<can_see_user(user)>

Returns 1 if the specified user account exists and is visible to the user,
0 otherwise.

1923 1924 1925 1926 1927
=item C<can_edit_product(prod_id)>

Determines if, given a product id, the user can edit bugs in this product
at all.

1928 1929 1930 1931
=item C<can_see_bug(bug_id)>

Determines if the user can see the specified bug.

1932 1933 1934 1935 1936
=item C<can_see_product(product_name)>

Returns 1 if the user can access the specified product, and 0 if the user
should not be aware of the existence of the product.

1937
=item C<derive_regexp_groups>
1938 1939 1940 1941 1942 1943 1944

Bugzilla allows for group inheritance. When data about the user (or any of the
groups) changes, the database must be updated. Handling updated groups is taken
care of by the constructor. However, when updating the email address, the
user may be placed into different groups, based on a new email regexp. This
method should be called in such a case to force reresolution of these groups.

1945 1946
=item C<get_selectable_products>

1947 1948 1949
 Description: Returns all products the user is allowed to access. This list
              is restricted to some given classification if $classification_id
              is given.
1950

1951 1952
 Params:      $classification_id - (optional) The ID of the classification
                                   the products belong to.
1953

1954
 Returns:     An array of product objects, sorted by the product name.
1955

1956 1957
=item C<get_selectable_classifications>

1958 1959
 Description: Returns all classifications containing at least one product
              the user is allowed to view.
1960

1961
 Params:      none
1962

1963 1964
 Returns:     An array of Bugzilla::Classification objects, sorted by
              the classification name.
1965

1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
=item C<can_enter_product($product_name, $warn)>

 Description: Returns 1 if the user can enter bugs into the specified product.
              If the user cannot enter bugs into the product, the behavior of
              this method depends on the value of $warn:
              - if $warn is false (or not given), a 'false' value is returned;
              - if $warn is true, an error is thrown.

 Params:      $product_name - a product name.
              $warn         - optional parameter, indicating whether an error
                              must be thrown if the user cannot enter bugs
                              into the specified product.

 Returns:     1 if the user can enter bugs into the product,
              0 if the user cannot enter bugs into the product and if $warn
              is false (an error is thrown if $warn is true).

=item C<get_enterable_products>

 Description: Returns an array of product objects into which the user is
              allowed to enter bugs.

 Params:      none

 Returns:     an array of product objects.

1992 1993 1994 1995 1996 1997 1998 1999
=item C<check_can_admin_product($product_name)>

 Description: Checks whether the user is allowed to administrate the product.

 Params:      $product_name - a product name.

 Returns:     On success, a product object. On failure, an error is thrown.

2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
=item C<can_request_flag($flag_type)>

 Description: Checks whether the user can request flags of the given type.

 Params:      $flag_type - a Bugzilla::FlagType object.

 Returns:     1 if the user can request flags of the given type,
              0 otherwise.

=item C<can_set_flag($flag_type)>

 Description: Checks whether the user can set flags of the given type.

 Params:      $flag_type - a Bugzilla::FlagType object.

 Returns:     1 if the user can set flags of the given type,
              0 otherwise.

2018 2019 2020 2021 2022 2023
=item C<get_userlist>

Returns a reference to an array of users.  The array is populated with hashrefs
containing the login, identity and visibility.  Users that are not visible to this
user will have 'visible' set to zero.

2024 2025 2026 2027 2028 2029 2030 2031
=item C<flatten_group_membership>

Accepts a list of groups and returns a list of all the groups whose members 
inherit membership in any group on the list.  So, we can determine if a user
is in any of the groups input to flatten_group_membership by querying the
user_group_map for any user with DIRECT or REGEXP membership IN() the list
of groups returned.

2032 2033 2034 2035 2036
=item C<direct_group_membership>

Returns a reference to an array of group objects. Groups the user belong to
by group inheritance are excluded from the list.

2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
=item C<visible_groups_inherited>

Returns a list of all groups whose members should be visible to this user.
Since this list is flattened already, there is no need for all users to
be have derived groups up-to-date to select the users meeting this criteria.

=item C<visible_groups_direct>

Returns a list of groups that the user is aware of.

2047 2048 2049 2050 2051
=item C<visible_groups_as_string>

Returns the result of C<visible_groups_direct> as a string (a comma-separated
list).

2052 2053
=item C<product_responsibilities>

2054 2055
Retrieve user's product responsibilities as a list of component objects.
Each object is a component the user has a responsibility for.
2056

2057 2058
=item C<can_bless>

2059 2060 2061 2062
When called with no arguments:
Returns C<1> if the user can bless at least one group, returns C<0> otherwise.

When called with one argument:
2063
Returns C<1> if the user can bless the group with that id, returns
2064
C<0> otherwise.
2065

2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
=item C<wants_bug_mail>

Returns true if the user wants mail for a given bug change.

=item C<wants_mail>

Returns true if the user wants mail for a given set of events. This method is
more general than C<wants_bug_mail>, allowing you to check e.g. permissions
for flag mail.

2076 2077 2078 2079 2080 2081
=item C<is_mover>

Returns true if the user is in the list of users allowed to move bugs
to another database. Note that this method doesn't check whether bug
moving is enabled.

2082 2083 2084 2085 2086
=item C<is_insider>

Returns true if the user can access private comments and attachments,
i.e. if the 'insidergroup' parameter is set and the user belongs to this group.

2087 2088 2089 2090 2091
=item C<is_global_watcher>

Returns true if the user is a global watcher,
i.e. if the 'globalwatchers' parameter contains the user.

2092 2093
=back

2094 2095 2096 2097 2098
=head1 CLASS FUNCTIONS

These are functions that are not called on a User object, but instead are
called "statically," just like a normal procedural function.

2099 2100
=over 4

2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115
=item C<create>

The same as L<Bugzilla::Object/create>.

Params: login_name - B<Required> The login name for the new user.
        realname - The full name for the new user.
        cryptpassword  - B<Required> The password for the new user.
            Even though the name says "crypt", you should just specify
            a plain-text password. If you specify '*', the user will not
            be able to log in using DB authentication.
        disabledtext - The disable-text for the new user. If given, the user 
            will be disabled, meaning he cannot log in. Defaults to an
            empty string.
        disable_mail - If 1, bug-related mail will not be  sent to this user; 
            if 0, mail will be sent depending on the user's  email preferences.
2116

2117 2118 2119 2120 2121
=item C<check>

Takes a username as its only argument. Throws an error if there is no
user with that username. Returns a C<Bugzilla::User> object.

2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
=item C<is_available_username>

Returns a boolean indicating whether or not the supplied username is
already taken in Bugzilla.

Params: $username (scalar, string) - The full login name of the username 
            that you are checking.
        $old_username (scalar, string) - If you are checking an email-change
            token, insert the "old" username that the user is changing from,
            here. Then, as long as it's the right user for that token, he 
            can change his username to $username. (That is, this function
            will return a boolean true value).

2135
=item C<login_to_id($login, $throw_error)>
2136 2137 2138 2139 2140

Takes a login name of a Bugzilla user and changes that into a numeric
ID for that user. This ID can then be passed to Bugzilla::User::new to
create a new user.

2141 2142 2143
If no valid user exists with that login name, then the function returns 0.
However, if $throw_error is set, the function will throw a user error
instead of returning.
2144 2145 2146 2147 2148 2149 2150

This function can also be used when you want to just find out the userid
of a user, but you don't want the full weight of Bugzilla::User.

However, consider using a Bugzilla::User object instead of this function
if you need more information about the user than just their ID.

2151 2152 2153 2154 2155 2156
=item C<user_id_to_login($user_id)>

Returns the login name of the user account for the given user ID. If no
valid user ID is given or the user has no entry in the profiles table,
we return an empty string.

2157 2158 2159 2160
=item C<validate_password($passwd1, $passwd2)>

Returns true if a password is valid (i.e. meets Bugzilla's
requirements for length and content), else returns false.
2161
Untaints C<$passwd1> if successful.
2162 2163 2164 2165

If a second password is passed in, this function also verifies that
the two passwords match.

2166 2167
=back

2168 2169 2170
=head1 SEE ALSO

L<Bugzilla|Bugzilla>