ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclExportTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public function __construct(ilDclExportGUI $a_parent_obj, string $a_parent_cmd, ilObject $a_exp_obj)
24  {
25  parent::__construct($a_parent_obj, $a_parent_cmd, $a_exp_obj);
26 
27  $this->addCustomColumn($this->lng->txt('status'), $this, 'parseExportStatus');
28  }
29 
30  public function getExportFiles(): array
31  {
32  $types = [];
33  foreach ($this->parent_obj->getFormats() as $f) {
34  $types[] = $f['key'];
35  $this->formats[$f['key']] = $f['txt'];
36  }
37 
38  $file = [];
39  foreach ($types as $type) {
40  $dir = ilExport::_getExportDirectory($this->obj->getId(), $type, 'dcl');
41 
42  // quit if import dir not available
43  if (!is_dir($dir) || !is_writeable($dir)) {
44  continue;
45  }
46 
47  // open directory
48  $h_dir = dir($dir);
49 
50  // get files and save the in the array
51  while ($entry = $h_dir->read()) {
52  if ($entry != "." && $entry != "..") {
53  $ts = substr($entry, 0, strpos($entry, "__"));
54 
55  $filename = $entry; //($this->isExportInProgress($entry))? substr($entry, 0, - strlen(self::PROGRESS_IDENTIFIER)) : $entry;
56 
57  $file[$entry . $type] = [
58  "type" => $type,
59  "file" => $filename,
60  "size" => ($this->isExportInProgress($entry)) ? '0' : filesize($dir . "/" . $entry),
61  "timestamp" => $ts,
62  ];
63  }
64  }
65 
66  // close import directory
67  $h_dir->close();
68  }
69 
70  // sort files
71  ksort($file);
72 
73  return $file;
74  }
75 
76  protected function fillRow(array $a_set): void
77  {
78  foreach ($this->getCustomColumns() as $c) {
79  $this->tpl->setCurrentBlock('custom');
80  $this->tpl->setVariable('VAL_CUSTOM', $c['obj']->{$c['func']}($a_set['type'], $a_set['file']) . ' ');
81  $this->tpl->parseCurrentBlock();
82  }
83 
84  $file_id = $this->getRowId($a_set);
85  $this->tpl->setVariable('VAL_ID', $file_id);
86 
87  $type = ($this->formats[$a_set['type']] != "")
88  ? $this->formats[$a_set['type']]
89  : $a_set['type'];
90  $this->tpl->setVariable('VAL_TYPE', $type);
91 
92  $filename = ($this->isExportInProgress($a_set['file'])) ? substr(
93  $a_set['file'],
94  0,
96  ) . ".xlsx" : $a_set['file'];
97  $this->tpl->setVariable('VAL_FILE', $filename);
98 
99  $this->tpl->setVariable('VAL_SIZE', ilUtil::formatSize((int) $a_set['size']));
100  $this->tpl->setVariable(
101  'VAL_DATE',
102  ilDatePresentation::formatDate(new ilDateTime($a_set['timestamp'], IL_CAL_UNIX))
103  );
104 
105  if (!$this->isExportInProgress($a_set['file'])) {
106  $this->tpl->setVariable('TXT_DOWNLOAD', $this->lng->txt('download'));
107 
108  $this->ctrl->setParameter($this->getParentObject(), "file", $file_id);
109  $url = $this->ctrl->getLinkTarget($this->getParentObject(), "download");
110  $this->ctrl->setParameter($this->getParentObject(), "file", "");
111  $this->tpl->setVariable('URL_DOWNLOAD', $url);
112  }
113  }
114 
115  public function parseExportStatus(string $type, string $file): string
116  {
117  if ($type == 'xlsx') {
118  if ($this->isExportInProgress($file)) {
119  return $this->lng->txt('dcl_export_started');
120  } else {
121  return $this->lng->txt('dcl_export_finished');
122  }
123  } else {
124  return $this->lng->txt('dcl_export_finished');
125  }
126  }
127 
128  protected function isExportInProgress(string $file): bool
129  {
130  $ending = substr($file, -strlen(ilDclContentExporter::IN_PROGRESS_POSTFIX));
131 
132  return ($ending == ilDclContentExporter::IN_PROGRESS_POSTFIX);
133  }
134 }
$url
Definition: shib_logout.php:66
const IL_CAL_UNIX
$c
Definition: deliver.php:25
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object
__construct(ilDclExportGUI $a_parent_obj, string $a_parent_cmd, ilObject $a_exp_obj)
static formatSize(int $size, string $a_mode='short', ?ilLanguage $a_lng=null)
Returns the specified file size value in a human friendly form.
$filename
Definition: buildRTE.php:78
addCustomColumn(string $a_txt, object $a_obj, string $a_func)
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
parseExportStatus(string $type, string $file)