3 declare(strict_types=1);
29 private const ID =
'prg_restart_assignments_temporal_progress';
42 $this->
log = $DIC[
'ilLog'];
43 $this->
lng = $DIC[
'lng'];
44 $this->
lng->loadLanguageModule(
'prg');
47 $this->assignment_repo =
$dic[
'repo.assignment'];
48 $this->adapter =
$dic[
'cron.restart'];
53 return $this->
lng->txt(
'prg_restart_assignments_temporal_progress_title');
58 return $this->
lng->txt(
'prg_restart_assignments_temporal_progress_desc');
78 return self::SCHEDULE_TYPE_IN_DAYS;
91 $programmes_to_reassign = $this->adapter->getRelevantProgrammeIds();
92 if (count($programmes_to_reassign) === 0) {
97 $programmes_and_due = [];
99 foreach ($programmes_to_reassign as $programme_obj_id => $days_offset) {
100 $interval =
new DateInterval(
'P' . $days_offset .
'D');
101 $due = $today->add($interval);
102 $programmes_and_due[$programme_obj_id] = $due;
105 $assignments = $this->assignment_repo->getAboutToExpire($programmes_and_due,
false);
107 if (count($assignments) === 0) {
111 foreach ($assignments as $ass) {
112 if ($ass->getRestartedAssignmentId() < 0) {
115 $restart_settings = $prg->getSettings()->getValidityOfQualificationSettings();
116 if ($restart_settings->getRestartRecheck()
117 && !$ass->isManuallyAssigned()
118 && !$prg->getApplicableMembershipSourceForUser($ass->getUserId(), null)
125 'PRG, RestartAssignments: user %s\'s assignment %s is being restarted (Programme %s)',
132 $restarted = $prg->assignUser($ass->getUserId(), self::ACTING_USR_ID,
false);
133 $ass = $ass->withRestarted($restarted->getId(), $today);
134 $this->assignment_repo->store($ass);
136 $this->adapter->actOnSingleAssignment($restarted);
147 if (!array_key_exists($prg_obj_id, $this->prgs)) {
150 return $this->prgs[$prg_obj_id];
158 protected function log(
string $msg): void
160 $this->
log->write($msg);
ilPRGAssignmentDBRepository $assignment_repo
ilPrgCronJobAdapter $adapter
Component logger with individual log levels by component id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getStudyProgramme(int $prg_obj_id)
getDefaultScheduleValue()
Re-assign users (according to restart-date).
static getInstanceByObjId(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...