Moodle PHP Documentation 4.2
Moodle 4.2.8 (Build: 20240610) (2d41ac46f45)
|
Public Member Functions | |
__construct ($id=0, stdClass $record=null, ?array $metadata=null) | |
Create an instance of this class. | |
create () | |
Insert a record in the DB. | |
create_imported_recording (instance $targetinstance) | |
Create a new imported recording from current recording. | |
delete () | |
Delete an entry from the database. | |
from_record (stdClass $record) | |
Populate this class with data from a DB record. | |
get ($property) | |
Data getter. | |
get_errors () | |
Returns the validation errors. | |
get_instance () | |
Get the instance that this recording relates to. | |
get_remote_playback_url (string $type) | |
Get the playback URL for the specified type. | |
is_valid () | |
Returns whether or not the model is valid. | |
read () | |
Load the data from the DB. | |
save () | |
Saves the record to the database. | |
set ($property, $value) | |
Data setter. | |
set_many (array $values) | |
Data setter for multiple properties. | |
to_record () | |
Create a DB record from this class. | |
update () | |
Update the existing record in the DB. | |
validate () | |
Validates the data. | |
Static Public Member Functions | |
static | count_records (array $conditions=array()) |
Count a list of records. | |
static | count_records_select ($select, $params=null) |
Count a list of records. | |
static | extract_record ($row, $prefix=null) |
Extract a record from a row of data. | |
static | get_formatted_properties () |
Gets all the formatted properties. | |
static | get_record (array $filters=[], int $strictness=IGNORE_MISSING) |
Load a single record. | |
static | get_recordings_for_course (int $courseid, array $excludedinstanceid=[], bool $includeimported=false, bool $onlyimported=false, bool $includedeleted=false, bool $onlydeleted=false) |
Helper function to retrieve recordings from a given course. | |
static | get_recordings_for_instance (instance $instance, bool $includeimported=false, bool $onlyimported=false) |
Helper function to retrieve recordings from the BigBlueButton. | |
static | get_records ($filters=array(), $sort='', $order='ASC', $skip=0, $limit=0) |
Load a list of records. | |
static | get_records_select ($select, $params=null, $sort='', $fields=' *', $limitfrom=0, $limitnum=0) |
Load a list of records based on a select query. | |
static | get_sql_fields ($alias, $prefix=null) |
Return the list of fields for use in a SELECT clause. | |
static | has_property ($property) |
Returns whether or not a property was defined. | |
static | is_property_required ($property) |
Returns whether or not a property is required. | |
static | properties_definition () |
Get the properties definition of this model. | |
static | properties_filter (stdClass $record) |
For a given record, return an array containing only those properties that are defined by the persistent. | |
static | record_exists ($id) |
Check if a record exists by ID. | |
static | record_exists_select ($select, array $params=null) |
Check if a records exists. | |
static | sync_pending_recordings_from_server (bool $dismissedonly=false) |
Synchronise pending recordings from the server. | |
Public Attributes | |
bool | $imported |
imported recording status | |
string const | DEFAULT_RECORDING_SORT = 'timecreated ASC' |
Default sort for recordings when fetching from the database. | |
int const | INCLUDE_IMPORTED_RECORDINGS = true |
Defines that the list should include imported recordings. | |
const | POSSIBLE_REMOTE_META_SOURCE |
POSSIBLE_REMOTE_META_SOURCE match a field type and its metadataname (historical and current). | |
int const | RECORDING_HEADLESS = 1 |
Defines that the activity used to create the recording no longer exists. | |
int const | RECORDING_IMPORTED = 1 |
Defines that the recording is not the original but an imported one. | |
int const | RECORDING_REFRESH_DEFAULT_PERIOD = 300 |
A refresh period for recordings, defaults to 300s (5mins) | |
int const | RECORDING_STATUS_AWAITING = 0 |
A meeting set to be recorded still awaits for a recording update. | |
int const | RECORDING_STATUS_DELETED = 5 |
A meeting set to be recorded was deleted from bigbluebutton. | |
int const | RECORDING_STATUS_DISMISSED = 1 |
A meeting set to be recorded was not recorded and dismissed by BBB. | |
int const | RECORDING_STATUS_NOTIFIED = 3 |
A meeting set to be recorded received notification callback from BBB. | |
int const | RECORDING_STATUS_PROCESSED = 2 |
A meeting set to be recorded has a recording processed. | |
int const | RECORDING_STATUS_RESET = 4 |
A meeting set to be recorded was processed and set back to an awaiting state. | |
int const | RECORDING_TIME_LIMIT_DAYS = 30 |
A time limit for recordings to be dismissed, defaults to 30d (30days) | |
const | TABLE = 'bigbluebuttonbn_recordings' |
The table name. | |
Protected Member Functions | |
after_create () | |
Hook to execute after a create. | |
after_delete ($result) | |
Hook to execute after a delete. | |
after_update ($result) | |
Hook to execute after an update. | |
before_create () | |
Hook to execute before a create. | |
before_delete () | |
Delete the recording in the BBB button. | |
before_update () | |
Before doing the database update, let's check if we need to update metadata. | |
before_validate () | |
Hook to execute before the validation. | |
fetch_metadata (bool $force=false) | |
Fetch metadata. | |
get_description () | |
Description is stored in the metadata, so we sometimes needs to do some conversion. | |
get_endtime () | |
Start time. | |
get_name () | |
Name is stored in the metadata. | |
get_playbacks () | |
List of playbacks for this recording. | |
get_possible_meta_name_for_source ($sourcetype, $metadata) | |
Get the real metadata name for the possible source. | |
get_protected () | |
Is protected. | |
get_published () | |
Is published. | |
get_starttime () | |
Start time. | |
metadata_get ($fieldname) | |
Get information stored in the recording metadata such as description, name and other info. | |
metadata_set ($fieldname, $value) | |
Set locally stored metadata from this instance. | |
raw_get ($property) | |
Internal Data getter. | |
raw_set ($property, $value) | |
Data setter. | |
refresh_metadata_if_required () | |
Refresh metadata if required. | |
remote_meta_convert () | |
Convert string (metadata) to json object. | |
set_description ($value) | |
Set Description. | |
set_endtime ($value) | |
Recording endtime. | |
set_name ($value) | |
Set name. | |
set_protected ($value) | |
Recording is protected. | |
set_published ($value) | |
Recording is published. | |
set_starttime ($value) | |
Recording starttime. | |
set_status ($value) | |
Update recording status. | |
verify_protected_methods () | |
This function is used to verify that custom getters and setters are declared as protected. | |
Static Protected Member Functions | |
static | define_properties () |
Return the definition of the properties of this model. | |
static | fetch_records (array $selects, array $params) |
Fetch all records which match the specified parameters, including all metadata that relates to them. | |
static | get_basic_select_from_parameters (bool $includedeleted=false, bool $includeimported=false, bool $onlyimported=false, bool $onlydeleted=false) |
Get basic sql select from given parameters. | |
static | get_property_default_value ($property) |
Gets the default value for a property. | |
static | get_property_error_message ($property) |
Gets the error message for a property. | |
static | get_select_for_group ($groupmode, $context, $courseid, $groupid=0, $groupingid=0) |
Get select for given group mode and context. | |
Protected Attributes | |
instance | $instance |
A cached copy of the instance. | |
array | $metadata = null |
A cached copy of the metadata. | |
bool | $metadatachanged = false |
Whether metadata been changed so the remote information needs to be updated ? | |
mod_bigbluebuttonbn\recording::__construct | ( | $id = 0, | |
stdClass | $record = null, | ||
?array | $metadata = null ) |
Create an instance of this class.
int | $id | If set, this is the id of an existing record, used to load the data. |
stdClass | null | $record | If set will be passed to from_record |
null | array | $metadata |
|
protectedinherited |
Hook to execute after a create.
This is only intended to be used by child classes, do not put any logic here!
void |
Reimplemented in core_reportbuilder\local\models\audience, core_reportbuilder\local\models\column, core_reportbuilder\local\models\filter, core_reportbuilder\local\models\report, core_reportbuilder\local\models\schedule, quizaccess_seb\seb_quiz_settings, tool_dataprivacy\contextlevel, tool_dataprivacy\purpose, and tool_dataprivacy\purpose_override.
|
protectedinherited |
Hook to execute after a delete.
This is only intended to be used by child classes, do not put any logic here!
bool | $result | Whether or not the delete was successful. |
void |
Reimplemented in core_competency\competency, core_competency\course_competency, core_competency\course_module_competency, core_competency\plan_competency, core_competency\template_competency, core_reportbuilder\local\models\audience, core_reportbuilder\local\models\column, core_reportbuilder\local\models\filter, core_reportbuilder\local\models\report, core_reportbuilder\local\models\schedule, and tool_policy\policy_version.
|
protectedinherited |
Hook to execute after an update.
This is only intended to be used by child classes, do not put any logic here!
bool | $result | Whether or not the update was successful. |
void |
Reimplemented in core_competency\competency, core_competency\template, core_reportbuilder\local\models\audience, core_reportbuilder\local\models\column, core_reportbuilder\local\models\filter, core_reportbuilder\local\models\report, core_reportbuilder\local\models\schedule, quizaccess_seb\seb_quiz_settings, tool_dataprivacy\contextlevel, tool_dataprivacy\purpose, tool_dataprivacy\purpose_override, and tool_policy\policy_version.
|
protectedinherited |
Hook to execute before a create.
Please note that at this stage the data has already been validated and therefore any new data being set will not be validated before it is sent to the database.
This is only intended to be used by child classes, do not put any logic here!
void |
Reimplemented in quizaccess_seb\seb_quiz_settings, and quizaccess_seb\template.
|
protected |
|
protected |
Before doing the database update, let's check if we need to update metadata.
void |
Reimplemented from core\persistent.
|
protectedinherited |
Hook to execute before the validation.
This hook will not affect the validation results in any way but is useful to internally set properties which will need to be validated.
This is only intended to be used by child classes, do not put any logic here!
void |
Reimplemented in core\oauth2\issuer, core_competency\competency, core_competency\competency_framework, core_competency\course_competency, core_competency\course_module_competency, core_competency\plan, core_competency\plan_competency, core_competency\template, core_competency\template_competency, and quizaccess_seb\seb_quiz_settings.
|
staticinherited |
Count a list of records.
array | $conditions | An array of conditions. |
int |
|
staticinherited |
Count a list of records.
string | $select | |
array | $params |
int |
|
finalinherited |
Insert a record in the DB.
static |
mod_bigbluebuttonbn\recording::create_imported_recording | ( | instance | $targetinstance | ) |
Create a new imported recording from current recording.
instance | $targetinstance |
recording |
|
staticprotected |
Return the definition of the properties of this model.
array |
Reimplemented from core\persistent.
|
finalinherited |
Delete an entry from the database.
bool | True on success. |
|
staticinherited |
Extract a record from a row of data.
Most likely used in combination with self::get_sql_fields(). This method is simple enough to be used by non-persistent classes, keep that in mind when modifying it.
e.g. persistent\extract_record($row, 'user'); should work.
stdClass | $row | The row of data. |
string | $prefix | The prefix the data fields are prefixed with, defaults to the table name followed by underscore. |
stdClass | The extracted data. |
|
protected |
Fetch metadata.
If metadata has changed locally or if it an imported recording, nothing will be done.
bool | $force |
array |
|
staticprotected |
Fetch all records which match the specified parameters, including all metadata that relates to them.
array | $selects | |
array | $params |
recording[] |
|
finalinherited |
|
finalinherited |
Data getter.
This is the main getter for all the properties. Developers can implement their own getters (get_propertyname) and they will be called by this function. Custom getters can use raw_get to get the raw value. Internally this is not used by self::to_record() or self::from_record() because the data is not expected to be validated or changed when reading/writing raw records from the DB.
string | $property | The property name. |
mixed |
|
staticprotected |
Get basic sql select from given parameters.
bool | $includedeleted | |
bool | $includeimported | |
bool | $onlyimported | |
bool | $onlydeleted |
array |
|
protected |
Start time.
mixed|null |
|
finalinherited |
Returns the validation errors.
array |
|
staticfinalinherited |
Gets all the formatted properties.
Formatted properties are properties which have a format associated with them.
array | Keys are property names, values are property format names. |
mod_bigbluebuttonbn\recording::get_instance | ( | ) |
Get the instance that this recording relates to.
instance |
|
protected |
List of playbacks for this recording.
array[] |
|
protected |
Get the real metadata name for the possible source.
string | $sourcetype | the name of the source we look for (name, description...) |
array | $metadata | current metadata |
|
staticfinalprotectedinherited |
Gets the default value for a property.
This assumes that the property exists.
string | $property | The property name. |
mixed |
|
staticfinalprotectedinherited |
Gets the error message for a property.
This assumes that the property exists.
string | $property | The property name. |
lang_string |
|
protected |
Is protected.
Return null if protected is not implemented.
bool|null |
|
protected |
Is published.
bool |
|
staticinherited |
Load a single record.
array | $filters | Filters to apply. |
int | $strictness | Similar to the internal DB get_record call, indicate whether a missing record should be ignored/return false ({ |
false|static |
|
static |
Helper function to retrieve recordings from a given course.
int | $courseid | id for a course record or null |
array | $excludedinstanceid | exclude recordings from instance ids |
bool | $includeimported | |
bool | $onlyimported | |
bool | $includedeleted | |
bool | $onlydeleted |
recording[] | containing the recordings indexed by recordID, each recording is also a non sequential associative array itself that corresponds to the actual recording in BBB |
|
static |
Helper function to retrieve recordings from the BigBlueButton.
instance | $instance | |
bool | $includeimported | |
bool | $onlyimported |
recording[] | containing the recordings indexed by recordID, each recording is also a non sequential associative array itself that corresponds to the actual recording in BBB |
|
staticinherited |
Load a list of records.
array | $filters | Filters to apply. |
string | $sort | Field to sort by. |
string | $order | Sort order. |
int | $skip | Limitstart. |
int | $limit | Number of rows to return. |
static[] |
|
staticinherited |
Load a list of records based on a select query.
string | $select | |
array | $params | |
string | $sort | |
string | $fields | |
int | $limitfrom | |
int | $limitnum |
static[] |
mod_bigbluebuttonbn\recording::get_remote_playback_url | ( | string | $type | ) |
Get the playback URL for the specified type.
string | $type |
null|string |
|
staticprotected |
Get select for given group mode and context.
int | $groupmode | |
context | $context | |
int | $courseid | |
int | $groupid | |
int | $groupingid |
array |
|
staticinherited |
Return the list of fields for use in a SELECT clause.
Having the complete list of fields prefixed allows for multiple persistents to be fetched in a single query. Use self::extract_record() to extract the records from the query result.
string | $alias | The alias used for the table. |
string | $prefix | The prefix to use for each field, defaults to the table name followed by underscore. |
string | The SQL fragment. |
|
protected |
Start time.
mixed|null |
|
staticfinalinherited |
Returns whether or not a property was defined.
string | $property | The property name. |
boolean |
|
staticfinalinherited |
Returns whether or not a property is required.
By definition a property with a default value is not required.
string | $property | The property name. |
boolean |
|
finalinherited |
Returns whether or not the model is valid.
boolean | True when it is. |
|
protected |
Get information stored in the recording metadata such as description, name and other info.
string | $fieldname |
mixed|null |
|
protected |
Set locally stored metadata from this instance.
string | $fieldname | |
mixed | $value |
|
staticfinalinherited |
Get the properties definition of this model.
array |
|
staticfinalinherited |
For a given record, return an array containing only those properties that are defined by the persistent.
stdClass | $record |
array |
|
finalprotectedinherited |
Internal Data getter.
This is the main getter for all the properties. Developers can implement their own getters but they should be calling self::get() in order to retrieve the value. Essentially the getters defined by the developers would only ever be used as helper methods and will not be called internally at this stage. In other words, do not expect self::to_record() or self::from_record() to use them.
This is protected because it is only for raw low level access to the data fields. Note this function is named raw_get and not get_raw to avoid naming clashes with a property named raw.
string | $property | The property name. |
mixed |
|
finalprotectedinherited |
Data setter.
This is the main setter for all the properties. Developers can implement their own setters but they should always be calling self::set() in order to set the value. Essentially the setters defined by the developers are helper methods and will not be called internally at this stage. In other words do not expect self::to_record() or self::from_record() to use them.
This is protected because it is only for raw low level access to the data fields.
string | $property | The property name. |
mixed | $value | The value. |
$this |
|
finalinherited |
Load the data from the DB.
static |
|
staticinherited |
Check if a record exists by ID.
int | $id | Record ID. |
bool |
|
staticinherited |
Check if a records exists.
string | $select | |
array | $params |
bool |
|
protected |
Refresh metadata if required.
If this is a protected recording which whose data was not fetched in the current request, then the metadata will be purged and refetched. This ensures that the url is safe for use with a protected recording.
|
protected |
Convert string (metadata) to json object.
mixed|null |
|
finalinherited |
Saves the record to the database.
If this record has an ID, then self::update() is called, otherwise self::create() is called. Before and after hooks for create() or update() will be called appropriately.
void |
|
finalinherited |
Data setter.
This is the main setter for all the properties. Developers can implement their own setters (set_propertyname) and they will be called by this function. Custom setters should call internal_set() to finally set the value. Internally this is not used self::to_record() or self::from_record() because the data is not expected to be validated or changed when reading/writing raw records from the DB.
string | $property | The property name. |
$this |
coding_exception |
|
protected |
Set Description.
string | $value |
|
protected |
Recording endtime.
int | $value |
|
finalinherited |
Data setter for multiple properties.
Internally calls {
array | $values | Array of property => value elements |
$this |
|
protected |
Set name.
string | $value |
|
protected |
Recording is protected.
bool | $value |
|
protected |
Recording is published.
bool | $value |
|
protected |
Recording starttime.
int | $value |
|
protected |
Update recording status.
bool | $value |
|
static |
Synchronise pending recordings from the server.
This function should be called by the check_pending_recordings scheduled task.
bool | $dismissedonly | fetch dismissed recording only |
|
finalinherited |
Create a DB record from this class.
Note that this does not use any custom getter because the data here is intended to represent what is stored in the database.
stdClass |
|
finalinherited |
Update the existing record in the DB.
bool | True on success. |
|
finalinherited |
Validates the data.
Developers can implement addition validation by defining a method as follows. Note that the method MUST return a lang_string() when there is an error, and true when the data is valid.
protected function validate_propertyname($value) { if ($value !== 'My expected value') { return new lang_string('invaliddata', 'error'); } return true }
It is OK to use other properties in your custom validation methods when you need to, however note they might not have been validated yet, so try not to rely on them too much.
Note that the validation methods should be protected. Validating just one field is not recommended because of the possible dependencies between one field and another,also the field ID can be used to check whether the object is being updated or created.
When validating foreign keys the persistent should only check that the associated model exists. The validation methods should not be used to check for a change in that relationship. The API method setting the attributes on the model should be responsible for that. E.g. On a course model, the method validate_categoryid will check that the category exists. However, if a course can never be moved outside of its category it would be up to the calling code to ensure that the category ID will not be altered.
array|true | Returns true when the validation passed, or an array of properties with errors. |
|
finalprotectedinherited |
This function is used to verify that custom getters and setters are declared as protected.
Persistent properties should always be accessed via get('property') and set('property', 'value') which will call the custom getter or setter if it exists. We do not want to allow inconsistent access to the properties.
const mod_bigbluebuttonbn\recording::POSSIBLE_REMOTE_META_SOURCE |
POSSIBLE_REMOTE_META_SOURCE match a field type and its metadataname (historical and current).