17 $this->stats = array(
"created" => 0,
"updated" => 0,
"deleted" => 0);
18 $a = file_get_contents($file_path,
"r");
19 $xml =
new SimpleXMLElement(
$a);
21 if (!count(
$xml->OrgUnit)) {
22 $this->
addError(
"no_orgunit", null, null);
27 foreach (
$xml->OrgUnit as $o) {
39 $title = (string) $o->title;
40 $description = (
string) $o->description;
41 $external_id = (string) $o->external_id;
48 $ou_parent_id_type = (string)
$attributes->ou_parent_id_type;
51 $this->
addWarning(
"cannot_change_root_node", $ou_id ? $ou_id : $external_id, $action);
56 if ($ou_parent_id ==
"__ILIAS") {
58 $ou_parent_id_type =
"reference_id";
62 if ($ou_id_type ==
'external_id') {
64 if(strlen($external_id) == 0) {
65 $external_id = $ou_id;
69 $this->
addError(
"ou_more_than_one_match_found", $external_id, $action);
75 $ref_id = $this->
buildRef($ou_id, $ou_id_type);
76 $parent_ref_id = $this->
buildRef($ou_parent_id, $ou_parent_id_type);
78 if ($action ==
"delete") {
79 if (!$parent_ref_id) {
80 $this->
addError(
"ou_parent_id_not_valid", $ou_id ? $ou_id : $external_id, $action);
85 $this->
addError(
"ou_id_not_valid", $ou_id ? $ou_id : $external_id, $action);
91 $ru->deleteObjects($parent_ref_id, array($ref_id)) !==
false;
92 $this->stats[
"deleted"]++;
94 $this->
addWarning(
"orgu_already_deleted", $ou_id ? $ou_id : $external_id, $action);
98 } elseif ($action ==
"update") {
99 if (!$parent_ref_id) {
100 $this->
addError(
"ou_parent_id_not_valid", $ou_id ? $ou_id : $external_id, $action);
105 $this->
addError(
"ou_id_not_valid", $ou_id ? $ou_id : $external_id, $action);
110 $object->setTitle($title);
112 $object->updateTranslation($title, $description,
$ilUser->getLanguage(),
"");
114 $object->setDescription($description);
116 $object->setImportId($external_id);
117 $this->
moveObject($ref_id, $parent_ref_id, $ou_id, $external_id);
119 $this->stats[
"updated"]++;
120 } elseif ($action ==
"create") {
121 if (!$parent_ref_id) {
122 $this->
addError(
"ou_parent_id_not_valid", $ou_id ? $ou_id : $external_id, $action);
129 $this->
addError(
"ou_external_id_exists", $ou_id ? $ou_id : $external_id, $action);
135 $object->setTitle($title);
136 $object->setDescription($description);
137 $object->setImportId($external_id);
139 $object->createReference();
140 $object->putInTree($parent_ref_id);
141 $object->setPermissions($ou_parent_id);
142 $this->stats[
"created"]++;
144 $this->
addError(
"no_valid_action_given", $ou_id, $action);
155 protected function moveObject($ref_id, $parent_ref_id, $ou_id, $external_id)
158 $tree = $DIC[
'tree'];
159 if ($parent_ref_id != $tree->getParentId($ref_id)) {
161 $path = $tree->getPathId($parent_ref_id);
162 if (in_array($ref_id, $path)) {
163 $this->
addWarning(
"not_movable_to_subtree", $ou_id ? $ou_id : $external_id,
"update");
165 $tree->moveTree($ref_id, $parent_ref_id);
169 $ilLog = $DIC[
'ilLog'];
170 $this->
addWarning(
"not_movable", $ou_id ? $ou_id : $external_id,
"update");
171 $ilLog->write($e->getMessage() .
"\\n" . $e->getTraceAsString());
172 error_log($e->getMessage() .
"\\n" . $e->getTraceAsString());
hasMoreThanOneMatch($external_id)
static _hasUntrashedReference($a_obj_id)
checks wether an object has at least one reference that is not in trash
Repository Utilities (application layer, put GUI related stuff into ilRepUtilGUI) ...
moveObject($ref_id, $parent_ref_id, $ou_id, $external_id)
addWarning($lang_var, $import_id, $action=null)
addError($lang_var, $import_id, $action=null)
if(!file_exists(getcwd() . '/ilias.ini.php'))
registration confirmation script for ilias
static _lookupType($a_id, $a_reference=false)
lookup object type
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
simpleImportElement(SimpleXMLElement $o)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
static _lookupObjIdByImportId($a_import_id)