Skip to content

Architecture

This document provides a high-level introduction to the architecture of the Moodle Data Archiving System. It describes the different components of the system, their responsibilities, and how they interact with each other.

Each component is described in detail in its own subsection, linked below every component description.

Components

This section describes the different components of the archiving system and their responsibilities. Each component is described in detail in its own subsection, linked below every component description.

Archiving Manager

The archiving manager is the central entry point for archiving tasks and represents the primary UI, that is visible to the non-administrative user. It provides an overview of archivable data inside each course and whether it has already been archived or not. The archiving manager keeps track of the whole archiving process and manages the various software components required for processing it.

Component Details

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. Activity archiving drivers gather all relevant data from the activity, transform it into an archivable format, and returns the finished archive back to the archiving manager.

Component Details

Storage Drivers

Storage drivers are responsible for safely transferring a finished archive to a specific storage location. This can be, for example, the Moodledata storage or an S3 compatible WORM storage. Having multiple storage drivers available allows for a flexible adaptation to existing archiving and storage systems.

Component Details

Worker Services

If an activity archiving driver requires additional or specific processing, it can delegate certain tasks to a designated worker service. Worker services not only offload heavy processing tasks from the Moodle system but also allow to handle complex transformations, such as rendering and exporting a quiz attempt page into a single PDF file.

Component Details

External Event Connectors

External event connectors allow forwarding of specific events within the archiving system to external services, such as campus management systems. This can be used to trigger specific actions in external systems, such as storing the path to an archived exam file for a given student inside a student record.

The external event connectors differ from storage drivers in the way that they do not handle data storage but instead solely deliver information to external systems. This allows decoupling file storage from the remaining business logic of target institutions.

Component Details

Interfaces (APIs) and Signals

In-depth descriptions of component interfaces (APIs), signals that are emitted via the Moodle Events API, and other details can be found in the respective sections linked below. An exhaustive list of all specification documents can be accessed via the navigation menu.

Archive Job States

Describes the states an archive job can be in and the transitions between them.

Specification

Events

Defines all events that are emitted by the archiving system to the Moodle Events API.

Specification

Activity Archiving Drivers

Defines the interface that activity archiving driver implementations must adhere to.

Specification

Storage Drivers

Defines the interface that storage driver implementations must adhere to.

Specification

Findings

This sections lists various findings and implications that have been discovered during the design phase of the system architecture. Please consider this as a work-in-progress note section.

  • Not all Moodle activities offer sub-plugin structures in which additional archiving plugins can be integrated.
    • mod_quiz offers an applicable sub-plugin structure (quiz report plugins), but mod_assign does not.
    • This means, that archiving plugins must be implemented as a local plugins. In theory, a coursereport or report would suffice for now, but might limit the flexibility of the archiving system in the future.
    • A local plugin could inject appropriate sub-sites directly into different parts of the Moodle navigation. This would allow for a more seamless integration of the archiving system into the Moodle user interface (e.g., one overview page per course but also a global system-wide overview / status page).
  • Defining an own sub-plugin infrastructure for the central archiving plugin is the most clean and maintainable solution. It would be extended by plugins for archiving specific activities or transferring archived data to external systems.
    • Sub-plugins should be implemented as proper Moodle plugins, as described in the Moodle Subplugins Documentation
    • A basic set of sub-plugins will be distributed with the base plugin. It is then possible to add additional sub-plugins (e.g., storage drivers) via the Moodle plugin repository.
    • Each (sub-)system could communicate via the Moodle Events API if found useful.
  • The Moodle Events API ...
    • Allows components to dispatch events that other components can listen to, if desired.
    • Enable a decoupled architecture, where different components are only loosely connected, hence allow for easier maintenance and extension.
    • Allows both, communication between components within a single plugin, and with other plugins.
    • Allows to be handled by individual observers or by a central manager.
    • Can contain arbitrary data
    • Can contain snapshots of database data at a given point in time
    • Follow a strict and useful naming convention
    • Are fully supported by all targeted Moodle versions