3 declare(strict_types=0);
49 $this->
logger = $DIC->logger()->crs();
51 $this->db = $DIC->database();
52 $this->tree = $DIC->repositoryTree();
53 $this->
user = $DIC->user();
54 $this->objectDataCache = $DIC[
'ilObjDataCache'];
55 $this->
access = $DIC->access();
63 public function setId(
int $a_id): void
75 $this->ref_id = $a_ref_id;
85 $this->obj_id = $a_obj_id;
100 $this->container_type = $a_type;
105 $this->type = $a_type;
115 $this->title = $a_title;
125 $this->description = $a_desc;
135 $this->unique_field = $a_uni;
151 $conditions = array();
152 foreach ($condition_data as $condition) {
153 if ($this->tree->isDeleted($condition[
'target_ref_id'])) {
156 $conditions[] = $condition;
158 return count($conditions) ? $conditions : array();
161 public function delete():
void 164 $query =
"DELETE FROM object_data WHERE obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
167 $query =
"DELETE FROM crs_groupings " .
168 "WHERE crs_grp_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
173 $condh->deleteByObjId($this->
getId());
177 public function create(
int $a_course_ref_id,
int $a_course_id): void
180 $this->
setId($this->db->nextId(
"object_data"));
181 $query =
"INSERT INTO object_data " .
182 "(obj_id, type,title,description,owner,create_date,last_update) " .
185 $this->db->quote($this->
getId(),
"integer") .
"," .
186 $this->db->quote($this->type,
"text") .
"," .
187 $this->db->quote($this->
getTitle(),
"text") .
"," .
189 $this->db->quote($this->
user->getId(),
"integer") .
"," .
190 $this->db->now() .
"," .
194 $this->db->manipulate($query);
197 $query =
"INSERT INTO crs_groupings (crs_grp_id,crs_ref_id,crs_id,unique_field) " .
199 $this->db->quote($this->
getId(),
'integer') .
", " .
200 $this->db->quote($a_course_ref_id,
'integer') .
", " .
201 $this->db->quote($a_course_id,
'integer') .
", " .
204 $res = $this->db->manipulate($query);
211 $query =
"UPDATE object_data " .
212 "SET title = " . $this->db->quote($this->
getTitle(),
'text') .
", " .
213 "description = " . $this->db->quote($this->
getDescription(),
'text') .
" " .
214 "WHERE obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" " .
215 "AND type = " . $this->db->quote($this->
getType(),
'text') .
" ";
219 $query =
"UPDATE crs_groupings " .
220 "SET unique_field = " . $this->db->quote($this->
getUniqueField(),
'text') .
" " .
221 "WHERE crs_grp_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
225 $query =
"UPDATE conditions " .
226 "SET value = " . $this->db->quote($this->
getUniqueField(),
'text') .
" " .
227 "WHERE trigger_obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" " .
228 "AND trigger_type = 'crsg'";
236 if ($a_course_id == $condition_data[
'target_obj_id']) {
245 $query =
"SELECT * FROM object_data " .
246 "WHERE obj_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
250 $this->
setTitle((
string) $row->title);
254 $query =
"SELECT * FROM crs_groupings " .
255 "WHERE crs_grp_id = " . $this->db->quote($this->
getId(),
'integer') .
" ";
262 $this->
setContainerType($this->objectDataCache->lookupType($this->getContainerObjId()));
270 $found_invisible =
false;
271 foreach ($tmp_grouping_obj->getAssignedItems() as $condition) {
272 if (!$this->
access->checkAccess(
'write',
'', $condition[
'target_ref_id'])) {
273 $found_invisible =
true;
277 return !$found_invisible;
289 $ilObjDataCache = $DIC[
'ilObjDataCache'];
290 $ilAccess = $DIC[
'ilAccess'];
291 $ilDB = $DIC[
'ilDB'];
293 $container_type = $ilObjDataCache->lookupType($a_obj_id) ==
'grp' ?
'grp' :
'crs';
296 $query =
"SELECT * FROM object_data WHERE type = 'crsg' ORDER BY title";
298 $groupings = array();
300 $groupings[] = (
int) $row->obj_id;
304 $visible_groupings = [];
305 foreach ($groupings as $grouping_id) {
313 if ($tmp_grouping_obj->getContainerObjId() === $a_obj_id) {
314 $visible_groupings[] = $grouping_id;
318 if (($items = $tmp_grouping_obj->getAssignedItems()) !== []) {
319 foreach ($items as $condition_data) {
320 if ($ilAccess->checkAccess(
'write',
'', $condition_data[
'target_ref_id'])) {
321 $visible_groupings[] = $grouping_id;
327 return $visible_groupings;
330 public function assign(
int $a_crs_ref_id,
int $a_course_id): void
339 $this->
logger->debug(
'Start cloning membership limitations...');
347 $this->
logger->dump($target_ref_id);
348 $this->
logger->dump($target_obj_id);
350 if (!$target_ref_id || !$target_obj_id) {
351 $this->
logger->debug(
'No target ref_id found.');
355 $new_grouping = new \ilObjCourseGrouping();
356 $new_grouping->setTitle($this->
getTitle());
358 $new_grouping->setContainerRefId($target_ref_id);
359 $new_grouping->setContainerObjId($target_obj_id);
362 $new_grouping->create($target_ref_id, $target_obj_id);
365 if (!$obj_instance instanceof \
ilObject) {
366 $this->
logger->info(
'Cannot create object instance for membership limitation');
369 $limitation_items = self::_getGroupingItems($obj_instance);
370 $this->
logger->dump($limitation_items);
372 foreach ($limitation_items as $item_ref_id) {
373 $target_item_ref_id = 0;
374 $target_item_obj_id = 0;
375 if (array_key_exists($item_ref_id, $mappings) && $mappings[$item_ref_id]) {
376 $target_item_ref_id = $mappings[$item_ref_id];
379 if (!$target_item_ref_id || !$target_item_obj_id) {
380 $this->
logger->info(
'No mapping found for: ' . $item_ref_id);
383 $new_grouping->assign($target_item_ref_id, $target_item_obj_id);
390 $tmp_condh->enableAutomaticValidation(
false);
392 $tmp_condh->setTargetRefId($a_target_ref_id);
393 $tmp_condh->setTargetObjId($a_target_obj_id);
395 $tmp_condh->setTriggerRefId(0);
396 $tmp_condh->setTriggerObjId($this->
getId());
397 $tmp_condh->setTriggerType(
'crsg');
398 $tmp_condh->setOperator(
'not_member');
401 if (!$tmp_condh->checkExists()) {
402 $tmp_condh->storeCondition();
410 $ilDB = $DIC->database();
415 $condh->deleteByObjId($grouping_id);
418 $query =
"DELETE FROM crs_groupings " .
419 "WHERE crs_id = " .
$ilDB->quote($a_course_id,
'integer') .
" ";
431 $ilDB = $DIC[
'ilDB'];
433 $query =
"SELECT * FROM crs_groupings " .
434 "WHERE crs_id = " .
$ilDB->quote($a_course_id,
'integer') .
" ";
439 $groupings[] = (
int) $row->crs_grp_id;
444 public static function _checkCondition(
int $trigger_obj_id,
string $operator, $value,
int $a_usr_id = 0): bool
458 $tree = $DIC->repositoryTree();
466 if ($condition[
'trigger_type'] ==
'crsg') {
469 $condition[
'trigger_obj_id']
470 ) as $target_condition) {
471 if ($tree->
isDeleted($target_condition[
'target_ref_id'])) {
474 $course_ids[] = array(
'id' => $target_condition[
'target_obj_id'],
475 'unique' => $target_condition[
'value']
485 return self::$assignedObjects;
493 $lng = $DIC->language();
494 $tree = $DIC->repositoryTree();
496 $user_id = is_null($a_user_id) ?
$ilUser->getId() : $a_user_id;
497 $trigger_ids = array();
500 $container_obj->
getId(),
503 if ($condition[
'operator'] ==
'not_member') {
504 $trigger_ids[] = $condition[
'trigger_obj_id'];
508 if (count($trigger_ids) === 0) {
511 $matriculation_message = $assigned_message =
'';
512 self::$assignedObjects = array();
513 foreach ($trigger_ids as $trigger_id) {
516 if ($tree->
isDeleted($condition[
'target_ref_id'])) {
519 if ($condition[
'operator'] ==
'not_member') {
520 switch ($condition[
'value']) {
521 case 'matriculation':
523 if (!$matriculation_message) {
524 $matriculation_message =
$lng->txt(
'crs_grp_matriculation_required');
528 if ($container_obj->
getType() ==
'crs') {
530 if ($members->isGroupingMember($user_id, $condition[
'value'])) {
531 if (!$assigned_message) {
532 self::$assignedObjects[] = $condition[
'target_obj_id'];
533 $assigned_message =
$lng->txt(
'crs_grp_already_assigned');
536 } elseif ($container_obj->
getType() ==
'grp') {
538 if ($members->isGroupingMember($user_id, $condition[
'value'])) {
539 if (!$assigned_message) {
540 self::$assignedObjects[] = $condition[
'target_obj_id'];
541 $assigned_message =
$lng->txt(
'grp_grp_already_assigned');
545 if (!$assigned_message) {
546 self::$assignedObjects[] = $condition[
'target_obj_id'];
547 $assigned_message =
$lng->txt(
'crs_grp_already_assigned');
553 if ($matriculation_message) {
554 $container_obj->appendMessage($matriculation_message);
556 } elseif ($assigned_message) {
557 $container_obj->appendMessage($assigned_message);
570 $tree = $DIC->repositoryTree();
571 $ilObjDataCache = $DIC[
'ilObjDataCache'];
572 $ilAccess = $DIC->access();
573 $tree = $DIC->repositoryTree();
575 $trigger_ids = array();
578 $container_obj->
getId(),
581 if ($condition[
'operator'] ==
'not_member') {
582 $trigger_ids[] = $condition[
'trigger_obj_id'];
585 if ($trigger_ids === []) {
588 $hash_table = array();
590 foreach ($trigger_ids as $trigger_id) {
593 if ($tree->
isDeleted($condition[
'target_ref_id'])) {
597 if ($condition[
'operator'] ==
'not_member') {
598 if (!($hash_table[$condition[
'target_ref_id']] ??
false)) {
599 $items[] = $condition[
'target_ref_id'];
601 $hash_table[$condition[
'target_ref_id']] =
true;
__addCondition(int $a_target_ref_id, int $a_target_obj_id)
static lookupMatriculation(int $a_usr_id)
static _getVisibleGroupings(int $a_obj_id)
Returns a list of all groupings for which the current user hast write permission on all assigned obje...
setDescription(string $a_desc)
assign(int $a_crs_ref_id, int $a_course_id)
static _checkCondition(int $trigger_obj_id, string $operator, $value, int $a_usr_id=0)
isDeleted(int $a_node_id)
This is a wrapper for isSaved() with a more useful name.
static getAssignedObjects()
static _checkGroupingDependencies(ilObject $container_obj, ?int $a_user_id=null)
static _getGroupingItems(ilObject $container_obj)
Get courses/groups that are assigned to the same membership limitation.
setUniqueField(string $a_uni)
static array $assignedObjects
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContainerRefId(int $a_ref_id)
_isMember(int $a_user_id, int $a_ref_id, string $a_field='')
_checkAccess(int $grouping_id)
static _deleteAll(int $a_course_id)
static _getInstanceByObjId(int $a_obj_id)
isAssigned(int $a_course_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContainerObjId(int $a_obj_id)
setContainerType(string $a_type)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
cloneGrouping(int $a_target_id, int $a_copy_id)
static _getPersistedConditionsOfTrigger(string $a_trigger_obj_type, int $a_trigger_id)
Get all persisted conditions of trigger object Note: This only gets persisted conditions NOT (dynamic...
static _getGroupings(int $a_course_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
create(int $a_course_ref_id, int $a_course_id)
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
static _getGroupingCourseIds(int $a_course_ref_id, int $a_course_id)
Get all ids of courses that are grouped with another course.
static _getInstance(int $a_copy_id)
static _lookupType(int $id, bool $reference=false)
ilObjectDataCache $objectDataCache
static _getPersistedConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_target_type="")
get all persisted conditions of target object
setTitle(string $a_title)