19 declare(strict_types=1);
43 $this->
logger = $DIC->logger()->wsrv();
44 $this->
lng = $DIC->language();
45 $this->tree = $DIC->repositoryTree();
94 $this->object_created = $a_status;
117 public function handle(
int $a_content_id, $course): bool
123 $this->course_url->setECSId($a_content_id);
126 if ($this->
getMapping()->isAttributeMappingEnabled()) {
127 $this->
logger->debug(
'Handling advanced attribute mapping');
131 if ($this->
getMapping()->isAllInOneCategoryEnabled()) {
132 $this->
logger->debug(
'Handling course all in one category setting');
138 if ($parent_obj_id) {
140 $this->
doSync($a_content_id, $course, $parent_obj_id);
143 $this->
logger->info(
'Using course default category');
154 $course_id = $course->lectureID;
159 $this->
logger->debug(
'Performing update of already imported course.');
173 $matching_rules = [];
181 if (strcmp($matching_index,
'0') !== 0) {
182 $matching_rules[$matching_index] =
$ref_id;
185 ksort($matching_rules);
187 $this->
logger->dump($matching_rules);
189 if (!count($matching_rules)) {
191 $this->
logger->debug(
'No matching attribute mapping rule found.');
192 $this->
logger->info(
'Using course default category');
197 $this->
logger->debug(
'Matching rules:');
200 $all_parent_refs = [];
201 foreach ($matching_rules as $matching_rule) {
202 $this->
logger->debug(
'Handling matching rule: ' . $matching_rule);
210 $this->
logger->debug(
'Adding parent references: ' . print_r($parent_refs,
true));
211 if (count($parent_refs)) {
212 $all_parent_refs = array_unique(array_merge($all_parent_refs, $parent_refs));
220 foreach ($all_parent_refs as $category_ref) {
222 $this->
logger->debug(
'Creating new course instance in: ' . $category_ref);
227 $this->
logger->debug(
'Creating new course reference instance in: ' . $category_ref);
242 $crsr->setTargetRefId($ref_id);
246 $crsr->createReference();
247 $crsr->putInTree($a_parent_ref_id);
248 $crsr->setPermissions($a_parent_ref_id);
259 if (!is_array($course->allocations)) {
260 $this->
logger->debug(
'No allocation in course defined.');
263 if (!$course->allocations[0]->parentID) {
264 $this->
logger->debug(
'No allocation parent in course defined.');
267 $parent_id = $course->allocations[0]->parentID;
270 return $this->syncNodetoTop($parent_tid, $parent_id);
293 $this->
logger->debug(
'ecs node with id ' . $cms_id .
' is not imported for mid ' . $this->
getMid() .
' tree_id ' . $tree_id);
303 if ($ass->isMapped()) {
304 $this->
logger->debug(
'node is mapped');
310 $parent_tobj_id = $tree->getParentId($tobj_id);
311 if ($parent_tobj_id) {
333 $cat->setTitle(
$data->getTitle());
335 $cat->createReference();
336 $cat->putInTree($parent_ref_id);
337 $cat->setPermissions($parent_ref_id);
338 $cat->deleteTranslation($this->
lng->getDefaultLanguage());
339 $cat->addTranslation(
341 $cat->getLongDescription(),
342 $this->
lng->getDefaultLanguage(),
343 $this->
lng->getDefaultLanguage()
352 $import->setContentId(
$data->getCmsId());
353 $import->setImported(
true);
356 return $cat->getId();
364 protected function doSync($a_content_id, $course, $a_parent_obj_id): bool
367 $course_id = $course->lectureID;
368 $this->course_url->setCmsLectureId((
string) $course_id);
372 $this->
logger->debug(
'Found obj_id ' . $obj_id .
' for course_id ' . $course_id);
377 $this->
logger->debug(
'Group scenario ' . $course->groupScenario);
378 switch ((
int) $course->groupScenario) {
380 $this->
logger->debug(
'Performing update for parallel groups in course.');
385 $this->
logger->debug(
'Performing update for parallel courses.');
398 switch ((
int) $course->groupScenario) {
400 $this->
logger->debug(
'Parallel scenario "groups in courses".');
403 $this->
setImported((
int) $course_id, $crs, $a_content_id);
410 $this->
logger->debug(
'Parallel scenario "Courses foreach Lecturer".');
416 $this->
logger->debug(
'Parallel scenario "Many courses".');
428 $this->
logger->debug(
'Parallel scenario "One Course".');
431 $this->
setImported((
int) $course_id, $crs, $a_content_id);
445 foreach ((array) $course->groups as $group) {
456 if ($this->
getImportId((
int) $course->lectureID, (
string) $group->id)) {
457 $this->
logger->debug(
'Parallel course already created');
463 $title = $course->title;
464 if ($group->title !==
'') {
465 $title .=
' (' . $group->title .
')';
467 $this->
logger->debug(
'Creating new parallel course instance from ecs : ' . $title);
468 $course_obj->setTitle($title);
469 $course_obj->setSubscriptionMaxMembers((
int) $group->maxParticipants);
470 $course_obj->setOfflineStatus(
true);
471 $course_obj->create();
474 $this->
setImported((
int) $course->lectureID, $course_obj, $a_content_id, $group->id);
485 $parent_ref = end($parent_refs);
487 foreach ((array) $course->groups as $group) {
488 $title = $course->title;
489 if ($group->title !==
'') {
490 $title .=
' (' . $group->title .
')';
493 $obj_id = $this->
getImportId((
int) $course->lectureID, (
string) $group->id);
494 $this->
logger->debug(
'Imported obj id is ' . $obj_id);
500 $this->
logger->debug(
'New title is ' . $title);
501 $course_obj->setTitle($title);
502 if(!is_null($group->maxParticipants)) {
503 $course_obj->setSubscriptionMaxMembers($group->maxParticipants);
505 $course_obj->update();
520 foreach ((array) $course->groups as $group) {
533 $title = $group->title !==
'' ? $group->title : $course->title;
534 $group_obj->setTitle($title);
535 $group_obj->setMaxMembers((
int) $group->maxParticipants);
536 $group_obj->create();
537 $group_obj->createReference();
538 $group_obj->putInTree($parent_ref);
539 $group_obj->setPermissions($parent_ref);
541 $this->
setImported((
int) $course->lectureID, $group_obj, $a_content_id, $group->id);
552 $parent_ref = end($parent_refs);
554 foreach ((array) $course->groups as $group) {
555 $obj_id = $this->
getImportId((
int) $course->lectureID, (
string) $group->id);
556 $this->
logger->debug(
'Imported obj id is ' . $obj_id);
562 $title = $group->title !==
'' ? $group->title : $course->title;
563 $this->
logger->debug(
'New title is ' . $title);
564 $group_obj->setTitle($title);
565 if(!is_null($group->maxParticipants)) {
566 $group_obj->setMaxMembers((
int) $group->maxParticipants);
568 $group_obj->update();
599 if (!$crs_obj instanceof
ilObject) {
600 $this->
logger->debug(
'Cannot instantiate course instance');
605 $title = $course->title;
606 $this->
logger->debug(
'new title is : ' . $title);
608 $crs_obj->setTitle($title);
620 $title = $course->title;
621 $this->
logger->debug(
'Creating new course instance from ecs : ' . $title);
622 $course_obj->setTitle($title);
623 $course_obj->setOfflineStatus(
true);
624 $course_obj->create();
643 $this->courses_created[] = $crs->
getRefId();
651 protected function setImported(
int $a_content_id, $object, $a_ecs_id = 0, $a_sub_id =
null): bool
655 is_object($object) ? $object->getId() : 0
659 $import->
setSubId((
string) $a_sub_id);
660 $import->setMID($this->
getMid());
661 $import->setEContentId((
string) $a_ecs_id);
662 $import->setContentId((
string) $a_content_id);
663 $import->setImported(
true);
682 $lms_url->setUrl(ilLink::_getLink(
$ref_id));
683 $this->course_url->addLmsCourseUrls($lms_url);
692 $this->
logger->debug(
'Starting course url update');
694 $this->
logger->debug(
'Sending new course group url');
697 $this->
logger->debug(
'No courses groups created. Aborting');
ilECSNodeMappingSettings $mapping
updateParallelCourses($a_content_id, $course, $parent_obj)
Update parallel group data.
syncNodeToTop($tree_id, $cms_id)
Sync node to top.
getCourseUrl()
Get course url.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static isMatching($course, $a_sid, $a_mid, $a_ref_id)
Check if rule matches.
static getInstanceByServerMid(int $a_server_id, int $a_mid)
Get instance.
getImportId(int $a_content_id, ?string $a_sub_id=null)
Get import id of remote course Return 0 if object isn't imported.
handleCourseUrlUpdate()
Update course url.
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
static _getAllReferences(int $id)
get all reference ids for object ID
__construct(ilECSSetting $server, int $a_mid)
syncCategory($tobj_id, $parent_ref_id)
Sync category.
putInTree(int $parent_ref_id)
updateParallelGroups($a_content_id, $course, int $parent_obj)
Update parallel group data.
static lookupObjId(int $a_server_id, int $a_mid, int $a_tree_id, string $cms_id)
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
const PARALLEL_ONE_COURSE
setPermissions(int $parent_ref_id)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
createReference()
creates reference for object
static lookupFirstTreeOfNode($a_server_id, $a_mid, $cms_id)
Lookup first obj_id of cms node.
static getInstance()
Get the singleton instance of this ilECSImportManager.
createParallelCourse($a_content_id, $course, $group, $parent_ref)
Create parallel course.
static _lookupTitle(int $obj_id)
createParallelGroup($a_content_id, $course, $group, $parent_ref)
Create parallel group.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
ilECSCourseUrl $course_url
Represents a ecs course lms url.
setObjectCreated(bool $a_status)
Set object created status.
Storage of ECS imported objects.
static getRuleRefIds(int $a_sid, int $a_mid)
const PARALLEL_COURSES_FOR_LECTURERS
doAttributeMapping($a_content_id, $course)
Sync attribute mapping.
static lookupCmsIds(array $a_obj_ids)
getCreatedCourses()
get created courses
getMid()
Get mid of course event.
createCourseReferenceObjects($a_parent_ref_id)
Create course reference objects.
handle(int $a_content_id, $course)
Handle sync request.
const PARALLEL_ALL_COURSES
addUrlEntry(int $a_obj_id)
Add an url entry.
isObjectCreated()
Check if an object (course / group) has been created.
Represents a ecs course url.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static doMappings($course, int $a_sid, int $a_mid, int $a_ref_id)
doSync($a_content_id, $course, $a_parent_obj_id)
Handle all in one setting.
createCourseReference(ilObjCourse $crs, int $a_parent_obj_id)
Create course reference.
updateCourseData($course, $obj_id)
Update course data.
createParallelCourses(int $a_content_id, $course, $parent_ref)
Create parallel courses.
const PARALLEL_GROUPS_IN_COURSE
createParallelGroups($a_content_id, $course, $parent_ref)
This create parallel groups.
createCourseData($course)
Create course data from json.
syncParentContainer($a_content_id, $course)
Sync parent container.
setImported(int $a_content_id, $object, $a_ecs_id=0, $a_sub_id=null)
Set new course object imported.
getMapping()
Get mapping settings.
getServer()
Get server settings.