19 declare(strict_types=1);
34 '%s, progress-id (%s/%s)',
35 $this->user_info->getFullname(),
49 if (count($refs) < 1) {
50 throw new ilException(
"Could not find ref_id for programme with obj_id $obj_id");
52 return (
int) array_shift($refs);
62 $node_settings = $settings_repo->
get($progress->
getNodeId());
63 $completion_mode = $node_settings->getLPMode();
65 switch ($completion_mode) {
80 $successful = ($achieved_points >= $required_points);
85 ->withCompletion($completing_crs_id, $this->
getNow());
96 ->withValidityOfQualification(
null);
109 while (!$zipper->
isTop()) {
112 function ($pgs) use ($settings_repo) {
115 $deadline = $pgs->getDeadline();
116 if (!is_null($deadline)
117 && $deadline->format($format) <= $today->format($format)
142 $date = $cdate->add(
new DateInterval(
'P' . $period .
'D'));
148 ->withInvalidated(!$validity);
160 $date = $date->add(
new DateInterval(
'P' . $period .
'D'));
170 $programme_status = $settings_repo->
get($pgs->
getNodeId())->getAssessmentSettings()->getStatus();
186 ?
int $acting_usr_id =
null,
187 bool $recalculate =
true 193 if (is_null($acting_usr_id)) {
195 $acting_usr_id = $this->getLoggedInUserId();
200 if (!is_null($deadline)
201 && $deadline->format($format) < $today->format($format)
206 $node_settings = $settings_repo->
get($progress->
getNodeId());
207 $completion_mode = $node_settings->getLPMode();
215 if (is_null($deadline)
216 || $deadline->format($format) >= $today->format($format)
240 ->withDeadline(
null);
246 ->withLastChange($acting_usr_id, $this->
getNow())
247 ->withIndividualModifications(
false);
263 $progress_path = $this->getProgressForNode($node_id)->getPath();
264 $zipper =
new Zipper($this->getProgressTree());
265 return $zipper = $zipper->toPath($progress_path);
270 $this->getEvents()->userSuccessful($this, $pgs->
getNodeId());
274 $this->getEvents()->validityChange($this, $pgs->
getNodeId());
278 $this->getEvents()->deadlineChange($this, $pgs->
getNodeId());
282 $this->getEvents()->scoreChange($this, $pgs->
getNodeId());
286 $this->getEvents()->userRevertSuccessful($this, $pgs->
getNodeId());
291 $zipper = $this->
getZipper($this->getRootId());
292 $zipper = $zipper->modifyAll(
293 fn($pgs) => $pgs->withAssignmentDate($this->getNow())
295 return $this->withProgressTree($zipper->getRoot());
302 $zipper = $this->
getZipper($this->getRootId());
303 $zipper = $zipper->modifyAll(
304 function ($pgs) use ($acting_usr_id, $settings_repo):
ilPRGProgress {
310 return $this->withProgressTree($zipper->getRoot());
319 $zipper = $this->
getZipper($node_id)->modifyFocus(
320 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo):
ilPRGProgress {
321 if ($pgs->isRelevant()) {
322 $err_collection->
add(
false,
'will_not_modify_relevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
325 $pgs = $pgs->markRelevant($this->
getNow(), $acting_usr_id);
333 return $this->withProgressTree($zipper->getRoot());
344 if ($zipper->isTop()) {
345 $err_collection->
add(
false,
'will_not_set_top_progress_to_irrelevant', $this->
getProgressIdString($node_id));
349 $zipper = $zipper->modifyFocus(
350 function ($pgs) use ($err_collection, $acting_usr_id):
ilPRGProgress {
351 if (!$pgs->isRelevant()) {
352 $err_collection->
add(
false,
'will_not_modify_irrelevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
356 $err_collection->
add(
false,
'will_not_modify_successful_progress', $this->
getProgressIdString($pgs->getNodeId()));
360 $pgs = $pgs->markNotRelevant($this->
getNow(), $acting_usr_id);
367 return $this->withProgressTree($zipper->getRoot());
379 $zipper = $zipper->modifyFocus(
380 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo):
ilPRGProgress {
381 if (!$pgs->isRelevant()) {
382 $err_collection->
add(
false,
'will_not_modify_irrelevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
387 if ($pgs->getStatus() === $new_status) {
391 if (!$pgs->isTransitionAllowedTo($new_status)) {
392 $err_collection->
add(
false,
'status_transition_not_allowed', $this->
getProgressIdString($pgs->getNodeId()));
397 ->markAccredited($this->
getNow(), $acting_usr_id)
398 ->withCurrentAmountOfPoints($pgs->getAmountOfPoints());
401 if (!$pgs->getValidityOfQualification()) {
402 $settings = $settings_repo->
get($pgs->getNodeId())->getValidityOfQualificationSettings();
413 return $this->withProgressTree($zipper->getRoot());
425 $zipper = $zipper->modifyFocus(
426 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo):
ilPRGProgress {
427 if (!$pgs->isRelevant()) {
428 $err_collection->
add(
false,
'will_not_modify_irrelevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
433 if ($pgs->getStatus() === $new_status) {
437 if (!$pgs->isTransitionAllowedTo($new_status)
441 $err_collection->
add(
false,
'status_transition_not_allowed', $this->
getProgressIdString($pgs->getNodeId()));
446 ->unmarkAccredited($this->
getNow(), $acting_usr_id)
447 ->withCurrentAmountOfPoints($pgs->getAchievedPointsOfChildren());
450 $old_status = $pgs->getStatus();
452 if ($pgs->getStatus() !== $old_status) {
453 $err_collection->
add(
false,
'status_changed_due_to_deadline', $this->
getProgressIdString($pgs->getNodeId()));
463 return $this->withProgressTree($zipper->getRoot());
471 $zipper = $this->
getZipper($this->getRootId());
473 $zipper = $zipper->modifyAll(
474 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, &$leafs):
ilPRGProgress {
478 if (!$pgs->getSubnodes()) {
479 $leafs[] = $pgs->getPath();
485 foreach ($leafs as
$path) {
488 return $this->withProgressTree($zipper->getRoot());
494 int $triggering_obj_id
496 $zipper = $this->
getZipper($node_id)->modifyFocus(
497 function ($pgs) use ($settings_repo, $triggering_obj_id):
ilPRGProgress {
501 if ($pgs->isInProgress() &&
502 (is_null($deadline) || $deadline->format($format) >= $now->format($format))
504 $pgs = $pgs->succeed($now, $triggering_obj_id)
505 ->withCurrentAmountOfPoints($pgs->getAmountOfPoints());
508 $settings = $settings_repo->
get($pgs->getNodeId());
518 return $this->withProgressTree($zipper->getRoot());
526 $zipper = $this->
getZipper($this->getRootId());
529 $deadline = $this->
getNow();
530 $zipper = $zipper->modifyAll(
531 function ($pgs) use ($acting_usr_id, $deadline, &$touched):
ilPRGProgress {
532 if (is_null($pgs->getDeadline())
533 || !$pgs->isInProgress()
541 return $pgs->markFailed($this->
getNow(), $acting_usr_id);
545 foreach ($touched as
$path) {
549 return $this->withProgressTree($zipper->getRoot());
559 $zipper = $this->
getZipper($node_id)->modifyFocus(
560 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, $deadline):
ilPRGProgress {
561 if (!$pgs->isRelevant()) {
562 $err_collection->
add(
false,
'will_not_modify_irrelevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
565 if ($pgs->isSuccessful()) {
566 $err_collection->
add(
false,
'will_not_modify_deadline_on_successful_progress', $this->
getProgressIdString($pgs->getNodeId()));
570 $pgs = $pgs->withDeadline($deadline)
571 ->withLastChange($acting_usr_id, $this->
getNow())
572 ->withIndividualModifications(
true);
574 if ($pgs->isInProgress()) {
583 return $this->withProgressTree($zipper->getRoot());
593 $zipper = $this->
getZipper($node_id)->modifyFocus(
594 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, $validity_date):
ilPRGProgress {
595 if (!$pgs->isRelevant()) {
596 $err_collection->
add(
false,
'will_not_modify_irrelevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
599 if (!$pgs->isSuccessful()) {
600 $err_collection->
add(
false,
'will_not_modify_validity_on_non_successful_progress', $this->
getProgressIdString($pgs->getNodeId()));
605 $pgs = $pgs->withValidityOfQualification($validity_date)
606 ->withLastChange($acting_usr_id, $this->
getNow())
607 ->withIndividualModifications(
true)
608 ->withInvalidated(!$validity);
617 return $this->withProgressTree($zipper->getRoot());
627 $zipper = $this->
getZipper($node_id)->modifyFocus(
628 function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, $points):
ilPRGProgress {
629 if (!$pgs->isRelevant()) {
630 $err_collection->
add(
false,
'will_not_modify_irrelevant_progress', $this->
getProgressIdString($pgs->getNodeId()));
633 if ($pgs->isSuccessful()) {
634 $err_collection->
add(
false,
'will_not_modify_successful_progress', $this->
getProgressIdString($pgs->getNodeId()));
638 $pgs = $pgs->withAmountOfPoints($points)
639 ->withLastChange($acting_usr_id, $this->
getNow())
640 ->withIndividualModifications(
true);
649 return $this->withProgressTree($zipper->getRoot());
655 $zipper = $this->
getZipper($this->getRootId());
659 $zipper = $zipper->modifyAll(
661 if (!$pgs->isSuccessful() || $pgs->hasValidQualification($now)) {
665 return $pgs->invalidate();
669 foreach ($touched as
$path) {
673 return $this->withProgressTree($zipper->getRoot());
unmarkAccredited(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
notifyProgressRevertSuccess(ilPRGProgress $pgs)
notifyScoreChange(ilPRGProgress $pgs)
markNotRelevant(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
resetProgressToSettings(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $pgs, int $acting_usr_id)
markAccredited(ilStudyProgrammeSettingsRepository $settings_repo, ilStudyProgrammeEvents $events, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
withValidityOfQualification(?\DateTimeImmutable $date=null)
changeProgressDeadline(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, ?DateTimeImmutable $deadline)
succeed(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $triggering_obj_id)
withDeadline(?\DateTimeImmutable $deadline=null)
recalculateProgressStatus(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $progress)
notifyProgressSuccess(ilPRGProgress $pgs)
static _getAllReferences(int $id)
get all reference ids for object ID
withCurrentAmountOfPoints(int $points_cur)
get(int $obj_id)
Load settings belonging to a SP-Object.
updateProgressDeadlineFromSettings(ilStudyProgrammeDeadlineSettings $settings, ilPRGProgress $progress)
invalidate(ilStudyProgrammeSettingsRepository $settings_repo)
getAchievedPointsOfChildren()
add(bool $success, string $message, string $record_identitifer)
markNotFailed(\DateTimeImmutable $date, int $acting_usr_id)
updateParentProgresses(ilStudyProgrammeSettingsRepository $settings_repo, Zipper $zipper)
changeProgressValidityDate(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, ?DateTimeImmutable $validity_date)
applyProgressDeadline(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $progress, ?int $acting_usr_id=null, bool $recalculate=true)
getProgressIdString(int $node_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withAmountOfPoints(int $points)
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
updateProgressRelevanceFromSettings(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $pgs)
updatePlanFromRepository(ilStudyProgrammeSettingsRepository $settings_repo, int $acting_usr_id, ilPRGMessageCollection $err_collection)
Covers the persistence of settings belonging to a study programme (SP).
markFailed(\DateTimeImmutable $date, int $acting_usr_id)
resetProgresses(ilStudyProgrammeSettingsRepository $settings_repo, int $acting_usr_id)
changeAmountOfPoints(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, int $points)
const STATUS_NOT_RELEVANT
markProgressesFailedForExpiredDeadline(ilStudyProgrammeSettingsRepository $settings_repo, int $acting_usr_id)
notifyValidityChange(ilPRGProgress $pgs)
notifyDeadlineChange(ilPRGProgress $pgs)
const COMPLETED_BY_SUBNODES
updateProgressValidityFromSettings(ilStudyProgrammeValidityOfAchievedQualificationSettings $settings, ilPRGProgress $progress)
Holds information about multi-actions, mainly in context of member-assignemnts and status changes...
markRelevant(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)