Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Static Public Member Functions | Public Attributes | Static Protected Member Functions | Protected Attributes | List of all members
repository Class Reference

This is the base class of the repository class. More...

Inheritance diagram for repository:
cacheable_object repository_areafiles repository_boxnet repository_coursefiles repository_dropbox repository_equella repository_filesystem repository_flickr repository_flickr_public repository_googledocs repository_local repository_merlot repository_nextcloud repository_onedrive repository_picasa repository_recent repository_s3 repository_skydrive repository_upload repository_url repository_user repository_webdav repository_wikimedia repository_youtube

Public Member Functions

 __construct ($repositoryid, $context=SYSCONTEXTID, $options=array(), $readonly=0)
 Constructor. More...
 
 cache_file_by_reference ($reference, $storedfile)
 Cache file from external repository by reference } * repository::get_file() Invoked at MOODLE/repository/repository_ajax.php. More...
 
 callback ()
 For oauth like external authentication, when external repository direct user back to moodle, this function will be called to set up token and token_secret.
 
 can_be_edited_by_user ()
 Can the instance be edited by the current user? More...
 
 check_capability ()
 Checks if user has a capability to view the current repository. More...
 
 check_login ()
 To check whether the user is logged in. More...
 
 contains_private_data ()
 Is this repository accessing private data? More...
 
 convert_references_to_local ()
 Find all external files in this repo and import them.
 
 copy_to_area ($source, $filerecord, $maxbytes=-1, $areamaxbytes=FILE_AREA_MAX_BYTES_UNLIMITED)
 This function is used to copy a moodle file to draft area. More...
 
 cron ()
 Defines operations that happen occasionally on cron. More...
 
 default_returntype ()
 Tells how the file can be picked from this repository. More...
 
 delete ($downloadcontents=false)
 delete a repository instance More...
 
 file_is_accessible ($source)
 Repository method to make sure that user can access particular file. More...
 
 filter (&$value)
 Filter file listing to display specific types. More...
 
 get_file ($url, $filename='')
 Downloads a file from external repository and saves it in temp dir. More...
 
 get_file_reference ($source)
 Prepare file reference information. More...
 
 get_file_size ($source)
 Return size of a file in bytes. More...
 
 get_file_source_info ($source)
 Return the source information. More...
 
 get_link ($url)
 Return file URL, for most plugins, the parameter is the original url, but some plugins use a file id, so we need this function to convert file id to original url. More...
 
 get_listing ($path='', $page='')
 Given a path, and perhaps a search, get a list of files. More...
 
 get_meta ()
 Provide repository instance information for Ajax. More...
 
 get_name ()
 Return the name of this instance, can be overridden. More...
 
 get_option ($config='')
 Get settings for repository instance. More...
 
 get_reference_details ($reference, $filestatus=0)
 Return human readable reference information. More...
 
 get_short_filename ($str, $maxlength)
 Create a shorten filename. More...
 
 get_typename ()
 Returns the type name of the repository. More...
 
 global_search ()
 is it possible to do glboal search? More...
 
 has_moodle_files ()
 Does this repository used to browse moodle files? More...
 
 hide ($hide='toggle')
 Hide/Show a repository. More...
 
 import_external_file_contents (stored_file $file, $maxbytes=0)
 Downloads the file from external repository and saves it in moodle filepool. More...
 
 is_visible ()
 Return is the instance is visible (is the type visible ? is the context enable ?) More...
 
 logout ()
 Logout from repository instance By default, this function will return a login form. More...
 
 prepare_file ($filename)
 Get a unique file path in which to save the file. More...
 
 prepare_to_cache ()
 Prepares the repository to be cached. More...
 
 print_login ()
 Show the login screen, if required. More...
 
 print_search ()
 Show the search screen, if required. More...
 
 reference_file_selected ($reference, $context, $component, $filearea, $itemid)
 reference_file_selected More...
 
 remove_files ()
 Find all external files linked to this repository and delete them.
 
 search ($search_text, $page=0)
 Search files in repository When doing global search, $search_text will be used as keyword. More...
 
 send_file ($storedfile, $lifetime=null, $filter=0, $forcedownload=false, array $options=null)
 Repository method to serve the referenced file. More...
 
 send_relative_file (stored_file $mainfile, $relativepath)
 Gets a file relative to this file in the repository and sends it to the browser. More...
 
 set_option ($options=array())
 Save settings for repository instance $repo->set_option(array('api_key'=>'f2188bde132', 'name'=>'dongsheng'));. More...
 
 supported_filetypes ()
 What kind of files will be in this repository? More...
 
 supported_returntypes ()
 Tells how the file can be picked from this repository. More...
 
 supports_relative_file ()
 helper function to check if the repository supports send_relative_file. More...
 
 sync_reference (stored_file $file)
 Performs synchronisation of an external file if the previous one has expired. More...
 
 uses_post_requests ()
 Helper function to indicate if this repository uses post requests for uploading files. More...
 

