59 $this->db = $DIC->database();
75 final public function init($a_entity, $a_schema_version)
77 $this->entity = $a_entity;
78 $this->schema_version = $a_schema_version;
79 $this->data = array();
97 abstract protected function getTypes($a_entity, $a_version);
103 abstract protected function getXmlNamespace($a_entity, $a_schema_version);
111 abstract public function readData($a_entity, $a_version, $a_ids);
121 $this->relative_export_dir = $a_relative;
122 $this->absolute_export_dir = $a_absolute;
132 $this->import_directory = $a_val;
142 return $this->import_directory;
152 $this->ds_namespace = $a_val;
184 $set =
$ilDB->query($a_query);
185 $this->data = array();
187 while ($rec =
$ilDB->fetchAssoc($set)) {
188 if ($a_convert_to_leading_upper) {
190 foreach ($rec as $k => $v) {
198 $this->data[] = $rec;
213 $a_str = strtoupper(substr($a_str, 0, 1)) . substr($a_str, 1);
214 while (is_int($pos = strpos($a_str,
"_"))) {
215 $a_str = substr($a_str, 0, $pos) .
216 strtoupper(substr($a_str, $pos + 1, 1)) .
217 substr($a_str, $pos + 2);
228 if ($this->version ===
false) {
233 $arr[
"version"] = $this->version;
235 $arr[
"install_url"] = ILIAS_HTTP_PATH;
237 $arr[
"set"] = array();
238 foreach ($this->data as
$d) {
242 include_once(
"./Services/JSON/classes/class.ilJsonUtil.php");
273 $a_omit_header =
false,
274 $a_omit_types =
false 283 include_once
"./Services/Xml/classes/class.ilXmlWriter.php";
285 if (!$a_omit_header) {
286 $writer->xmlHeader();
290 $namespaces = $prefixes = array();
291 $this->
getNamespaces($namespaces, $a_entity, $a_schema_version);
293 "InstallationUrl" => ILIAS_HTTP_PATH,
"TopEntity" => $a_entity);
295 foreach ($namespaces as $entity => $ns) {
296 $prefix =
"ns" . $cnt;
297 $prefixes[$entity] = $prefix;
302 $this->ds_log->debug(
"Start writing Dataset, entity: " . $a_entity .
", schema version: " . $a_schema_version .
303 ", ids: " . print_r($a_ids,
true));
307 if (!$a_omit_types) {
308 $this->ds_log->debug(
"...write types");
309 $this->
addTypesXml($writer, $a_entity, $a_schema_version);
313 $this->ds_log->debug(
"...write records");
314 $this->
addRecordsXml($writer, $prefixes, $a_entity, $a_schema_version, $a_ids, $a_field);
322 return $writer->xmlDumpMem(
false);
332 public function addRecordsXml($a_writer, $a_prefixes, $a_entity, $a_schema_version, $a_ids, $a_field =
"")
334 $types = $this->
getXmlTypes($a_entity, $a_schema_version);
336 $this->ds_log->debug(
"...read data");
337 $this->
readData($a_entity, $a_schema_version, $a_ids, $a_field);
338 $this->ds_log->debug(
"...data: " . print_r($this->data,
true));
339 if (is_array($this->data)) {
340 foreach ($this->data as
$d) {
341 $a_writer->xmlStartTag(
343 array(
"Entity" => $this->getXmlEntityName($a_entity, $a_schema_version))
347 $a_writer->xmlStartTag($this->getXmlEntityTag($a_entity, $a_schema_version));
349 $rec = $this->
getXmlRecord($a_entity, $a_schema_version, $d);
350 foreach ($rec as
$f =>
$c) {
351 switch ($types[
$f]) {
353 if ($this->absolute_export_dir !=
"" && $this->relative_export_dir !=
"") {
355 ilUtil::rCopy(
$c, $this->absolute_export_dir .
"/dsDir_" . $this->dircnt);
365 $a_writer->xmlElement($f, array(),
$c);
368 $a_writer->xmlEndTag($this->getXmlEntityTag($a_entity, $a_schema_version));
375 $this->ds_log->debug(
"...get dependencies");
376 $deps = $this->getDependencies($a_entity, $a_schema_version, $rec, $a_ids);
377 $this->ds_log->debug(
"...dependencies: " . print_r($deps,
true));
378 if (is_array($deps)) {
379 foreach ($deps as $dp => $par) {
380 $this->
addRecordsXml($a_writer, $a_prefixes, $dp, $a_schema_version, $par[
"ids"], $par[
"field"]);
384 } elseif ($this->data ===
false) {
386 $this->ds_log->debug(
"...get dependencies (no record)");
387 $deps = $this->getDependencies($a_entity, $a_schema_version, null, $a_ids);
388 if (is_array($deps)) {
389 foreach ($deps as $dp => $par) {
390 $this->
addRecordsXml($a_writer, $a_prefixes, $dp, $a_schema_version, $par[
"ids"], $par[
"field"]);
411 private function addTypesXml($a_writer, $a_entity, $a_schema_version)
413 $types = $this->
getXmlTypes($a_entity, $a_schema_version);
416 if (is_array($types)) {
417 $a_writer->xmlStartTag(
419 array(
"Entity" => $this->getXmlEntityName($a_entity, $a_schema_version),
420 "SchemaVersion" => $a_schema_version)
422 foreach ($this->
getXmlTypes($a_entity, $a_schema_version) as
$f => $t) {
423 $a_writer->xmlElement(
425 array(
"Name" =>
$f,
"Type" => $t)
432 $deps = $this->getDependencies($a_entity, $a_schema_version, null, null);
433 if (is_array($deps)) {
434 foreach ($deps as $dp => $w) {
435 $this->
addTypesXml($a_writer, $dp, $a_schema_version);
451 $namespaces[$a_entity] = $ns;
454 $deps = $this->getDependencies($a_entity, $a_schema_version, null, null);
455 if (is_array($deps)) {
456 foreach ($deps as $dp => $w) {
491 return $this->
getTypes($a_entity, $a_version);
501 return $this->
getTypes($a_entity, $a_version);
542 $this->
import = $a_val;
552 return $this->import;
562 $this->current_installation_id = $a_val;
584 return "il_" .
IL_INST_ID .
"_" . $a_type .
"_" . $a_id;
597 if (substr($a_id, 0, 3) ==
"il_") {
598 $parts = explode(
"_", $a_id);
599 $inst_id = $parts[1];
604 if (($inst_id == 0 ||
IL_INST_ID == 0) && !DEVMODE) {
605 return array(
"type" => self::EXPORT_NO_INST_ID,
"id" => $a_fallback_id);
612 return array(
"type" => self::EXPORT_ID_ILIAS_LOCAL,
"id" => $id);
616 return array(
"type" => self::EXPORT_ID_ILIAS_LOCAL_INVALID,
"id" => $a_fallback_id);
624 return array(
"type" => self::EXPORT_ID_ILIAS_REMOTE,
"id" => $id);
628 return array(
"type" => self::EXPORT_ID_ILIAS_REMOTE_INVALID,
"id" => $a_fallback_id);
636 return array(
"type" => self::EXPORT_ID,
"id" => $id);
638 return array(
"type" => self::EXPORT_ID_INVALID,
"id" => $a_fallback_id);
642 protected function stripTags(array $rec, array $omit_keys = []) : array
645 foreach ($rec as $k => $v) {
646 if (in_array($k, $omit_keys,
true)) {
getJsonEntityName($a_entity, $a_version)
Get entity name for json (may be overwritten)
static makeDirParents($a_dir)
Create a new directory and all parent directories.
init($a_entity, $a_schema_version)
Init.
const EXPORT_ID_ILIAS_REMOTE
setExportDirectories($a_relative, $a_absolute)
Set export directories.
setImportDirectory($a_val)
Set import directory.
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true, $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
getTypes($a_entity, $a_version)
Get (abstract) types for (abstract) field names.
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
const EXPORT_ID_ILIAS_LOCAL_INVALID
createObjectExportId($a_type, $a_id)
Build ilias export id.
afterXmlRecordWriting($a_entity, $a_version, $a_set)
After xml record writing hook record.
addTypesXml($a_writer, $a_entity, $a_schema_version)
Add types to xml writer.
getDSPrefix()
Get XML dataset namespace prefix.
getImportDirectory()
Get import directory.
readData($a_entity, $a_version, $a_ids)
Read data from DB.
__construct()
Constructor.
getJsonTypes($a_entity, $a_version)
Get json types.
getXMLEntityName($a_entity, $a_version)
Get entity name for xml (may be overwritten)
convertToLeadingUpper($a_str)
Make xyz_abc a XyzAbc string.
getXmlRecord($a_entity, $a_version, $a_set)
Get xml record for version.
getImport()
Get import object.
const EXPORT_ID_ILIAS_REMOTE_INVALID
getXmlRepresentation( $a_entity, $a_schema_version, $a_ids, $a_field="", $a_omit_header=false, $a_omit_types=false)
Get xml representation <dataset install_id="123" install_url="..."> <types entity="table_name" versio...
static encode($mixed, $suppress_native=false)
const EXPORT_ID_ILIAS_LOCAL
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
getJsonRepresentation()
Get json representation.
getSupportedVersions()
Get supported version.
getNamespaces(&$namespaces, $a_entity, $a_schema_version)
Get xml namespaces.
setCurrentInstallationId($a_val)
Set current installation id.
getCurrentInstallationId()
Get current installation id.
getJsonRecord($a_set)
Get json record for version.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static _lookupType($a_id, $a_reference=false)
lookup object type
getXmlTypes($a_entity, $a_version)
Get xml types.
setImport($a_val)
Set import object.
static getLogger($a_component_id)
Get component logger.
parseObjectExportId($a_id, $a_fallback_id=null)
Parse export id.
stripTags(array $rec, array $omit_keys=[])
getXMLEntityTag($a_entity, $a_schema_version)
Get entity tag.
A dataset contains in data in a common structure that can be shared and transformed for different pur...
setDSPrefix($a_val)
Set XML dataset namespace prefix.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
addRecordsXml($a_writer, $a_prefixes, $a_entity, $a_schema_version, $a_ids, $a_field="")
Add records xml.
static _getIdForImportId($a_import_id)
get current object id for import id (static)