19 declare(strict_types=1);
46 $this->tree = $DIC->repositoryTree();
47 $this->db = $DIC->database();
59 static $instances = [];
61 if (!isset($instances[$obj_id])) {
63 $class = self::getTypeClass($type);
65 $instance =
new $class($obj_id);
70 $instances[
$obj_id] = $instance;
78 $objDefinition = $DIC[
"objDefinition"];
79 if (self::isSupportedObjectType($type)) {
85 return 'ilCourseReferenceLP';
95 return "ilLearningModuleLP";
97 return "ilHTMLLearningModuleLP";
105 return "ilExerciseLP";
109 return "ilMediaCastLP";
111 return "ilSessionLP";
115 return "ilStudyProgrammeLP";
117 return "ilIndividualAssessmentLP";
119 return "ilContentPageLP";
121 return ilCmiXapiLP::class;
123 return ilLTIConsumerLP::class;
125 return ilForumLP::class;
127 if ($objDefinition->isPluginTypeName($type)) {
137 $component_repository = $DIC[
"component.repository"];
162 $plugins = $component_repository->getPluginSlotById(
"robj")->getActivePlugins();
163 foreach ($plugins as
$plugin) {
164 $type = $plugin->getId();
176 $valid = self::getSupportedObjectTypes();
178 if (in_array($type,
$valid)) {
188 $this->collection_instance =
null;
212 if ($this->mode ===
null) {
216 if ($mode ===
null) {
224 if ($mode ===
null) {
229 $this->mode = (
int) $mode;
266 if ($this->collection_instance ===
null) {
284 foreach (array_reverse(
$path) as $path_ref_id) {
286 $all = $olp->getMembers(
false);
287 if (is_array($all)) {
297 if (
sizeof($user_ids)) {
304 if ($recursive && method_exists($this,
"getPossibleCollectionItems")) {
305 $subitems = $this->getPossibleCollectionItems();
306 if (is_array($subitems)) {
307 foreach ($subitems as $sub_ref_id) {
309 $olp->resetLPDataForUserIds($user_ids,
false);
337 final public static function handleMove(
int $source_ref_id): void
341 $tree = $DIC->repositoryTree();
342 $ilDB = $DIC->database();
345 $ref_ids[] = $source_ref_id;
348 $new_path = $tree->
getPathId($source_ref_id);
349 array_pop($new_path);
350 $new_path = implode(
"/", $new_path);
354 "SELECT DISTINCT(ut_lp_collections.obj_id) obj_id" . PHP_EOL
355 .
"FROM object_reference" . PHP_EOL
356 .
"JOIN ut_lp_collections ON" . PHP_EOL
357 .
"(" .
$ilDB->in(
"object_reference.ref_id", $ref_ids,
false,
"integer") . PHP_EOL
358 .
"AND object_reference.ref_id = ut_lp_collections.item_id)" . PHP_EOL
360 $result =
$ilDB->query($sql);
361 while ($row =
$ilDB->fetchAssoc($result)) {
364 $coll_ref_id = array_pop($coll_ref_id);
367 if ($coll_ref_id == $source_ref_id) {
372 if ($tree->
isGrandChild($source_ref_id, $coll_ref_id)) {
377 $coll_path = $tree->
getPathId($coll_ref_id);
378 $coll_path = implode(
"/", $coll_path);
381 if (!stristr($new_path, $coll_path)) {
384 "DELETE FROM ut_lp_collections" . PHP_EOL
385 .
"WHERE obj_id = " .
$ilDB->quote($row[
"obj_id"],
"integer") . PHP_EOL
386 .
"AND " .
$ilDB->in(
"item_id", $ref_ids,
false,
"integer") . PHP_EOL
388 $ilDB->manipulate($sql);
409 $collection->delete();
419 "SELECT ut_lp_collections.obj_id obj_id" . PHP_EOL
420 .
"FROM object_reference" . PHP_EOL
421 .
"JOIN ut_lp_collections ON" . PHP_EOL
422 .
"(object_reference.obj_id = " . $this->db->quote($this->obj_id,
"integer") . PHP_EOL
423 .
"AND object_reference.ref_id = ut_lp_collections.item_id)" . PHP_EOL
425 $result = $this->db->query($sql);
426 while ($row = $this->db->fetchAssoc($result)) {
430 "DELETE FROM ut_lp_collections" . PHP_EOL
431 .
"WHERE obj_id = " . $this->db->quote($row[
"obj_id"],
"integer") . PHP_EOL
432 .
"AND item_id = " . $this->db->quote($this->obj_id,
"integer") . PHP_EOL
434 $this->db->manipulate($sql);
444 protected static function isLPMember(array &
$res,
int $usr_id, array $obj_ids): bool
458 bool $mapped_ref_ids =
false 462 $tree = $DIC->repositoryTree();
468 foreach (array_reverse(
$path) as $path_ref_id) {
470 if ($type ==
"crs" || $type ==
"grp") {
471 $class = self::getTypeClass($type);
474 $class::isLPMember($chk, $usr_id, [$path_ob_id]);
475 if (!$mapped_ref_ids) {
477 foreach ($obj_ids as $obj_id) {
479 if ($chk[$path_ob_id] ??
false) {
485 foreach ($obj_ids as $obj_id => $ref_ids) {
486 foreach ($ref_ids as
$ref_id) {
489 if ($chk[$path_ob_id] ??
false) {
510 ?
int $parent_ref_id =
null,
511 bool $mapped_ref_ids =
false 515 $ilDB = $DIC->database();
516 $tree = $DIC->repositoryTree();
522 if ($mapped_ref_ids) {
524 $obj_ids = array_keys($obj_ids);
532 "SELECT obj_id, type" . PHP_EOL
533 .
"FROM object_data" . PHP_EOL
534 .
"WHERE " .
$ilDB->in(
"obj_id", $obj_ids,
false,
"integer") . PHP_EOL
536 $result =
$ilDB->query($sql);
537 while ($row =
$ilDB->fetchAssoc($result)) {
538 $types_map[$row[
"type"]][] = (
int) $row[
"obj_id"];
539 $res[(
int) $row[
"obj_id"]] =
false;
542 $find_by_parent = [];
543 foreach ($types_map as $type => $type_obj_ids) {
544 $class = self::getTypeClass($type);
547 if (!$class::isLPMember(
$res, $usr_id, $type_obj_ids)) {
548 $find_by_parent = array_merge($find_by_parent, $type_obj_ids);
553 if (
sizeof($find_by_parent)) {
555 if ($parent_ref_id) {
556 if (self::findMembershipsByPath(
$res, $usr_id, $parent_ref_id, $find_by_parent)) {
558 $find_by_parent =
null;
562 elseif (is_array($ref_map) && count($ref_map) > 0) {
563 foreach ($find_by_parent as $obj_id) {
565 if (
$res[$obj_id] ===
false) {
566 if (isset($ref_map[$obj_id]) && is_array($ref_map[$obj_id])) {
568 foreach ($ref_map[$obj_id] as
$ref_id) {
576 $found = self::findMembershipsByPath(
$res, $usr_id, $parent_ref_id, $ref_map,
true);
577 if (is_array($found) && count($found) > 0) {
580 foreach ($found as $found_obj_id => $found_ref_ids) {
581 $diff = array_diff($ref_map[$found_obj_id], $found_ref_ids);
585 $ref_map[$found_obj_id] = $diff;
589 unset($ref_map[$found_obj_id]);
599 $find_by_parent = array_keys($ref_map);
603 if (is_array($find_by_parent) && count($find_by_parent) > 0) {
605 "SELECT obj_id" . PHP_EOL
606 .
"FROM read_event" . PHP_EOL
607 .
"WHERE " .
$ilDB->in(
"obj_id", $find_by_parent,
false,
"integer") . PHP_EOL
608 .
"AND usr_id = " .
$ilDB->quote($usr_id,
"integer") . PHP_EOL
610 $result =
$ilDB->query($sql);
611 while ($row =
$ilDB->fetchAssoc($result)) {
612 $res[(
int) $row[
"obj_id"]] =
true;
632 return !in_array($obj_type, [
"exc",
"file",
"mcst",
"mob",
"htlm",
"copa",
'cmix',
'lti',
'frm']);
637 return !in_array($obj_type, [
"lm",
"dbk"]);
642 $types = [
'svy',
'tst',
'htlm',
'exc',
'sess',
'file',
'frm',
'prg',
'copa',
'cmix',
'lti',
'crsr'];
643 return !in_array($obj_type, $types);
658 $ilDB = $DIC->database();
660 if (is_null(self::$type_defaults)) {
661 self::$type_defaults = [];
662 $result =
$ilDB->query(
"SELECT type_id, lp_mode FROM ut_lp_defaults");
663 while ($row =
$ilDB->fetchAssoc($result)) {
664 self::$type_defaults[(string) $row[
"type_id"]] = (
int) $row[
"lp_mode"];
667 return self::$type_defaults[$type] ??
null;
673 $ilDB = $DIC->database();
675 $ilDB->manipulate(
"DELETE FROM ut_lp_defaults");
676 foreach ($data as $type => $mode) {
677 $ilDB->insert(
"ut_lp_defaults", [
678 "type_id" => [
"text", $type],
679 "lp_mode" => [
"integer", $mode]
686 $db = self::getTypeDefaultFromDB($type);
691 $class = self::getTypeClass($type);
692 $olp =
new $class(0);
693 return $olp->getDefaultMode();
720 string $selected_group,
739 string $selected_group,
static _delete(int $a_obj_id)
Delete object entries.
saveModeConfiguration(string $selected_group, array $group_data, bool &$modeChanged)
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 isSupportedObjectType(string $type)
static getTypeDefaultFromDB(string $type)
resetCustomLPDataForUserIds(array $user_ids, bool $recursive=true)
ilObjectDefinition $objectDefinition
static supportsMatrixView(string $obj_type)
static handleMove(int $source_ref_id)
static _getAllUserIds(int $a_obj_id)
static getSupportedObjectTypes()
static _getAllReferences(int $id)
get all reference ids for object ID
static _mode2InfoText(int $a_mode)
static getTypeDefault(string $type)
static findMembershipsByPath(array &$res, int $usr_id, int $parent_ref_id, array $obj_ids, bool $mapped_ref_ids=false)
Find (lp-relevant) memberships by path.
getSubTreeIds(int $a_ref_id)
Get all ids of subnodes.
shouldFetchIndividualModeFromFormSubmission()
static getDefaultModes(bool $lp_active)
Get available type-specific default modes (no administration needed)
static saveTypeDefaults(array $data)
updateParentCollections()
initInvidualModeOptions()
Post vars for input groups is taken from array keys.
fetchIndividualModeFromFormSubmission(string $selected_group, array $group_data)
static _lookupObjId(int $ref_id)
isGrandChild(int $a_startnode_id, int $a_querynode_id)
checks if a node is in the path of an other node
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static array $type_defaults
getMembers(bool $search=true)
static getInstanceByMode(int $a_obj_id, int $a_mode)
static _enabledLearningProgress()
static deleteObject(int $a_obj_id)
static _deleteForUsers(int $a_obj_id, array $a_user_ids)
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
ilLPCollection $collection_instance
getParentId(int $a_node_id)
get parent id of given node
static _lookupDBMode(int $a_obj_id)
resetLPDataForCompleteObject(bool $recursive=true)
hasIndividualModeOptions()
LP collection base class.
static isTypePluginWithLP(string $a_type, bool $a_active_status=true)
static supportsSpentSeconds(string $obj_type)
const LP_MODE_DEACTIVATED
getPathId(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
resetLPDataForUserIds(array $user_ids, bool $recursive=true)
appendModeConfiguration(int $mode)
getModeInfoText(int $mode)
static getTypeClass(string $type)
static _deleteReadEventsForUsers(int $a_obj_id, array $a_user_ids)
static supportsMark(string $obj_type)
static _lookupType(int $id, bool $reference=false)
static getInstance(int $obj_id)
static _getAllUserIds(int $a_obj_id)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
static isLPMember(array &$res, int $usr_id, array $obj_ids)
Find (lp-relevant) members for given object ids.
static _mode2Text(int $a_mode)