19 declare(strict_types=1);
29 public function init(): void
32 $this->
user = $DIC[
"ilUser"];
33 $this->rbac_admin = $DIC[
"rbacadmin"];
34 $this->log = $DIC[
"ilLoggerFactory"]->getRootLogger();
39 if ($new_id = $a_mapping->
getMapping(
"components/ILIAS/Container",
"objs", $a_id)) {
47 $this->data = $parser->start();
49 $a_mapping->
addMapping(
"components/ILIAS/LearningSequence",
"lso", $a_id, (
string) $this->obj->getId());
53 LSOPageType::INTRO->value .
':' . $a_id,
54 LSOPageType::INTRO->value .
':' . (
string) $this->obj->getId()
71 foreach ($page_map as $old_pg_id => $new_pg_id) {
72 $parts = explode(
':', $old_pg_id);
75 $parts = explode(
':', $new_pg_id);
76 $new_pg_id = array_pop(
$parts);
77 $new_obj_id = $this->obj->getId();
88 $roles = $this->obj->getLSRoles();
91 $roles->getDefaultAdminRole()
97 $old_ref_id = $this->data[
"object"][
"ref_id"];
98 $new_ref_id = $mapping->
getMapping(
"components/ILIAS/Container",
"refs", $old_ref_id);
100 $this->obj->setRefId((
int) $new_ref_id);
106 foreach ($ls_data as $data) {
107 $old_ref_id = $data[
"ref_id"];
108 $new_ref_id = $mapping->
getMapping(
"components/ILIAS/Container",
"refs", $old_ref_id);
109 $mapped[$new_ref_id] =
$data;
112 $ls_items = $this->obj->getLSItems($this->obj->getRefId());
114 foreach ($ls_items as $item) {
115 $item_ref_id = $item->getRefId();
116 if(array_key_exists($item_ref_id, $mapped)) {
117 $item_data = $mapped[$item_ref_id];
120 $item_data[
"condition_type"],
121 $item_data[
"condition_value"]
123 $updated[] = $item->withPostCondition($post_condition);
128 $this->obj->storeLSItems($updated);
134 $settings = $this->obj->getLSSettings();
135 $settings = $settings
136 ->withMembersGallery($ls_settings[
"members_gallery"] ===
'true' ?
true :
false)
138 $this->obj->updateSettings($settings);
145 $new_ref_ids =
array_map(
function ($old_ref_id) use ($mapping) {
146 return $mapping->
getMapping(
"components/ILIAS/Container",
"refs", $old_ref_id);
147 }, $lp_settings[
"lp_item_ref_ids"]);
149 if (!is_null($collection)) {
150 $collection->activateEntries($new_ref_ids);
154 $settings->setMode((
int) $lp_settings[
"lp_mode"]);
160 return base64_decode($data);
165 $fs = $this->obj->getDI()[
'db.filesystem'];
166 return $fs->getStoragePathFor(
169 $fs->getSuffix($path)
175 file_put_contents($path, $data);
getNewImagePath(string $type, string $path)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
buildSettings(array $ls_settings)
static _writeParentId(string $a_parent_type, int $a_pg_id, int $a_par_id)
finalProcessing(ilImportMapping $a_mapping)
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
buildLSItems(array $ls_data, ilImportMapping $mapping)
writeToFileSystem($data, string $path)
static getInstanceByMode(int $a_obj_id, int $a_mode)
getMapping(string $a_comp, string $a_entity, string $a_old_id)
updateRefId(ilImportMapping $mapping)
getMappingsOfEntity(string $a_comp, string $a_entity)
afterContainerImportProcessing(ilImportMapping $mapping)
decodeImageData(string $data)
A PostCondition does restrict the progression of a user through the learning sequence.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
Class ilRbacAdmin Core functions for role based access control.
buildLPSettings(array $lp_settings, ilImportMapping $mapping)
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)