19 declare(strict_types=1);
49 protected \ILIAS\HTTP\Services
$http;
55 $this->tpl = $DIC->ui()->mainTemplate();
57 $this->
ctrl = $DIC->ctrl();
58 $this->
ctrl->saveParameter($this,
'lang');
59 $this->
lng = $DIC->language();
60 $this->
lng->loadLanguageModule(
'registration');
61 $this->error = $DIC[
'ilErr'];
63 $this->globalUser = $DIC->user();
64 $this->rbacreview = $DIC->rbac()->review();
65 $this->rbacadmin = $DIC->rbac()->admin();
66 $this->ui_factory = $DIC->ui()->factory();
67 $this->ui_renderer = $DIC->ui()->renderer();
70 $this->code_enabled = ($this->registration_settings->registrationCodeRequired() ||
71 $this->registration_settings->getAllowCodes());
73 $this->termsOfServiceEvaluation = $DIC[
'tos.document.evaluator'];
76 $this->
http = $DIC->http();
83 $this->error->raiseError($this->
lng->txt(
'reg_disabled'), $this->error->FATAL);
86 $cmd = $this->
ctrl->getCmd();
95 $this->tpl->setPermanentLink(
'usr', null,
'registration');
101 $tpl = ilStartUpGUI::initStartUpTemplate([
'tpl.usr_registration.html',
'Services/Registration'],
true);
102 $tpl->
setVariable(
'TXT_PAGEHEADLINE', $this->
lng->txt(
'registration'));
113 $this->globalUser->setLanguage($this->
lng->getLangKey());
120 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
123 if ($this->code_enabled) {
125 $field->setTitle($this->
lng->txt(
'registration_codes_type_reg'));
126 $this->
form->addItem($field);
127 $code =
new ilTextInputGUI($this->
lng->txt(
"registration_code"),
"usr_registration_code");
130 if ($this->registration_settings->registrationCodeRequired()) {
131 $code->setRequired(
true);
132 $code->setInfo($this->
lng->txt(
"registration_code_required_info"));
134 $code->setInfo($this->
lng->txt(
"registration_code_optional_info"));
136 $this->
form->addItem($code);
140 $user_defined_data = $this->globalUser->getUserDefinedData();
144 foreach ($user_defined_fields->getRegistrationDefinitions() as $field_id => $definition) {
148 $user_defined_data[
'f_' . $field_id] ??
'' 151 $custom_fields[
'udf_' . $definition[
'field_id']] = $fprop;
160 $up->skipGroup(
"preferences");
162 $up->setAjaxCallback(
163 $this->
ctrl->getLinkTarget($this,
'doProfileAutoComplete',
'',
true)
165 $this->
lng->loadLanguageModule(
"user");
167 $up->addStandardFieldsToForm($this->
form, null, $custom_fields);
168 unset($custom_fields);
171 $flang = $this->
form->getItemByPostVar(
"usr_language");
173 $flang->setValue($this->
lng->getLangKey());
177 if ($this->code_enabled) {
178 $role = $this->
form->getItemByPostVar(
"usr_roles");
179 if ($role && $role->getType() ===
"select") {
180 $role->setInfo($this->
lng->txt(
"registration_code_role_info"));
186 foreach ($this->registration_settings->getAllowedDomains() as $item) {
191 if (count($domains)) {
192 $mail_obj = $this->
form->getItemByPostVar(
'usr_email');
193 $mail_obj->setInfo(sprintf(
194 $this->
lng->txt(
"reg_email_domains"),
195 implode(
", ", $domains)
197 ($this->code_enabled ? $this->
lng->txt(
"reg_email_domains_code") :
""));
202 $mail_obj = $this->
form->getItemByPostVar(
'usr_email');
204 $mail_obj->setRequired(
true);
209 $document = $this->termsOfServiceEvaluation->document();
212 $field->setTitle($this->
lng->txt(
'usr_agreement'));
213 $this->
form->addItem($field);
216 $field->setHtml(
'<div id="agreement">' . $document->content() .
'</div>');
217 $this->
form->addItem($field);
221 $field->setValue(
'1');
222 $this->
form->addItem($field);
225 $this->
form->addCommandButton(
"saveForm", $this->
lng->txt(
"register"));
231 $form_valid = $this->
form->checkInput();
234 $valid_code = $valid_role =
false;
237 if ($this->code_enabled) {
238 $code = $this->
form->getInput(
'usr_registration_code');
242 $this->registration_settings->registrationCodeRequired()
246 $code_obj = $this->
form->getItemByPostVar(
'usr_registration_code');
247 $code_obj->setAlert($this->
lng->txt(
'registration_code_not_valid'));
254 if ($role_id && $this->rbacreview->isGlobalRole($role_id)) {
255 $valid_role = $role_id;
268 foreach ($this->registration_settings->getAllowedDomains() as $item) {
273 if (count($domains)) {
275 foreach ($domains as $domain) {
276 $domain = str_replace(
"*",
"~~~", $domain);
277 $domain = preg_quote($domain,
'/');
278 $domain = str_replace(
"~~~",
".+", $domain);
279 if (preg_match(
"/^" . $domain .
"$/",
$email, $hit)) {
285 $mail_obj = $this->
form->getItemByPostVar(
'usr_email');
286 $mail_obj->setAlert(sprintf(
287 $this->
lng->txt(
"reg_email_domains"),
288 implode(
", ", $domains)
298 !$this->registration_settings->passwordGenerationEnabled() &&
300 $this->
form->getInput(
'usr_password'),
301 $this->
form->getInput(
'username'),
305 $passwd_obj = $this->
form->getItemByPostVar(
'usr_password');
306 $passwd_obj->setAlert($this->
lng->txt($error_lng_var));
310 $showGlobalTermsOfServieFailure =
false;
312 $agr_obj = $this->
form->getItemByPostVar(
'accept_terms_of_service');
314 $agr_obj->setAlert($this->
lng->txt(
'force_accept_usr_agreement'));
317 $showGlobalTermsOfServieFailure =
true;
324 if ($this->registration_settings->roleSelectionEnabled()) {
325 $selected_role = $this->
form->getInput(
"usr_roles");
327 $valid_role = (
int) $selected_role;
332 $valid_role = $registration_role_assignments->getRoleByEmail($this->
form->getInput(
"usr_email"));
338 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"registration_no_valid_role"));
343 $login_obj = $this->
form->getItemByPostVar(
'username');
344 $login = $this->
form->getInput(
"username");
346 $login_obj->setAlert($this->
lng->txt(
"login_invalid"));
352 $login_obj->setAlert($this->
lng->txt(
"login_exists"));
354 } elseif ((
int) $this->
settings->get(
'allow_change_loginname') &&
355 (
int) $this->
settings->get(
'reuse_of_loginnames') === 0 &&
357 $login_obj->setAlert($this->
lng->txt(
'login_exists'));
363 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
364 } elseif ($showGlobalTermsOfServieFailure) {
365 $this->
lng->loadLanguageModule(
'tos');
366 $this->tpl->setOnScreenMessage(
'failure', sprintf(
367 $this->
lng->txt(
'tos_account_reg_not_possible'),
371 $password = $this->createUser($valid_role);
373 return $this->
login();
375 $this->
form->setValuesByPost();
379 protected function createUser(
int $a_role):
string 385 $ilias = $DIC[
'ilias'];
386 $ilias->raiseError(
"Invalid role selection in registration" .
387 ", IP: " .
$_SERVER[
"REMOTE_ADDR"], $ilias->error_obj->FATAL);
396 $up->skipGroup(
"preferences");
397 $up->skipGroup(
"settings");
398 $up->skipField(
"password");
399 $up->skipField(
"birthday");
400 $up->skipField(
"upload");
401 foreach ($up->getStandardFields() as $k => $v) {
403 $method =
"set" . substr($v[
"method"], 3);
404 if (method_exists($this->userObj, $method)) {
405 if ($k !==
"username") {
408 $field_obj = $this->
form->getItemByPostVar($k);
410 $this->userObj->$method($this->
form->getInput($k));
416 $this->userObj->setFullName();
418 $birthday_obj = $this->
form->getItemByPostVar(
"usr_birthday");
420 $birthday = $this->
form->getInput(
"usr_birthday");
421 $this->userObj->setBirthday($birthday);
424 $this->userObj->setTitle($this->userObj->getFullname());
425 $this->userObj->setDescription($this->userObj->getEmail());
427 if ($this->registration_settings->passwordGenerationEnabled()) {
429 $password = $password[0];
431 $password = $this->
form->getInput(
"usr_password");
433 $this->userObj->setPasswd($password);
437 $defs = $user_defined_fields->getRegistrationDefinitions();
439 foreach ($defs as $definition) {
440 $f =
"udf_" . $definition[
'field_id'];
441 $item = $this->
form->getItemByPostVar(
$f);
442 if ($item && !$item->getDisabled()) {
443 $udf[$definition[
'field_id']] = $this->
form->getInput(
$f);
446 $this->userObj->setUserDefinedData($udf);
448 $this->userObj->setTimeLimitOwner(7);
450 $access_limit = null;
452 $this->code_was_used =
false;
453 $code_has_access_limit =
false;
456 $code_local_roles = [];
457 if ($this->code_enabled) {
458 $code_local_roles = $code_has_access_limit = null;
461 $code = $this->
form->getInput(
'usr_registration_code');
466 $this->code_was_used =
true;
470 if (isset($code_data[
'role_local']) && is_string($code_data[
'role_local'])) {
472 $code_local_roles = array_filter(array_map(
473 static fn (
string $value):
int => (
int) $value,
474 explode(
';', $code_data[
'role_local'])
477 if ($code_data[
"alimit"]) {
479 $code_has_access_limit =
true;
481 switch ($code_data[
"alimit"]) {
483 $abs = date_parse($code_data[
"alimitdt"]);
484 $access_limit = mktime(23, 59, 59, $abs[
'month'], $abs[
'day'], $abs[
'year']);
488 $rel = unserialize($code_data[
"alimitdt"], [
'allowed_classes' =>
false]);
489 $access_limit = (
int) ($rel[
"d"] * 86400 + $rel[
"m"] * 2592000 + $rel[
"y"] * 31536000 + time());
497 if (!($this->code_was_used && $code_has_access_limit) &&
498 $this->registration_settings->getAccessLimitation()) {
500 switch ($access_limitations_obj->getMode($a_role)) {
502 $access_limit = $access_limitations_obj->getAbsolute($a_role);
506 $rel_d = $access_limitations_obj->getRelative($a_role,
'd');
507 $rel_m = $access_limitations_obj->getRelative($a_role,
'm');
508 $access_limit = $rel_d * 86400 + $rel_m * 2592000 + time();
514 $this->userObj->setTimeLimitUnlimited(
false);
515 $this->userObj->setTimeLimitUntil($access_limit);
517 $this->userObj->setTimeLimitUnlimited(
true);
518 $this->userObj->setTimeLimitUntil(time());
521 $this->userObj->setTimeLimitFrom(time());
525 $this->userObj->create();
530 $this->userObj->setActive(
true, 0);
532 $this->userObj->setActive(
false, 0);
534 $this->userObj->setActive(
false, 0);
539 $this->userObj->setLastPasswordChangeTS(time());
541 $this->userObj->setIsSelfRegistered(
true);
544 $this->userObj->saveAsNew();
547 $this->userObj->updateOwner();
550 $this->userObj->setLanguage($this->
form->getInput(
'usr_language'));
553 if ($handleDocument) {
556 $helper->trackAcceptance($this->userObj, $this->termsOfServiceEvaluation->document());
559 $hits_per_page = $this->
settings->get(
"hits_per_page");
560 if ($hits_per_page < 10) {
563 $this->userObj->setPref(
"hits_per_page", $hits_per_page);
564 if ($this->
http->wrapper()->query()->has(
'target')) {
565 $this->userObj->setPref(
567 $this->
http->wrapper()->query()->retrieve(
569 $this->
refinery->kindlyTo()->string()
573 $this->userObj->setPref(
'bs_allow_to_contact_me', $this->
settings->get(
'bs_allow_to_contact_me',
'n'));
574 $this->userObj->setPref(
'chat_osc_accept_msg', $this->
settings->get(
'chat_osc_accept_msg',
'n'));
575 $this->userObj->setPref(
'chat_broadcast_typing', $this->
settings->get(
'chat_broadcast_typing',
'n'));
576 $this->userObj->writePrefs();
578 $this->rbacadmin->assignUser($a_role, $this->userObj->getId());
581 if ($this->code_was_used && is_array($code_local_roles)) {
582 foreach (array_unique($code_local_roles) as $local_role_obj_id) {
585 $this->rbacadmin->assignUser($local_role_obj_id, $this->userObj->getId());
588 $role_obj =
$GLOBALS[
'DIC'][
'rbacreview']->getObjectOfRole($local_role_obj_id);
593 $role_ref = end($role_refs);
603 return (
string) $password;
609 if ($this->registration_settings->getApproveRecipients()) {
612 if (!$this->code_was_used &&
618 $mail->setRecipients($this->registration_settings->getApproveRecipients());
619 $mail->setAdditionalInformation([
'usr' => $this->userObj]);
624 if (!$this->code_was_used &&
628 $mail->setRecipients([$this->userObj]);
629 $mail->setAdditionalInformation(
631 'usr' => $this->userObj,
632 'hash_lifetime' => $this->registration_settings->getRegistrationHashLifetime()
638 $this->registration_settings,
642 $accountMail->withDirectRegistrationMode()->send($this->userObj, $password, $this->code_was_used);
648 $tpl = ilStartUpGUI::initStartUpTemplate([
'tpl.usr_registered.html',
'Services/Registration'],
false);
649 $this->tpl->setVariable(
'TXT_PAGEHEADLINE', $this->
lng->txt(
'registration'));
651 $tpl->
setVariable(
"TXT_WELCOME", $this->
lng->txt(
"welcome") .
", " . $this->userObj->getTitle() .
"!");
658 !$this->registration_settings->passwordGenerationEnabled()
660 $tpl->
setVariable(
'TXT_REGISTERED', $this->
lng->txt(
'txt_registered'));
662 $login_link = $this->ui_renderer->render(
663 $this->ui_factory->link()->standard(
664 $this->
lng->txt(
'login_to_ilias'),
665 './login.php?cmd=force_login&lang=' . $this->userObj->getLanguage()
670 $tpl->
setVariable(
'TXT_REGISTERED', $this->
lng->txt(
'txt_submitted'));
672 $tpl->
setVariable(
'TXT_REGISTERED', $this->
lng->txt(
'reg_confirmation_link_successful'));
674 $tpl->
setVariable(
'TXT_REGISTERED', $this->
lng->txt(
'txt_registered_passw_gen'));
681 $field_id = (string) $_REQUEST[
"f"];
682 $term = (string) $_REQUEST[
"term"];
685 if (count($result)) {
686 echo json_encode($result, JSON_THROW_ON_ERROR);
static getCodeRole(string $code)
Class for mime mail registration notifications.
static getLogger(string $a_component_id)
Get component logger.
Class ilAccountRegistrationGUI.
const TYPE_NOTIFICATION_ACTIVATION
static getAutocompleteResult(string $a_field_id, string $a_term)
static _getAllReferences(int $id)
get all reference ids for object ID
ILIAS Refinery Factory $refinery
Class class.ilregistrationEmailRoleAssignments.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
ILIAS HTTP Services $http
Interface ilTermsOfServiceDocumentEvaluation.
static printToGlobalTemplate($tpl)
static getCodeData(string $code)
const TYPE_NOTIFICATION_APPROVERS
static http()
Fetches the global http state from ILIAS.
Class ilAccountRegistrationMail.
ilRecommendedContentManager $recommended_content_manager
static isValidRegistrationCode(string $a_code)
static setMode(int $mode)
static _loginExists(string $a_login, int $a_user_id=0)
check if a login name already exists You may exclude a user from the check by giving his user id as 2...
static isLogin(string $a_login)
static isPasswordValidForUserContext(string $clear_text_password, $user, ?string &$error_language_variable=null)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
form( $class_path, string $cmd)
Class class.ilRegistrationAccessLimitation.
static generatePasswords(int $a_number)
Generate a number of passwords.
Class ilTermsOfServiceHelper.
static _doesLoginnameExistInHistory(string $a_login)
Checks whether the passed loginname already exists in history.
Class ilObjAuthSettingsGUI.
Error Handling & global info handling uses PEAR error class.
static useCode(string $code)
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
ILIAS UI Factory $ui_factory
ilRegistrationSettings $registration_settings
ilTermsOfServiceDocumentEvaluation $termsOfServiceEvaluation
distributeMails(string $password)
Class ilRbacAdmin Core functions for role based access control.
static _lookupType(int $id, bool $reference=false)
ilGlobalTemplateInterface $tpl
const CONTEXT_REGISTRATION
static _lookupAllowRegister(int $a_role_id)
check whether role is allowed in user registration or not
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $ui_renderer
const TYPE_NOTIFICATION_CONFIRMATION