ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
class.ilTestExportGUI.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
24use ILIAS\Test\Results\Data\Repository as TestResultsRepository;
25use ILIAS\UI\Factory as UIFactory;
26use ILIAS\UI\Renderer as UIRenderer;
29use ILIAS\Test\ExportImport\Types as ExportImportTypes;
30use Psr\Http\Message\ServerRequestInterface;
31
40{
41 public function __construct(
43 private readonly ilDBInterface $db,
44 private readonly ilObjectDataCache $obj_cache,
45 private readonly ilObjUser $user,
46 private readonly UIFactory $ui_factory,
47 private readonly UIRenderer $ui_renderer,
48 private readonly IRSS $irss,
49 private readonly ServerRequestInterface $request,
50 private readonly DBRepository $export_repository,
51 private readonly Filesystem $temp_file_system,
52 private readonly ilTestParticipantAccessFilterFactory $participant_access_filter_factory,
53 private readonly TestResultsRepository $test_results_repository,
54 private readonly ilTestHTMLGenerator $html_generator
55 ) {
57 }
58
63 {
64 $this->ctrl->setParameterByClass(self::class, 'export_results', 1);
65 $manager = $this->export_handler->manager()->handler();
66 $export_info = $manager->getExportInfoWithObject(
67 $this->obj,
68 time(),
69 $this->export_handler->consumer()->exportConfig()->allExportConfigs()
70 );
71 $element = $manager->createExport(
72 $this->il_user->getId(),
73 $export_info,
74 ''
75 );
76
77 $file_name = $element->getIRSSInfo()->getFileName();
78 $this->temp_file_system->writeStream(
79 $file_name,
80 $this->irss->consume()->stream($element->getIRSSInfo()->getResourceId())->getStream()
81 );
82 $temp_stream = $this->temp_file_system->readStream($file_name);
83 $rid = $this->irss->manage()->stream(
84 $temp_stream,
86 $element->getIRSSInfo()->getFileName()
87 );
88
89 $temp_stream->close();
90
91 $this->temp_file_system->delete($file_name);
92
93 $this->export_repository->store(
94 $this->obj->getId(),
95 ExportImportTypes::XML_WITH_RESULTS,
96 $rid
97 );
98 $this->export_options->getById('expxml')->onDeleteFiles(
99 $this->context,
100 $this->export_handler->consumer()->file()->identifier()->collection()->withElement(
101 $this->export_handler->consumer()->file()->identifier()->handler()->withIdentifier(
102 $element->getIRSSInfo()->getResourceIdSerialized()
103 )
104 )
105 );
106
107 $this->tpl->setOnScreenMessage(
109 $this->lng->txt("exp_file_created"),
110 true
111 );
112 $this->ctrl->redirect($this, self::CMD_LIST_EXPORT_FILES);
113 }
114
115 public function createTestArchiveExport()
116 {
117 if ($this->access->checkAccess('write', '', $this->obj->getRefId())) {
118 // prepare generation before contents are processed (for mathjax)
119 $evaluation = new ilTestEvaluationFactory($this->db, $this->obj);
120 $allActivesPasses = $evaluation->getAllActivesPasses();
121 $participantData = new ilTestParticipantData($this->db, $this->lng);
122 $participantData->setActiveIdsFilter(array_keys($allActivesPasses));
123 $participantData->load($this->obj->getTestId());
124
125 $archiveService = new ilTestArchiveService(
126 $this->obj,
127 $this->lng,
128 $this->db,
129 $this->user,
130 $this->ui_factory,
131 $this->ui_renderer,
132 $this->irss,
133 $this->request,
134 $this->obj_cache,
135 $this->participant_access_filter_factory,
136 $this->html_generator
137 );
138 $archiveService->setParticipantData($participantData);
139 $archiveService->archivePassesByActives($allActivesPasses);
140
141 $test_id = $this->obj->getId();
142 $test_ref = $this->obj->getRefId();
143 $archive_exp = new ilTestArchiver(
144 $this->lng,
145 $this->db,
146 $this->user,
147 $this->ui_factory,
148 $this->ui_renderer,
149 $this->irss,
150 $this->request,
151 $this->obj_cache,
152 $this->participant_access_filter_factory,
153 $this->parent_gui->getTestObject()->getTestLogViewer(),
154 $test_id,
155 $test_ref
156 );
157
158 $scoring = new TestScoring(
159 $this->obj,
160 $this->user,
161 $this->db,
162 $this->test_results_repository
163 );
164 $best_solution = $scoring->calculateBestSolutionForTest();
165
166 $tmpFileName = ilFileUtils::ilTempnam();
167 if (!is_dir($tmpFileName)) {
168 ilFileUtils::makeDirParents($tmpFileName);
169 }
170
171 $archive_exp->handInTestBestSolution($best_solution);
172
173 $archive_exp->updateTestArchive();
174 $archive_exp->compressTestArchive();
175 } else {
176 $this->tpl->setOnScreenMessage('info', 'cannot_export_archive', true);
177 }
178 $this->ctrl->redirectByClass('iltestexportgui');
179 }
180}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
Export User Interface Class.
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
Class ilObjTestGUI.
User class.
class ilObjectDataCache
Export User Interface Class.
__construct(ilObjTestGUI $parent_gui, private readonly ilDBInterface $db, private readonly ilObjectDataCache $obj_cache, private readonly ilObjUser $user, private readonly UIFactory $ui_factory, private readonly UIRenderer $ui_renderer, private readonly IRSS $irss, private readonly ServerRequestInterface $request, private readonly DBRepository $export_repository, private readonly Filesystem $temp_file_system, private readonly ilTestParticipantAccessFilterFactory $participant_access_filter_factory, private readonly TestResultsRepository $test_results_repository, private readonly ilTestHTMLGenerator $html_generator)
createTestExportWithResults()
Create test export file.
Class that handles PDF generation for test and assessment.
The filesystem interface provides the public interface for the Filesystem service API consumer.
Definition: Filesystem.php:37
An entity that renders components to a string output.
Definition: Renderer.php:31
Interface ilDBInterface.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc