3 declare(strict_types=1);
33 private \ILIAS\HTTP\GlobalHttpState
$http;
40 $this->main_tpl = $DIC->ui()->mainTemplate();
43 if (isset($DIC[
'ilSetting'])) {
46 $this->roleIdWhiteliste = (string) $this->
settings->get(
47 'cron_users_without_login_delete_incl_roles',
51 $this->thresholdInDays = (
int) $this->
settings->get(
52 'cron_users_without_login_delete_threshold',
53 (
string) self::DEFAULT_CREATION_THRESHOLD
57 if (isset($DIC[
'lng'])) {
58 $this->
lng = $DIC->language();
59 $this->
lng->loadLanguageModule(
'usr');
62 if (isset($DIC[
'rbacreview'])) {
63 $this->rbacreview = $DIC->rbac()->review();
66 if (isset($DIC[
'ilObjDataCache'])) {
67 $this->objectDataCache = $DIC[
'ilObjDataCache'];
70 if (isset($DIC[
'http'])) {
71 $this->
http = $DIC->http();
74 if (isset($DIC[
'refinery'])) {
82 return 'user_never_logged_in';
89 return $DIC->language()->txt(
'user_never_logged_in');
96 return $DIC->language()->txt(
'user_never_logged_in_info');
101 return self::SCHEDULE_TYPE_DAILY;
134 $this->thresholdInDays ?: self::DEFAULT_CREATION_THRESHOLD
137 $roleIdWhitelist = array_filter(array_map(
'intval', explode(
',', $this->roleIdWhiteliste)));
140 foreach ($userIds as $userId) {
152 if (count($roleIdWhitelist) > 0) {
153 $assignedRoleIds = array_filter(array_map(
'intval', $this->rbacreview->assignedRoles($userId)));
155 $respectedRolesToInclude = array_intersect($assignedRoleIds, $roleIdWhitelist);
156 if (count($respectedRolesToInclude) > 0) {
165 $DIC->logger()->user()->info(sprintf(
166 "Deleting user account with id %s (login: %s)",
177 $message = sprintf(
'%s user(s) deleted', $counter);
180 $result->setStatus($status);
189 $this->
lng->txt(
'cron_users_without_login_del_role_whitelist'),
192 $roleWhiteList->
setInfo($this->
lng->txt(
'cron_users_without_login_del_role_whitelist_info'));
194 foreach ($this->rbacreview->getGlobalRoles() as $role_id) {
196 $roles[$role_id] = $this->objectDataCache->lookupTitle($role_id);
199 $roleWhiteList->setOptions($roles);
200 $roleWhiteList->setValue(array_filter(array_map(
'intval', explode(
',', $this->roleIdWhiteliste))));
201 $roleWhiteList->setWidth(300);
202 $a_form->
addItem($roleWhiteList);
205 $this->
lng->txt(
'cron_users_without_login_del_create_date_thr'),
209 $threshold->setInfo($this->
lng->txt(
'cron_users_without_login_del_create_date_thr_info'));
210 $threshold->setValue((
string) $this->thresholdInDays);
211 $threshold->setSuffix($this->
lng->txt(
'days'));
212 $threshold->setSize(4);
213 $threshold->setMaxLength(4);
214 $threshold->setRequired(
true);
222 $this->roleIdWhiteliste = implode(
',', $this->
http->wrapper()->post()->retrieve(
225 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
231 $this->thresholdInDays = $this->
http->wrapper()->post()->retrieve(
237 $a_form->
getItemByPostVar(
'threshold')->setAlert($this->
lng->txt(
'user_never_logged_in_info_threshold_err_num'));
242 'cron_users_without_login_delete_incl_roles',
243 $this->roleIdWhiteliste
246 'cron_users_without_login_delete_threshold',
247 (
string) $this->thresholdInDays
252 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
ILIAS Refinery Factory $refinery
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
saveCustomSettings(ilPropertyFormGUI $a_form)
ILIAS HTTP GlobalHttpState $http
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjectDataCache $objectDataCache
static http()
Fetches the global http state from ILIAS.
addCustomSettingsToForm(ilPropertyFormGUI $a_form)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
const DEFAULT_CREATION_THRESHOLD
getDefaultScheduleValue()
ilGlobalTemplateInterface $main_tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getUserIdsNeverLoggedIn(int $thresholdInDays)
Get ids of all users that have never logged in.