Static Public Member Functions

static antivir_scan_file ($thefile, $filename, $deleteinfected)
 Scan file, throws exception in case of infected file. More...
 
static append_suffix ($filename)
 Append a suffix to filename. More...
 
static build_source_field ($source)
 Build draft file's source field. More...
 
static build_tree ($fileinfo, $search, $dynamicmode, &$list)
 Builds a tree of files This function is then called recursively. More...
 
static create ($type, $userid, $context, $params, $readonly=0)
 Create an instance for this plug-in. More...
 
static delete_all_for_context ($contextid, $downloadcontents=true)
 Delete all the instances associated to a context. More...
 
static delete_tempfile_from_draft ($draftitemid, $filepath, $filename)
 Delete a temp file from draft area. More...
 
static display_instances_list ($context, $typename=null)
 Display a repository instance list (with edit/delete/create links) More...
 
static draftfile_exists ($itemid, $filepath, $filename)
 Check if file already exists in draft area. More...
 
static get_editable_types ($context=null)
 Return all types that you a user can create/edit and which are also visible Note: Mostly used in order to know if at least one editable type can be set. More...
 
static get_instance ($id)
 Get single repository instance for administrative actions. More...
 
static get_instance_option_names ()
 Return names of the instance options. More...
 
static get_instances ($args=array())
 Return repository instances. More...
 
static get_moodle_file ($reference)
 Parses the moodle file reference and returns an instance of stored_file. More...
 
static get_repository_by_id ($repositoryid, $context, $options=array())
 Get repository instance using repository id. More...
 
static get_secret_key ()
 Generate a secret key to be used for passing sensitive information around. More...
 
static get_type_by_id ($id)
 Get the repository type by a given repository type id. More...
 
static get_type_by_typename ($typename)
 Get a repository type object by a given type name. More...
 
static get_type_option_names ()
 Return names of the general options. More...
 
static get_types ($visible=null)
 Return all repository types ordered by sortorder field first repository type in returnedarray[0], second repository type in returnedarray[1], ... More...
 
static get_unused_filename ($itemid, $filepath, $filename)
 Get an unused filename from the current draft area. More...
 
static instance_config_form ($mform)
 Edit/Create Instance Settings Moodle form. More...
 
static instance_form_validation ($mform, $data, $errors)
 Validate repository plugin instance form. More...
 
static move_to_filepool ($thefile, $record)
 Move file from download folder to file pool using FILE API. More...
 
static overwrite_existing_draftfile ($itemid, $filepath, $filename, $newfilepath, $newfilename)
 Overwrite an existing file. More...
 
static plugin_init ()
 function which is run when the type is created (moodle administrator add the plugin) More...
 
static prepare_listing ($listing)
 Prepares list of files before passing it to AJAX, makes sure data is in the correct format and stores formatted values. More...
 
static reset_caches ()
 Function repository::reset_caches() is deprecated, cache is handled by MUC now. More...
 
static static_function ($plugin, $function)
 Call a static function. More...
 
static sync_external_file ($file, $resetsynchistory=false)
 Function repository::sync_external_file() is deprecated. More...
 
static type_config_form ($mform, $classname='repository')
 Edit/Create Admin Settings Moodle form. More...
 
static type_form_validation ($mform, $data, $errors)
 Validate Admin Settings Moodle form. More...
 
static update_draftfile ($draftid, $filepath, $filename, $updatedata)
 Updates a file in draft filearea. More...
 
static wake_from_cache ($data)
 Restores the repository from cache. More...
 

Public Attributes

stdClass $context
 current context
 
bool $disabled = false
 force disable repository instance
 
int $id
 repository instance id
 
stdClass $instance
 repository instance database record
 
array $options
 repository options
 
bool $readonly
 Whether or not the repository instance is editable.
 
int $returntypes
 return types
 
const GETFILE_TIMEOUT = 30
 Timeout in seconds for downloading the external file into moodle. More...
 
const SYNCFILE_TIMEOUT = 1
 Timeout in seconds for syncronising the external file size. More...
 
const SYNCIMAGE_TIMEOUT = 3
 Timeout in seconds for downloading an image file from external repository during syncronisation. More...
 

Static Protected Member Functions

static prepare_breadcrumb ($breadcrumb)
 Prepare the breadcrumb. More...
 
static prepare_list ($list)
 Prepare the file/folder listing. More...
 

Protected Attributes

string $typename
 Type of repository (webdav, google_docs, dropbox, ...). More...
 

Detailed Description

This is the base class of the repository class.

To create repository plugin, see: * See an example: @javalink repository_boxnet

License
http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

Constructor & Destructor Documentation

