ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestArchiveService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Test\Results\Presentation\TitlesBuilder as ResultsTitlesBuilder;
26 
34 {
36 
37  public function __construct(
38  private readonly ilObjTest $test_obj,
39  private readonly ilLanguage $lng,
40  private readonly ilDBInterface $db,
41  private readonly ilObjUser $user,
42  private readonly UIFactory $ui_factory,
43  private readonly UIRenderer $ui_renderer,
44  private readonly IRSS $irss,
45  private readonly ServerRequestInterface $request,
46  private readonly ilObjectDataCache $obj_cache,
47  private readonly ilTestParticipantAccessFilterFactory $participant_access_filter_factory,
48  private readonly ilTestHTMLGenerator $html_generator
49  ) {
50  $this->participantData = null;
51  }
52 
54  {
56  }
57 
58  public function setParticipantData(ilTestParticipantData $participantData): void
59  {
60  $this->participantData = $participantData;
61  }
62 
63  public function archivePassesByActives($passesByActives): void
64  {
65  foreach ($passesByActives as $activeId => $passes) {
66  foreach ($passes as $pass) {
67  $this->archiveActivesPass($activeId, $pass);
68  }
69  }
70  }
71 
72  public function archiveActivesPass(int $active_id, int $pass): void
73  {
74  $content = $this->renderOverviewContent($active_id, $pass);
75  $filename = $this->buildOverviewFilename($active_id, $pass);
76  $this->html_generator->generateHTML($content, $filename);
77  $archiver = new ilTestArchiver(
78  $this->lng,
79  $this->db,
80  $this->user,
81  $this->ui_factory,
82  $this->ui_renderer,
83  $this->irss,
84  $this->request,
85  $this->obj_cache,
86  $this->participant_access_filter_factory,
87  $this->test_obj->getTestLogViewer(),
88  $this->test_obj->getId()
89  );
90  $archiver->setParticipantData($this->getParticipantData());
91  $archiver->handInTestResult($active_id, $pass, $filename);
92  $archiver->handInParticipantUploadedResults($active_id, $pass, $this->test_obj);
93  unlink($filename);
94  }
95 
101  private function renderOverviewContent($activeId, $pass): string
102  {
103  $results = $this->test_obj->getTestResult(
104  $activeId,
105  $pass,
106  false
107  );
108 
109  $gui = new ilTestServiceGUI($this->test_obj);
110  $testResultHeaderLabelBuilder = new ResultsTitlesBuilder($this->lng, $this->obj_cache);
111 
112  return $gui->getPassListOfAnswers(
113  $results,
114  $activeId,
115  $pass,
116  true,
117  false,
118  false,
119  true,
120  false,
121  null,
122  $testResultHeaderLabelBuilder
123  );
124  }
125 
131  private function buildOverviewFilename($activeId, $pass): string
132  {
133  $tmpFileName = ilFileUtils::ilTempnam();
134  return dirname($tmpFileName) . '/scores-' . $this->test_obj->getId() . '-' . $activeId . '-' . $pass . '.html';
135  }
136 }
renderOverviewContent($activeId, $pass)
setParticipantData(ilTestParticipantData $participantData)
archiveActivesPass(int $active_id, int $pass)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
archivePassesByActives($passesByActives)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$results
$filename
Definition: buildRTE.php:78
Class that handles PDF generation for test and assessment.
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
__construct(private readonly ilObjTest $test_obj, private readonly ilLanguage $lng, private readonly ilDBInterface $db, private readonly ilObjUser $user, private readonly UIFactory $ui_factory, private readonly UIRenderer $ui_renderer, private readonly IRSS $irss, private readonly ServerRequestInterface $request, private readonly ilObjectDataCache $obj_cache, private readonly ilTestParticipantAccessFilterFactory $participant_access_filter_factory, private readonly ilTestHTMLGenerator $html_generator)
global $lng
Definition: privfeed.php:31
Service GUI class for tests.
setParticipantData(ilTestParticipantData $participant_data)
buildOverviewFilename($activeId, $pass)
ilTestParticipantData $participantData