5 require_once
'Modules/File/classes/class.ilObjFile.php';
47 $this->versioning_enabled = (bool) $settings->get(
'webdav_versioning_enabled',
true);
74 if ($this->repo_helper->checkAccess(
'write', $this->getRefId())) {
76 if ($this->versioning_enabled ===
true) {
86 throw new Exception\Forbidden(
"Permission denied. No write access for this file");
99 if ($this->repo_helper->checkAccess(
"read", $this->obj->getRefId())) {
102 if (file_exists($file)) {
103 return fopen($file,
'r');
105 throw new Exception\NotFound(
"File not found");
109 throw new Exception\Forbidden(
"Permission denied. No read access for this file");
131 return $this->obj->guessFileType();
169 return $this->obj->getFileSize();
180 if ($this->dav_helper->isValidFileNameWithValidFileExtension($a_name)) {
181 parent::setName($a_name);
183 throw new Exception\Forbidden(
"Invalid file extension");
201 if ($a_file_action ===
'replace') {
202 $this->obj->deleteVersions();
203 $this->obj->clearDataDirectory();
205 $this->obj->setFileName($this->
getName());
209 if (!file_exists($file_dest_path)) {
213 $written_length = $this->
uploadFile($a_data, $file_dest_path);
217 throw new Exception\Forbidden(
'File is too big');
225 $this->obj->setFileSize($written_length);
226 if ($this->obj->update()) {
240 protected function uploadFile($a_data,
string $file_dest_path)
242 $written_length = file_put_contents($file_dest_path, $a_data);
243 if ($written_length ===
false && strlen($a_data) > 0) {
244 throw new Exception\Forbidden(
'Forbidden to write file');
246 return $written_length;
251 return $this->obj->getDirectory($this->obj->getVersion());
277 if ($vrs[0] ==
false) {
278 ilLoggerFactory::getLogger(
'WebDAV')->error(get_class($this) .
' ' . $this->obj->getTitle() .
" -> virus found on '$file_dest_path'!");
280 throw new Exception\Forbidden(
'Virus found!');
291 if ($this->obj->getFileSize() > 0) {
293 $this->obj->setVersion($this->obj->getMaxVersion() + 1);
294 $this->obj->setMaxVersion($this->obj->getMaxVersion() + 1);
309 ilHistory::_createEntry($this->obj->getId(), $a_action, $this->obj->getTitle() .
"," . $this->obj->getVersion() .
"," . $this->obj->getMaxVersion());
313 $this->obj->addNewsNotification(
"file_updated");
321 if ($this->obj->getVersion() > 1) {
322 $version_dir = $this->obj->getDirectory($this->obj->getVersion());
325 $this->obj->deleteVersions();
326 $this->obj->delete();
uploadFile($a_data, string $file_dest_path)
Write given data (as string) to the given file.
static makeDirParents($a_dir)
Create a new directory and all parent directories.
getSize()
Returns the size of the node, in bytes.
static virusHandling($a_file, $a_orig_name="", $a_clean=true)
scan file for viruses and clean files if possible
getPathToFile()
This method is called in 2 use cases:
put($data)
Replaces the contents of the file.
Class ilWebDAVRepositoryHelper.
deleteObjOrVersion()
Delete an object if there is no other version in it otherwise delete version.
static lookupMimeType($path_to_file, $fallback=self::APPLICATION__OCTET_STREAM, $a_external=null)
static _createEntry( $a_obj_id, $a_action, $a_info_params="", $a_obj_type="", $a_user_comment="", $a_update_last=false)
Creates a new history entry for an object.
handleFileUpload($a_data, $a_file_action)
Handle uploaded file.
Class ilWebDAVObjDAVHelper.
setObjValuesForNewFileVersion()
Set object values for a new file version.
static getUploadSizeLimitBytes()
static createPreview($a_obj, $a_force=false)
Creates the preview for the object with the specified id.
__construct(Container $dic, ilPlugin $plugin)
static getLogger($a_component_id)
Get component logger.
createHistoryAndNotificationForObjUpdate($a_action)
Create history entry and a news notification for file object update.
getName()
Returns title of file object.
__construct(ilObjFile $a_obj, ilWebDAVRepositoryHelper $repo_helper, ilWebDAVObjDAVHelper $dav_helper)
ilObjFileDAV represents the WebDAV-Interface to an ILIAS-Object
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
checkForVirus(string $file_dest_path)
getETag()
Returns the ETag for a file.
static getValidFilename($a_filename)
Get valid filename.
getContentType()
Returns the mime-type for a file.