ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DownloadListTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Data;
24 use ILIAS\UI;
27 
32 {
33  protected \ilCtrl $ctrl;
34  protected \ilLanguage $lng;
35  protected UI\Factory $ui_fac;
37  protected Data\Factory $df;
38  protected \ilObjUser $user;
39  protected \ilObjGlossary $glossary;
40 
41  public function __construct(\ilObjGlossary $glossary)
42  {
43  global $DIC;
44 
45  $this->ctrl = $DIC->ctrl();
46  $this->lng = $DIC->language();
47  $this->ui_fac = $DIC->ui()->factory();
48  $this->request = $DIC->http()->request();
49  $this->df = new Data\Factory();
50  $this->user = $DIC->user();
51  $this->glossary = $glossary;
52  }
53 
54  public function getComponent(): UI\Component\Table\Data
55  {
56  $columns = $this->getColumns();
57  $actions = $this->getActions();
58  $data_retrieval = $this->getDataRetrieval();
59 
60  $table = $this->ui_fac->table()
61  ->data($data_retrieval, $this->lng->txt("download"), $columns)
62  ->withId(
63  self::class . "_" .
64  $this->glossary->getRefId()
65  )
66  ->withActions($actions)
67  ->withRequest($this->request);
68 
69  return $table;
70  }
71 
72  protected function getColumns(): array
73  {
74  if ((int) $this->user->getTimeFormat() === \ilCalendarSettings::TIME_FORMAT_12) {
75  $date_format = $this->df->dateFormat()->withTime12($this->user->getDateFormat());
76  } else {
77  $date_format = $this->df->dateFormat()->withTime24($this->user->getDateFormat());
78  }
79 
80  $columns = [
81  "format" => $this->ui_fac->table()->column()->text($this->lng->txt("cont_format"))->withIsSortable(false),
82  "file" => $this->ui_fac->table()->column()->text($this->lng->txt("cont_file"))->withIsSortable(false),
83  "size" => $this->ui_fac->table()->column()->number($this->lng->txt("size"))->withIsSortable(false),
84  "date" => $this->ui_fac->table()->column()->date(
85  $this->lng->txt("date"),
86  $date_format
87  )->withIsSortable(false),
88  ];
89 
90  return $columns;
91  }
92 
93  protected function getActions(): array
94  {
95  $query_params_namespace = ["glo_download_list_table"];
96 
97  $uri_download = $this->df->uri(
98  ILIAS_HTTP_PATH . "/" . $this->ctrl->getLinkTargetByClass("ilglossarypresentationgui", "downloadExportFile")
99  );
100  $url_builder_download = new UI\URLBuilder($uri_download);
101  list($url_builder_download, $action_parameter_token_download, $row_id_token_download) =
102  $url_builder_download->acquireParameters(
103  $query_params_namespace,
104  "action",
105  "file_ids"
106  );
107 
108  $actions["download"] = $this->ui_fac->table()->action()->single(
109  $this->lng->txt("download"),
110  $url_builder_download->withParameter($action_parameter_token_download, "downloadExportFile"),
111  $row_id_token_download
112  );
113 
114  return $actions;
115  }
116 
117  protected function getDataRetrieval(): UI\Component\Table\DataRetrieval
118  {
119  $data_retrieval = new class (
121  $this->df
122  ) implements UI\Component\Table\DataRetrieval {
123  use TableRecords;
124 
125  public function __construct(
126  protected \ilObjGlossary $glossary,
127  protected Data\Factory $df
128  ) {
129  }
130 
131  public function getRows(
132  UI\Component\Table\DataRowBuilder $row_builder,
133  array $visible_column_ids,
134  Data\Range $range,
135  Data\Order $order,
136  ?array $filter_data,
137  ?array $additional_parameters
138  ): \Generator {
139  $records = $this->getRecords($range);
140  foreach ($records as $idx => $record) {
141  $row_id = (string) $record["file_id"];
142 
143  yield $row_builder->buildDataRow($row_id, $record);
144  }
145  }
146 
147  public function getTotalRowCount(
148  ?array $filter_data,
149  ?array $additional_parameters
150  ): ?int {
151  return count($this->getRecords());
152  }
153 
154  protected function getRecords(?Data\Range $range = null): array
155  {
156  $export_files = [];
157  $types = ["xml", "html"];
158  foreach ($types as $type) {
159  $pe_file = $this->glossary->getPublicExportFile($type);
160  if ($pe_file != "") {
161  $dir = $this->glossary->getExportDirectory($type);
162  if (is_file($dir . "/" . $pe_file)) {
163  $size = filesize($dir . "/" . $pe_file);
164  $export_files[] = [
165  "type" => $type,
166  "file" => $pe_file,
167  "size" => $size
168  ];
169  }
170  }
171  }
172 
173  $records = [];
174  $i = 0;
175  foreach ($export_files as $exp_file) {
176  $records[$i]["file_id"] = $exp_file["type"] . ":" . $exp_file["file"];
177  $records[$i]["format"] = strtoupper($exp_file["type"]);
178  $records[$i]["file"] = $exp_file["file"];
179  $records[$i]["size"] = $exp_file["size"];
180  $file_arr = explode("__", $exp_file["file"]);
181  $records[$i]["date"] = (new \DateTimeImmutable())->setTimestamp((int) $file_arr[0]);
182 
183  $i++;
184  }
185 
186  if ($range) {
187  $records = $this->limitRecords($records, $range);
188  }
189 
190  return $records;
191  }
192  };
193 
194  return $data_retrieval;
195  }
196 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
Builds data types.
Definition: Factory.php:35
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28