19 declare(strict_types=1);
44 $this->
logger = $DIC->logger()->wsrv();
45 $this->
lng = $DIC->language();
46 $this->tree = $DIC->repositoryTree();
89 public function sync(): bool
92 $this->
server->getServerId(),
100 $this->
logger->info(
'No directory allocation settings. Aborting');
119 if ($this->default_settings[
'tree_update'] ===
false) {
120 $this->
logger->info(
'Tree update disabled for tree with id ' . $this->ecs_tree->getTreeId());
126 $this->
server->getServerId(),
131 $a_root_ref_id = $mapping->
getRefId();
132 if ($a_root_ref_id) {
147 $this->
server->getServerId(),
150 (
int) $cms_data->getCmsId()
152 if (!$import_obj_id) {
153 $this->
logger->error(
'cms tree node not imported. tnode_id: ' . $a_tnode_id);
157 $this->
logger->info(
' parent ref:' . $a_parent_ref_id .
' tnode:' . $a_tnode_id);
159 $import_ref_id = end($ref_ids);
160 $import_ref_id_parent = $this->tree->getParentId($import_ref_id);
162 if ($a_parent_ref_id !== $import_ref_id_parent) {
164 $this->
logger->info(
'Moving node ' . $a_parent_ref_id .
' to ' . $import_ref_id);
165 $this->tree->moveTree($import_ref_id, $a_parent_ref_id);
169 $childs = $this->ecs_tree->getChilds($a_tnode_id);
170 foreach ($childs as $node) {
179 protected function syncNode($tree_obj_id, $parent_id, $a_mapped =
false): bool
181 $childs = $this->ecs_tree->getChilds($tree_obj_id);
184 $this->
server->getServerId(),
190 if ($assignment->getRefId()) {
191 $parent_id = $assignment->
getRefId();
195 if ($assignment->isMapped()) {
200 $parent_id = $this->
syncCategory($assignment, $parent_id);
207 foreach ($childs as $node) {
208 $this->
syncNode($node[
'child'], $parent_id, $a_mapped);
225 $this->
server->getServerId(),
236 if (($cat instanceof
ilObject) && $this->default_settings[
'title_update']) {
237 $this->
logger->info(
'Updating cms category ');
238 $this->
logger->info(
'Title is ' .
$data->getTitle());
239 $cat->deleteTranslation($this->
lng->getDefaultLanguage());
240 $cat->addTranslation(
242 $cat->getLongDescription(),
243 $this->
lng->getDefaultLanguage(),
244 $this->
lng->getDefaultLanguage()
246 $cat->setTitle(
$data->getTitle());
249 $this->
logger->info(
'Updating cms category -> nothing to do');
254 if ($this->global_settings->isEmptyContainerCreationEnabled()) {
255 $this->
logger->info(
'Creating new cms category');
260 $cat->setTitle(
$data->getTitle());
262 $cat->createReference();
263 $cat->putInTree($parent_id);
264 $cat->setPermissions($parent_id);
265 $cat->deleteTranslation($this->
lng->getDEfaultLanguage());
266 $cat->addTranslation(
268 $cat->getLongDescription(),
269 $this->
lng->getDefaultLanguage(),
270 $this->
lng->getDefaultLanguage()
275 $this->
server->getServerId(),
278 $import->
setMID($this->mid);
279 $import->setContentId(
$data->getCmsId());
280 $import->setImported(
true);
283 return $cat->getRefId();
286 $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.
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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.
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