summaryrefslogtreecommitdiffstats
path: root/createaccount.cgi
blob: 3b3dd7c1f717c915b7b0a5f8817cb57582084fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/perl -T
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

use 5.14.0;
use strict;
use warnings;

use lib qw(. lib local/lib/perl5);

use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::Error;
use Bugzilla::Token;

# Just in case someone already has an account, let them get the correct footer
# on an error message. The user is logged out just after the account is
# actually created.
my $user = Bugzilla->login(LOGIN_OPTIONAL);
my $cgi = Bugzilla->cgi;
my $template = Bugzilla->template;
my $vars = { doc_section => 'using/creating-an-account.html' };

print $cgi->header();

my $email = $cgi->param('email');
my $login = Bugzilla->params->{'use_email_as_login'} ? $email : $cgi->param('login');

my $request_new_password = $cgi->param('request_new_password');

if ($request_new_password) {
    $template->process('account/request-new-password.html.tmpl', $vars)
      || ThrowTemplateError($template->error());
}
elsif ($email && $login) {
    $user->check_account_creation_enabled;
    # Check the hash token to make sure this user actually submitted
    # the create account form.
    my $token = $cgi->param('token');
    check_hash_token($token, ['create_account']);

    $user->check_and_send_account_creation_confirmation($login, $email);
    $vars->{'login'} = $login;
    $vars->{'email'} = $email;

    $template->process("account/created.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
}
else {
    $user->check_account_creation_enabled;
    # Show the standard "would you like to create an account?" form.
    $template->process('account/create.html.tmpl', $vars)
      || ThrowTemplateError($template->error());
}