ILIAS
release_8 Revision v8.19
|
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...
Public Member Functions | |
getParticipantData () | |
setParticipantData ($participantData) | |
handInParticipantSubmission ($active_fi, $pass, $pdf_path, $html_string) | |
Hands in a participants test submission ("a completed test") for archiving. More... | |
handInParticipantQuestionMaterial ($active_fi, $pass, $question_fi, $original_filename, $file_path) | |
Hands in a particpants question material, such as an upload or other binary content. More... | |
handInParticipantUploadedResults ($active_fi, $pass, $tst_obj) | |
handInParticipantMisc ($active_fi, $pass, $original_filename, $file_path) | |
Hands in a participants file, which is relevant for archiving but an unspecified type. More... | |
handInTestBestSolution ($html_string, $pdf_path) | |
Hands in the best solution for a test. More... | |
handInBestSolutionQuestionMaterial ($question_fi, $orginial_filename, $file_path) | |
Hands in a file related to a question in context of the best solution. More... | |
handInTestResult ($active_fi, $pass, $pdf_path) | |
Hands in an individual test result for a pass. More... | |
handInTestResultsOverview ($html_string, $pdf_path) | |
Hands in a test results overview. More... | |
updateTestArchive () | |
Replaces the test-log with the current one. More... | |
ensureZipExportDirectoryExists () | |
hasZipExportDirectory () | |
Returns if the export directory for zips exists. More... | |
getZipExportDirectory () | |
Return the export directory, where zips are placed. More... | |
compressTestArchive () | |
Generate the test archive for download. More... | |
Data Fields | |
const | DIR_SEP = '/' |
const | HTML_SUBMISSION_FILENAME = 'test_submission.html' |
const | PDF_SUBMISSION_FILENAME = 'test_submission.pdf' |
const | PASS_MATERIALS_PATH_COMPONENT = 'materials' |
const | QUESTION_PATH_COMPONENT_PREFIX = 'q_' |
const | TEST_BEST_SOLUTION_PATH_COMPONENT = 'best_solution' |
const | HTML_BEST_SOLUTION_FILENAME = 'best_solution.html' |
const | PDF_BEST_SOLUTION_FILENAME = 'best_solution.pdf' |
const | TEST_MATERIALS_PATH_COMPONENT = 'materials' |
const | TEST_OVERVIEW_PDF_FILENAME = 'results_overview_html_v' |
const | TEST_OVERVIEW_PDF_POSTFIX = '.pdf' |
const | TEST_OVERVIEW_HTML_FILENAME = 'results_overview_pdf_v' |
const | TEST_OVERVIEW_HTML_POSTFIX = '.html' |
const | LOG_DTSGROUP_FORMAT = 'D M j G:i:s T Y' |
const | LOG_ADDITION_STRING = ' Adding ' |
const | LOG_CREATION_STRING = ' Creating ' |
const | LOG_UPDATE_STRING = ' Updating ' |
const | LOG_DELETION_STRING = ' Deleting ' |
const | TEST_LOG_FILENAME = 'test.log' |
const | DATA_INDEX_FILENAME = 'data_index.csv' |
const | ARCHIVE_LOG = 'archive.log' |
const | EXPORT_DIRECTORY = 'archive_exports' |
Protected Member Functions | |
hasTestArchive () | |
Returns if the archive directory structure for the test the object is created for exists. More... | |
createArchiveForTest () | |
Creates the directory for the test archive. More... | |
getTestArchive () | |
Returns the (theoretical) path to the archive directory of the test, this object is created for. More... | |
ensureTestArchiveIsAvailable () | |
Ensures the availability of the test archive directory. More... | |
createZipExportDirectory () | |
hasPassDataDirectory ($active_fi, $pass) | |
Checks if the directory for pass data is available. More... | |
createPassDataDirectory ($active_fi, $pass) | |
Creates pass data directory. More... | |
getPassDataDirectory ($active_fi, $pass) | |
Returns the pass data directory. More... | |
ensurePassDataDirectoryIsAvailable ($active_fi, $pass) | |
Ensures the availability of the participant data directory. More... | |
hasPassMaterialsDirectory ($active_fi, $pass) | |
Returns if the pass materials directory exists for a given pass. More... | |
createPassMaterialsDirectory ($active_fi, $pass) | |
Creates pass materials directory. More... | |
getPassMaterialsDirectory ($active_fi, $pass) | |
Returns the pass materials directory. More... | |
ensurePassMaterialsDirectoryIsAvailable ($active_fi, $pass) | |
Ensures the availability of the pass materials directory. More... | |
readArchiveDataIndex () | |
Reads the archive data index. More... | |
appendToArchiveDataIndex ($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation) | |
Appends a line to the archive data index. More... | |
determinePassDataPath ($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation) | |
Determines the pass data path. More... | |
logArchivingProcess ($message) | |
Logs to the archive log. More... | |
countFilesInDirectory ($directory, $pattern=null) | |
Returns the count of files in a directory, eventually matching the given, optional, pattern. More... | |
Protected Attributes | |
const | TEST_RESULT_FILENAME = 'test_result.pdf' |
$external_directory_path | |
$client_id | |
$test_obj_id | |
$test_ref_id | |
$archive_data_index | |
ilDBInterface | $ilDB |
$participantData | |
Private Member Functions | |
buildPassDataDirectory ($active_fi, $pass) | |
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.
If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Class ilTestArchiver
Helper class to deal with the generation and maintenance of test archives.
Definition at line 30 of file class.ilTestArchiver.php.
|
protected |
Appends a line to the archive data index.
$date | string Date for the directories path. |
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass number of the participant. |
$user_firstname | string User firstname. |
$user_lastname | string User lastname. |
$matriculation | string Matriculation number of the user. |
Definition at line 763 of file class.ilTestArchiver.php.
References determinePassDataPath(), getTestArchive(), and readArchiveDataIndex().
Referenced by createPassMaterialsDirectory(), and getPassDataDirectory().
|
private |
Definition at line 545 of file class.ilTestArchiver.php.
References getTestArchive().
Referenced by getPassDataDirectory().
ilTestArchiver::compressTestArchive | ( | ) |
Generate the test archive for download.
Definition at line 498 of file class.ilTestArchiver.php.
References ensureZipExportDirectoryExists(), getTestArchive(), getZipExportDirectory(), updateTestArchive(), and ilFileUtils\zip().
|
protected |
Returns the count of files in a directory, eventually matching the given, optional, pattern.
$directory | ||
null | string | $pattern |
PhpAssignmentInConditionInspection
Definition at line 834 of file class.ilTestArchiver.php.
Referenced by handInTestResultsOverview().
|
protected |
Creates the directory for the test archive.
Definition at line 385 of file class.ilTestArchiver.php.
References getTestArchive(), and ilFileUtils\makeDirParents().
Referenced by ensureTestArchiveIsAvailable().
|
protected |
Creates pass data directory.
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass number of the test. |
Definition at line 539 of file class.ilTestArchiver.php.
References getPassDataDirectory().
Referenced by ensurePassDataDirectoryIsAvailable().
|
protected |
Creates pass materials directory.
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass number of the test. |
Definition at line 652 of file class.ilTestArchiver.php.
References $DIC, $ilUser, appendToArchiveDataIndex(), getParticipantData(), and getPassMaterialsDirectory().
Referenced by ensurePassMaterialsDirectoryIsAvailable().
|
protected |
Definition at line 477 of file class.ilTestArchiver.php.
References getZipExportDirectory().
Referenced by ensureZipExportDirectoryExists().
|
protected |
Determines the pass data path.
$date | |
$active_fi | |
$pass | |
$user_firstname | |
$user_lastname | |
$matriculation |
Definition at line 794 of file class.ilTestArchiver.php.
Referenced by appendToArchiveDataIndex().
|
protected |
Ensures the availability of the participant data directory.
Checks if the directory exists and creates it if necessary.
$active_fi | integer Active-FI of the test participant |
$pass | integer Pass-number of the actual test |
Definition at line 615 of file class.ilTestArchiver.php.
References createPassDataDirectory(), and hasPassDataDirectory().
Referenced by handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), handInParticipantUploadedResults(), and handInTestResult().
|
protected |
Ensures the availability of the pass materials directory.
Checks if the directory exists and creates it if necessary.
$active_fi | integer Active-FI of the test participant |
$pass | integer Pass-number of the actual test |
Definition at line 707 of file class.ilTestArchiver.php.
References createPassMaterialsDirectory(), and hasPassMaterialsDirectory().
Referenced by handInParticipantUploadedResults().
|
protected |
Ensures the availability of the test archive directory.
Checks if the directory exists and creates it if necessary.
Definition at line 410 of file class.ilTestArchiver.php.
References createArchiveForTest(), and hasTestArchive().
Referenced by handInBestSolutionQuestionMaterial(), handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), handInParticipantUploadedResults(), handInTestBestSolution(), handInTestResult(), and handInTestResultsOverview().
ilTestArchiver::ensureZipExportDirectoryExists | ( | ) |
Definition at line 460 of file class.ilTestArchiver.php.
References createZipExportDirectory(), and hasZipExportDirectory().
Referenced by compressTestArchive().
ilTestArchiver::getParticipantData | ( | ) |
Definition at line 133 of file class.ilTestArchiver.php.
References $participantData.
Referenced by createPassMaterialsDirectory(), and getPassDataDirectory().
|
protected |
Returns the pass data directory.
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass number of the test. |
Definition at line 565 of file class.ilTestArchiver.php.
References $DIC, $ilUser, appendToArchiveDataIndex(), buildPassDataDirectory(), and getParticipantData().
Referenced by createPassDataDirectory(), getPassMaterialsDirectory(), handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), handInTestResult(), and hasPassDataDirectory().
|
protected |
Returns the pass materials directory.
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass number. |
Definition at line 692 of file class.ilTestArchiver.php.
References getPassDataDirectory().
Referenced by createPassMaterialsDirectory(), handInParticipantUploadedResults(), and hasPassMaterialsDirectory().
|
protected |
Returns the (theoretical) path to the archive directory of the test, this object is created for.
Definition at line 396 of file class.ilTestArchiver.php.
References $test_obj_id.
Referenced by appendToArchiveDataIndex(), buildPassDataDirectory(), compressTestArchive(), createArchiveForTest(), handInBestSolutionQuestionMaterial(), handInTestBestSolution(), handInTestResultsOverview(), hasTestArchive(), logArchivingProcess(), readArchiveDataIndex(), and updateTestArchive().
ilTestArchiver::getZipExportDirectory | ( | ) |
Return the export directory, where zips are placed.
Definition at line 487 of file class.ilTestArchiver.php.
References $test_obj_id.
Referenced by compressTestArchive(), createZipExportDirectory(), and hasZipExportDirectory().
ilTestArchiver::handInBestSolutionQuestionMaterial | ( | $question_fi, | |
$orginial_filename, | |||
$file_path | |||
) |
Hands in a file related to a question in context of the best solution.
$question_fi | integer QuestionFI of the question, material is to be stored for. |
$orginial_filename | string Original filename of the material to be stored. |
$file_path | string Path to the material to be stored. |
Definition at line 301 of file class.ilTestArchiver.php.
References ensureTestArchiveIsAvailable(), getTestArchive(), and logArchivingProcess().
ilTestArchiver::handInParticipantMisc | ( | $active_fi, | |
$pass, | |||
$original_filename, | |||
$file_path | |||
) |
Hands in a participants file, which is relevant for archiving but an unspecified type.
Examples for such are signature files, remarks, feedback or the like.
$active_fi | integer Active-FI of the test participant |
$pass | integer Pass-number of the actual test |
$original_filename | string Original filename of the material to be stored. |
$file_path | string Location of the file to be archived |
Definition at line 255 of file class.ilTestArchiver.php.
References ensurePassDataDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassDataDirectory(), and logArchivingProcess().
ilTestArchiver::handInParticipantQuestionMaterial | ( | $active_fi, | |
$pass, | |||
$question_fi, | |||
$original_filename, | |||
$file_path | |||
) |
Hands in a particpants question material, such as an upload or other binary content.
$active_fi | integer Active-FI of the test participant |
$pass | integer Pass-number of the actual test |
$question_fi | integer Question-FI of the question, the file is to be stored for. |
$original_filename | string Original filename of the material to be stored. |
$file_path | string Location of the file to be archived |
Definition at line 186 of file class.ilTestArchiver.php.
References ensurePassDataDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassDataDirectory(), and logArchivingProcess().
ilTestArchiver::handInParticipantSubmission | ( | $active_fi, | |
$pass, | |||
$pdf_path, | |||
$html_string | |||
) |
Hands in a participants test submission ("a completed test") for archiving.
The archive takes an html-string and a path to a PDF-file and saves it according to the archives general structure. The test is identified by active_fi and pass number, allowing to store relevant files even for anonymous tests.
$active_fi | integer Active-FI of the test participant |
$pass | integer Pass-number of the actual test |
$html_string | string HTML-string of the test submission |
$pdf_path | string Path to a pdf representation of the test submission. |
Definition at line 160 of file class.ilTestArchiver.php.
References ensurePassDataDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassDataDirectory(), and logArchivingProcess().
ilTestArchiver::handInParticipantUploadedResults | ( | $active_fi, | |
$pass, | |||
$tst_obj | |||
) |
$active_fi | |
$pass |
Definition at line 210 of file class.ilTestArchiver.php.
References CLIENT_WEB_DIR, ensurePassDataDirectoryIsAvailable(), ensurePassMaterialsDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassMaterialsDirectory(), and logArchivingProcess().
ilTestArchiver::handInTestBestSolution | ( | $html_string, | |
$pdf_path | |||
) |
Hands in the best solution for a test.
$html_string | string HTML-string of the test submission |
$pdf_path | string Path to a pdf representation of the test submission. |
Definition at line 270 of file class.ilTestArchiver.php.
References ensureTestArchiveIsAvailable(), getTestArchive(), and logArchivingProcess().
ilTestArchiver::handInTestResult | ( | $active_fi, | |
$pass, | |||
$pdf_path | |||
) |
Hands in an individual test result for a pass.
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass of the test. |
$pdf_path | string Path to the PDF containing the result. |
Definition at line 337 of file class.ilTestArchiver.php.
References ensurePassDataDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassDataDirectory(), and logArchivingProcess().
ilTestArchiver::handInTestResultsOverview | ( | $html_string, | |
$pdf_path | |||
) |
Hands in a test results overview.
$html_string | string HTML of the test results overview. |
$pdf_path | string Path |
Definition at line 352 of file class.ilTestArchiver.php.
References countFilesInDirectory(), ensureTestArchiveIsAvailable(), getTestArchive(), and logArchivingProcess().
|
protected |
Checks if the directory for pass data is available.
$active_fi | integer ActiveFI of the pass. |
$pass | integer Pass-number of the pass. |
Definition at line 526 of file class.ilTestArchiver.php.
References getPassDataDirectory().
Referenced by ensurePassDataDirectoryIsAvailable().
|
protected |
Returns if the pass materials directory exists for a given pass.
$active_fi | integer ActiveFI for the participant. |
$pass | integer Pass number. |
PhpUsageOfSilenceOperatorInspection
Definition at line 635 of file class.ilTestArchiver.php.
References getPassMaterialsDirectory().
Referenced by ensurePassMaterialsDirectoryIsAvailable().
|
protected |
Returns if the archive directory structure for the test the object is created for exists.
Definition at line 377 of file class.ilTestArchiver.php.
References getTestArchive().
Referenced by ensureTestArchiveIsAvailable().
ilTestArchiver::hasZipExportDirectory | ( | ) |
Returns if the export directory for zips exists.
Definition at line 472 of file class.ilTestArchiver.php.
References getZipExportDirectory().
Referenced by ensureZipExportDirectoryExists().
|
protected |
Logs to the archive log.
$message | string Complete log message. |
Definition at line 814 of file class.ilTestArchiver.php.
References $message, and getTestArchive().
Referenced by handInBestSolutionQuestionMaterial(), handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), handInParticipantUploadedResults(), handInTestBestSolution(), handInTestResult(), and handInTestResultsOverview().
|
protected |
Reads the archive data index.
The Archive Data Index is a csv-file containing the following columns <active_fi>|<pass>|<yyyy>|<mm>||<directory>
PhpUsageOfSilenceOperatorInspection
Definition at line 721 of file class.ilTestArchiver.php.
References getTestArchive().
Referenced by appendToArchiveDataIndex().
ilTestArchiver::setParticipantData | ( | $participantData | ) |
ilTestParticipantData | $participantData |
Definition at line 141 of file class.ilTestArchiver.php.
References $participantData.
Referenced by ilTestArchiveService\archiveActivesPass().
ilTestArchiver::updateTestArchive | ( | ) |
Replaces the test-log with the current one.
PhpAssignmentInConditionInspection
Definition at line 423 of file class.ilTestArchiver.php.
References $filename, ILIAS\LTI\ToolProvider\$key, $query, ilTestPDFGenerator\generatePDF(), getTestArchive(), ilTestPDFGenerator\PDF_OUTPUT_FILE, and PDF_USER_RESULT.
Referenced by compressTestArchive().
|
protected |
Definition at line 98 of file class.ilTestArchiver.php.
|
protected |
Definition at line 95 of file class.ilTestArchiver.php.
|
protected |
Definition at line 94 of file class.ilTestArchiver.php.
|
protected |
Definition at line 100 of file class.ilTestArchiver.php.
|
protected |
Definition at line 105 of file class.ilTestArchiver.php.
Referenced by getParticipantData(), and setParticipantData().
|
protected |
Definition at line 96 of file class.ilTestArchiver.php.
Referenced by getTestArchive(), and getZipExportDirectory().
|
protected |
Definition at line 97 of file class.ilTestArchiver.php.
const ilTestArchiver::ARCHIVE_LOG = 'archive.log' |
Definition at line 62 of file class.ilTestArchiver.php.
const ilTestArchiver::DATA_INDEX_FILENAME = 'data_index.csv' |
Definition at line 61 of file class.ilTestArchiver.php.
const ilTestArchiver::DIR_SEP = '/' |
Definition at line 34 of file class.ilTestArchiver.php.
Referenced by ilTestPlayerAbstractGUI\archiveParticipantSubmission().
const ilTestArchiver::EXPORT_DIRECTORY = 'archive_exports' |
Definition at line 64 of file class.ilTestArchiver.php.
const ilTestArchiver::HTML_BEST_SOLUTION_FILENAME = 'best_solution.html' |
Definition at line 42 of file class.ilTestArchiver.php.
const ilTestArchiver::HTML_SUBMISSION_FILENAME = 'test_submission.html' |
Definition at line 36 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_ADDITION_STRING = ' Adding ' |
Definition at line 55 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_CREATION_STRING = ' Creating ' |
Definition at line 56 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_DELETION_STRING = ' Deleting ' |
Definition at line 58 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_DTSGROUP_FORMAT = 'D M j G:i:s T Y' |
Definition at line 54 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_UPDATE_STRING = ' Updating ' |
Definition at line 57 of file class.ilTestArchiver.php.
const ilTestArchiver::PASS_MATERIALS_PATH_COMPONENT = 'materials' |
Definition at line 38 of file class.ilTestArchiver.php.
const ilTestArchiver::PDF_BEST_SOLUTION_FILENAME = 'best_solution.pdf' |
Definition at line 43 of file class.ilTestArchiver.php.
const ilTestArchiver::PDF_SUBMISSION_FILENAME = 'test_submission.pdf' |
Definition at line 37 of file class.ilTestArchiver.php.
const ilTestArchiver::QUESTION_PATH_COMPONENT_PREFIX = 'q_' |
Definition at line 39 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_BEST_SOLUTION_PATH_COMPONENT = 'best_solution' |
Definition at line 41 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_LOG_FILENAME = 'test.log' |
Definition at line 60 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_MATERIALS_PATH_COMPONENT = 'materials' |
Definition at line 44 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_OVERVIEW_HTML_FILENAME = 'results_overview_pdf_v' |
Definition at line 51 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_OVERVIEW_HTML_POSTFIX = '.html' |
Definition at line 52 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_OVERVIEW_PDF_FILENAME = 'results_overview_html_v' |
Definition at line 48 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_OVERVIEW_PDF_POSTFIX = '.pdf' |
Definition at line 49 of file class.ilTestArchiver.php.
|
protected |
Definition at line 46 of file class.ilTestArchiver.php.