ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
class.ilPCFileList.php
Go to the documentation of this file.
1<?php
2
25{
26 public function init(): void
27 {
28 $this->setType("flst");
29 }
30
31 public function create(
32 ilPageObject $a_pg_obj,
33 string $a_hier_id,
34 string $a_pc_id = ""
35 ): void {
36 $this->createInitialChildNode($a_hier_id, $a_pc_id, "FileList");
37 }
38
39 public function appendItem(
40 int $a_id,
41 string $a_location,
42 string $a_format
43 ): void {
44 // File Item
45 $new_item = $this->dom_doc->createElement("FileItem");
46 $new_item = $this->getChildNode()->appendChild($new_item);
47
48 // Identifier
49 $id_node = $this->dom_doc->createElement("Identifier");
50 $id_node = $new_item->appendChild($id_node);
51 $id_node->setAttribute("Catalog", "ILIAS");
52 $id_node->setAttribute("Entry", "il__file_" . $a_id);
53
54 // Location
55 $loc_node = $this->dom_doc->createElement("Location");
56 $loc_node = $new_item->appendChild($loc_node);
57 $loc_node->setAttribute("Type", "LocalFile");
58 $this->dom_util->setContent($loc_node, $a_location);
59
60 // Format
61 $form_node = $this->dom_doc->createElement("Format");
62 $form_node = $new_item->appendChild($form_node);
63 $this->dom_util->setContent($form_node, $a_format);
64 }
65
66 public function setListTitle(
67 string $a_title,
68 string $a_language
69 ): void {
70 $this->dom_util->setFirstOptionalElement(
71 $this->getChildNode(),
72 "Title",
73 array("FileItem"),
74 $a_title,
75 array("Language" => $a_language)
76 );
77 }
78
79 public function getListTitle(): string
80 {
81 foreach ($this->getChildNode()->childNodes as $c) {
82 if ($c->nodeName === "Title") {
83 return $c->nodeValue;
84 }
85 }
86 return "";
87 }
88
89 public function getLanguage(): string
90 {
91 foreach ($this->getChildNode()->childNodes as $c) {
92 if ($c->nodeName === "Title") {
93 return $c->getAttribute("Language");
94 }
95 }
96 return "";
97 }
98
102 public function getFileList(): array
103 {
104 $files = array();
105
106 // File Item
107 foreach ($this->getChildNode()->childNodes as $c) {
108 if ($c->nodeName === "FileItem") {
109 $id = $entry = "";
110 $pc_id = $c->getAttribute("PCID");
111 $hier_id = $c->getAttribute("HierId");
112 $class = $c->getAttribute("Class");
113
114 // Identifier
115 $id_node = $c->firstChild;
116 if ($id_node->nodeName === "Identifier") {
117 $entry = $id_node->getAttribute("Entry");
118 if (substr($entry, 0, 9) == "il__file_") {
119 $id = substr($entry, 9);
120 }
121 }
122 $files[] = array("entry" => $entry, "id" => $id,
123 "pc_id" => $pc_id, "hier_id" => $hier_id,
124 "class" => $class);
125 }
126 }
127
128 return $files;
129 }
130
134 public function deleteFileItems(array $a_ids): void
135 {
136 // File Item
137 $childs = iterator_to_array($this->getChildNode()->childNodes);
138 foreach ($childs as $c) {
139 if ($c->nodeName === "FileItem") {
140 $id = $entry = "";
141 $pc_id = $c->getAttribute("PCID");
142 $hier_id = $c->getAttribute("HierId");
143
144 if (in_array($hier_id . ":" . $pc_id, $a_ids)) {
145 $c->parentNode->removeChild($c);
146 }
147 }
148 }
149 }
150
154 public function savePositions(array $a_pos): void
155 {
156 asort($a_pos);
157
158 // File Item
159 $nodes = array();
160 foreach ($this->getChildNode()->childNodes as $c) {
161 if ($c->nodeName === "FileItem") {
162 $pc_id = $c->getAttribute("PCID");
163 $hier_id = $c->getAttribute("HierId");
164 $nodes[$hier_id . ":" . $pc_id] = $c;
165 }
166 }
167 $this->dom_util->deleteAllChildsByName($this->getChildNode(), ["FileItem"]);
168 foreach ($a_pos as $k => $v) {
169 if (is_object($nodes[$k])) {
170 $nodes[$k] = $this->getChildNode()->appendChild($nodes[$k]);
171 }
172 }
173 }
174
178 public function getAllClasses(): array
179 {
180 $classes = array();
181
182 // File Item
183 foreach ($this->getChildNode()->childNodes as $c) {
184 if ($c->nodeName === "FileItem") {
185 $classes[$c->getAttribute("HierId") . ":" .
186 $c->getAttribute("PCID")] = $c->getAttribute("Class");
187 }
188 }
189
190 return $classes;
191 }
192
196 public function saveStyleClasses(array $a_class): void
197 {
198 // File Item
199 foreach ($this->getChildNode()->childNodes as $c) {
200 if ($c->nodeName == "FileItem") {
201 $c->setAttribute(
202 "Class",
203 $a_class[$c->getAttribute("HierId") . ":" .
204 $c->getAttribute("PCID")]
205 );
206 }
207 }
208 }
209
214 public static function getLangVars(): array
215 {
216 return array("ed_edit_files", "ed_insert_filelist", "pc_flist");
217 }
218
222 public static function afterPageUpdate(
223 ilPageObject $a_page,
224 DOMDocument $a_domdoc,
225 string $a_xml,
226 bool $a_creation
227 ): void {
228 if (!$a_page->getImportMode()) {
229 // pc filelist
230 $file_ids = ilObjFile::_getFilesOfObject(
231 $a_page->getParentType() . ":pg",
232 $a_page->getId(),
233 0,
234 $a_page->getLanguage()
235 );
236 self::saveFileUsage($a_page, $a_domdoc);
237
238 foreach ($file_ids as $file) { // check, whether file object can be deleted
239 if (ilObject::_exists($file) && ilObject::_lookupType($file) == "file") {
240 $file_obj = new ilObjFile($file, false);
241 $usages = $file_obj->getUsages();
242 if (count($usages) == 0) { // delete, if no usage exists
243 if ($file_obj->getMode() == "filelist") { // non-repository object
244 $file_obj->delete();
245 }
246 }
247 }
248 }
249 }
250 }
251
255 public static function beforePageDelete(
256 ilPageObject $a_page
257 ): void {
258 $files = self::collectFileItems($a_page, $a_page->getDomDoc());
259
260 // delete all file usages
261 ilObjFile::_deleteAllUsages(
262 $a_page->getParentType() . ":pg",
263 $a_page->getId(),
264 false,
265 $a_page->getLanguage()
266 );
267
268 foreach ($files as $file_id) {
269 if (ilObject::_exists($file_id)) {
270 $file_obj = new ilObjFile($file_id, false);
271 $file_obj->delete();
272 }
273 }
274 }
275
279 public static function afterPageHistoryEntry(
280 ilPageObject $a_page,
281 DOMDocument $a_old_domdoc,
282 string $a_old_xml,
283 int $a_old_nr
284 ): void {
285 self::saveFileUsage($a_page, $a_old_domdoc, $a_old_nr);
286 }
287
291 public static function saveFileUsage(
292 ilPageObject $a_page,
293 DOMDocument $a_domdoc,
294 int $a_old_nr = 0
295 ): void {
296 $file_ids = self::collectFileItems($a_page, $a_domdoc);
297 ilObjFile::_deleteAllUsages($a_page->getParentType() . ":pg", $a_page->getId(), $a_old_nr, $a_page->getLanguage());
298 foreach ($file_ids as $file_id) {
299 ilObjFile::_saveUsage(
300 (int) $file_id,
301 $a_page->getParentType() . ":pg",
302 $a_page->getId(),
303 $a_old_nr,
304 $a_page->getLanguage()
305 );
306 }
307 }
308
312 public static function collectFileItems(
313 ilPageObject $a_page,
314 DOMDocument $a_domdoc
315 ): array {
316 $xpath = new DOMXPath($a_domdoc);
317 $nodes = $xpath->query('//FileItem/Identifier');
318 $file_ids = array();
319 foreach ($nodes as $node) {
320 $id_arr = explode("_", $node->getAttribute("Entry"));
321 $file_id = $id_arr[count($id_arr) - 1];
322 if ($file_id > 0 && ($id_arr[1] == "" || $id_arr[1] == IL_INST_ID || $id_arr[1] == 0)) {
323 $file_ids[$file_id] = $file_id;
324 }
325 }
326 // file items in download links
327 $xpath = new DOMXPath($a_domdoc);
328 $nodes = $xpath->query("//IntLink[@Type='File']");
329 foreach ($nodes as $node) {
330 $t = $node->getAttribute("Target");
331 if (substr($t, 0, 9) == "il__dfile") {
332 $id_arr = explode("_", $t);
333 $file_id = $id_arr[count($id_arr) - 1];
334 $file_ids[$file_id] = $file_id;
335 }
336 }
337 return $file_ids;
338 }
339
340 public static function deleteHistoryLowerEqualThan(
341 string $parent_type,
342 int $page_id,
343 string $lang,
344 int $delete_lower_than_nr
345 ): void {
346 $file_ids = self::_deleteHistoryUsagesLowerEqualThan(
347 $parent_type,
348 $page_id,
349 $delete_lower_than_nr,
350 $lang
351 );
352
353 foreach ($file_ids as $file_id) {
354 if (ilObject::_lookupType($file_id) === "file") {
355 $file = new ilObjFile($file_id, false);
356 $usages = $file->getUsages();
357 if (count($usages) == 0) {
358 $file->delete();
359 }
360 }
361 }
362 }
363
364 protected static function _deleteHistoryUsagesLowerEqualThan(
365 string $parent_type,
366 int $a_id,
367 int $a_usage_hist_nr,
368 string $a_lang = "-"
369 ): array {
370 global $DIC;
371
372 $hist_repo = $DIC->copage()->internal()->repo()->history();
373
374 $file_ids = [];
375 foreach ($hist_repo->getHistoryNumbersOlderEqualThanNr(
376 $a_usage_hist_nr,
377 $parent_type,
378 $a_id,
379 $a_lang
380 ) as $old_nr) {
381 foreach (ilObjFile::_getFilesOfObject($parent_type . ":pg", $a_id, $old_nr, $a_lang) as $file_id) {
382 $file_ids[$file_id] = $file_id;
383 }
384 ilObjFile::_deleteAllUsages($parent_type . ":pg", $a_id, $old_nr, $a_lang);
385 }
386 return $file_ids;
387 }
388}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
Class ilObjFile.
static _lookupType(int $id, bool $reference=false)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static beforePageDelete(ilPageObject $a_page)
Before page is being deleted.
static getLangVars()
Get lang vars needed for editing.
static afterPageUpdate(ilPageObject $a_page, DOMDocument $a_domdoc, string $a_xml, bool $a_creation)
After page has been updated (or created)
static collectFileItems(ilPageObject $a_page, DOMDocument $a_domdoc)
Get all file items that are used within the page.
getAllClasses()
Get all style classes.
static saveFileUsage(ilPageObject $a_page, DOMDocument $a_domdoc, int $a_old_nr=0)
Save file usages.
static deleteHistoryLowerEqualThan(string $parent_type, int $page_id, string $lang, int $delete_lower_than_nr)
Overwrite in derived classes, if old history entries are being deleted.
static _deleteHistoryUsagesLowerEqualThan(string $parent_type, int $a_id, int $a_usage_hist_nr, string $a_lang="-")
saveStyleClasses(array $a_class)
Save style classes of file items.
setListTitle(string $a_title, string $a_language)
savePositions(array $a_pos)
Save positions of file items.
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
static afterPageHistoryEntry(ilPageObject $a_page, DOMDocument $a_old_domdoc, string $a_old_xml, int $a_old_nr)
After page history entry has been created.
deleteFileItems(array $a_ids)
Delete file items.
init()
Init object.
appendItem(int $a_id, string $a_location, string $a_format)
getFileList()
Get list of files.
Content object of ilPageObject (see ILIAS DTD).
createInitialChildNode(string $hier_id, string $pc_id, string $child, array $child_attributes=[])
setType(string $a_type)
Set Type.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
const IL_INST_ID
Definition: constants.php:40
$c
Definition: deliver.php:25
if(!file_exists('../ilias.ini.php'))
global $DIC
Definition: shib_login.php:26