Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
File system class used for low level access to real files in filedir. More...
Public Member Functions | |
__construct () | |
Perform any custom setup for this type of file_system. | |
add_file_from_path ($pathname, $contenthash=null) | |
Add the supplied file to the file system. | |
add_file_from_string ($content) | |
Add a file with the supplied content to the file system. | |
add_storedfile_to_archive (stored_file $file, file_archive $filearch, $archivepath) | |
Add file/directory into archive. | |
add_to_curl_request (stored_file $file, &$curlrequest, $key) | |
Adds this file path to a curl request (POST only). | |
copy_content_from_storedfile (stored_file $file, $target) | |
Copy content of file to given pathname. | |
cron () | |
Cleanup the trash directory. | |
extract_to_pathname (stored_file $file, file_packer $packer, $pathname, file_progress $progress=null) | |
Extract file to given file path (real OS filesystem), existing files are overwritten. | |
extract_to_storage (stored_file $file, file_packer $packer, $contextid, $component, $filearea, $itemid, $pathbase, $userid=null, file_progress $progress=null) | |
Extract file to given file path (real OS filesystem), existing files are overwritten. | |
get_content (stored_file $file) | |
Get the content of the specified stored file. | |
get_content_file_handle (stored_file $file, $type=stored_file::FILE_HANDLE_FOPEN) | |
Returns file handle - read only mode, no writing allowed into pool files! | |
get_imageinfo (stored_file $file) | |
Returns information about image. | |
get_local_path_from_storedfile (stored_file $file, $fetchifnotfound=false) | |
Get a remote filepath for the specified stored file. | |
get_psr_stream (stored_file $file) | |
Get a PSR7 Stream for the specified file which implements the PSR Message StreamInterface. | |
get_remote_path_from_storedfile (stored_file $file) | |
Get a remote filepath for the specified stored file. | |
is_file_readable_locally_by_hash ($contenthash, $fetchifnotfound=false) | |
Determine whether the file is present on the file system somewhere given the contenthash. | |
is_file_readable_locally_by_storedfile (stored_file $file, $fetchifnotfound=false) | |
Determine whether the file is present on the file system somewhere. | |
is_file_readable_remotely_by_hash ($contenthash) | |
Determine whether the file is present locally on the file system somewhere given the contenthash. | |
is_file_readable_remotely_by_storedfile (stored_file $file) | |
Determine whether the file is present on the local file system somewhere. | |
is_image_from_storedfile (stored_file $file) | |
Attempt to determine whether the specified file is likely to be an image. | |
list_files ($file, file_packer $packer) | |
List contents of archive. | |
mimetype_from_hash ($contenthash, $filename) | |
Retrieve the mime information for the specified stored file. | |
mimetype_from_storedfile ($file) | |
Retrieve the mime information for the specified stored file. | |
readfile (stored_file $file) | |
Output the content of the specified stored file. | |
remove_file ($contenthash) | |
Marks pool file as candidate for deleting. | |
supports_xsendfile () | |
Returns true if filesystem is configured to support xsendfile. | |
xsendfile ($contenthash) | |
Serve file content using X-Sendfile header. | |
xsendfile_file (stored_file $file) | |
Serve file content using X-Sendfile header. | |
Protected Member Functions | |
empty_trash () | |
get_contentdir_from_hash ($contenthash) | |
Get the content directory for the specified content hash. | |
get_contentpath_from_hash ($contenthash) | |
Get the content path for the specified content hash within filedir. | |
get_fulldir_from_hash ($contenthash) | |
Get the full directory to the stored file, including the path to the filedir, and the directory which the file is actually in. | |
get_fulldir_from_storedfile (stored_file $file) | |
Get the full directory to the stored file, including the path to the filedir, and the directory which the file is actually in. | |
get_imageinfo_from_path ($path) | |
Returns image information relating to the specified path or URL. | |
get_local_path_from_hash ($contenthash, $fetchifnotfound=false) | |
Get the full path for the specified hash, including the path to the filedir. | |
get_remote_path_from_hash ($contenthash) | |
Get the full path for the specified hash, including the path to the filedir. | |
get_trash_fulldir_from_hash ($contenthash) | |
Get the full directory for the specified hash in the trash, including the path to the trashdir, and the directory which the file is actually in. | |
get_trash_fullpath_from_hash ($contenthash) | |
Get the full path for the specified hash in the trash, including the path to the trashdir. | |
recover_file (stored_file $file) | |
Tries to recover missing content of file from trash. | |
validate_hash_and_file_size ($contenthash, $pathname) | |
Validate that the content hash matches the content hash of the file on disk. | |
Static Protected Member Functions | |
static | check_file_exists_and_get_size (string $hashfile) |
Checks if the file exists and gets its size. | |
static | get_file_handle_for_path ($path, $type=stored_file::FILE_HANDLE_FOPEN) |
Return a file handle for the specified path. | |
static | is_file_removable ($contenthash) |
Check whether a file is removable. | |
File system class used for low level access to real files in filedir.
file_system_filedir::add_file_from_path | ( | $pathname, | |
$contenthash = null ) |
Add the supplied file to the file system.
Note: If overriding this function, it is advisable to store the file in the path returned by get_local_path_from_hash as there may be subsequent uses of the file in the same request.
string | $pathname | Path to file currently on disk |
string | $contenthash | SHA1 hash of content if known (performance only) |
array | (contenthash, filesize, newfile) |
Reimplemented from file_system.
file_system_filedir::add_file_from_string | ( | $content | ) |
Add a file with the supplied content to the file system.
Note: If overriding this function, it is advisable to store the file in the path returned by get_local_path_from_hash as there may be subsequent uses of the file in the same request.
string | $content | file content - binary string |
array | (contenthash, filesize, newfile) |
Reimplemented from file_system.
|
inherited |
Add file/directory into archive.
stored_file | $file | The file to archive |
file_archive | $filearch | file archive instance |
string | $archivepath | pathname in archive |
bool | success |
|
inherited |
Adds this file path to a curl request (POST only).
stored_file | $file | The file to add to the curl request |
curl | $curlrequest | The curl request object |
string | $key | What key to use in the POST request |
void | This needs the fullpath for the storedfile :/ Can this be achieved in some other fashion? |
|
staticprotected |
Checks if the file exists and gets its size.
This function avoids a specific issue with networked file systems if they incorrectly report the file exists, but then decide it doesn't as soon as you try to get the file size.
string | $hashfile | File to check |
int|null | Null if the file does not exist, or the result of filesize(), or -1 if error |
file_system_filedir::copy_content_from_storedfile | ( | stored_file | $file, |
$target ) |
Copy content of file to given pathname.
stored_file | $file | The file to be copied |
string | $target | real path to the new file |
bool | success |
Reimplemented from file_system.
file_system_filedir::cron | ( | ) |
Cleanup the trash directory.
Reimplemented from file_system.
|
inherited |
Extract file to given file path (real OS filesystem), existing files are overwritten.
stored_file | $file | The archive to inspect |
file_packer | $packer | File packer instance |
string | $pathname | Target directory |
file_progress | $progress | progress indicator callback or null if not required |
array|bool | List of processed files; false if error |
|
inherited |
Extract file to given file path (real OS filesystem), existing files are overwritten.
stored_file | $file | The archive to inspect |
file_packer | $packer | file packer instance |
int | $contextid | context ID |
string | $component | component |
string | $filearea | file area |
int | $itemid | item ID |
string | $pathbase | path base |
int | $userid | user ID |
file_progress | $progress | Progress indicator callback or null if not required |
array|bool | list of processed files; false if error |
|
inherited |
Get the content of the specified stored file.
Generally you will probably want to use readfile() to serve content, and where possible you should see if you can use get_content_file_handle and work with the file stream instead.
stored_file | $file | The file to retrieve |
string | The full file content |
|
inherited |
Returns file handle - read only mode, no writing allowed into pool files!
When you want to modify a file, create a new file and delete the old one.
stored_file | $file | The file to retrieve a handle for |
int | $type | Type of file handle (FILE_HANDLE_xx constant) |
resource | file handle |
|
protected |
Get the content directory for the specified content hash.
This is the directory that the file will be in, but without the fulldir.
string | $contenthash | The content hash |
string | The directory within filedir |
|
protected |
Get the content path for the specified content hash within filedir.
This does not include the filedir, and is often used by file systems as the object key for storage and retrieval.
string | $contenthash | The content hash |
string | The filepath within filedir |
|
staticprotectedinherited |
Return a file handle for the specified path.
This abstraction should be used when overriding get_content_file_handle in a new file system.
string | $path | The path to the file. This shoudl be any type of path that fopen and gzopen accept. |
int | $type | Type of file handle (FILE_HANDLE_xx constant) |
resource |
coding_exception | When an unexpected type of file handle is requested |
|
protected |
Get the full directory to the stored file, including the path to the filedir, and the directory which the file is actually in.
string | $contenthash | The content hash |
string | The full path to the content directory |
|
protected |
Get the full directory to the stored file, including the path to the filedir, and the directory which the file is actually in.
Note: This function does not ensure that the file is present on disk.
stored_file | $file | The file to fetch details for. |
string | The full path to the content directory |
|
inherited |
Returns information about image.
Information is determined from the file content
stored_file | $file | The file to inspect |
mixed | array with width, height and mimetype; false if not an image |
|
protectedinherited |
Returns image information relating to the specified path or URL.
string | $path | The full path of the image file. |
array|bool | array that containing width, height, and mimetype or false if cannot get the image info. |
|
protected |
Get the full path for the specified hash, including the path to the filedir.
string | $contenthash | The content hash |
bool | $fetchifnotfound | Whether to attempt to fetch from the remote path if not found. |
string | The full path to the content file |
Reimplemented from file_system.
file_system_filedir::get_local_path_from_storedfile | ( | stored_file | $file, |
$fetchifnotfound = false ) |
Get a remote filepath for the specified stored file.
stored_file | $file | The file to fetch the path for |
bool | $fetchifnotfound | Whether to attempt to fetch from the remote path if not found. |
string | The full path to the content file |
Reimplemented from file_system.
|
inherited |
Get a PSR7 Stream for the specified file which implements the PSR Message StreamInterface.
stored_file | $file |
StreamInterface |
|
protected |
Get the full path for the specified hash, including the path to the filedir.
string | $contenthash | The content hash |
string | The full path to the content file |
Reimplemented from file_system.
file_system_filedir::get_remote_path_from_storedfile | ( | stored_file | $file | ) |
Get a remote filepath for the specified stored file.
stored_file | $file | The file to serve. |
string | full path to pool file with file content |
Reimplemented from file_system.
|
protected |
Get the full directory for the specified hash in the trash, including the path to the trashdir, and the directory which the file is actually in.
string | $contenthash | The content hash |
string | The full path to the trash directory |
|
protected |
Get the full path for the specified hash in the trash, including the path to the trashdir.
string | $contenthash | The content hash |
string | The full path to the trash file |
|
inherited |
Determine whether the file is present on the file system somewhere given the contenthash.
string | $contenthash | The contenthash of the file to check. |
bool | $fetchifnotfound | Whether to attempt to fetch from the remote path if not found. |
bool |
|
inherited |
Determine whether the file is present on the file system somewhere.
A local copy of the file will be fetched if $fetchifnotfound is tree.
The $fetchifnotfound allows you to determine the expected path of the file.
stored_file | $file | The file to ensure is available. |
bool | $fetchifnotfound | Whether to attempt to fetch from the remote path if not found. |
bool |
|
inherited |
Determine whether the file is present locally on the file system somewhere given the contenthash.
string | $contenthash | The contenthash of the file to check. |
bool |
|
inherited |
Determine whether the file is present on the local file system somewhere.
stored_file | $file | The file to ensure is available. |
bool |
|
staticprotectedinherited |
Check whether a file is removable.
This must be called prior to file removal.
string | $contenthash |
bool |
|
inherited |
Attempt to determine whether the specified file is likely to be an image.
Since this relies upon the mimetype stored in the files table, there may be times when this information is not 100% accurate.
stored_file | $file | The file to check |
bool |
|
inherited |
List contents of archive.
stored_file | $file | The archive to inspect |
file_packer | $packer | file packer instance |
array | of file infos |
|
inherited |
Retrieve the mime information for the specified stored file.
string | $contenthash | |
string | $filename |
string | The MIME type. |
|
inherited |
Retrieve the mime information for the specified stored file.
stored_file | $file | The stored file to retrieve mime information for |
string | The MIME type. |
|
inherited |
Output the content of the specified stored file.
Note, this is different to get_content() as it uses the built-in php readfile function which is more efficient.
stored_file | $file | The file to serve. |
void |
|
protected |
Tries to recover missing content of file from trash.
stored_file | $file | stored_file instance |
bool | success |
file_system_filedir::remove_file | ( | $contenthash | ) |
Marks pool file as candidate for deleting.
string | $contenthash |
Reimplemented from file_system.
|
inherited |
Returns true if filesystem is configured to support xsendfile.
bool |
|
protectedinherited |
Validate that the content hash matches the content hash of the file on disk.
string | $contenthash | The current content hash to validate |
string | $pathname | The path to the file on disk |
array | The content hash (it might change) and file size |
|
inherited |
Serve file content using X-Sendfile header.
Please make sure that all headers are already sent and the all access control checks passed.
string | $contenthash | The content hash of the file to be served |
bool | success |
|
inherited |
Serve file content using X-Sendfile header.
Please make sure that all headers are already sent and the all access control checks passed.
This alternate method to xsendfile() allows an alternate file system to use the full file metadata and avoid extra lookups.
stored_file | $file | The file to send |
bool | success |