userprefs.cgi 16.5 KB
Newer Older
1
#!/usr/bin/perl -wT
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
17
#                 Dan Mosedale <dmose@mozilla.org>
18
#                 Alan Raetz <al_raetz@yahoo.com>
19
#                 David Miller <justdave@syndicomm.com>
20
#                 Christopher Aillon <christopher@aillon.com>
21
#                 Gervase Markham <gerv@gerv.net>
22
#                 Vlad Dascalu <jocuri@softhome.net>
23
#                 Shane H. W. Travis <travis@sedsystems.ca>
24 25 26

use strict;

27 28
use lib qw(.);

29
use Bugzilla;
30
use Bugzilla::Constants;
31
use Bugzilla::Search;
32
use Bugzilla::Util;
33
use Bugzilla::User;
34

35
require "globals.pl";
36

37 38
my $template = Bugzilla->template;
my $vars = {};
39

40 41 42 43 44 45 46
###############################################################################
# Each panel has two functions - panel Foo has a DoFoo, to get the data 
# necessary for displaying the panel, and a SaveFoo, to save the panel's 
# contents from the form data (if appropriate.) 
# SaveFoo may be called before DoFoo.    
###############################################################################
sub DoAccount {
47
    my $dbh = Bugzilla->dbh;
48 49
    my $user = Bugzilla->user;

50
    ($vars->{'realname'}) = $dbh->selectrow_array(
51
        "SELECT realname FROM profiles WHERE userid = ?", undef, $user->id);
52 53

    if(Param('allowemailchange')) {
54 55
        my @token = $dbh->selectrow_array(
            "SELECT tokentype, issuedate + " .
56
                    $dbh->sql_interval(3, 'DAY') . ", eventdata
57 58 59
               FROM tokens
              WHERE userid = ?
                AND tokentype LIKE 'email%'
60
           ORDER BY tokentype ASC " . $dbh->sql_limit(1), undef, $user->id);
61 62
        if (scalar(@token) > 0) {
            my ($tokentype, $change_date, $eventdata) = @token;
63 64 65 66 67 68 69 70
            $vars->{'login_change_date'} = $change_date;

            if($tokentype eq 'emailnew') {
                my ($oldemail,$newemail) = split(/:/,$eventdata);
                $vars->{'new_login_name'} = $newemail;
            }
        }
    }
71 72 73
}

sub SaveAccount {
74
    my $cgi = Bugzilla->cgi;
75
    my $dbh = Bugzilla->dbh;
76
    my $user = Bugzilla->user;
77

78 79 80 81
    my $pwd1 = $cgi->param('new_password1');
    my $pwd2 = $cgi->param('new_password2');

    if ($cgi->param('Bugzilla_password') ne "" || 
82
        $pwd1 ne "" || $pwd2 ne "") 
83
    {
84 85
        my ($oldcryptedpwd) = $dbh->selectrow_array(
                        q{SELECT cryptpassword FROM profiles WHERE userid = ?},
86
                        undef, $user->id);
87 88
        $oldcryptedpwd || ThrowCodeError("unable_to_retrieve_password");

89
        if (crypt(scalar($cgi->param('Bugzilla_password')), $oldcryptedpwd) ne 
90 91
                  $oldcryptedpwd) 
        {
92
            ThrowUserError("old_password_incorrect");
93
        }
94 95 96

        if ($pwd1 ne "" || $pwd2 ne "")
        {
97 98
            $cgi->param('new_password1')
              || ThrowUserError("new_password_missing");
99
            ValidatePassword($pwd1, $pwd2);
100 101 102 103 104 105 106 107 108 109 110 111

            if ($cgi->param('Bugzilla_password') ne $pwd1) {
                my $cryptedpassword = bz_crypt($pwd1);
                trick_taint($cryptedpassword); # Only used in a placeholder
                $dbh->do(q{UPDATE profiles
                              SET cryptpassword = ?
                            WHERE userid = ?},
                         undef, ($cryptedpassword, $user->id));

                # Invalidate all logins except for the current one
                Bugzilla->logout(LOGOUT_KEEP_CURRENT);
            }
112
        }
113 114
    }

115 116 117
    if(Param("allowemailchange") && $cgi->param('new_login_name')) {
        my $old_login_name = $cgi->param('Bugzilla_login');
        my $new_login_name = trim($cgi->param('new_login_name'));
118 119

        if($old_login_name ne $new_login_name) {
120
            $cgi->param('Bugzilla_password') 
121
              || ThrowUserError("old_password_required");
122

123
            use Bugzilla::Token;
124
            # Block multiple email changes for the same user.
125
            if (Bugzilla::Token::HasEmailChangeToken($user->id)) {
126
                ThrowUserError("email_change_in_progress");
127 128 129
            }

            # Before changing an email address, confirm one does not exist.
130 131
            validate_email_syntax($new_login_name)
              || ThrowUserError('illegal_email_address', {addr => $new_login_name});
132
            trick_taint($new_login_name);
133
            is_available_username($new_login_name)
134
              || ThrowUserError("account_exists", {email => $new_login_name});
135

136 137
            Bugzilla::Token::IssueEmailChangeToken($user->id, $old_login_name,
                                                   $new_login_name);
138

139
            $vars->{'email_changes_saved'} = 1;
140 141
        }
    }
142

143 144 145
    my $realname = trim($cgi->param('realname'));
    trick_taint($realname); # Only used in a placeholder
    $dbh->do("UPDATE profiles SET realname = ? WHERE userid = ?",
146
             undef, ($realname, $user->id));
147 148 149
}


150
sub DoSettings {
151 152 153
    my $user = Bugzilla->user;

    my $settings = $user->settings;
154
    $vars->{'settings'} = $settings;
155

156
    my @setting_list = keys %$settings;
157
    $vars->{'setting_names'} = \@setting_list;
158 159 160 161 162 163 164 165 166 167

    $vars->{'has_settings_enabled'} = 0;
    # Is there at least one user setting enabled?
    foreach my $setting_name (@setting_list) {
        if ($settings->{"$setting_name"}->{'is_enabled'}) {
            $vars->{'has_settings_enabled'} = 1;
            last;
        }
    }
    $vars->{'dont_show_button'} = !$vars->{'has_settings_enabled'};
168 169 170 171
}

sub SaveSettings {
    my $cgi = Bugzilla->cgi;
172
    my $user = Bugzilla->user;
173

174 175
    my $settings = $user->settings;
    my @setting_list = keys %$settings;
176 177 178 179

    foreach my $name (@setting_list) {
        next if ! ($settings->{$name}->{'is_enabled'});
        my $value = $cgi->param($name);
180
        my $setting = new Bugzilla::User::Setting($name);
181 182 183

        if ($value eq "${name}-isdefault" ) {
            if (! $settings->{$name}->{'is_default'}) {
184
                $settings->{$name}->reset_to_default;
185 186 187
            }
        }
        else {
188 189
            $setting->validate_value($value);
            $settings->{$name}->set($value);
190 191
        }
    }
192
    $vars->{'settings'} = $user->settings(1);
193 194
}

195
sub DoEmail {
196
    my $dbh = Bugzilla->dbh;
197
    my $user = Bugzilla->user;
198 199 200 201
    
    ###########################################################################
    # User watching
    ###########################################################################
202
    if (Param("supportwatchers")) {
203
        my $watched_ref = $dbh->selectcol_arrayref(
204 205 206
            "SELECT profiles.login_name FROM watch INNER JOIN profiles" .
            " ON watch.watched = profiles.userid" .
            " WHERE watcher = ?",
207
            undef, $user->id);
208
        $vars->{'watchedusers'} = join(',', @$watched_ref);
209 210 211

        my $watcher_ids = $dbh->selectcol_arrayref(
            "SELECT watcher FROM watch WHERE watched = ?",
212
            undef, $user->id);
213 214 215 216 217 218 219 220 221

        my @watchers;
        foreach my $watcher_id (@$watcher_ids) {
            my $watcher = new Bugzilla::User($watcher_id);
            push (@watchers, Bugzilla::User::identity($watcher));
        }

        @watchers = sort { lc($a) cmp lc($b) } @watchers;
        $vars->{'watchers'} = \@watchers;
222
    }
223

224 225 226
    ###########################################################################
    # Role-based preferences
    ###########################################################################
227 228 229 230
    my $sth = $dbh->prepare("SELECT relationship, event " . 
                            "FROM email_setting " . 
                            "WHERE user_id = ?");
    $sth->execute($user->id);
231 232 233 234 235

    my %mail;
    while (my ($relationship, $event) = $sth->fetchrow_array()) {
        $mail{$relationship}{$event} = 1;
    }
236

237 238
    $vars->{'mail'} = \%mail;      
}
239

240 241 242
sub SaveEmail {
    my $dbh = Bugzilla->dbh;
    my $cgi = Bugzilla->cgi;
243
    my $user = Bugzilla->user;
244
    
245 246 247 248 249 250
    ###########################################################################
    # Role-based preferences
    ###########################################################################
    $dbh->bz_lock_tables("email_setting WRITE");

    # Delete all the user's current preferences
251
    $dbh->do("DELETE FROM email_setting WHERE user_id = ?", undef, $user->id);
252 253 254 255 256 257 258 259

    # Repopulate the table - first, with normal events in the 
    # relationship/event matrix.
    # Note: the database holds only "off" email preferences, as can be implied 
    # from the name of the table - profiles_nomail.
    foreach my $rel (RELATIONSHIPS) {
        # Positive events: a ticked box means "send me mail."
        foreach my $event (POS_EVENTS) {
260 261 262
            if (defined($cgi->param("email-$rel-$event"))
                && $cgi->param("email-$rel-$event") == 1)
            {
263 264
                $dbh->do("INSERT INTO email_setting " . 
                         "(user_id, relationship, event) " . 
265 266
                         "VALUES (?, ?, ?)",
                         undef, ($user->id, $rel, $event));
267
            }
268 269 270 271 272 273 274 275 276
        }
        
        # Negative events: a ticked box means "don't send me mail."
        foreach my $event (NEG_EVENTS) {
            if (!defined($cgi->param("neg-email-$rel-$event")) ||
                $cgi->param("neg-email-$rel-$event") != 1) 
            {
                $dbh->do("INSERT INTO email_setting " . 
                         "(user_id, relationship, event) " . 
277 278
                         "VALUES (?, ?, ?)",
                         undef, ($user->id, $rel, $event));
279
            }
280
        }
281
    }
282

283 284
    # Global positive events: a ticked box means "send me mail."
    foreach my $event (GLOBAL_EVENTS) {
285 286 287
        if (defined($cgi->param("email-" . REL_ANY . "-$event"))
            && $cgi->param("email-" . REL_ANY . "-$event") == 1)
        {
288 289
            $dbh->do("INSERT INTO email_setting " . 
                     "(user_id, relationship, event) " . 
290 291
                     "VALUES (?, ?, ?)",
                     undef, ($user->id, REL_ANY, $event));
292
        }
293
    }
294

295 296 297 298 299
    $dbh->bz_unlock_tables();

    ###########################################################################
    # User watching
    ###########################################################################
300
    if (Param("supportwatchers") && defined $cgi->param('watchedusers')) {
301 302 303 304
        # Just in case.  Note that this much locking is actually overkill:
        # we don't really care if anyone reads the watch table.  So 
        # some small amount of contention could be gotten rid of by
        # using user-defined locks rather than table locking.
305
        $dbh->bz_lock_tables('watch WRITE', 'profiles READ');
306 307

        # what the db looks like now
308 309
        my $old_watch_ids =
            $dbh->selectcol_arrayref("SELECT watched FROM watch"
310
                                   . " WHERE watcher = ?", undef, $user->id);
311 312 313
 
       # The new information given to us by the user.
        my @new_watch_names = split(/[,\s]+/, $cgi->param('watchedusers'));
314
        my %new_watch_ids;
315 316
        foreach my $username (@new_watch_names) {
            my $watched_userid = DBNameToIdAndCheck(trim($username));
317
            $new_watch_ids{$watched_userid} = 1;
318
        }
319
        my ($removed, $added) = diff_arrays($old_watch_ids, [keys %new_watch_ids]);
320 321 322 323 324

        # Remove people who were removed.
        my $delete_sth = $dbh->prepare('DELETE FROM watch WHERE watched = ?'
                                     . ' AND watcher = ?');
        foreach my $remove_me (@$removed) {
325
            $delete_sth->execute($remove_me, $user->id);
326 327 328 329 330 331
        }

        # Add people who were added.
        my $insert_sth = $dbh->prepare('INSERT INTO watch (watched, watcher)'
                                     . ' VALUES (?, ?)');
        foreach my $add_me (@$added) {
332
            $insert_sth->execute($add_me, $user->id);
333
        }
334

335
        $dbh->bz_unlock_tables();
336
    }
337 338 339
}


340
sub DoPermissions {
341
    my $dbh = Bugzilla->dbh;
342
    my $user = Bugzilla->user;
343 344
    my (@has_bits, @set_bits);
    
345 346
    my $groups = $dbh->selectall_arrayref(
               "SELECT DISTINCT name, description FROM groups WHERE id IN (" . 
347
               $user->groups_as_string . ") ORDER BY name");
348 349
    foreach my $group (@$groups) {
        my ($nam, $desc) = @$group;
350
        push(@has_bits, {"desc" => $desc, "name" => $nam});
351
    }
352 353 354 355
    $groups = $dbh->selectall_arrayref(
                "SELECT DISTINCT name, description FROM groups ORDER BY name");
    foreach my $group (@$groups) {
        my ($nam, $desc) = @$group;
356
        if ($user->can_bless($nam)) {
357
            push(@set_bits, {"desc" => $desc, "name" => $nam});
358 359
        }
    }
360 361 362
    
    $vars->{'has_bits'} = \@has_bits;
    $vars->{'set_bits'} = \@set_bits;    
363
}
364

365
# No SavePermissions() because this panel has no changeable fields.
366

367

368
sub DoSavedSearches {
369 370
    # 2004-12-13 - colin.ogilvie@gmail.com, bug 274397
    # Need to work around the possibly missing query_format=advanced
371 372 373
    my $user = Bugzilla->user;

    my @queries = @{$user->queries};
374 375
    my @newqueries;
    foreach my $q (@queries) {
376 377 378 379 380 381 382 383 384
        if ($q->{'query'} =~ /query_format=([^&]*)/) {
            my $format = $1;
            if (!IsValidQueryType($format)) {
                if ($format eq "") {
                    $q->{'query'} =~ s/query_format=/query_format=advanced/;
                }
                else {
                    $q->{'query'} .= '&query_format=advanced';
                }
385
            }
386 387
        } else {
            $q->{'query'} .= '&query_format=advanced';
388 389 390 391
        }
        push @newqueries, $q;
    }
    $vars->{'queries'} = \@newqueries;
392 393
}

394
sub SaveSavedSearches {
395 396
    my $cgi = Bugzilla->cgi;
    my $dbh = Bugzilla->dbh;
397 398 399
    my $user = Bugzilla->user;

    my @queries = @{$user->queries};
400 401 402 403 404 405
    my $sth = $dbh->prepare("UPDATE namedqueries SET linkinfooter = ?
                          WHERE userid = ?
                          AND name = ?");
    foreach my $q (@queries) {
        my $linkinfooter = 
            defined($cgi->param("linkinfooter_$q->{'name'}")) ? 1 : 0;
406
            $sth->execute($linkinfooter, $user->id, $q->{'name'});
407 408
    }

409
    $user->flush_queries_cache;
410 411
    
    my $showmybugslink = defined($cgi->param("showmybugslink")) ? 1 : 0;
412 413 414
    $dbh->do("UPDATE profiles SET mybugslink = ? WHERE userid = ?",
             undef, ($showmybugslink, $user->id));    
    $user->{'showmybugslink'} = $showmybugslink;
415
}
416 417


418 419 420
###############################################################################
# Live code (not subroutine definitions) starts here
###############################################################################
421

422 423 424
my $cgi = Bugzilla->cgi;

# This script needs direct access to the username and password CGI variables,
425 426
# so we save them before their removal in Bugzilla->login, and delete them 
# prior to login if we might possibly be in an sudo session.
427 428
my $bugzilla_login    = $cgi->param('Bugzilla_login');
my $bugzilla_password = $cgi->param('Bugzilla_password');
429
$cgi->delete('Bugzilla_login', 'Bugzilla_password') if ($cgi->cookie('sudo'));
430

431
Bugzilla->login(LOGIN_REQUIRED);
432 433
$cgi->param('Bugzilla_login', $bugzilla_login);
$cgi->param('Bugzilla_password', $bugzilla_password);
434 435 436

GetVersionTable();

437
$vars->{'changes_saved'} = $cgi->param('dosave');
438

439
my $current_tab_name = $cgi->param('tab') || "account";
440

441 442 443
# The SWITCH below makes sure that this is valid
trick_taint($current_tab_name);

444
$vars->{'current_tab_name'} = $current_tab_name;
445

446 447 448
# Do any saving, and then display the current tab.
SWITCH: for ($current_tab_name) {
    /^account$/ && do {
449
        SaveAccount() if $cgi->param('dosave');
450 451 452
        DoAccount();
        last SWITCH;
    };
453 454 455 456 457
    /^settings$/ && do {
        SaveSettings() if $cgi->param('dosave');
        DoSettings();
        last SWITCH;
    };
458
    /^email$/ && do {
459
        SaveEmail() if $cgi->param('dosave');
460 461 462 463 464 465 466
        DoEmail();
        last SWITCH;
    };
    /^permissions$/ && do {
        DoPermissions();
        last SWITCH;
    };
467
    /^saved-searches$/ && do {
468
        SaveSavedSearches() if $cgi->param('dosave');
469 470 471
        DoSavedSearches();
        last SWITCH;
    };
472 473
    ThrowUserError("unknown_tab",
                   { current_tab_name => $current_tab_name });
474 475
}

476
# Generate and return the UI (HTML page) from the appropriate template.
477
print $cgi->header();
478 479
$template->process("account/prefs/prefs.html.tmpl", $vars)
  || ThrowTemplateError($template->error());