◆ __construct()

repository::__construct (   $repositoryid,
  $context = SYSCONTEXTID,
  $options = array(),
  $readonly = 0 
)

Constructor.

Parameters
int$repositoryidrepository instance id
int | stdClass$contexta context id or context object
array$optionsrepository options
int$readonlyindicate this repo is readonly or not

Reimplemented in repository_onedrive, repository_googledocs, and repository_flickr_public.

Member Function Documentation

◆ antivir_scan_file()

static repository::antivir_scan_file (   $thefile,
  $filename,
  $deleteinfected 
)
static

Scan file, throws exception in case of infected file.

Please note that the scanning engine must be able to access the file, permissions of the file are not modified here!

Deprecated:
since Moodle 3.0
Parameters
string$thefile
string$filenamename of the file
bool$deleteinfected

◆ append_suffix()

static repository::append_suffix (   $filename)
static

Append a suffix to filename.

Parameters
string$filename
Return values
string
Deprecated:
since 2.5

◆ build_source_field()

static repository::build_source_field (   $source)
static

Build draft file's source field.

file_restore_source_field_from_draft_file() XXX: This is a hack for file manager (MDL-28666) For newly created draft files we have to construct source filed in php serialized data format. File manager needs to know the original file information before copying to draft area, so we append these information in mdl_files.source field

Parameters
string$source
Return values
stringserialised source field

◆ build_tree()

static repository::build_tree (   $fileinfo,
  $search,
  $dynamicmode,
$list 
)
static

Builds a tree of files This function is then called recursively.

Todo:
take $search into account, and respect a threshold for dynamic loading
Parameters
file_info$fileinfoan object returned by file_browser::get_file_info()
string$searchsearched string
bool$dynamicmodeno recursive call is done when in dynamic mode
array$listthe array containing the files under the passed $fileinfo
Return values
intthe number of files found

◆ cache_file_by_reference()

repository::cache_file_by_reference (   $reference,
  $storedfile 
)

Cache file from external repository by reference } * repository::get_file() Invoked at MOODLE/repository/repository_ajax.php.

Parameters
string$referencethis reference is generated by repository::get_file_reference()
stored_file$storedfilecreated file reference

Reimplemented in repository_dropbox.

◆ can_be_edited_by_user()

repository::can_be_edited_by_user ( )
final

Can the instance be edited by the current user?

The property $readonly must not be used within this method because it only controls if the options from self::get_instance_option_names() can be edited.

Return values
booltrue if the user can edit the instance.
Since
Moodle 2.5

◆ check_capability()

repository::check_capability ( )
final

Checks if user has a capability to view the current repository.

Return values
booltrue when the user can, otherwise throws an exception.
Exceptions
repository_exceptionwhen the user does not meet the requirements.

◆ check_login()

repository::check_login ( )

◆ contains_private_data()

repository::contains_private_data ( )

Is this repository accessing private data?

This function should return true for the repositories which access external private data from a user. This is the case for repositories such as Dropbox, Google Docs or Box.net which authenticate the user and then store the auth token.

Of course, many repositories store 'private data', but we only want to set contains_private_data() to repositories which are external to Moodle and shouldn't be accessed to by the users having the capability to 'login as' someone else. For instance, the repository 'Private files' is not considered as private because it's part of Moodle.

You should not set contains_private_data() to true on repositories which allow different types of instances as the levels other than 'user' are, by definition, not private. Also the user instances will be protected when they need to.

Return values
booleanTrue when the repository accesses private external data.
Since
Moodle 2.5

Reimplemented in repository_youtube, repository_wikimedia, repository_webdav, repository_user, repository_url, repository_upload, repository_s3, repository_recent, repository_merlot, repository_local, repository_flickr_public, repository_filesystem, repository_equella, and repository_coursefiles.

◆ copy_to_area()

repository::copy_to_area (   $source,
  $filerecord,
  $maxbytes = -1,
  $areamaxbytes = FILE_AREA_MAX_BYTES_UNLIMITED 
)

This function is used to copy a moodle file to draft area.

It DOES NOT check if the user is allowed to access this file because the actual file can be located in the area where user does not have access to but there is an alias to this file in the area where user CAN access it. file_is_accessible should be called for alias location before calling this function.

Parameters
string$sourceThe metainfo of file, it is base64 encoded php serialized data
stdClass | array$filerecordcontains itemid, filepath, filename and optionally other attributes of the new file
int$maxbytesmaximum allowed size of file, -1 if unlimited. If size of file exceeds the limit, the file_exception is thrown.
int$areamaxbytesthe maximum size of the area. A file_exception is thrown if the new file will reach the limit.
Return values
arrayThe information about the created file

◆ create()

static repository::create (   $type,
  $userid,
  $context,
  $params,
  $readonly = 0 
)
static

