ILIAS
Release_4_4_x_branch Revision 61816
|
Class ilTestArchiver. More...
Public Member Functions | |
handInParticipantSubmission ($active_fi, $pass, $pdf_path, $html_string) | |
Hands in a participants test submission ("a completed test") for archiving. | |
handInParticipantQuestionMaterial ($active_fi, $pass, $question_fi, $original_filename, $file_path) | |
Hands in a particpants question material, such as an upload or other binary content. | |
handInParticipantMisc ($active_fi, $pass, $original_filename, $file_path) | |
Hands in a participants file, which is relevant for archiving but an unspecified type. | |
handInTestBestSolution ($html_string, $pdf_path) | |
Hands in the best solution for a test. | |
handInBestSolutionQuestionMaterial ($question_fi, $orginial_filename, $file_path) | |
Hands in a file related to a question in context of the best solution. | |
handInTestResult ($active_fi, $pass, $pdf_path) | |
Hands in an individual test result for a pass. | |
handInTestResultsOverview ($html_string, $pdf_path) | |
Hands in a test results overview. | |
updateTestArchive () | |
Replaces the test-log with the current one. | |
ensureZipExportDirectoryExists () | |
hasZipExportDirectory () | |
Returns if the export directory for zips exists. | |
getZipExportDirectory () | |
Return the export directory, where zips are placed. | |
compressTestArchive () | |
Generate the test archive for download. |
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_RESULT_FILENAME = 'test_result_v' |
const | TEST_RESULT_POSTFIX = '.pdf' |
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. | |
createArchiveForTest () | |
Creates the directory for the test archive. | |
getTestArchive () | |
Returns the (theoretical) path to the archive directory of the test, this object is created for. | |
ensureTestArchiveIsAvailable () | |
Ensures the availability of the test archive directory. | |
createZipExportDirectory () | |
hasPassDataDirectory ($active_fi, $pass) | |
Checks if the directory for pass data is available. | |
createPassDataDirectory ($active_fi, $pass) | |
Creates pass data directory. | |
getPassDataDirectory ($active_fi, $pass) | |
Returns the pass data directory. | |
ensurePassDataDirectoryIsAvailable ($active_fi, $pass) | |
Ensures the availability of the participant data directory. | |
hasPassMaterialsDirectory ($active_fi, $pass) | |
Returns if the pass materials directory exists for a given pass. | |
createPassMaterialsDirectory ($active_fi, $pass) | |
Creates pass materials directory. | |
getPassMaterialsDirectory ($active_fi, $pass) | |
Returns the pass materials directory. | |
ensurePassMaterialsDirectoryIsAvailable ($active_fi, $pass) | |
Ensures the availability of the pass materials directory. | |
readArchiveDataIndex () | |
Reads the archive data index. | |
appendToArchiveDataIndex ($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation) | |
Appends a line to the archive data index. | |
determinePassDataPath ($date, $active_fi, $pass, $user_firstname, $user_lastname, $matriculation) | |
Determines the pass data path. | |
logArchivingProcess ($message) | |
Logs to the archive log. | |
countFilesInDirectory ($directory, $pattern=null) | |
Returns the count of files in a directory, eventually matching the given, optional, pattern. |
Protected Attributes | |
$external_directory_path | |
$client_id | |
$test_obj_id | |
$archive_data_index | |
$ilDB |
Class ilTestArchiver.
Helper class to deal with the generation and maintenance of test archives.
Definition at line 15 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 629 of file class.ilTestArchiver.php.
References $pass, determinePassDataPath(), getTestArchive(), and readArchiveDataIndex().
Referenced by createPassMaterialsDirectory(), and getPassDataDirectory().
ilTestArchiver::compressTestArchive | ( | ) |
Generate the test archive for download.
Definition at line 419 of file class.ilTestArchiver.php.
References ensureZipExportDirectoryExists(), getTestArchive(), getZipExportDirectory(), updateTestArchive(), and ilUtil\zip().
|
protected |
Returns the count of files in a directory, eventually matching the given, optional, pattern.
$directory | ||
null | string | $pattern |
PhpAssignmentInConditionInspection
Definition at line 698 of file class.ilTestArchiver.php.
References $file.
Referenced by handInTestResult(), and handInTestResultsOverview().
|
protected |
Creates the directory for the test archive.
Definition at line 309 of file class.ilTestArchiver.php.
References getTestArchive().
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 461 of file class.ilTestArchiver.php.
References $pass, and 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 541 of file class.ilTestArchiver.php.
References $ilUser, $pass, appendToArchiveDataIndex(), and getPassMaterialsDirectory().
Referenced by ensurePassMaterialsDirectoryIsAvailable().
|
protected |
Definition at line 398 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 662 of file class.ilTestArchiver.php.
References $pass.
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 502 of file class.ilTestArchiver.php.
References $pass, createPassDataDirectory(), and hasPassDataDirectory().
Referenced by handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), 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 574 of file class.ilTestArchiver.php.
References $pass, createPassMaterialsDirectory(), and hasPassMaterialsDirectory().
|
protected |
Ensures the availability of the test archive directory.
Checks if the directory exists and creates it if necessary.
Definition at line 333 of file class.ilTestArchiver.php.
References createArchiveForTest(), and hasTestArchive().
Referenced by handInBestSolutionQuestionMaterial(), handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), handInTestBestSolution(), handInTestResult(), and handInTestResultsOverview().
ilTestArchiver::ensureZipExportDirectoryExists | ( | ) |
Definition at line 380 of file class.ilTestArchiver.php.
References createZipExportDirectory(), and hasZipExportDirectory().
Referenced by compressTestArchive().
|
protected |
Returns the pass data directory.
$active_fi | integer ActiveFI of the participant. |
$pass | integer Pass number of the test. |
Definition at line 475 of file class.ilTestArchiver.php.
References $ilUser, $pass, appendToArchiveDataIndex(), and getTestArchive().
Referenced by createPassDataDirectory(), 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 559 of file class.ilTestArchiver.php.
References $pass, and PASS_MATERIALS_PATH_COMPONENT.
Referenced by createPassMaterialsDirectory(), and hasPassMaterialsDirectory().
|
protected |
Returns the (theoretical) path to the archive directory of the test, this object is created for.
Definition at line 319 of file class.ilTestArchiver.php.
Referenced by appendToArchiveDataIndex(), compressTestArchive(), createArchiveForTest(), getPassDataDirectory(), handInBestSolutionQuestionMaterial(), handInTestBestSolution(), handInTestResultsOverview(), hasTestArchive(), logArchivingProcess(), readArchiveDataIndex(), and updateTestArchive().
ilTestArchiver::getZipExportDirectory | ( | ) |
Return the export directory, where zips are placed.
Definition at line 408 of file class.ilTestArchiver.php.
References $test_obj_id.
Referenced by compressTestArchive(), createZipExportDirectory(), hasZipExportDirectory(), and ilTestExportGUI\listExportFiles().
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 221 of file class.ilTestArchiver.php.
References ensureTestArchiveIsAvailable(), getTestArchive(), logArchivingProcess(), TEST_BEST_SOLUTION_PATH_COMPONENT, and TEST_MATERIALS_PATH_COMPONENT.
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 176 of file class.ilTestArchiver.php.
References $pass, 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 146 of file class.ilTestArchiver.php.
References $pass, 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 120 of file class.ilTestArchiver.php.
References $pass, ensurePassDataDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassDataDirectory(), HTML_SUBMISSION_FILENAME, logArchivingProcess(), and PDF_SUBMISSION_FILENAME.
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 191 of file class.ilTestArchiver.php.
References ensureTestArchiveIsAvailable(), getTestArchive(), logArchivingProcess(), and TEST_BEST_SOLUTION_PATH_COMPONENT.
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 259 of file class.ilTestArchiver.php.
References $pass, countFilesInDirectory(), ensurePassDataDirectoryIsAvailable(), ensureTestArchiveIsAvailable(), getPassDataDirectory(), and logArchivingProcess().
Referenced by ilTestScoring\recalculatePasses().
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 276 of file class.ilTestArchiver.php.
References countFilesInDirectory(), ensureTestArchiveIsAvailable(), getTestArchive(), logArchivingProcess(), TEST_OVERVIEW_HTML_POSTFIX, and TEST_OVERVIEW_PDF_POSTFIX.
|
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 447 of file class.ilTestArchiver.php.
References $pass, and 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 523 of file class.ilTestArchiver.php.
References $pass, and getPassMaterialsDirectory().
Referenced by ensurePassMaterialsDirectoryIsAvailable().
|
protected |
Returns if the archive directory structure for the test the object is created for exists.
Definition at line 301 of file class.ilTestArchiver.php.
References getTestArchive().
Referenced by ensureTestArchiveIsAvailable().
ilTestArchiver::hasZipExportDirectory | ( | ) |
Returns if the export directory for zips exists.
Definition at line 393 of file class.ilTestArchiver.php.
References getZipExportDirectory().
Referenced by ensureZipExportDirectoryExists().
|
protected |
Logs to the archive log.
$message | string Complete log message. |
Definition at line 682 of file class.ilTestArchiver.php.
References ARCHIVE_LOG, and getTestArchive().
Referenced by handInBestSolutionQuestionMaterial(), handInParticipantMisc(), handInParticipantQuestionMaterial(), handInParticipantSubmission(), 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 589 of file class.ilTestArchiver.php.
References DATA_INDEX_FILENAME, and getTestArchive().
Referenced by appendToArchiveDataIndex().
ilTestArchiver::updateTestArchive | ( | ) |
Replaces the test-log with the current one.
PhpAssignmentInConditionInspection
Definition at line 347 of file class.ilTestArchiver.php.
References $filename, $query, $result, $row, $test, ilDB\fetchAssoc(), ilTestPDFGenerator\generatePDF(), getTestArchive(), ilTestPDFGenerator\PDF_OUTPUT_FILE, ilDB\query(), and ilDB\quote().
Referenced by compressTestArchive().
|
protected |
Definition at line 83 of file class.ilTestArchiver.php.
|
protected |
Definition at line 81 of file class.ilTestArchiver.php.
|
protected |
Definition at line 80 of file class.ilTestArchiver.php.
|
protected |
Definition at line 85 of file class.ilTestArchiver.php.
|
protected |
Definition at line 82 of file class.ilTestArchiver.php.
Referenced by getZipExportDirectory().
const ilTestArchiver::ARCHIVE_LOG = 'archive.log' |
Definition at line 48 of file class.ilTestArchiver.php.
Referenced by logArchivingProcess().
const ilTestArchiver::DATA_INDEX_FILENAME = 'data_index.csv' |
Definition at line 47 of file class.ilTestArchiver.php.
Referenced by readArchiveDataIndex().
const ilTestArchiver::DIR_SEP = '/' |
Definition at line 19 of file class.ilTestArchiver.php.
Referenced by ilTestPlayerAbstractGUI\archiveParticipantSubmission().
const ilTestArchiver::EXPORT_DIRECTORY = 'archive_exports' |
Definition at line 50 of file class.ilTestArchiver.php.
const ilTestArchiver::HTML_BEST_SOLUTION_FILENAME = 'best_solution.html' |
Definition at line 27 of file class.ilTestArchiver.php.
const ilTestArchiver::HTML_SUBMISSION_FILENAME = 'test_submission.html' |
Definition at line 21 of file class.ilTestArchiver.php.
Referenced by handInParticipantSubmission().
const ilTestArchiver::LOG_ADDITION_STRING = ' Adding ' |
Definition at line 41 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_CREATION_STRING = ' Creating ' |
Definition at line 42 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_DELETION_STRING = ' Deleting ' |
Definition at line 44 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_DTSGROUP_FORMAT = 'D M j G:i:s T Y' |
Definition at line 40 of file class.ilTestArchiver.php.
const ilTestArchiver::LOG_UPDATE_STRING = ' Updating ' |
Definition at line 43 of file class.ilTestArchiver.php.
const ilTestArchiver::PASS_MATERIALS_PATH_COMPONENT = 'materials' |
Definition at line 23 of file class.ilTestArchiver.php.
Referenced by getPassMaterialsDirectory().
const ilTestArchiver::PDF_BEST_SOLUTION_FILENAME = 'best_solution.pdf' |
Definition at line 28 of file class.ilTestArchiver.php.
const ilTestArchiver::PDF_SUBMISSION_FILENAME = 'test_submission.pdf' |
Definition at line 22 of file class.ilTestArchiver.php.
Referenced by handInParticipantSubmission().
const ilTestArchiver::QUESTION_PATH_COMPONENT_PREFIX = 'q_' |
Definition at line 24 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_BEST_SOLUTION_PATH_COMPONENT = 'best_solution' |
Definition at line 26 of file class.ilTestArchiver.php.
Referenced by handInBestSolutionQuestionMaterial(), and handInTestBestSolution().
const ilTestArchiver::TEST_LOG_FILENAME = 'test.log' |
Definition at line 46 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_MATERIALS_PATH_COMPONENT = 'materials' |
Definition at line 29 of file class.ilTestArchiver.php.
Referenced by handInBestSolutionQuestionMaterial().
const ilTestArchiver::TEST_OVERVIEW_HTML_FILENAME = 'results_overview_pdf_v' |
Definition at line 37 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_OVERVIEW_HTML_POSTFIX = '.html' |
Definition at line 38 of file class.ilTestArchiver.php.
Referenced by handInTestResultsOverview().
const ilTestArchiver::TEST_OVERVIEW_PDF_FILENAME = 'results_overview_html_v' |
Definition at line 34 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_OVERVIEW_PDF_POSTFIX = '.pdf' |
Definition at line 35 of file class.ilTestArchiver.php.
Referenced by handInTestResultsOverview().
const ilTestArchiver::TEST_RESULT_FILENAME = 'test_result_v' |
Definition at line 31 of file class.ilTestArchiver.php.
const ilTestArchiver::TEST_RESULT_POSTFIX = '.pdf' |
Definition at line 32 of file class.ilTestArchiver.php.