19 declare(strict_types=1);
68 $this->db = $DIC->database();
71 $this->skill_manager = $DIC->skills()->internal()->manager();
72 $this->skill_tree_factory = $DIC->skills()->internal()->factory()->tree();
73 $this->skill_factory = $DIC->skills()->internal()->factory();
74 $this->tree_repo = $DIC->skills()->internal()->repo()->getTreeRepo();
77 public function setMode(
string $a_val): void
92 $this->selected_nodes = $a_val;
108 $this->selected_profiles = $a_val;
134 return array(
"5.1.0",
"7.0",
"8.0");
137 protected function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
139 return "http://www.ilias.de/xml/Services/Skill/" . $a_entity;
145 protected function getTypes(
string $a_entity,
string $a_version): array
147 if ($a_entity ==
"skmg") {
148 switch ($a_version) {
160 if ($a_entity ==
"skee") {
161 switch ($a_version) {
169 if ($a_entity ==
"skl_subtree") {
170 switch ($a_version) {
175 "SklTreeId" =>
"integer",
176 "TopNode" =>
"integer",
177 "Child" =>
"integer",
178 "Parent" =>
"integer",
179 "Depth" =>
"integer",
182 "Description" =>
"text",
183 "SelfEval" =>
"integer",
184 "OrderNr" =>
"integer",
185 "Status" =>
"integer",
186 "TemplateId" =>
"integer" 190 if ($a_entity ==
"skl_templ_subtree") {
191 switch ($a_version) {
196 "SklTreeId" =>
"integer",
197 "TopNode" =>
"integer",
198 "Child" =>
"integer",
199 "Parent" =>
"integer",
200 "Depth" =>
"integer",
203 "Description" =>
"text",
204 "SelfEval" =>
"integer",
205 "OrderNr" =>
"integer",
206 "Status" =>
"integer" 210 if ($a_entity ==
"skl_level") {
211 switch ($a_version) {
216 "LevelId" =>
"integer",
217 "SkillId" =>
"integer",
220 "Description" =>
"text" 224 if ($a_entity ==
"skl_prof") {
225 switch ($a_version) {
231 "Description" =>
"text" 237 "Description" =>
"text",
238 "SkillTreeId" =>
"integer" 242 if ($a_entity ==
"skl_local_prof") {
243 switch ($a_version) {
248 "Description" =>
"text",
255 "Description" =>
"text",
256 "RefId" =>
"integer",
257 "SkillTreeId" =>
"integer" 261 if ($a_entity ==
"skl_prof_level") {
262 switch ($a_version) {
265 "ProfileId" =>
"integer",
266 "BaseSkillId" =>
"integer",
267 "TrefId" =>
"integer",
268 "LevelId" =>
"integer" 273 "ProfileId" =>
"integer",
274 "BaseSkillId" =>
"integer",
275 "TrefId" =>
"integer",
276 "LevelId" =>
"integer",
277 "OrderNr" =>
"integer" 284 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
290 if (!is_array($a_ids)) {
291 $a_ids = array($a_ids);
293 if ($a_entity ==
"skmg") {
294 switch ($a_version) {
297 if ($this->
getMode() == self::MODE_SKILLS) {
298 $this->data[] = array(
"Mode" =>
"Skills");
299 } elseif ($this->
getMode() == self::MODE_PROFILES) {
300 $this->data[] = array(
"Mode" =>
"Profiles");
310 if ($a_entity ==
"skee") {
311 switch ($a_version) {
313 foreach ($a_ids as
$id) {
314 if ($this->
getMode() == self::MODE_SKILLS) {
315 $this->data[] = array(
319 } elseif ($this->
getMode() == self::MODE_PROFILES) {
320 $this->data[] = array(
329 if ($a_entity ==
"skl_subtree") {
330 switch ($a_version) {
334 foreach ($a_ids as
$id) {
335 $skill_tree = $this->tree_repo->getTreeForNodeId($id);
336 $sub = $skill_tree->getSubTree($skill_tree->getNodeData($id));
337 foreach ($sub as $s) {
339 "SELECT * FROM skl_templ_ref " .
340 " WHERE skl_node_id = " .
$ilDB->quote($s[
"child"],
"integer")
342 $rec =
$ilDB->fetchAssoc($set);
344 $top_node = ($s[
"child"] ==
$id)
347 $this->data[] = array(
348 "SklTreeId" => $s[
"skl_tree_id"],
349 "TopNode" => $top_node,
350 "Child" => $s[
"child"],
351 "Parent" => $s[
"parent"],
352 "Depth" => $s[
"depth"],
353 "Type" => $s[
"type"],
354 "Title" => $s[
"title"],
355 "Description" => $s[
"description"],
356 "SelfEval" => $s[
"self_eval"],
357 "OrderNr" => $s[
"order_nr"],
358 "Status" => $s[
"status"],
359 "TemplateId" => (
int) ($rec[
"templ_id"] ?? 0)
367 if ($a_entity ==
"skl_templ_subtree") {
368 switch ($a_version) {
372 foreach ($a_ids as
$id) {
373 $skill_tree = $this->tree_repo->getTreeForNodeId($id);
374 $sub = $skill_tree->getSubTree($skill_tree->getNodeData($id));
375 foreach ($sub as $s) {
376 $top_node = ($s[
"child"] ==
$id)
379 $this->data[] = array(
380 "SklTreeId" => $s[
"skl_tree_id"],
381 "TopNode" => $top_node,
382 "Child" => $s[
"child"],
383 "Parent" => $s[
"parent"],
384 "Depth" => $s[
"depth"],
385 "Type" => $s[
"type"],
386 "Title" => $s[
"title"],
387 "Description" => $s[
"description"],
388 "SelfEval" => $s[
"self_eval"],
389 "OrderNr" => $s[
"order_nr"],
390 "Status" => $s[
"status"]
398 if ($a_entity ==
"skl_level") {
399 switch ($a_version) {
404 " FROM skl_level WHERE " .
405 $ilDB->in(
"skill_id", $a_ids,
false,
"integer") .
" ORDER BY skill_id ASC, nr ASC");
410 if ($a_entity ==
"skl_prof") {
411 switch ($a_version) {
415 " FROM skl_profile WHERE " .
416 $ilDB->in(
"id", $a_ids,
false,
"integer"));
420 "SELECT id, title, description FROM skl_profile " .
421 " WHERE " .
$ilDB->in(
"id", $a_ids,
false,
"integer")
423 while ($rec =
$ilDB->fetchAssoc($set)) {
426 "Title" => $rec[
"title"],
427 "Description" => $rec[
"description"],
435 if ($a_entity ==
"skl_local_prof") {
436 switch ($a_version) {
438 foreach ($a_ids as $obj_id) {
440 $obj_ref_id = end($obj_ref_id);
441 $profiles = $this->skill_manager->getProfileManager()->getLocalProfilesForObject($obj_ref_id);
443 foreach ($profiles as $p) {
444 $profile_ids[] = $p->getId();
447 "SELECT * FROM skl_profile " .
448 " WHERE " .
$ilDB->in(
"id", $profile_ids,
false,
"integer")
450 while ($rec =
$ilDB->fetchAssoc($set)) {
453 "Title" => $rec[
"title"],
454 "Description" => $rec[
"description"],
455 "RefId" => $obj_ref_id
461 foreach ($a_ids as $obj_id) {
463 $obj_ref_id = end($obj_ref_id);
464 $profiles = $this->skill_manager->getProfileManager()->getLocalProfilesForObject($obj_ref_id);
466 foreach ($profiles as $p) {
467 $profile_ids[] = $p->getId();
470 "SELECT * FROM skl_profile " .
471 " WHERE " .
$ilDB->in(
"id", $profile_ids,
false,
"integer")
473 while ($rec =
$ilDB->fetchAssoc($set)) {
476 "Title" => $rec[
"title"],
477 "Description" => $rec[
"description"],
478 "RefId" => $obj_ref_id,
487 if ($a_entity ==
"skl_prof_level") {
488 switch ($a_version) {
491 " FROM skl_profile_level WHERE " .
492 $ilDB->in(
"profile_id", $a_ids,
false,
"integer"));
497 " FROM skl_profile_level WHERE " .
498 $ilDB->in(
"profile_id", $a_ids,
false,
"integer"));
512 ?array $a_rec =
null,
520 $deps[
"skee"][
"ids"] = $a_ids;
524 if (!isset($a_rec[
"Id"]) || is_null($a_rec[
"Id"])) {
527 $skill_tree = $this->skill_tree_factory->getTreeById((
int) $a_rec[
"Id"]);
530 if ($this->
getMode() == self::MODE_SKILLS) {
533 $exp_types = array(
"skll",
"scat",
"sctr",
"sktr");
534 if (!isset($sel_nodes) || count($sel_nodes) === 0) {
535 $childs = $skill_tree->getChildsByTypeFilter($skill_tree->readRootId(), $exp_types);
536 $skl_subtree_deps = [];
537 foreach ($childs as
$c) {
538 $skl_subtree_deps[] = (
int) $c[
"child"];
541 $skl_subtree_deps = [];
542 foreach ($sel_nodes as $n) {
544 $skl_subtree_deps[] = $n;
551 if (is_array($skl_subtree_deps)) {
552 foreach ($skl_subtree_deps as
$id) {
556 $sub = $skill_tree->getSubTree($skill_tree->getNodeData($id),
true, [
"sktr"]);
557 foreach ($sub as $s) {
558 $ref_nodes[$s[
"child"]] = $s[
"child"];
564 $set =
$ilDB->query(
"SELECT DISTINCT(templ_id) FROM skl_templ_ref " .
565 " WHERE " .
$ilDB->in(
"skl_node_id", $ref_nodes,
false,
"integer"));
566 while ($rec =
$ilDB->fetchAssoc($set)) {
567 $deps[
"skl_templ_subtree"][
"ids"][] = (
int) $rec[
"templ_id"];
571 $deps[
"skl_subtree"][
"ids"] = $skl_subtree_deps;
572 } elseif ($this->
getMode() == self::MODE_PROFILES) {
574 $deps[
"skl_prof"][
"ids"][] = $p_id;
580 case "skl_templ_subtree":
582 if (in_array($a_rec[
"Type"], array(
"skll",
"sktp"))) {
583 $deps[
"skl_level"][
"ids"][] = $a_rec[
"Child"];
588 case "skl_local_prof":
589 $deps[
"skl_prof_level"][
"ids"][] = $a_rec[
"Id"] ??
null;
601 string $a_schema_version
603 $skill_tree = $this->skill_tree_factory->getTreeById($this->
getSkillTreeId());
604 $skill_tree_root_id = $skill_tree->readRootId();
605 $tree_node_manager = $this->skill_manager->getTreeNodeManager($this->
getSkillTreeId());
607 $init_top_order_nr = $skill_tree->getMaxOrderNr($skill_tree_root_id);
608 $init_templ_top_order_nr = $skill_tree->getMaxOrderNr($skill_tree_root_id,
true);
613 if ((
int) $a_rec[
"TopNode"] === 1) {
616 $order = (
int) $a_rec[
"OrderNr"] + $init_top_order_nr;
618 $parent = (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Parent"]);
619 $status = (
int) $a_rec[
"Status"];
620 $order = (
int) $a_rec[
"OrderNr"];
622 switch ($a_rec[
"Type"]) {
625 $scat->setTitle($a_rec[
"Title"]);
626 $scat->setDescription($a_rec[
"Description"] ??
"");
627 $scat->setImportId(
"il_" . $source_inst_id .
"_scat_" . $a_rec[
"Child"]);
628 $scat->setSelfEvaluation((
bool) $a_rec[
"SelfEval"]);
629 $scat->setOrderNr($order);
630 $scat->setStatus($status);
632 $tree_node_manager->putIntoTree($scat, $parent);
633 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Child"], (
string) $scat->getId());
638 $skll->setTitle($a_rec[
"Title"]);
639 $skll->setDescription($a_rec[
"Description"] ??
"");
640 $skll->setImportId(
"il_" . $source_inst_id .
"_skll_" . $a_rec[
"Child"]);
641 $skll->setSelfEvaluation((
bool) $a_rec[
"SelfEval"]);
642 $skll->setOrderNr($order);
643 $skll->setStatus($status);
645 $tree_node_manager->putIntoTree($skll, $parent);
646 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Child"], (
string) $skll->getId());
650 $template_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"TemplateId"]);
652 if ($template_id > 0) {
654 $sktr->setTitle($a_rec[
"Title"]);
655 $sktr->setDescription($a_rec[
"Description"] ??
"");
656 $sktr->setImportId(
"il_" . $source_inst_id .
"_sktr_" . $a_rec[
"Child"]);
657 $sktr->setSelfEvaluation((
bool) $a_rec[
"SelfEval"]);
658 $sktr->setOrderNr($order);
659 $sktr->setSkillTemplateId($template_id);
660 $sktr->setStatus($status);
662 $tree_node_manager->putIntoTree($sktr, $parent);
663 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Child"], (
string) $sktr->getId());
669 case "skl_templ_subtree":
670 if ((
int) $a_rec[
"TopNode"] === 1) {
672 $order = (
int) $a_rec[
"OrderNr"] + $init_templ_top_order_nr;
674 $parent = (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Parent"]);
675 $order = (
int) $a_rec[
"OrderNr"];
677 switch ($a_rec[
"Type"]) {
680 $sctp->setTitle($a_rec[
"Title"]);
681 $sctp->setDescription($a_rec[
"Description"] ??
"");
682 $sctp->setImportId(
"il_" . $source_inst_id .
"_sctp_" . $a_rec[
"Child"]);
683 $sctp->setOrderNr($order);
685 $tree_node_manager->putIntoTree($sctp, $parent);
686 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Child"], (
string) $sctp->getId());
691 $sktp->setTitle($a_rec[
"Title"]);
692 $sktp->setDescription($a_rec[
"Description"] ??
"");
693 $sktp->setImportId(
"il_" . $source_inst_id .
"_sktp_" . $a_rec[
"Child"]);
694 $sktp->setOrderNr($order);
696 $tree_node_manager->putIntoTree($sktp, $parent);
697 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"Child"], (
string) $sktp->getId());
703 $skill_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_tree", $a_rec[
"SkillId"]);
705 if (in_array($type, array(
"skll",
"sktp"))) {
706 if ($type ==
"skll") {
711 $skill->addLevel($a_rec[
"Title"], $a_rec[
"Description"],
"il_" . $source_inst_id .
"_sklv_" . $a_rec[
"LevelId"]);
717 $profile = $this->skill_factory->profile()->profile(
720 $a_rec[
"Description"] ??
"",
723 $new_profile = $this->skill_manager->getProfileManager()->createProfile($profile);
725 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_prof", $a_rec[
"Id"], (
string) $new_profile->getId());
728 case "skl_local_prof":
729 $profile = $this->skill_factory->profile()->profile(
732 $a_rec[
"Description"] ??
"",
735 (
int) $a_rec[
"RefId"]
737 $new_profile = $this->skill_manager->getProfileManager()->createProfile($profile);
739 $a_mapping->
addMapping(
"components/ILIAS/Skill",
"skl_local_prof", $a_rec[
"Id"], (
string) $new_profile->getId());
742 case "skl_prof_level":
743 $profile_id = (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_prof", $a_rec[
"ProfileId"])
744 ? (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_prof", $a_rec[
"ProfileId"])
745 : (
int) $a_mapping->
getMapping(
"components/ILIAS/Skill",
"skl_local_prof", $a_rec[
"ProfileId"]);
746 if ($profile_id > 0) {
749 $level_id = $tref_id = $base_skill = 0;
750 foreach ($level_id_data as $l) {
752 foreach ($skill_data as $s) {
756 $level_id = $l[
"level_id"];
757 $base_skill = $s[
"skill_id"];
758 $tref_id = $s[
"tref_id"];
763 $level = $this->skill_factory->profile()->profileLevel(
768 (
int) $a_rec[
"OrderNr"]
770 $this->skill_manager->getProfileManager()->addSkillLevel($level);
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
Skill Template Reference.
SkillInternalManagerService $skill_manager
static lookupLevelSkillId(int $a_id)
static _getAllReferences(int $id)
get all reference ids for object ID
setSelectedNodes(array $a_val)
SkillTreeFactory $skill_tree_factory
readData(string $a_entity, string $a_version, array $a_ids)
static getCommonSkillIdForImportId(int $a_source_inst_id, int $a_skill_import_id, int $a_tref_import_id=0)
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
static _lookupType(int $a_obj_id)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
int $init_templ_top_order_nr
getMapping(string $a_comp, string $a_entity, string $a_old_id)
Skill internal manager service.
getCurrentInstallationId()
Skill internal factory service.
getTypes(string $a_entity, string $a_version)
Get field types for entity.
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
ilSkillTreeRepository $tree_repo
setSkillTreeId(int $skill_tree_id)
setSelectedProfiles(array $a_val)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
getXmlNamespace(string $a_entity, string $a_schema_version)
SkillInternalFactoryService $skill_factory
static getLevelIdForImportId(int $a_source_inst_id, int $a_level_import_id)