Activity Archiving Drivers
The activity archiving drivers are responsible for the actual archiving process of a specific Moodle activity. One such driver exists for every Moodle activity that is supported by the archiving system.
Work in Progress (WIP)
This section is still under active development. Information and specifications can still be changed in the future.
Tasks and Responsibilities
Activity Data Extraction and Transformation
Transforms existing user data into an archivable format
- Collects all relevant data from the activity (metadata, text submissions, files, ...)
- Can make use of Worker Services, if required
Archive Creation
Creates digital archive files
- Created archives are stored inside the Moodledata storage, awaiting further processing by the Archiving Manager
Archive Data Forwarding
Sends archived data back to the Archiving Manager once archiving is completed
Task Processing
- All archiving jobs are always executed asynchronously
- Multiple archiving jobs can be processed in parallel
Task Configuration
Providing activity-driver-specific configuration options for jobs (e.g., file format, PDF paper size, ...)
Task Scope / Filtering
Allowing to define the scope of the archived data (e.g., all quiz attempts, only attempts of a specific user, only one specific attempt)
Interfaced Components
- Archiving Manager
- Worker Services (Optional)
Implementations
Quiz (mod_quiz)
- Exports quiz attempts as fully-rendered PDF files
- Support for complex content and question types, including Drag and Drop, MathJax formulas, STACK plots, and other question / content types that require JavaScript processing
- Exports answer history, marks, comments, and feedback
- Support for file submissions / attachments (e.g., essay files)
- Customization of generated PDF and HTML reports
- Quiz attempt reports are fully text-searchable, including mathematical formulas
- Generation of Moodle backups (.mbz) of the quiz
- Generation of checksums for every file within the archive and the archive itself
- Data compression and vector based MathJax formulas to preserve disk space
- Based on the Moodle Quiz Archiver Plugin
Assignment (mod_assign)
- Exports ...
- Assignment metadata, instructions, text submissions, submission metadata, grading, feedback, and comments as PDF file(s)
- Submitted files
- Annotated feedback / PDF files
- Text submissions are fully-rendered PDF files to support complex content and formatting
- Generation of Moodle backups (.mbz) of the assignment
- Generation of checksums for every file within the archive and the archive itself
- Data compression and vector based MathJax formulas to preserve disk space