19 declare(strict_types=1);
66 $this->logging_repository,
70 $this->question_repository,
77 $action_parameter_token,
79 $this->stream_delivery,
85 $log_table->getFilter(),
86 $log_table->getTable()->withRequest($this->request)
97 $this->logging_repository,
100 $this->title_builder,
101 $this->question_repository,
108 $action_parameter_token,
110 $this->stream_delivery,
115 $action = $this->request_wrapper->retrieve(
116 $action_parameter_token->
getName(),
117 $this->
refinery->kindlyTo()->string()
120 if ($action ===
'') {
124 $affected_items = [];
125 if ($this->request_wrapper->has($row_id_token->
getName())) {
126 $affected_items = $this->request_wrapper->retrieve(
130 $this->
refinery->container()->mapValues(
131 $this->
refinery->kindlyTo()->string()
139 $log_table->executeAction($action, $affected_items);
145 $this->logging_repository->getLogs(
146 $this->logger->getInteractionTypes(),
154 $workbook = new \ilExcel();
155 $workbook->addSheet($this->
lng->txt(
'history'));
159 $workbook->setCell(1, $column++, $header_cell);
161 $workbook->setBold(
'A' . 1 .
':' . $workbook->getColumnCoord($column - 1) . 1);
162 $workbook->setColors(
'A' . 1 .
':' . $workbook->getColumnCoord($column - 1) . 1,
'C0C0C0');
172 foreach ($logs as
$log) {
175 foreach ($log->getLogEntryAsExportRow(
177 $this->title_builder,
178 $this->logger->getAdditionalInformationGenerator(),
180 'timezone' => new \DateTimeZone($this->current_user->getTimeZone()),
183 ) as $cell_content) {
197 $this->
lng->txt(
'date_time'),
198 $this->
lng->txt(
'test'),
199 $this->
lng->txt(
'author'),
200 $this->
lng->txt(
'tst_participant'),
201 $this->
lng->txt(
'client_ip'),
202 $this->
lng->txt(
'question'),
203 $this->
lng->txt(
'log_entry_type'),
204 $this->
lng->txt(
'interaction_type'),
205 $this->
lng->txt(
'additional_info')
211 $user_format = $this->current_user->getDateFormat();
213 return $this->data_factory->dateFormat()->amend(
214 $this->data_factory->dateFormat()->withTime24($user_format)
215 )->colon()->seconds()->get();
217 return $this->data_factory->dateFormat()->amend(
219 )->space()->hours12()->colon()->minutes()->colon()->seconds()->meridiem()->get();
226 $log_output = $this->logging_repository->getLegacyLogsForObjId($obj_id);
232 $this->
lng->txt(
'date_time'),
233 $this->
lng->txt(
'user'),
234 $this->
lng->txt(
'log_text'),
235 $this->
lng->txt(
'question')
239 foreach ($log_output as
$log) {
240 if (!array_key_exists($log[
'user_fi'], $users)) {
245 $date = new \ilDateTime((
int) $log[
'tstamp'],
IL_CAL_UNIX);
247 $content_row[] = trim($users[$log[
'user_fi']][
'title'] .
' ' 248 . $users[$log[
'user_fi']][
'firstname'] .
' ' . $users[$log[
'user_fi']][
'lastname']);
249 $content_row[] = trim($log[
'logtext']);
254 foreach ($csv as $row) {
255 $csvoutput .= implode($separator, $row) .
"\n";
262 if (!$log[
'question_fi'] && !$log[
'original_fi']) {
266 if ($log[
'question_fi']) {
267 $title = $this->question_repository->getForQuestionId((
int) $log[
'question_fi'])?->getTitle();
270 if ($title ===
null && $log[
'original_fi']) {
271 $title = $this->question_repository->getForQuestionId((
int) $log[
'original_fi'])?->getTitle();
274 if ($title ===
null) {
278 return $this->
lng->txt(
'question') .
': ' . $title;
283 bool $quote_all =
false,
284 string $separator =
";" 287 foreach ($row as $rowindex => $entry) {
292 if (is_string($entry) && strpos($entry,
"\"") !==
false) {
293 $entry = str_replace(
"\"",
"\"\"", $entry);
296 if (is_string($entry) && strpos($entry, $separator) !==
false) {
300 if (is_string($entry)) {
302 $entry = str_replace(chr(13) . chr(10), chr(10), $entry);
306 $entry =
"\"" . $entry .
"\"";
309 $resultarray[$rowindex] = $entry;
__construct(private readonly TestLoggingRepository $logging_repository, private readonly TestLogger $logger, private readonly TitleColumnsBuilder $title_builder, private readonly GeneralQuestionPropertiesRepository $question_repository, private readonly ServerRequestInterface $request, private readonly RequestWrapper $request_wrapper, private readonly \ilUIService $ui_service, private readonly UIFactory $ui_factory, private readonly UIRenderer $ui_renderer, private readonly Refinery $refinery, private readonly \ilLanguage $lng, private \ilGlobalTemplateInterface $tpl, private readonly StreamDelivery $stream_delivery, private readonly \ilObjUser $current_user)
getName()
Get the full name of the token including its namespace.
getLegacyLogExportForObjId(?int $obj_id=null)
static _lookupName(int $a_user_id)
lookup user name
getLogExportForRefjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getColumHeadingsForExport()
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
executeLogTableAction(URLBuilder $url_builder, URLBuilderToken $action_parameter_token, URLBuilderToken $row_id_token, ?int $ref_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
DataFactory $data_factory
buildExcelWorkbookForLogs(\Generator $logs)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildQuestionTitleForLegacyLog(array $log)
addRowsFromLogs(\Generator $logs, \ilExcel $workbook)
getLogTable(URLBuilder $url_builder, URLBuilderToken $action_parameter_token, URLBuilderToken $row_id_token, ?int $ref_id=null)
buildUserDateTimeFormat()
processCSVRow(mixed $row, bool $quote_all=false, string $separator=";")