32 #region Constants / Config 118 $ilias = $DIC[
'ilias'];
119 $this->external_directory_path = $ilias->ini_ilias->readVariable(
'clients',
'datadir');
120 $this->client_id = $ilias->client_id;
123 $this->ilDB = $ilias->db;
127 $this->participantData = null;
166 . self::PDF_SUBMISSION_FILENAME;
167 copy($pdf_path, $pdf_new_path);
168 # /home/mbecker/public_html/ilias/trunk-primary/extern/default/tst_data/archive/tst_350/2013/09/19/80_1_root_user_/test_submission.pdf 170 . self::HTML_SUBMISSION_FILENAME;
171 file_put_contents($html_new_path, $html_string);
173 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $pdf_new_path);
174 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $html_new_path);
192 . self::DIR_SEP . self::QUESTION_PATH_COMPONENT_PREFIX . $question_fi;
193 if (!is_dir($pass_question_directory)) {
194 mkdir($pass_question_directory, 0777,
true);
197 copy($file_path, $pass_question_directory . self::DIR_SEP . $original_filename);
200 date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING
201 . $pass_question_directory . self::DIR_SEP . $original_filename
212 $questions = $tst_obj->getQuestionsOfPass($active_fi, $pass);
213 foreach ($questions as $question) {
214 $question = $tst_obj->getQuestionDataset($question[
'question_fi']);
215 if ($question->type_tag ===
'assFileUpload') {
216 $local_folder =
CLIENT_WEB_DIR .
'/assessment/tst_' . $tst_obj->test_id . self::DIR_SEP . $active_fi . self::DIR_SEP . $question->question_id .
'/files/';
217 if (!file_exists($local_folder)) {
222 $folder_content = scandir($local_folder);
223 $folder_content = array_diff($folder_content, array(
'.',
'..'));
226 $archive_folder = $pass_material_directory . self::DIR_SEP . $question->question_id . self::DIR_SEP;
227 if (!file_exists($archive_folder)) {
228 mkdir($archive_folder, 0777,
true);
230 foreach ($folder_content as $file_name) {
231 if (preg_match(
'/file_(\d+)_(\d+)_(\d+)/', $file_name, $matches)) {
232 if ($active_fi == intval($matches[1]) && $pass == $matches[2]) {
234 $local_file = $local_folder . $file_name;
235 $target_destination = $archive_folder . $file_name;
236 copy($local_file, $target_destination);
237 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $target_destination);
259 $new_path = $this->
getPassDataDirectory($active_fi, $pass) . self::DIR_SEP . $original_filename;
260 copy($file_path, $new_path);
261 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $new_path);
274 $best_solution_path = $this->
getTestArchive() . self::DIR_SEP . self::TEST_BEST_SOLUTION_PATH_COMPONENT;
275 if (!is_dir($best_solution_path)) {
276 mkdir($best_solution_path, 0777,
true);
279 file_put_contents($best_solution_path . self::DIR_SEP . self::HTML_BEST_SOLUTION_FILENAME, $html_string);
281 copy($pdf_path, $best_solution_path . self::DIR_SEP . self::PDF_BEST_SOLUTION_FILENAME);
284 date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING
285 . $best_solution_path . self::DIR_SEP . self::HTML_BEST_SOLUTION_FILENAME
289 date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING
290 . $best_solution_path . self::DIR_SEP . self::PDF_BEST_SOLUTION_FILENAME
305 $best_solution_path = $this->
getTestArchive() . self::DIR_SEP . self::TEST_BEST_SOLUTION_PATH_COMPONENT;
306 if (!is_dir($best_solution_path)) {
307 mkdir($best_solution_path, 0777,
true);
310 $materials_path = $best_solution_path . self::DIR_SEP . self::TEST_MATERIALS_PATH_COMPONENT;
311 if (!is_dir($materials_path)) {
312 mkdir($materials_path, 0777,
true);
315 $question_materials_path = $materials_path . self::DIR_SEP . self::QUESTION_PATH_COMPONENT_PREFIX . $question_fi;
316 if (!is_dir($question_materials_path)) {
317 mkdir($question_materials_path, 0777,
true);
320 copy($file_path, $question_materials_path . self::DIR_SEP . $orginial_filename);
323 date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING
324 . $question_materials_path . self::DIR_SEP . $orginial_filename
341 $new_path = $this->
getPassDataDirectory($active_fi, $pass) . self::DIR_SEP . self::TEST_RESULT_FILENAME;
342 copy($pdf_path, $new_path);
343 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $new_path);
356 . self::TEST_OVERVIEW_PDF_FILENAME
358 copy($pdf_path, $new_pdf_path);
359 $html_path = $this->
getTestArchive() . self::DIR_SEP . self::TEST_OVERVIEW_HTML_FILENAME
361 file_put_contents($html_path, $html_string);
363 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $new_pdf_path);
364 $this->
logArchivingProcess(date(self::LOG_DTSGROUP_FORMAT) . self::LOG_ADDITION_STRING . $html_path);
398 $test_archive_directory = $this->external_directory_path . self::DIR_SEP . $this->client_id . self::DIR_SEP .
'tst_data' 400 return $test_archive_directory;
425 $query =
'SELECT * FROM ass_log WHERE obj_fi = ' . $this->ilDB->quote($this->test_obj_id,
'integer');
426 $result = $this->ilDB->query(
$query);
430 while ($row = $this->ilDB->fetchAssoc($result)) {
431 $outfile_lines .=
"\r\n" . implode(
"\t", $row);
433 file_put_contents($this->
getTestArchive() . self::DIR_SEP . self::TEST_LOG_FILENAME, $outfile_lines);
436 $test =
new ilObjTest($this->test_obj_id,
false);
437 if ($this->test_ref_id !== null) {
438 $test->setRefId($this->test_ref_id);
442 $gui->setTestObj($test);
445 $gui->setObjectiveParent($objectiveOrientedContainer);
446 $array_of_actives = array();
447 $participants = $test->getParticipants();
449 foreach ($participants as
$key => $value) {
450 $array_of_actives[] =
$key;
452 $output_template = $gui->createUserResults(
true,
false,
true, $array_of_actives);
489 return $this->external_directory_path . self::DIR_SEP . $this->client_id . self::DIR_SEP .
'tst_data' 490 . self::DIR_SEP . self::EXPORT_DIRECTORY . self::DIR_SEP .
'tst_' .
$this->test_obj_id;
504 $zip_output_filename =
'test_archive_obj_' . $this->test_obj_id .
'_' . time() .
'_.zip';
512 #region PassDataDirectory 547 foreach ($this->archive_data_index as $data_index_entry) {
548 if ($data_index_entry != null && $data_index_entry[
'identifier'] == $active_fi .
'|' . $pass) {
549 array_shift($data_index_entry);
550 return $this->
getTestArchive() . self::DIR_SEP . implode(self::DIR_SEP, $data_index_entry);
570 $test_obj =
new ilObjTest($this->test_obj_id,
false);
571 if ($test_obj->getAnonymity()) {
572 $firstname =
'anonym';
574 $matriculation =
'0';
578 $firstname = $usrData[
'firstname'];
579 $lastname = $usrData[
'lastname'];
580 $matriculation = $usrData[
'matriculation'];
584 $firstname =
$ilUser->getFirstname();
585 $lastname =
$ilUser->getLastname();
586 $matriculation =
$ilUser->getMatriculation();
625 #region PassMaterialsDirectory 660 $user->setFirstname($usrData[
'firstname']);
661 $user->setLastname($usrData[
'lastname']);
662 $user->setMatriculation($usrData[
'matriculation']);
663 $user->setFirstname($usrData[
'firstname']);
674 $user->getFirstname(),
675 $user->getLastname(),
676 $user->getMatriculation()
680 mkdir($material_directory, 0777,
true);
681 return $material_directory;
695 return $pass_data_directory . self::DIR_SEP . self::PASS_MATERIALS_PATH_COMPONENT;
727 $data_index_file = $this->
getTestArchive() . self::DIR_SEP . self::DATA_INDEX_FILENAME;
732 if (@file_exists($data_index_file)) {
733 $lines = explode(
"\n", file_get_contents($data_index_file));
734 foreach ($lines as $line) {
735 if (strlen($line) === 0) {
738 $line_items = explode(
'|', $line);
740 $line_data[
'identifier'] = $line_items[0] .
'|' . $line_items[1];
741 $line_data[
'yyyy'] = $line_items[2];
742 $line_data[
'mm'] = $line_items[3];
743 $line_data[
'dd'] = $line_items[4];
744 $line_data[
'directory'] = $line_items[5];
745 $contents[] = $line_data;
765 $line = $this->
determinePassDataPath($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation);
767 $this->archive_data_index[] = $line;
768 $output_contents =
'';
770 foreach ($this->archive_data_index as $line_data) {
771 if ($line_data[
'identifier'] ==
"|") {
774 $output_contents .= implode(
'|', $line_data) .
"\n";
777 file_put_contents($this->
getTestArchive() . self::DIR_SEP . self::DATA_INDEX_FILENAME, $output_contents);
794 protected function determinePassDataPath($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation): array
796 $date = date_create_from_format(DATE_ISO8601, $date);
798 'identifier' => $active_fi .
'|' . $pass,
799 'yyyy' => date_format($date,
'Y'),
800 'mm' => date_format($date,
'm'),
801 'dd' => date_format($date,
'd'),
802 'directory' => $active_fi .
'_' . $pass .
'_' . $user_firstname .
'_' . $user_lastname .
'_' . $matriculation
816 $archive = $this->
getTestArchive() . self::DIR_SEP . self::ARCHIVE_LOG;
817 if (file_exists($archive)) {
818 $content = file_get_contents($archive) .
"\n" .
$message;
823 file_put_contents($archive, $content);
839 if ($handle = opendir($directory)) {
840 while (($file = readdir($handle)) !==
false) {
841 if (!in_array($file, array(
'.',
'..' )) && !is_dir($directory . $file)) {
842 if ($pattern && strpos($file, $pattern) === 0) {
getPassDataDirectory($active_fi, $pass)
Returns the pass data directory.
determinePassDataPath($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation)
Determines the pass data path.
createArchiveForTest()
Creates the directory for the test archive.
const LOG_DTSGROUP_FORMAT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const HTML_BEST_SOLUTION_FILENAME
createZipExportDirectory()
const TEST_OVERVIEW_PDF_POSTFIX
const TEST_RESULT_FILENAME
handInTestResultsOverview($html_string, $pdf_path)
Hands in a test results overview.
createPassDataDirectory($active_fi, $pass)
Creates pass data directory.
countFilesInDirectory($directory, $pattern=null)
Returns the count of files in a directory, eventually matching the given, optional, pattern.
ensureZipExportDirectoryExists()
const TEST_OVERVIEW_HTML_POSTFIX
const PDF_USER_RESULT
PDF Purposes.
const TEST_OVERVIEW_PDF_FILENAME
const DATA_INDEX_FILENAME
handInParticipantQuestionMaterial($active_fi, $pass, $question_fi, $original_filename, $file_path)
Hands in a particpants question material, such as an upload or other binary content.
const LOG_DELETION_STRING
getPassMaterialsDirectory($active_fi, $pass)
Returns the pass materials directory.
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
const PASS_MATERIALS_PATH_COMPONENT
const HTML_SUBMISSION_FILENAME
compressTestArchive()
Generate the test archive for download.
readArchiveDataIndex()
Reads the archive data index.
const PDF_BEST_SOLUTION_FILENAME
const TEST_OVERVIEW_HTML_FILENAME
const QUESTION_PATH_COMPONENT_PREFIX
getZipExportDirectory()
Return the export directory, where zips are placed.
buildPassDataDirectory($active_fi, $pass)
appendToArchiveDataIndex($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation)
Appends a line to the archive data index.
handInParticipantSubmission($active_fi, $pass, $pdf_path, $html_string)
Hands in a participants test submission ("a completed test") for archiving.
const PDF_SUBMISSION_FILENAME
ensurePassDataDirectoryIsAvailable($active_fi, $pass)
Ensures the availability of the participant data directory.
handInBestSolutionQuestionMaterial($question_fi, $orginial_filename, $file_path)
Hands in a file related to a question in context of the best solution.
const LOG_ADDITION_STRING
const LOG_CREATION_STRING
hasZipExportDirectory()
Returns if the export directory for zips exists.
handInParticipantUploadedResults($active_fi, $pass, $tst_obj)
hasTestArchive()
Returns if the archive directory structure for the test the object is created for exists...
handInTestBestSolution($html_string, $pdf_path)
Hands in the best solution for a test.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTestArchive()
Returns the (theoretical) path to the archive directory of the test, this object is created for...
hasPassDataDirectory($active_fi, $pass)
Checks if the directory for pass data is available.
hasPassMaterialsDirectory($active_fi, $pass)
Returns if the pass materials directory exists for a given pass.
createPassMaterialsDirectory($active_fi, $pass)
Creates pass materials directory.
__construct(Container $dic, ilPlugin $plugin)
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
const TEST_BEST_SOLUTION_PATH_COMPONENT
ensurePassMaterialsDirectoryIsAvailable($active_fi, $pass)
Ensures the availability of the pass materials directory.
ensureTestArchiveIsAvailable()
Ensures the availability of the test archive directory.
static generatePDF($pdf_output, $output_mode, $filename=null, $purpose=null)
handInParticipantMisc($active_fi, $pass, $original_filename, $file_path)
Hands in a participants file, which is relevant for archiving but an unspecified type.
const TEST_MATERIALS_PATH_COMPONENT
setParticipantData($participantData)
logArchivingProcess($message)
Logs to the archive log.
updateTestArchive()
Replaces the test-log with the current one.
handInTestResult($active_fi, $pass, $pdf_path)
Hands in an individual test result for a pass.