forked from GibbonEdu/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publicRegistration.php
181 lines (145 loc) · 7.2 KB
/
publicRegistration.php
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
/*
Gibbon: the flexible, open school platform
Founded by Ross Parker at ICHK Secondary. Built by Ross Parker, Sandra Kuipers and the Gibbon community (https://gibbonedu.org/about/)
Copyright © 2010, Gibbon Foundation
Gibbon™, Gibbon Education Ltd. (Hong Kong)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use Gibbon\Data\PasswordPolicy;
use Gibbon\Domain\System\SettingGateway;
use Gibbon\Forms\Form;
use Gibbon\Services\Format;
use Gibbon\Forms\CustomFieldHandler;
//Module includes from User Admin (for custom fields)
include './modules/User Admin/moduleFunctions.php';
$proceed = false;
$settingGateway = $container->get(SettingGateway::class);
if ($session->exists('username') == false) {
$enablePublicRegistration = $settingGateway->getSettingByScope('User Admin', 'enablePublicRegistration');
if ($enablePublicRegistration == 'Y') {
$proceed = true;
}
}
if ($proceed == false) {
// Access denied
$page->addError(__('You do not have access to this action.'));
} else {
//Proceed!
$page->breadcrumbs->add($session->get('organisationNameShort').' '.__('Public Registration'));
$publicRegistrationMinimumAge = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationMinimumAge');
$allowedDomains = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationAllowedDomains');
$allowedDomains = array_filter(array_map('trim', explode(',', $allowedDomains)));
$page->return->addReturns([
'error5' => sprintf(__('Your request failed because you do not meet the minimum age for joining this site (%1$s years of age).'), $publicRegistrationMinimumAge),
'error6' => __('Your request failed because your password does not meet the minimum requirements for strength.'),
'error8' => __('Your request failed because your email is not part of the allowed domains.'),
'success1' => __('Your registration was successfully submitted and is now pending approval. Our team will review your registration and be in touch in due course.'),
'success0' => __('Your registration was successfully submitted, and you may now log into the system using your new username and password.'),
]);
//Get intro
$intro = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationIntro');
if ($intro != '') {
echo '<h3>';
echo __('Introduction');
echo '</h3>';
echo '<p>';
echo $intro;
echo '</p>';
}
$form = Form::create('publicRegistration', $session->get('absoluteURL').'/publicRegistrationProcess.php');
$form->addHiddenValue('address', $session->get('address'));
$form->addRow()->addHeading('Account Details', __('Account Details'));
$row = $form->addRow();
$row->addLabel('surname', __('Surname'));
$row->addTextField('surname')->required()->maxLength(30);
$row = $form->addRow();
$row->addLabel('firstName', __('First Name'));
$row->addTextField('firstName')->required()->maxLength(30);
$row = $form->addRow();
$emailLabel = $row->addLabel('email', __('Email'));
$email = $row->addEmail('email')->required();
$publicRegistrationAlternateEmail = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationAlternateEmail');
if ($publicRegistrationAlternateEmail == "Y") {
$row = $form->addRow();
$row->addLabel('emailAlternate', __('Alternate Email'));
$row->addEmail('emailAlternate');
}
$uniqueEmailAddress = $settingGateway->getSettingByScope('User Admin', 'uniqueEmailAddress');
if ($uniqueEmailAddress == 'Y') {
$email->uniqueField('./publicRegistrationCheck.php');
}
if (!empty($allowedDomains)) {
$emailLabel->description(__('Email address must be part of the allowed domains.',).'<details><summary class="my-2 hover:text-blue-500">'.__('Click to view details').'</summary>'.implode(', ', $allowedDomains).'</details>');
$within = implode(',', array_map(function ($str) { return sprintf("'%s'", $str); }, $allowedDomains));
$email->addValidation('Validate.Inclusion', 'within: ['.$within.'], failureMessage: "'.__('Invalid email!').'", partialMatch: true, caseSensitive: false');
}
$row = $form->addRow();
$row->addLabel('gender', __('Gender'));
$row->addSelectGender('gender')->required();
$row = $form->addRow();
$row->addLabel('dob', __('Date of Birth'));
$row->addDate('dob')->required();
$row = $form->addRow();
$row->addLabel('usernameCheck', __('Username'));
$row->addUsername('usernameCheck')
->required();
/** @var PasswordPolicy */
$policies = $container->get(PasswordPolicy::class);
if (($policiesHTML = $policies->describeHTML()) !== '') {
$form->addRow()->addAlert($policiesHTML, 'warning');
}
$row = $form->addRow();
$row->addLabel('passwordNew', __('Password'));
$row->addPassword('passwordNew')
->addPasswordPolicy($pdo)
->addGeneratePasswordButton($form)
->required()
->maxLength(30);
$row = $form->addRow();
$row->addLabel('passwordConfirm', __('Confirm Password'));
$row->addPassword('passwordConfirm')
->addConfirmation('passwordNew')
->required()
->maxLength(30);
// CUSTOM FIELDS
$container->get(CustomFieldHandler::class)->addCustomFieldsToForm($form, 'User', ['publicRegistration' => 1]);
$privacyStatement = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationPrivacyStatement');
if ($privacyStatement != '') {
$form->addRow()->addHeading('Privacy Statement', __('Privacy Statement'));
$form->addRow()->addContent($privacyStatement);
}
// Honey pot field
$form->addRow()->addClass('hidden')->addTextField('emailAddress');
$agreement = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationAgreement');
if ($agreement != '') {
$form->addRow()->addHeading('Agreement', __('Agreement'));
$form->addRow()->addContent($agreement);
$row = $form->addRow();
$row->addLabel('agreement', __('Do you agree to the above?'));
$row->addCheckbox('agreement')->description(__('Yes'))->required();
}
$row = $form->addRow();
$row->addFooter();
$row->addSubmit();
echo $form->getOutput();
//Get postscrript
$postscript = $settingGateway->getSettingByScope('User Admin', 'publicRegistrationPostscript');
if ($postscript != '') {
echo '<h2>';
echo __('Further Information');
echo '</h2>';
echo "<p style='padding-bottom: 15px'>";
echo $postscript;
echo '</p>';
}
}