Create an instance for this plug-in.

Parameters
string$typethe type of the repository
int$useridthe user id
stdClass$contextthe context
array$paramsthe options for this instance
int$readonlywhether to create it readonly or not (defaults to not)
Return values
mixed

Reimplemented in repository_nextcloud, and repository_filesystem.

◆ cron()

repository::cron ( )

Defines operations that happen occasionally on cron.

Return values
bool

Reimplemented in repository_dropbox.

◆ default_returntype()

repository::default_returntype ( )

Tells how the file can be picked from this repository.

Maximum value is FILE_INTERNAL | FILE_EXTERNAL | FILE_REFERENCE

Return values
int

Reimplemented in repository_onedrive, repository_nextcloud, and repository_googledocs.

◆ delete()

repository::delete (   $downloadcontents = false)
final

delete a repository instance

Parameters
bool$downloadcontents
Return values
bool

◆ delete_all_for_context()

static repository::delete_all_for_context (   $contextid,
  $downloadcontents = true 
)
staticfinal

Delete all the instances associated to a context.

This method is intended to be a callback when deleting a course or a user to delete all the instances associated to their context. The usual way to delete a single instance is to use self::delete().

Parameters
int$contextidcontext ID.
boolean$downloadcontentstrue to convert references to hard copies.
Return values
void

◆ delete_tempfile_from_draft()

static repository::delete_tempfile_from_draft (   $draftitemid,
  $filepath,
  $filename 
)
static

Delete a temp file from draft area.

Parameters
int$draftitemid
string$filepath
string$filename
Return values
bool

◆ display_instances_list()

static repository::display_instances_list (   $context,
  $typename = null 
)
static

Display a repository instance list (with edit/delete/create links)

Parameters
stdClass$contextthe context for which we display the instance
string$typenameif set, we display only one type of instance

◆ draftfile_exists()

static repository::draftfile_exists (   $itemid,
  $filepath,
  $filename 
)
static

Check if file already exists in draft area.

Parameters
int$itemidof the draft area.
string$filepathpath to the file.
string$filenamefile name.
Return values
bool

◆ file_is_accessible()

repository::file_is_accessible (   $source)

Repository method to make sure that user can access particular file.

This is checked when user tries to pick the file from repository to deal with potential parameter substitutions is request

Parameters
string$sourcesource of the file, returned by repository as 'source' and received back from user (not cleaned)
Return values
boolwhether the file is accessible by current user

Reimplemented in repository_recent.

◆ filter()

repository::filter ( $value)

Filter file listing to display specific types.

Parameters
array$value
Return values
bool

◆ get_editable_types()

static repository::get_editable_types (   $context = null)
static

Return all types that you a user can create/edit and which are also visible Note: Mostly used in order to know if at least one editable type can be set.

Parameters
stdClass$contextthe context for which we want the editable types
Return values
arraytypes

◆ get_file()

repository::get_file (   $url,
  $filename = '' 
)

Downloads a file from external repository and saves it in temp dir.

Function get_file() must be implemented by repositories that support returntypes FILE_INTERNAL or FILE_REFERENCE. It is invoked to pick up the file and copy it to moodle. This function is not called for moodle repositories, the function repository::copy_to_area() is used instead.

This function can be overridden by subclass if the files.reference field contains not just URL or if request should be done differently.

See also
curl
Exceptions
file_exceptionwhen error occured
Parameters
string$urlthe content of files.reference field, in this implementaion it is asssumed that it contains the string with URL of the file
string$filenamefilename (without path) to save the downloaded file in the temporary directory, if omitted or file already exists the new filename will be generated
Return values
arraywith elements: path: internal location of the file url: URL to the source (from parameters)

Reimplemented in repository_webdav, repository_nextcloud, repository_dropbox, repository_onedrive, repository_googledocs, repository_equella, repository_boxnet, repository_flickr_public, repository_flickr, repository_skydrive, repository_s3, and repository_filesystem.

◆ get_file_reference()

repository::get_file_reference (   $source)

Prepare file reference information.

Parameters
string$sourcesource of the file, returned by repository as 'source' and received back from user (not cleaned)
Return values
stringfile reference, ready to be stored

Reimplemented in repository_onedrive, repository_nextcloud, repository_googledocs, repository_equella, repository_dropbox, and repository_boxnet.

◆ get_file_size()

repository::get_file_size (   $source)

Return size of a file in bytes.

Parameters
string$sourceencoded and serialized data of file
Return values
intfile size in bytes

◆ get_file_source_info()

repository::get_file_source_info (   $source)

Return the source information.

The result of the function is stored in files.source field. It may be analysed when the source file is lost or repository may use it to display human-readable location of reference original.

