userprefs.cgi 13.7 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 23 24

use strict;

25 26
use lib qw(.);

27 28
use Bugzilla;

29 30
require "CGI.pl";

31 32
use RelationSet;

33
# Shut up misguided -w warnings about "used only once". "use vars" just
34 35 36 37 38
# doesn't work for me.
sub sillyness {
    my $zz;
    $zz = $::defaultqueryname;
}
39

40
# Use global template variables.
41
use vars qw($template $vars $userid);
42

43 44
# The default email flags leave all email on.
my $defaultflagstring = "ExcludeSelf~on~";
45

46 47
my @roles = ("Owner", "Reporter", "QAcontact", "CClist", "Voter");
my @reasons = ("Removeme", "Comments", "Attachments", "Status", "Resolved", 
48
               "Keywords", "CC", "Other", "Unconfirmed");
49 50 51

foreach my $role (@roles) {
    foreach my $reason (@reasons) {
52 53
        $defaultflagstring .= "email$role$reason~on~";
    }
54 55
}

56 57
# Remove final "~".
chop $defaultflagstring;
58

59 60 61 62 63 64 65
###############################################################################
# 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 {
66
    SendSQL("SELECT realname FROM profiles WHERE userid = $userid");
67
    $vars->{'realname'} = FetchSQLData();
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84

    if(Param('allowemailchange')) {
        SendSQL("SELECT tokentype, issuedate + INTERVAL 3 DAY, eventdata 
                    FROM tokens
                    WHERE userid = $userid
                    AND tokentype LIKE 'email%' 
                    ORDER BY tokentype ASC LIMIT 1");
        if(MoreSQLData()) {
            my ($tokentype, $change_date, $eventdata) = &::FetchSQLData();
            $vars->{'login_change_date'} = $change_date;

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

sub SaveAccount {
88 89 90
    my $pwd1 = $::FORM{'new_password1'};
    my $pwd2 = $::FORM{'new_password2'};

91
    if ($::FORM{'Bugzilla_password'} ne "" || 
92
        $pwd1 ne "" || $pwd2 ne "") 
93
    {
94
        my $old = SqlQuote($::FORM{'Bugzilla_password'});
95 96
        SendSQL("SELECT cryptpassword FROM profiles WHERE userid = $userid");
        my $oldcryptedpwd = FetchOneColumn();
97 98
        $oldcryptedpwd || ThrowCodeError("unable_to_retrieve_password");

99 100 101
        if (crypt($::FORM{'Bugzilla_password'}, $oldcryptedpwd) ne 
                  $oldcryptedpwd) 
        {
102
            ThrowUserError("old_password_incorrect");
103
        }
104 105 106

        if ($pwd1 ne "" || $pwd2 ne "")
        {
107 108 109
            ($pwd1 eq $pwd2) || ThrowUserError("passwords_dont_match");
            $::FORM{'new_password1'} || ThrowUserError("new_password_missing");
            ValidatePassword($pwd1);
110 111 112 113 114 115 116
        
            my $cryptedpassword = SqlQuote(Crypt($pwd1));
            SendSQL("UPDATE profiles 
                     SET    cryptpassword = $cryptedpassword 
                     WHERE  userid = $userid");
            # Invalidate all logins except for the current one
            InvalidateLogins($userid, $::COOKIE{"Bugzilla_logincookie"});
117
        }
118 119 120 121 122 123 124
    }

    if(Param("allowemailchange") && $::FORM{'new_login_name'}) {
        my $old_login_name = $::FORM{'Bugzilla_login'};
        my $new_login_name = trim($::FORM{'new_login_name'});

        if($old_login_name ne $new_login_name) {
125 126
            $::FORM{'Bugzilla_password'} 
              || ThrowCodeError("old_password_required");
127 128 129 130

            use Token;
            # Block multiple email changes for the same user.
            if (Token::HasEmailChangeToken($userid)) {
131
                ThrowUserError("email_change_in_progress");
132 133 134 135 136
            }

            # Before changing an email address, confirm one does not exist.
            CheckEmailSyntax($new_login_name);
            trick_taint($new_login_name);
137 138
            ValidateNewUser($new_login_name)
              || ThrowUserError("account_exists", {email => $new_login_name});
139 140 141 142

            Token::IssueEmailChangeToken($userid,$old_login_name,
                                                 $new_login_name);

143
            $vars->{'email_changes_saved'} = 1;
144 145
        }
    }
146

147
    SendSQL("UPDATE profiles SET " .
148
            "realname = " . SqlQuote(trim($::FORM{'realname'})) .
149 150 151 152
            " WHERE userid = $userid");
}


153
sub DoEmail {
154 155 156
    if (Param("supportwatchers")) {
        my $watcheduserSet = new RelationSet;
        $watcheduserSet->mergeFromDB("SELECT watched FROM watch WHERE" .
157
                                    " watcher=$userid");
158
        $vars->{'watchedusers'} = $watcheduserSet->toString();
159
    }
160

161
    SendSQL("SELECT emailflags FROM profiles WHERE userid = $userid");
162

163
    my ($flagstring) = FetchSQLData();
164

165 166 167
    # If the emailflags haven't been set before, that means that this user 
    # hasn't been to the email pane of userprefs.cgi since the change to 
    # use emailflags. Create a default flagset for them, based on
168
    # static defaults. 
169 170 171 172
    if (!$flagstring) {
        $flagstring = $defaultflagstring;
        SendSQL("UPDATE profiles SET emailflags = " .
                SqlQuote($flagstring) . " WHERE userid = $userid");
173
    }
174

175 176 177 178
    # The 255 param is here, because without a third param, split will
    # trim any trailing null fields, which causes Perl to eject lots of
    # warnings. Any suitably large number would do.
    my %emailflags = split(/~/, $flagstring, 255);
179

180 181 182 183
    # Determine the value of the "excludeself" global email preference.
    # Note that the value of "excludeself" is assumed to be off if the
    # preference does not exist in the user's list, unlike other 
    # preferences whose value is assumed to be on if they do not exist.
184 185
    if (exists($emailflags{'ExcludeSelf'}) 
        && $emailflags{'ExcludeSelf'} eq 'on')
186 187 188 189 190 191 192
    {
        $vars->{'excludeself'} = 1;
    }
    else {
        $vars->{'excludeself'} = 0;
    }
    
193
    foreach my $flag (qw(FlagRequestee FlagRequester)) {
194 195 196 197
        $vars->{$flag} = 
          !exists($emailflags{$flag}) || $emailflags{$flag} eq 'on';
    }
    
198
    # Parse the info into a hash of hashes; the first hash keyed by role,
199 200 201 202 203 204 205 206 207 208 209 210
    # the second by reason, and the value being 1 or 0 for (on or off).
    # Preferences not existing in the user's list are assumed to be on.
    foreach my $role (@roles) {
        $vars->{$role} = {};
        foreach my $reason (@reasons) {
            my $key = "email$role$reason";
            if (!exists($emailflags{$key}) || $emailflags{$key} eq 'on') {
                $vars->{$role}{$reason} = 1;
            }
            else {
                $vars->{$role}{$reason} = 0;
            }
211
        }
212
    }
213 214
}

215 216 217 218 219
# Note: we no longer store "off" values in the database.
sub SaveEmail {
    my $updateString = "";
    
    if (defined $::FORM{'ExcludeSelf'}) {
220
        $updateString .= 'ExcludeSelf~on';
221
    } else {
222 223
        $updateString .= 'ExcludeSelf~';
    }
224
    
225
    foreach my $flag (qw(FlagRequestee FlagRequester)) {
226 227 228
        $updateString .= "~$flag~" . (defined($::FORM{$flag}) ? "on" : "");
    }
    
229 230 231 232 233 234 235 236 237
    foreach my $role (@roles) {
        foreach my $reason (@reasons) {
            # Add this preference to the list without giving it a value,
            # which is the equivalent of setting the value to "off."
            $updateString .= "~email$role$reason~";
            
            # If the form field for this preference is defined, then we
            # know the checkbox was checked, so set the value to "on".
            $updateString .= "on" if defined $::FORM{"email$role$reason"};
238
        }
239
    }
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
            
    SendSQL("UPDATE profiles SET emailflags = " . SqlQuote($updateString) . 
            " WHERE userid = $userid");

    if (Param("supportwatchers") && exists $::FORM{'watchedusers'}) {
        # 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.
        SendSQL("LOCK TABLES watch WRITE, profiles READ");

        # what the db looks like now
        my $origWatchedUsers = new RelationSet;
        $origWatchedUsers->mergeFromDB("SELECT watched FROM watch WHERE" .
                                       " watcher=$userid");

        # Update the database to look like the form
        my $newWatchedUsers = new RelationSet($::FORM{'watchedusers'});
        my @CCDELTAS = $origWatchedUsers->generateSqlDeltas(
                                                         $newWatchedUsers, 
                                                         "watch", 
                                                         "watcher", 
                                                         $userid,
                                                         "watched");
        ($CCDELTAS[0] eq "") || SendSQL($CCDELTAS[0]);
        ($CCDELTAS[1] eq "") || SendSQL($CCDELTAS[1]);

        SendSQL("UNLOCK TABLES");       
268
    }
269 270 271
}


272
sub DoFooter {
273 274
    SendSQL("SELECT mybugslink FROM profiles " .
            "WHERE userid = $userid");
275 276
    $vars->{'mybugslink'} = FetchSQLData();
    
277 278
    SendSQL("SELECT name, linkinfooter FROM namedqueries " .
            "WHERE userid = $userid");
279 280
    
    my @queries;        
281
    while (MoreSQLData()) {
282 283 284 285
        my ($name, $footer) = (FetchSQLData());
        next if ($name eq $::defaultqueryname);
        
        push (@queries, { name => $name, footer => $footer });        
286
    }
287 288
    
    $vars->{'queries'} = \@queries;
289 290 291 292 293 294 295
}
              
sub SaveFooter {
    my %old;
    SendSQL("SELECT name, linkinfooter FROM namedqueries " .
            "WHERE userid = $userid");
    while (MoreSQLData()) {
296 297
        my ($name, $footer) = (FetchSQLData());
        $old{$name} = $footer;
298
    }
299
    
300
    for (my $c = 0; $c < $::FORM{'numqueries'}; $c++) {
301 302 303
        my $name = $::FORM{"name-$c"};
        if (exists $old{$name}) {
            my $new = $::FORM{"query-$c"};
304
            if ($new ne $old{$name}) {
305
                detaint_natural($new);
306 307 308 309
                SendSQL("UPDATE namedqueries SET linkinfooter = $new " .
                        "WHERE userid = $userid " .
                        "AND name = " . SqlQuote($name));
            }
310
        } else {
311
            ThrowUserError("missing_query", {queryname => $name});
312 313
        }
    }
314 315
    SendSQL("UPDATE profiles SET mybugslink = " . 
            SqlQuote($::FORM{'mybugslink'}) . " WHERE userid = $userid");
316

317 318 319 320 321 322 323
    # Make sure that cached queries in the user object are invalidated
    # so that the footer is correct
    my $user = Bugzilla->user;
    $user->flush_queries_cache();

    # Also need to update showmybugslink
    $user->{showmybugslink} = $::FORM{'mybugslink'} ? 1 : 0;
324 325
}
    
326 327 328 329
    
sub DoPermissions {
    my (@has_bits, @set_bits);
    
330 331 332 333 334
    SendSQL("SELECT DISTINCT name, description FROM groups, user_group_map " .
            "WHERE user_group_map.group_id = groups.id " .
            "AND user_id = $::userid " .
            "AND isbless = 0 " .
            "ORDER BY name");
335
    while (MoreSQLData()) {
336 337
        my ($nam, $desc) = FetchSQLData();
        push(@has_bits, {"desc" => $desc, "name" => $nam});
338
    }
339 340 341 342 343 344 345
    my @set_ids = ();
    SendSQL("SELECT DISTINCT name, description FROM groups " .
            "ORDER BY name");
    while (MoreSQLData()) {
        my ($nam, $desc) = FetchSQLData();
        if (UserCanBlessGroup($nam)) {
            push(@set_bits, {"desc" => $desc, "name" => $nam});
346 347
        }
    }
348 349 350
    
    $vars->{'has_bits'} = \@has_bits;
    $vars->{'set_bits'} = \@set_bits;    
351
}
352

353
# No SavePermissions() because this panel has no changeable fields.
354

355 356 357
###############################################################################
# Live code (not subroutine definitions) starts here
###############################################################################
358 359

ConnectToDatabase();
360 361 362 363
confirm_login();

GetVersionTable();

364 365
my $cgi = Bugzilla->cgi;

366 367
$vars->{'login'} = $::COOKIE{'Bugzilla_login'};
$vars->{'changes_saved'} = $::FORM{'dosave'};
368

369
my $current_tab_name = $::FORM{'tab'} || "account";
370

371 372 373
# The SWITCH below makes sure that this is valid
trick_taint($current_tab_name);

374
$vars->{'current_tab_name'} = $current_tab_name;
375

376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
# Do any saving, and then display the current tab.
SWITCH: for ($current_tab_name) {
    /^account$/ && do {
        SaveAccount() if $::FORM{'dosave'};
        DoAccount();
        last SWITCH;
    };
    /^email$/ && do {
        SaveEmail() if $::FORM{'dosave'};
        DoEmail();
        last SWITCH;
    };
    /^footer$/ && do {
        SaveFooter() if $::FORM{'dosave'};
        DoFooter();
        last SWITCH;
    };
    /^permissions$/ && do {
        DoPermissions();
        last SWITCH;
    };
397 398
    ThrowUserError("unknown_tab",
                   { current_tab_name => $current_tab_name });
399 400
}

401
# Generate and return the UI (HTML page) from the appropriate template.
402
print $cgi->header();
403 404
$template->process("account/prefs/prefs.html.tmpl", $vars)
  || ThrowTemplateError($template->error());
405