19 declare(strict_types=0);
56 $this->obj_id = $a_obj_id;
57 $this->db = $DIC->database();
58 $this->ilObjDataCache = $DIC[
'ilObjDataCache'];
215 ?
object $a_obj = null,
216 bool $a_percentage =
false,
217 bool $a_force_raise =
false 222 "obj_id: %s, user id: %s, object: %s",
225 (is_object($a_obj) ? get_class($a_obj) :
'null')
232 $changed = self::writeStatus(
244 if (!$changed && $a_force_raise) {
258 ?
object $a_obj = null
279 ?array $a_users = null
283 $ilDB = $DIC[
'ilDB'];
290 $sql =
"SELECT usr_id FROM ut_lp_marks WHERE " .
291 " obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
292 " status_dirty = " .
$ilDB->quote(1,
"integer");
293 if (is_array($a_users) && count($a_users) > 0) {
294 $sql .=
" AND " .
$ilDB->in(
"usr_id", $a_users,
false,
"integer");
296 $set =
$ilDB->query($sql);
298 if ($rec =
$ilDB->fetchAssoc($set)) {
304 if (!$dirty && is_array($a_users) && count($a_users) > 0) {
306 "SELECT count(usr_id) cnt FROM ut_lp_marks WHERE " .
307 " obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
308 $ilDB->in(
"usr_id", $a_users,
false,
"integer")
310 $r =
$ilDB->fetchAssoc($set);
311 if ($r[
"cnt"] < count($a_users)) {
317 if ($dirty || $missing) {
319 $trac_obj->refreshStatus($a_obj_id, $a_users);
332 $ilAppEventHandler = $DIC[
'ilAppEventHandler'];
336 "obj_id: " . $a_obj_id .
", user id: " . $a_usr_id .
", status: " .
337 $a_status .
", percentage: " . $a_percentage
340 $ilAppEventHandler->raise(
344 "obj_id" => $a_obj_id,
345 "usr_id" => $a_usr_id,
346 "status" => $a_status,
347 "old_status" => $a_old_status,
348 "percentage" => $a_percentage
359 foreach ($not_attempted as $user_id) {
361 if (self::writeStatus(
364 self::LP_STATUS_NOT_ATTEMPTED_NUM,
372 foreach ($in_progress as $user_id) {
374 if (self::writeStatus(
377 self::LP_STATUS_IN_PROGRESS_NUM,
385 foreach ($completed as $user_id) {
387 if (self::writeStatus(
390 self::LP_STATUS_COMPLETED_NUM,
398 foreach ($failed as $user_id) {
400 if (self::writeStatus(
403 self::LP_STATUS_FAILED_NUM,
411 $missing_users = array_diff(
413 $not_attempted + $in_progress + $completed + $failed
415 if ($missing_users) {
416 foreach ($missing_users as $user_id) {
430 int $a_percentage = 0,
431 bool $a_force_per =
false,
432 ?
int &$a_old_status = self::LP_STATUS_NOT_ATTEMPTED_NUM
436 $ilDB = $DIC->database();
437 $log = $DIC->logger()->trac();
440 'Write status for: ' .
"obj_id: " . $a_obj_id .
", user id: " . $a_user_id .
", status: " . $a_status .
", percentage: " . $a_percentage .
", force: " . $a_force_per
442 $update_dependencies =
false;
444 $a_old_status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
448 "SELECT usr_id,status,status_dirty FROM ut_lp_marks WHERE " .
449 " obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
450 " usr_id = " .
$ilDB->quote($a_user_id,
"integer")
452 $rec =
$ilDB->fetchAssoc($set);
456 $a_old_status = $rec[
"status"];
459 if ($rec[
"status"] != $a_status) {
460 $ret =
$ilDB->manipulate(
461 "UPDATE ut_lp_marks SET " .
462 " status = " .
$ilDB->quote($a_status,
"integer") .
"," .
463 " status_changed = " .
$ilDB->now() .
"," .
464 " status_dirty = " .
$ilDB->quote(0,
"integer") .
465 " WHERE usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
466 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
469 $update_dependencies =
true;
472 elseif ($rec[
"status_dirty"]) {
474 "UPDATE ut_lp_marks SET " .
475 " status_dirty = " .
$ilDB->quote(0,
"integer") .
476 " WHERE usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
477 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
486 "obj_id" => array(
"integer", $a_obj_id),
487 "usr_id" => array(
"integer", $a_user_id)
490 "status" => array(
"integer", $a_status),
491 "status_changed" => array(
"timestamp", date(
"Y-m-d H:i:s")),
493 "status_dirty" => array(
"integer", 0)
497 $update_dependencies =
true;
501 if ($a_percentage || $a_force_per) {
502 $a_percentage = max(0, $a_percentage);
503 $a_percentage = min(100, $a_percentage);
504 $ret =
$ilDB->manipulate(
505 "UPDATE ut_lp_marks SET " .
506 " percentage = " .
$ilDB->quote($a_percentage,
"integer") .
507 " WHERE usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
508 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
513 'Update dependecies is ' . ($update_dependencies ?
'true' :
'false')
517 if ($update_dependencies) {
518 $log->debug(
'update dependencies');
524 "SELECT ut_lp_collections.obj_id obj_id FROM " .
525 "object_reference JOIN ut_lp_collections ON " .
526 "(object_reference.obj_id = " .
$ilDB->quote(
530 " AND object_reference.ref_id = ut_lp_collections.item_id)" 532 while ($rec =
$ilDB->fetchAssoc($set)) {
535 array(
"crs",
"grp",
"fold")
538 'Calling update status for collection obj_id: ' . $rec[
'obj_id']
542 (
int) $rec[
"obj_id"],
546 (
int) $rec[
"obj_id"],
554 $log->debug(
'update references');
556 $query =
'select obj_id from container_reference ' .
557 'where target_obj_id = ' .
$ilDB->quote(
564 'Calling update status for reference obj_id: ' . $row->obj_id
586 return $update_dependencies;
600 $ilDB = $DIC[
'ilDB'];
604 $needs_update =
false;
607 "SELECT usr_id, status FROM ut_lp_marks WHERE " .
608 " obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
609 " usr_id = " .
$ilDB->quote($a_user_id,
"integer")
611 if ($rec =
$ilDB->fetchAssoc($set)) {
613 if ($rec[
"status"] == self::LP_STATUS_NOT_ATTEMPTED_NUM) {
614 $needs_update =
true;
618 $needs_update =
true;
633 $ilDB = $DIC[
'ilDB'];
636 "UPDATE ut_lp_marks SET " .
637 " status_dirty = " .
$ilDB->quote(1,
"integer")
644 public static function setDirty(
int $a_obj_id): void
648 $ilDB = $DIC[
'ilDB'];
651 "UPDATE ut_lp_marks SET " .
652 " status_dirty = " .
$ilDB->quote(1,
"integer") .
653 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
663 bool $a_create =
true 667 $ilDB = $DIC[
'ilDB'];
670 "SELECT status FROM ut_lp_marks WHERE " .
671 " status_dirty = " .
$ilDB->quote(0,
"integer") .
672 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
673 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
675 if ($rec =
$ilDB->fetchAssoc($set)) {
676 return (
int) $rec[
"status"];
677 } elseif ($a_create) {
680 "SELECT status FROM ut_lp_marks WHERE " .
681 " status_dirty = " .
$ilDB->quote(0,
"integer") .
682 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
683 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
685 if ($rec =
$ilDB->fetchAssoc($set)) {
686 return (
int) $rec[
"status"];
701 $ilDB = $DIC[
'ilDB'];
704 "SELECT percentage FROM ut_lp_marks WHERE " .
705 " status_dirty = " .
$ilDB->quote(0,
"integer") .
706 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
707 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
709 if ($rec =
$ilDB->fetchAssoc($set)) {
710 return $rec[
"percentage"];
722 return self::_lookupStatus(
725 ) == self::LP_STATUS_COMPLETED_NUM;
737 $ilDB = $DIC[
'ilDB'];
740 "SELECT status_changed FROM ut_lp_marks WHERE " .
741 " status_dirty = " .
$ilDB->quote(0,
"integer") .
742 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
743 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
745 if ($rec =
$ilDB->fetchAssoc($set)) {
746 return (
string) $rec[
"status_changed"];
750 "SELECT status_changed FROM ut_lp_marks WHERE " .
751 " status_dirty = " .
$ilDB->quote(0,
"integer") .
752 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
753 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer")
755 if ($rec =
$ilDB->fetchAssoc($set)) {
756 return (
string) $rec[
"status_changed"];
768 ?array $a_user_ids = null
772 $ilDB = $DIC[
'ilDB'];
774 $sql =
"SELECT usr_id, status, status_dirty FROM ut_lp_marks" .
775 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
776 " AND status = " .
$ilDB->quote($a_status,
"integer");
778 $sql .=
" AND " .
$ilDB->in(
"usr_id", $a_user_ids,
"",
"integer");
781 $set =
$ilDB->query($sql);
783 while ($rec =
$ilDB->fetchAssoc($set)) {
787 if ($rec[
"status_dirty"]) {
789 if (self::_lookupStatus(
807 ?array $a_user_ids = null
809 return self::_lookupStatusForObject(
811 self::LP_STATUS_COMPLETED_NUM,
821 ?array $a_user_ids = null
823 return self::_lookupStatusForObject(
825 self::LP_STATUS_FAILED_NUM,
835 ?array $a_user_ids = null
837 return self::_lookupStatusForObject(
839 self::LP_STATUS_IN_PROGRESS_NUM,
852 $lp_invalid = array();
859 foreach ($memberships as $obj_id => $status) {
865 return array_diff($a_obj_ids, $lp_invalid);
873 array &$a_coll_obj_ids
882 foreach ($existing as $obj_id => $obj_mode) {
886 if (in_array($obj_mode, $coll_modes)) {
893 $existing_obj_ids = array_keys($existing);
894 if (
sizeof($existing) !=
sizeof($a_obj_ids)) {
895 foreach (array_diff($a_obj_ids, $existing_obj_ids) as $obj_id) {
897 $mode = $olp->getCurrentMode();
904 if (in_array($mode, $coll_modes)) {
911 return array_values(
$valid);
923 $ilDB = $DIC[
'ilDB'];
928 $sql =
"SELECT status, status_dirty, obj_id FROM ut_lp_marks" .
929 " WHERE " .
$ilDB->in(
"obj_id", $a_obj_ids,
"",
"integer") .
930 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer");
931 $set =
$ilDB->query($sql);
932 while ($row =
$ilDB->fetchAssoc($set)) {
933 if (!$row[
"status_dirty"]) {
934 $res[$row[
"obj_id"]] = $row[
"status"];
936 $res[$row[
"obj_id"]] = self::_lookupStatus(
944 foreach ($a_obj_ids as $obj_id) {
945 if (!isset(
$res[$obj_id])) {
946 $res[
$obj_id] = self::_lookupStatus($obj_id, $a_user_id);
947 if (
$res[$obj_id] === null) {
961 if ($DIC->http()->wrapper()->query()->has(
'ref_id')) {
964 $DIC->refinery()->kindlyTo()->int()
984 $coll_obj_ids = array();
985 $a_obj_ids = self::checkLPModesForObjects(
992 $res = self::getLPStatusForObjects($user_id, $a_obj_ids);
997 $lng->loadLanguageModule(
"trac");
999 foreach (
$res as $obj_id => $status) {
1001 "image" => $icons->renderIconForStatus($status),
1007 self::$list_gui_cache =
$res;
1015 bool $a_image_only =
true 1017 if ($a_image_only) {
1019 if (isset(self::$list_gui_cache[$a_obj_id][
"image"])) {
1020 $image = self::$list_gui_cache[$a_obj_id][
"image"];
1025 return self::$list_gui_cache[$a_obj_id] ??
"";
1030 if (isset(self::$list_gui_cache[$a_obj_id])) {
const LP_STATUS_COMPLETED_NUM
static _hasUserCompleted(int $a_obj_id, int $a_user_id)
Lookup user object completion.
static _getTypicalLearningTime(int $a_obj_id)
static _getCountFailed(int $a_obj_id)
refreshStatus(int $a_obj_id, ?array $a_users=null)
Refresh status.
static getLPMemberships(int $usr_id, array $obj_ids, ?int $parent_ref_id=null, bool $mapped_ref_ids=false)
Get all objects where given user is member (from LP POV)
static getLogger(string $a_component_id)
Get component logger.
static _lookupInProgressForObject(int $a_obj_id, ?array $a_user_ids=null)
Get in progress users for object.
__construct(int $a_obj_id)
static getLPStatusForObjects(int $a_user_id, array $a_obj_ids)
Get LP status for given objects (and user)
static _getCompleted(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static _getCountCompleted(int $a_obj_id)
static _hasLearningProgressLearner()
const LP_STATUS_PARTICIPATED
static _lookupFailedForObject(int $a_obj_id, ?array $a_user_ids=null)
Get failed users for object.
static _lookupStatusChanged(int $a_obj_id, int $a_user_id)
Lookup status changed.
const LP_STATUS_NOT_ATTEMPTED
static hasListGUIStatus(int $a_obj_id)
static raiseEvent(int $a_obj_id, int $a_usr_id, int $a_status, int $a_old_status, int $a_percentage)
static _lookupPercentage(int $a_obj_id, int $a_user_id)
Lookup percentage.
const LP_STATUS_IN_PROGRESS_NUM
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
static preloadListGUIData(array $a_obj_ids)
static _lookupCompletedForObject(int $a_obj_id, ?array $a_user_ids=null)
Get completed users for object.
static _getInProgress(int $a_obj_id)
Static function to read users who have the status 'in_progress'.
static _getNotAttempted(int $a_obj_id)
Static function to read the number of user who have the status 'not_attempted'.
static _getCountInProgress(int $a_obj_id)
const LP_STATUS_IN_PROGRESS
static _getStatusInfo(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getNotAttempted(int $a_obj_id)
static _getTypicalLearningTimeSeconds(int $a_rbac_id, int $a_obj_id=0)
static _enabledLearningProgress()
const LP_STATUS_NOT_PARTICIPATED
static _getCompleted(int $a_obj_id)
static _getFailed(int $a_obj_id)
Static function to read the users who have the status 'completed'.
static validateLPForObjects(int $a_user_id, array $a_obj_ids, int $a_parent_ref_id)
Process given objects for lp-relevance.
determineStatus(int $a_obj_id, int $a_usr_id, object $a_obj=null)
static checkLPModesForObjects(array $a_obj_ids, array &$a_coll_obj_ids)
Process lp modes for given objects.
static setDirty(int $a_obj_id)
Sets status of an object to dirty.
static _lookupStatusForObject(int $a_obj_id, int $a_status, ?array $a_user_ids=null)
Get users with given status for object.
determinePercentage(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
static setInProgressIfNotAttempted(int $a_obj_id, int $a_user_id)
This function shoudl be clalled for normal "read events".
static _lookupStatus(int $a_obj_id, int $a_user_id, bool $a_create=true)
Lookup status.
static _getFailed(int $a_obj_id)
static _lookupDBModeForObjects(array $a_obj_ids)
static getListGUIStatus(int $a_obj_id, bool $a_image_only=true)
ilObjectDataCache $ilObjDataCache
static _hasLearningProgressListGUI()
const LP_STATUS_NOT_ATTEMPTED_NUM
const LP_STATUS_REGISTERED
const LP_MODE_DEACTIVATED
static _removeStatusCache(int $a_obj_id, int $a_usr_id)
static _getInstance(int $a_obj_id, ?int $a_mode=null)
static writeStatus(int $a_obj_id, int $a_user_id, int $a_status, int $a_percentage=0, bool $a_force_per=false, ?int &$a_old_status=self::LP_STATUS_NOT_ATTEMPTED_NUM)
Write status for user and object.
static setAllDirty()
Sets all status to dirty.
static _lookupType(int $id, bool $reference=false)
static checkStatusForObject(int $a_obj_id, ?array $a_users=null)
This function checks whether the status for a given number of users is dirty and must be recalculated...
const LP_STATUS_COMPLETED
static _getCountNotAttempted(int $a_obj_id)
static getInstance(int $obj_id)
static _getInProgress(int $a_obj_id)
_updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
New status handling (st: status, nr: accesses, p: percentage, t: time spent, m: mark) Learning progre...
static getCollectionModes()
const LP_STATUS_NOT_REGISTERED
const LP_STATUS_FAILED_NUM
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)