This method is called when file is picked for the first time only. When file (either copy or a reference) is already in moodle and it is being picked again to another file area (also as a copy or as a reference), the value of files.source is copied.

Parameters
string$sourcesource of the file, returned by repository as 'source' and received back from user (not cleaned)
Return values
string|null

Reimplemented in repository_wikimedia, repository_url, repository_equella, repository_dropbox, repository_boxnet, repository_flickr_public, repository_flickr, repository_s3, and repository_filesystem.

◆ get_instance()

static repository::get_instance (   $id)
static

Get single repository instance for administrative actions.

Do not use this function to access repository contents, because it does not set the current context

See also
repository::get_repository_by_id()
Parameters
integer$idrepository instance id
Return values
repository

◆ get_instance_option_names()

static repository::get_instance_option_names ( )
static

Return names of the instance options.

By default: no instance option name

Return values
array

Reimplemented in repository_webdav, repository_nextcloud, repository_flickr_public, repository_filesystem, and repository_equella.

◆ get_instances()

static repository::get_instances (   $args = array())
static

Return repository instances.

Parameters
array$argsArray containing the following keys: currentcontext : instance of context (default system context) context : array of instances of context (default empty array) onlyvisible : bool (default true) type : string return instances of this type only accepted_types : string|array return instances that contain files of those types (*, web_image, .pdf, ...) return_types : int combination of FILE_INTERNAL & FILE_EXTERNAL & FILE_REFERENCE & FILE_CONTROLLED_LINK. 0 means every type. The default is FILE_INTERNAL | FILE_EXTERNAL. userid : int if specified, instances belonging to other users will not be returned
Return values
arrayrepository instances

◆ get_link()

repository::get_link (   $url)

Return file URL, for most plugins, the parameter is the original url, but some plugins use a file id, so we need this function to convert file id to original url.

Parameters
string$urlthe url of file
Return values
string

Reimplemented in repository_nextcloud, repository_dropbox, repository_boxnet, repository_flickr_public, repository_flickr, and repository_coursefiles.

◆ get_listing()

repository::get_listing (   $path = '',
  $page = '' 
)

Given a path, and perhaps a search, get a list of files.

See details on http://docs.moodle.org/dev/Repository_plugins

Parameters
string$paththis parameter can a folder name, or a identification of folder
string$pagethe page number of file list
Return values
arraythe list of files, including meta infomation, containing the following keys manage, url to manage url client_id login, login form repo_id, active repository id login_btn_action, the login button action login_btn_label, the login button label total, number of results perpage, items per page page pages, total pages issearchresult, is it a search result? list, file list path, current path and parent path

Reimplemented in repository_equella, repository_flickr_public, repository_dropbox, repository_youtube, repository_wikimedia, repository_webdav, repository_url, repository_upload, repository_skydrive, repository_s3, repository_picasa, repository_onedrive, repository_nextcloud, repository_merlot, repository_googledocs, repository_flickr, repository_areafiles, repository_filesystem, repository_boxnet, repository_user, repository_recent, repository_local, and repository_coursefiles.

◆ get_meta()

repository::get_meta ( )
final

Provide repository instance information for Ajax.

Return values
stdClass

◆ get_moodle_file()

static repository::get_moodle_file (   $reference)
static

Parses the moodle file reference and returns an instance of stored_file.

Parameters
string$referencereference to the moodle internal file as retruned by } or file_storage::pack_reference()
Return values
stored_file|null

◆ get_name()

repository::get_name ( )

Return the name of this instance, can be overridden.

Return values
string

Reimplemented in repository_coursefiles.

◆ get_option()

repository::get_option (   $config = '')

Get settings for repository instance.

Parameters
string$configa specific option to get.
Return values
mixedreturns an array of options. If $config is not empty, then it returns that option, or null if the option does not exist.

Reimplemented in repository_youtube, repository_flickr_public, repository_flickr, and repository_dropbox.

◆ get_reference_details()

repository::get_reference_details (   $reference,
  $filestatus = 0 
)

Return human readable reference information.

Parameters
string$referencevalue of DB field files_reference.reference
int$filestatusstatus of the file, 0 - ok, 666 - source missing
Return values
string

Reimplemented in repository_onedrive, repository_nextcloud, repository_googledocs, repository_filesystem, repository_equella, repository_dropbox, and repository_boxnet.

◆ get_repository_by_id()

static repository::get_repository_by_id (   $repositoryid,
  $context,
  $options = array() 
)
static

Get repository instance using repository id.

Note that this function does not check permission to access repository contents

Exceptions
repository_exception
Parameters
int$repositoryidrepository instance ID
context | int$contextcontext instance or context ID where this repository will be used
array$optionsadditional repository options
Return values
repository

◆ get_secret_key()

static repository::get_secret_key ( )
staticfinal

Generate a secret key to be used for passing sensitive information around.

