18 declare(strict_types=1);
43 $this->
logger = $DIC->logger()->wsrv();
44 $this->
lng = $DIC->language();
45 $this->tree = $DIC->repositoryTree();
88 public function sync(): bool
91 $this->server->getServerId(),
99 $this->
logger->info(
'No directory allocation settings. Aborting');
118 if ($this->default_settings[
'tree_update'] ===
false) {
119 $this->
logger->info(
'Tree update disabled for tree with id ' . $this->ecs_tree->getTreeId());
125 $this->server->getServerId(),
130 $a_root_ref_id = $mapping->
getRefId();
131 if ($a_root_ref_id) {
146 $this->server->getServerId(),
149 (
int) $cms_data->getCmsId()
151 if (!$import_obj_id) {
152 $this->
logger->error(
'cms tree node not imported. tnode_id: ' . $a_tnode_id);
156 $this->
logger->info(
' parent ref:' . $a_parent_ref_id .
' tnode:' . $a_tnode_id);
158 $import_ref_id = end($ref_ids);
159 $import_ref_id_parent = $this->tree->getParentId($import_ref_id);
161 if ($a_parent_ref_id !== $import_ref_id_parent) {
163 $this->
logger->info(
'Moving node ' . $a_parent_ref_id .
' to ' . $import_ref_id);
164 $this->tree->moveTree($import_ref_id, $a_parent_ref_id);
168 $childs = $this->ecs_tree->getChilds($a_tnode_id);
169 foreach ($childs as $node) {
178 protected function syncNode($tree_obj_id, $parent_id, $a_mapped =
false): bool
180 $childs = $this->ecs_tree->getChilds($tree_obj_id);
183 $this->server->getServerId(),
189 if ($assignment->getRefId()) {
190 $parent_id = $assignment->
getRefId();
194 if ($assignment->isMapped()) {
199 $parent_id = $this->
syncCategory($assignment, $parent_id);
206 foreach ($childs as $node) {
207 $this->
syncNode($node[
'child'], $parent_id, $a_mapped);
224 $this->server->getServerId(),
235 if (($cat instanceof
ilObject) && $this->default_settings[
'title_update']) {
236 $this->
logger->info(
'Updating cms category ');
237 $this->
logger->info(
'Title is ' .
$data->getTitle());
238 $cat->deleteTranslation($this->
lng->getDefaultLanguage());
239 $cat->addTranslation(
241 $cat->getLongDescription(),
242 $this->
lng->getDefaultLanguage(),
243 $this->
lng->getDefaultLanguage()
245 $cat->setTitle(
$data->getTitle());
248 $this->
logger->info(
'Updating cms category -> nothing to do');
253 if ($this->global_settings->isEmptyContainerCreationEnabled()) {
254 $this->
logger->info(
'Creating new cms category');
259 $cat->setTitle(
$data->getTitle());
261 $cat->createReference();
262 $cat->putInTree($parent_id);
263 $cat->setPermissions($parent_id);
264 $cat->deleteTranslation($this->
lng->getDEfaultLanguage());
265 $cat->addTranslation(
267 $cat->getLongDescription(),
268 $this->
lng->getDefaultLanguage(),
269 $this->
lng->getDefaultLanguage()
274 $this->server->getServerId(),
277 $import->
setMID($this->mid);
278 $import->setContentId(
$data->getCmsId());
279 $import->setImported(
true);
282 return $cat->getRefId();
285 $this->
logger->info(
'Creation of empty containers is disabled.');
static getInstanceByServerMid(int $a_server_id, int $a_mid)
Get instance.
static lookupRootId($a_tree_id)
lookup root id
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 $mid, int $tree_id)
static lookupSettings(int $a_server_id, int $a_mid, int $a_tree_id, int $a_node_id)
Lookup Settings.
syncCategory(ilECSNodeMappingAssignment $ass, $parent_id)
Sync category.
static getInstance()
Get the singleton instance of this ilECSImportManager.
getDefaultSettings()
Get default settings.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
Storage of ECS imported objects.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkTreeUpdates(int $a_root_obj_id)
Start tree update check.
syncNode($tree_obj_id, $parent_id, $a_mapped=false)
Sync node.
getGlobalSettings()
get global settings
handleTreeUpdate(int $a_parent_ref_id, int $a_tnode_id)
Handle tree update (recursively)
ilECSNodeMappingSettings $global_settings