71 public int $obj_id = -1,
88 $this->import_directory = $a_val;
124 public function handlerBeginTag($a_xml_parser,
string $a_name, array $a_attribs): void
132 if (isset($a_attribs[
"obj_id"])) {
134 if ($this->obj_id != -1 && (
int) $read_obj_id != -1 && $this->obj_id !== (
int) $read_obj_id) {
136 "Object IDs (xml $read_obj_id and argument " . $this->obj_id .
") do not match!",
145 if ($a_name ===
"Version" && !isset($a_attribs[
"mode"])) {
147 $this->version =
null;
148 if ($this->date ===
null) {
150 $this->date = $a_attribs[
"date"];
151 $this->usr_id = (
int) $a_attribs[
"usr_id"];
159 #echo $a_attribs["mode"]; 160 if (isset($a_attribs[
"mode"])) {
161 if ($a_attribs[
"mode"] ==
"GZIP") {
162 if (!function_exists(
"gzread")) {
164 "Deflating with gzip is not supported",
170 } elseif ($a_attribs[
"mode"] ==
"ZLIB") {
171 if (!function_exists(
"gzuncompress")) {
173 "Deflating with zlib (compress/uncompress) is not supported",
179 } elseif ($a_attribs[
"mode"] ==
"COPY") {
182 elseif ($a_attribs[
'mode'] ==
'REST') {
188 if ($a_name ===
"Version") {
189 $this->version = (
int) $a_attribs[
"version"];
190 $this->max_version = (
int) $a_attribs[
"max_version"];
191 $this->date = (
int) $a_attribs[
"date"];
192 $this->usr_id = (
int) $a_attribs[
"usr_id"];
193 $this->action = (string) $a_attribs[
"action"];
206 $this->cdata = trim($this->cdata ??
'');
208 $GLOBALS[
'DIC'][
'ilLog']->write(__METHOD__ .
': ' . $this->cdata);
212 $this->result =
true;
215 if ($this->cdata ===
'') {
219 $this->file->setFilename($this->cdata);
220 $this->file->setTitle($this->cdata);
224 $this->file->setTitle(trim($this->cdata));
227 $this->file->setDescription(trim($this->cdata));
230 $this->file->setRating((
bool) $this->cdata);
234 if ($a_name ===
"Version" && $this->version ===
null) {
241 $this->tmpFilename = $this->
getImportDirectory() .
"/" . self::normalizeRelativePath($this->cdata);
245 $this->tmpFilename = $storage->getStoredFilePath(self::normalizeRelativePath($this->cdata));
249 $this->tmpFilename = $baseDecodedFilename;
256 if (!$this->
fastGunzip($baseDecodedFilename, $this->tmpFilename)) {
258 "Deflating with fastzunzip failed",
262 unlink($baseDecodedFilename);
264 if (!$this->
fastGunzip($baseDecodedFilename, $this->tmpFilename)) {
266 "Deflating with fastDecompress failed",
270 unlink($baseDecodedFilename);
272 $this->tmpFilename = $baseDecodedFilename;
279 if ($this->version == $this->file->getVersion()) {
280 if (is_file($this->tmpFilename)) {
281 $this->file->setFileSize(filesize($this->tmpFilename));
285 if ($this->file->getFileType() ===
'' || $this->file->getFileType() ===
'0') {
287 $this->file->setFileType(MimeType::getMimeType($this->tmpFilename));
291 $this->versions[] = [
299 $this->version =
null;
301 $this->usr_id =
null;
316 if ($a_data !==
"\n") {
321 $this->cdata .= $a_data;
323 $this->cdata .= $a_data;
338 foreach ($this->versions as $version) {
339 if (!file_exists($version[
"tmpFilename"])) {
340 if (!isset($version[
"tmpFilename"])) {
344 $files = scandir(dirname((
string) $version[
"tmpFilename"]));
345 $version[
"tmpFilename"] = rtrim(
346 dirname((
string) $version[
"tmpFilename"]),
349 if (!file_exists($version[
"tmpFilename"])) {
351 __METHOD__ .
' "' . ($version[
"tmpFilename"]) .
'" file not found.' 358 if (filesize($version[
"tmpFilename"]) == 0) {
363 $import_file_version_path = $version[
"tmpFilename"];
365 $stream = Streams::ofResource(fopen($import_file_version_path,
'rb'));
366 $this->file->appendStream($stream, $this->file->getTitle());
391 return $this->result > 0;
406 $path = str_replace(
'\\',
'/', $path);
408 while (preg_match(
'#\p{C}+|^\./#u', (
string) $path)) {
409 $path = preg_replace(
'#\p{C}+|^\./#u',
'', (
string) $path);
413 foreach (explode(
'/', (
string) $path) as $part) {
427 return implode(
'/',
$parts);
432 $fh = fopen($filein,
'rb');
433 $fh2 = fopen($fileout,
'wb');
434 stream_filter_append($fh2,
'convert.base64-decode');
438 if ($chunk ===
false) {
441 fwrite($fh2, $chunk);
451 if (!file_exists($in)) {
454 if (!is_readable($in)) {
457 if (!file_exists($out) && !is_writable(dirname($out))) {
460 if (file_exists($out) && !is_writable($out)) {
463 $in_file = gzopen($in,
"rb");
464 $out_file = fopen($out,
"wb");
466 while (!gzeof($in_file)) {
467 $buffer = gzread($in_file, 4096);
468 fwrite($out_file, $buffer, 4096);
fastGunzip(string $in, string $out)
handlerBeginTag($a_xml_parser, string $a_name, array $a_attribs)
handler for begin of element
static getLogger(string $a_component_id)
Get component logger.
startParsing()
stores xml data in array
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
fastBase64Decode(string $filein, string $fileout)
handlerEndTag($a_xml_parser, string $a_name)
handler for end of element
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
start()
starts parsing an changes object by side effect.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static int $DECOMPRESSION_FAILED
__construct(public ilObjFile $file, string $a_xml_data, public int $obj_id=-1, public int $mode=0)
Constructor.
static _removeEntriesForObject(int $a_obj_id)
remove all history entries for an object
string $tmpFilename
file of temporary file where we store the file content instead of in memory
static int $CONTENT_GZ_COMPRESSED
handlerCharacterData($a_xml_parser, string $a_data)
handler for character data
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static int $CONTENT_NOT_COMPRESSED
static normalizeRelativePath(string $path)
Normalize relative directories in a path.
static int $CONTENT_ZLIB_COMPRESSED
setHandlers($a_xml_parser)
set event handlers
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
setImportDirectory(?string $a_val)
Set import directory.
updateFileContents()
update file according to filename and version and create history entry has to be called after (!) fil...
static int $ID_DEFLATE_METHOD_MISMATCH
static __extractId(string $ilias_id, int $inst_id)
extract ref id from role title, e.g.
__construct(Container $dic, ilPlugin $plugin)
getImportDirectory()
Get import directory.
bool $result
result of parsing and updating
setXMLContent(string $a_xml_content)
setFileContents()
update file according to filename and version, does not update history has to be called after (!) fil...