Return values
stringrepository secret key.

◆ get_short_filename()

repository::get_short_filename (   $str,
  $maxlength 
)

Create a shorten filename.

Parameters
string$strfilename
int$maxlengthmax file name length
Return values
stringshort filename

◆ get_type_by_id()

static repository::get_type_by_id (   $id)
static

Get the repository type by a given repository type id.

Parameters
int$idthe type id
Return values
object

◆ get_type_by_typename()

static repository::get_type_by_typename (   $typename)
static

Get a repository type object by a given type name.

Parameters
string$typenamethe repository type name
Return values
repository_type|bool

◆ get_type_option_names()

static repository::get_type_option_names ( )
static

◆ get_typename()

repository::get_typename ( )

Returns the type name of the repository.

Return values
stringtype name of the repository.
Since
Moodle 2.5

◆ get_types()

static repository::get_types (   $visible = null)
static

Return all repository types ordered by sortorder field first repository type in returnedarray[0], second repository type in returnedarray[1], ...

Parameters
bool$visiblecan return types by visiblity, return all types if null
Return values
arrayRepository types

◆ get_unused_filename()

static repository::get_unused_filename (   $itemid,
  $filepath,
  $filename 
)
static

Get an unused filename from the current draft area.

Will check if the file ends with ([0-9]) and increase the number.

Parameters
int$itemiddraft item ID.
string$filepathpath to the file.
string$filenamename of the file.
Return values
stringan unused file name.

◆ global_search()

repository::global_search ( )

◆ has_moodle_files()

repository::has_moodle_files ( )

Does this repository used to browse moodle files?

Return values
bool

Reimplemented in repository_user, repository_recent, repository_local, and repository_coursefiles.

◆ hide()

repository::hide (   $hide = 'toggle')
final

Hide/Show a repository.

Parameters
string$hide
Return values
bool

◆ import_external_file_contents()

repository::import_external_file_contents ( stored_file  $file,
  $maxbytes = 0 
)

Downloads the file from external repository and saves it in moodle filepool.

This function is different from repository::sync_reference() because it has bigger request timeout and always downloads the content.

This function is invoked when we try to unlink the file from the source and convert a reference into a true copy.

Exceptions
exceptionwhen file could not be imported
Parameters
stored_file$file
int$maxbytesthrow an exception if file size is bigger than $maxbytes (0 means no limit)

◆ instance_config_form()

static repository::instance_config_form (   $mform)
static

Edit/Create Instance Settings Moodle form.

Parameters
moodleform$mformMoodle form (passed by reference)

Reimplemented in repository_webdav, repository_nextcloud, repository_flickr_public, repository_filesystem, and repository_equella.

◆ instance_form_validation()

static repository::instance_form_validation (   $mform,
  $data,
  $errors 
)
static

Validate repository plugin instance form.

Parameters
moodleform$mformmoodle form
array$dataform data
array$errorserrors
Return values
arrayerrors

Reimplemented in repository_filesystem.

◆ is_visible()

repository::is_visible ( )

Return is the instance is visible (is the type visible ? is the context enable ?)

Return values
bool

Reimplemented in repository_coursefiles.

◆ logout()

repository::logout ( )

Logout from repository instance By default, this function will return a login form.

Return values
string

Reimplemented in repository_wikimedia, repository_skydrive, repository_picasa, repository_onedrive, repository_nextcloud, repository_googledocs, repository_flickr_public, repository_flickr, repository_filesystem, repository_dropbox, and repository_boxnet.

◆ move_to_filepool()

static repository::move_to_filepool (   $thefile,
  $record 
)
static

Move file from download folder to file pool using FILE API.

Todo:
MDL-28637
Parameters
string$thefilefile path in download folder
stdClass$record
Return values
arraycontaining the following keys: icon file id url

◆ overwrite_existing_draftfile()

static repository::overwrite_existing_draftfile (   $itemid,
  $filepath,
  $filename,
  $newfilepath,
  $newfilename 
)
static

Overwrite an existing file.

Parameters
int$itemid
string$filepath
string$filename
string$newfilepath
string$newfilename
Return values
bool

◆ plugin_init()

static repository::plugin_init ( )
static

function which is run when the type is created (moodle administrator add the plugin)

Return values
boolsuccess or fail?

Reimplemented in repository_flickr_public.

◆ prepare_breadcrumb()

static repository::prepare_breadcrumb (   $breadcrumb)
staticprotected

Prepare the breadcrumb.

Parameters
array$breadcrumbcontains each element of the breadcrumb.
Return values
arrayof breadcrumb elements.
Since
Moodle 2.3.3

◆ prepare_file()

repository::prepare_file (   $filename)

Get a unique file path in which to save the file.

The filename returned will be removed at the end of the request and should not be relied upon to exist in subsequent requests.

