ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFileXMLWriter.php
Go to the documentation of this file.
1 <?php
2 
34 {
35  public static int $CONTENT_ATTACH_NO = 0;
36  public static int $CONTENT_ATTACH_ENCODED = 1;
37  public static int $CONTENT_ATTACH_ZLIB_ENCODED = 2;
38  public static int $CONTENT_ATTACH_GZIP_ENCODED = 3;
39  public static int $CONTENT_ATTACH_COPY = 4;
40  // begin-patch fm
41  public static int $CONTENT_ATTACH_REST = 5;
42  // end-patch fm
43 
44  public int $attachFileContents;
48  public \ilObjFile $file;
52  public $omit_header = false;
53  protected ?string $target_dir_relative = null;
54  protected ?string $target_dir_absolute = null;
55 
65  public function __construct()
66  {
68  $this->attachFileContents = ilFileXMLWriter::$CONTENT_ATTACH_NO;
69  }
70 
71 
72  public function setFile(ilObjFile $file): void
73  {
74  $this->file = &$file;
75  }
76 
77 
83  public function setOmitHeader($a_val): void
84  {
85  $this->omit_header = $a_val;
86  }
87 
88 
94  public function getOmitHeader(): bool
95  {
96  return $this->omit_header;
97  }
98 
99 
106  public function setFileTargetDirectories(?string $a_rel, ?string $a_abs): void
107  {
108  $this->target_dir_relative = $a_rel;
109  $this->target_dir_absolute = $a_abs;
110  }
111 
112 
119  public function setAttachFileContents(int $attachFileContents): void
120  {
121  if ($attachFileContents == ilFileXMLWriter::$CONTENT_ATTACH_GZIP_ENCODED && !function_exists("gzencode")) {
122  throw new ilFileException("Inflating with gzip is not supported", ilFileException::$ID_DEFLATE_METHOD_MISMATCH);
123  }
124  if ($attachFileContents == ilFileXMLWriter::$CONTENT_ATTACH_ZLIB_ENCODED && !function_exists("gzcompress")) {
125  throw new ilFileException("Inflating with zlib (compress/uncompress) is not supported", ilFileException::$ID_DEFLATE_METHOD_MISMATCH);
126  }
127  $this->attachFileContents = $attachFileContents;
128  }
129 
130 
131  public function start(): bool
132  {
133  $this->__buildHeader();
134 
135  $attribs = array(
136  "obj_id" => "il_" . IL_INST_ID . "_file_" . $this->file->getId(),
137  "version" => $this->file->getVersion(),
138  "max_version" => $this->file->getMaxVersion(),
139  "size" => $this->file->getFileSize(),
140  "type" => $this->file->getFileType(),
141  "action" => $this->file->getAction(),
142  );
143 
144  $this->xmlStartTag("File", $attribs);
145  $this->xmlElement("Filename", null, $this->file->getFileName());
146 
147  $this->xmlElement("Title", null, $this->file->getTitle());
148  $this->xmlElement("Description", null, $this->file->getDescription());
149  $this->xmlElement("Rating", null, (int) $this->file->hasRating());
150 
151  $versions = $this->file->getVersions();
152 
153  if ($versions !== []) {
154  $this->xmlStartTag("Versions");
155 
156  foreach ($versions as $version) {
157  $attribs = array(
158  "version" => $version["version"],
159  "max_version" => $version["max_version"],
160  "date" => strtotime($version["date"]),
161  "usr_id" => "il_" . IL_INST_ID . "_usr_" . $version["user_id"],
162  "action" => $version["action"],
163  "rollback_version" => $version["rollback_version"],
164  "rollback_user_id" => $version["rollback_user_id"],
165  );
166 
167  $content = "";
168 
169  if ($this->attachFileContents !== 0) {
170  $filename = $this->file->getFile($version["version"]);
171 
172  if (@is_file($filename)) {
173  if ($this->attachFileContents == ilFileXMLWriter::$CONTENT_ATTACH_COPY) {
174  $attribs ["mode"] = "COPY";
175  $content = "/" . $version["version"] . "_" . $this->file->getFileName();
176  copy($filename, $this->target_dir_absolute . $content);
177  $content = $this->target_dir_relative . $content;
178  } // begin-patch fm
179  elseif ($this->attachFileContents == ilFileXMLWriter::$CONTENT_ATTACH_REST) {
180  $attribs ['mode'] = "REST";
181  $fs = new ilRestFileStorage();
182  $content = $fs->storeFileForRest(base64_encode(@file_get_contents($filename)));
183  ;
184  } // end-patch fm
185  else {
186  $content = @file_get_contents($filename);
187  $attribs ["mode"] = "PLAIN";
188  if ($this->attachFileContents == ilFileXMLWriter::$CONTENT_ATTACH_ZLIB_ENCODED) {
189  $attribs ["mode"] = "ZLIB";
190  $content = @gzcompress($content, 9);
191  } elseif ($this->attachFileContents == ilFileXMLWriter::$CONTENT_ATTACH_GZIP_ENCODED) {
192  $attribs ["mode"] = "GZIP";
193  $content = @gzencode($content, 9);
194  }
195  $content = base64_encode($content);
196  }
197  }
198  }
199 
200  $this->xmlElement("Version", $attribs, $content);
201  }
202  $this->xmlEndTag("Versions");
203  }
204 
205  $this->xmlEndTag("File");
206 
207  $this->__buildFooter();
208 
209  return true;
210  }
211 
212 
213  public function getXML(): string
214  {
215  return $this->xmlDumpMem(false);
216  }
217 
218 
219  public function __buildHeader(): bool
220  {
221  if (!$this->getOmitHeader()) {
222  $this->xmlSetDtdDef("<!DOCTYPE File PUBLIC \"-//ILIAS//DTD FileAdministration//EN\" \"" . ILIAS_HTTP_PATH . "/xml/ilias_file_3_8.dtd\">");
223  $this->xmlSetGenCmt("Exercise Object");
224  $this->xmlHeader();
225  }
226 
227  return true;
228  }
229 
230 
231  public function __buildFooter(): void
232  {
233  }
234 }
const IL_INST_ID
Definition: constants.php:40
static int $CONTENT_ATTACH_GZIP_ENCODED
__construct()
constructor
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setFile(ilObjFile $file)
setOmitHeader($a_val)
Set omit header.
setAttachFileContents(int $attachFileContents)
set attachment content mode
xmlSetGenCmt(string $genCmt)
Sets generated comment.
getOmitHeader()
Get omit header.
xmlEndTag(string $tag)
Writes an endtag.
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.
Class ilObjFile.
static int $CONTENT_ATTACH_ENCODED
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
xmlHeader()
Writes xml header.
ilObjFile $file
Exercise Object.
$filename
Definition: buildRTE.php:78
static int $CONTENT_ATTACH_COPY
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
File storage handling.
static int $CONTENT_ATTACH_REST
static int $ID_DEFLATE_METHOD_MISMATCH
__construct(Container $dic, ilPlugin $plugin)
static int $CONTENT_ATTACH_ZLIB_ENCODED
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
xmlDumpMem(bool $format=true)
Returns xml document from memory.
setFileTargetDirectories(?string $a_rel, ?string $a_abs)
Set file target directories.