Parameters
string$filenamefile name
Return values
filepath

◆ prepare_list()

static repository::prepare_list (   $list)
staticprotected

Prepare the file/folder listing.

Parameters
array$listof files and folders.
Return values
arrayof files and folders.
Since
Moodle 2.3.3

◆ prepare_listing()

static repository::prepare_listing (   $listing)
static

Prepares list of files before passing it to AJAX, makes sure data is in the correct format and stores formatted values.

Parameters
array | stdClass$listingresult of get_listing() or search() or file_get_drafarea_files()
Return values
array

◆ prepare_to_cache()

repository::prepare_to_cache ( )

Prepares the repository to be cached.

Implements method from cacheable_object interface.

Return values
array

Implements cacheable_object.

◆ print_login()

repository::print_login ( )

◆ print_search()

repository::print_search ( )

Show the search screen, if required.

Return values
string

Reimplemented in repository_flickr_public.

◆ reference_file_selected()

repository::reference_file_selected (   $reference,
  $context,
  $component,
  $filearea,
  $itemid 
)

reference_file_selected

This function is called when a controlled link file is selected in a file picker and the form is saved. The expected behaviour for repositories supporting controlled links is to

  • copy the file to the moodle system account
  • put it in a folder that reflects the context it is being used
  • make sure the sharing permissions are correct (read-only with the link)
  • return a new reference string pointing to the newly copied file.
Parameters
string$referencethis reference is generated by repository::get_file_reference()
context$contextthe target context for this new file.
string$componentthe target component for this new file.
string$fileareathe target filearea for this new file.
string$itemidthe target itemid for this new file.
Return values
stringupdated reference (final one before it's saved to db).

Reimplemented in repository_onedrive, repository_nextcloud, and repository_googledocs.

◆ reset_caches()

static repository::reset_caches ( )
static

Function repository::reset_caches() is deprecated, cache is handled by MUC now.

Deprecated:
since Moodle 2.6 MDL-42016 - please do not use this function any more.

◆ search()

repository::search (   $search_text,
  $page = 0 
)

Search files in repository When doing global search, $search_text will be used as keyword.

Parameters
string$search_textsearch key word
int$pagepage
Return values
mixedsee repository::get_listing()

Reimplemented in repository_onedrive, repository_googledocs, repository_flickr, repository_youtube, repository_wikimedia, repository_picasa, repository_merlot, repository_flickr_public, repository_boxnet, repository_filesystem, repository_dropbox, and repository_local.

◆ send_file()

repository::send_file (   $storedfile,
  $lifetime = null,
  $filter = 0,
  $forcedownload = false,
array  $options = null 
)

Repository method to serve the referenced file.

See also
send_stored_file
Parameters
stored_file$storedfilethe file that contains the reference
int$lifetimeNumber of seconds before the file should expire from caches (null means $CFG->filelifetime)
int$filter0 (default)=no filtering, 1=all files, 2=html files only
bool$forcedownloadIf true (default false), forces download of file rather than view in browser/plugin
array$optionsadditional options affecting the file serving

Reimplemented in repository_onedrive, repository_nextcloud, repository_googledocs, repository_filesystem, repository_dropbox, repository_boxnet, and repository_equella.

◆ send_relative_file()

repository::send_relative_file ( stored_file  $mainfile,
  $relativepath 
)

Gets a file relative to this file in the repository and sends it to the browser.

Used to allow relative file linking within a repository without creating file records for linked files

Repositories that overwrite this must be very careful - see filesystem repository for example.

Parameters
stored_file$mainfileThe main file we are trying to access relative files for.
string$relativepaththe relative path to the file we are trying to access.

Reimplemented in repository_filesystem.

◆ set_option()

repository::set_option (   $options = array())

Save settings for repository instance $repo->set_option(array('api_key'=>'f2188bde132', 'name'=>'dongsheng'));.

Parameters
array$optionssettings
Return values
bool

Reimplemented in repository_youtube, repository_nextcloud, repository_flickr_public, repository_flickr, repository_filesystem, and repository_dropbox.

◆ static_function()

static repository::static_function (   $plugin,
  $function 
)
static

Call a static function.

Any additional arguments than plugin and function will be passed through.

Parameters
string$pluginrepository plugin name
string$functionfunction name
Return values
mixed

◆ supported_filetypes()

repository::supported_filetypes ( )

What kind of files will be in this repository?

Return values
arrayreturn '*' means this repository support any files, otherwise return mimetypes of files, it can be an array

Reimplemented in repository_youtube, repository_url, repository_skydrive, repository_picasa, repository_onedrive, repository_merlot, repository_googledocs, repository_flickr_public, repository_flickr, and repository_dropbox.

◆ supported_returntypes()

repository::supported_returntypes ( )

◆ supports_relative_file()

repository::supports_relative_file ( )

helper function to check if the repository supports send_relative_file.

Return values
true|false

Reimplemented in repository_filesystem.

◆ sync_external_file()

static repository::sync_external_file (   $file,
  $resetsynchistory = false 
)
static

Function repository::sync_external_file() is deprecated.

Use repository::sync_reference instead

Deprecated:
since Moodle 2.6 MDL-42016 - please do not use this function any more.
See also
repository::sync_reference()

◆ sync_reference()

repository::sync_reference ( stored_file  $file)

Performs synchronisation of an external file if the previous one has expired.

This function must be implemented for external repositories supporting FILE_REFERENCE, it is called for existing aliases when their filesize, contenthash or timemodified are requested. It is not called for internal repositories (see repository::has_moodle_files()), references to internal files are updated immediately when source is modified.

Referenced files may optionally keep their content in Moodle filepool (for thumbnail generation or to be able to serve cached copy). In this case both contenthash and filesize need to be synchronized. Otherwise repositories should use contenthash of empty file and correct filesize in bytes.

Note that this function may be run for EACH file that needs to be synchronised at the moment. If anything is being downloaded or requested from external sources there should be a small timeout. The synchronisation is performed to update the size of the file and/or to update image and re-generated image preview. There is nothing fatal if syncronisation fails but it is fatal if syncronisation takes too long and hangs the script generating a page.

Note: If you wish to call $file->get_filesize(), $file->get_contenthash() or $file->get_timemodified() make sure that recursion does not happen.

Called from stored_file::sync_external_file()

@uses stored_file::set_missingsource() @uses stored_file::set_synchronized()

Parameters
stored_file$file
Return values
boolfalse when file does not need synchronisation, true if it was synchronised

Reimplemented in repository_filesystem, repository_equella, repository_dropbox, and repository_boxnet.

◆ type_config_form()

static repository::type_config_form (   $mform,
  $classname = 'repository' 
)
static

Edit/Create Admin Settings Moodle form.

Parameters
moodleform$mformMoodle form (passed by reference)
string$classnamerepository class name

Reimplemented in repository_youtube, repository_skydrive, repository_s3, repository_recent, repository_picasa, repository_onedrive, repository_merlot, repository_googledocs, repository_flickr_public, repository_flickr, repository_dropbox, and repository_boxnet.

◆ type_form_validation()

static repository::type_form_validation (   $mform,
  $data,
  $errors 
)
static

Validate Admin Settings Moodle form.

Parameters
moodleform$mformMoodle form (passed by reference)
array$dataarray of ("fieldname"=>value) of submitted data
array$errorsarray of ("fieldname"=>errormessage) of errors
Return values
arrayarray of errors

◆ update_draftfile()

static repository::update_draftfile (   $draftid,
  $filepath,
  $filename,
  $updatedata 
)
static

Updates a file in draft filearea.

This function can only update fields filepath, filename, author, license. If anything (except filepath) is updated, timemodified is set to current time. If filename or filepath is updated the file unconnects from it's origin and therefore all references to it will be converted to copies when filearea is saved.

Parameters
int$draftid
string$filepathpath to the directory containing the file, or full path in case of directory
string$filenamename of the file, or '.' in case of directory
array$updatedataarray of fields to change (only filename, filepath, license and/or author can be updated)
Exceptions
moodle_exceptionif for any reason file can not be updated (file does not exist, target already exists, etc.)

◆ uses_post_requests()

repository::uses_post_requests ( )

Helper function to indicate if this repository uses post requests for uploading files.

Deprecated:
since Moodle 3.2, 3.1.1, 3.0.5
Return values
bool

◆ wake_from_cache()

static repository::wake_from_cache (   $data)
static

Restores the repository from cache.

Implements method from cacheable_object interface.

Return values
array

Implements cacheable_object.

Member Data Documentation

◆ $typename

string repository::$typename
protected

Type of repository (webdav, google_docs, dropbox, ...).

Read from $this->get_typename().

◆ GETFILE_TIMEOUT

const repository::GETFILE_TIMEOUT = 30

Timeout in seconds for downloading the external file into moodle.

Deprecated:
since Moodle 2.7, please use $CFG->repositorygetfiletimeout instead

◆ SYNCFILE_TIMEOUT

const repository::SYNCFILE_TIMEOUT = 1

Timeout in seconds for syncronising the external file size.

Deprecated:
since Moodle 2.7, please use $CFG->repositorysyncfiletimeout instead

◆ SYNCIMAGE_TIMEOUT

const repository::SYNCIMAGE_TIMEOUT = 3

Timeout in seconds for downloading an image file from external repository during syncronisation.

Deprecated:
since Moodle 2.7, please use $CFG->repositorysyncimagetimeout instead

The documentation for this class was generated from the following file: