4 require_once(
"./Services/FileSystem/classes/class.ilFileData.php");
39 die (
"ilFileDataExercise is deprecated.");
40 define(
'EXERCISE_PATH',
'exercise');
42 $this->exercise_path = parent::getPath().
"/".EXERCISE_PATH;
49 $this->obj_id = $a_obj_id;
70 $dp = opendir($this->exercise_path);
72 while(
$file = readdir($dp))
79 if($obj_id == $this->obj_id)
81 if(!is_dir($this->exercise_path.
'/'.
$file))
85 'size' => filesize($this->exercise_path.
'/'.
$file),
87 'fullpath' => $this->exercise_path.
'/'.
$file);
100 $this->getExercisePath().
"/".$a_new_obj_id.
'_'.$file[
"name"]);
111 $delivered_file_path = $this->
getExercisePath() .
"/" . $this->obj_id .
"/";
112 if (is_dir($delivered_file_path))
114 include_once
"./Services/Utilities/classes/class.ilUtil.php";
134 if ($secure_filename)
141 if(isset($a_http_post_file) && $a_http_post_file[
'size'])
156 rename($a_http_post_file[
'tmp_name'],
177 if ($secure_filename)
184 if(count($content) > 0 )
193 if (!$vir[0] ||$vir[1] !=
"")
211 require_once
"./Services/Utilities/classes/class.ilUtil.php";
212 global
$lng, $ilObjDataCache;
223 if (!is_dir($savepath))
238 foreach ($members as $id => $object) {
239 $directory = $savepath.DIRECTORY_SEPARATOR.$id;
242 if ($dirsize > disk_free_space($tmpdir)) {
251 foreach ($members as $id => $user)
253 $sourcedir = $savepath.DIRECTORY_SEPARATOR.$id;
254 if (!is_dir($sourcedir))
258 trim($userName[
"firstname"]).
"_".trim($userName[
"login"]).
"_".$userName[
"user_id"]);
269 $cache[$directory] = $directory;
271 $sourcefiles = scandir($sourcedir);
272 foreach ($sourcefiles as $sourcefile) {
273 if ($sourcefile ==
"." || $sourcefile ==
"..")
275 $targetfile = trim(basename($sourcefile));
276 $pos = strpos($targetfile,
"_");
281 $targetfile= substr($targetfile, $pos + 1);
283 $targetfile = $directory.DIRECTORY_SEPARATOR.$targetfile;
284 $sourcefile = $sourcedir.DIRECTORY_SEPARATOR.$sourcefile;
286 if (!copy ($sourcefile, $targetfile))
289 $this->
ilias->raiseError(
'Could not copy '.basename($sourcefile).
" to '".$targetfile.
"'.",
290 $this->ilias->error_obj->MESSAGE);
295 touch($targetfile, filectime($sourcefile));
302 $tmpzipfile = $tmpfile .
".zip";
308 $exerciseTitle = $ilObjDataCache->lookupTitle($this->
getObjId());
309 ilUtil::deliverFile($tmpzipfile, (strlen($exerciseTitle) == 0? strtolower($lng->txt(
"excs")) : $exerciseTitle).
".zip");
324 if(is_array($a_filenames))
326 foreach($a_filenames as
$file)
344 if(file_exists($this->exercise_path.
'/'.$this->obj_id.
'_'.$a_filename))
346 return unlink($this->exercise_path.
'/'.$this->obj_id.
'_'.$a_filename);
357 return $this->exercise_path.
'/'.$this->obj_id.
'_'.$a_path;
370 foreach($a_files as
$file)
372 if(!file_exists($this->exercise_path.
'/'.$this->obj_id.
'_'.$file))
401 if(is_writable($this->exercise_path) && is_readable($this->exercise_path))
407 $this->
ilias->raiseError(
"Exercise directory is not readable/writable by webserver",$this->
ilias->error_obj->FATAL);
418 if(is_writable($this->
getPath()))
433 if(file_exists($a_path))
436 return rename($a_path,$a_path.
'.old');
static _lookupName($a_user_id)
lookup user name
static virusHandling($a_file, $a_orig_name="", $a_clean=true)
scan file for viruses and clean files if possible
getAbsolutePath($a_path)
get absolute path of filename
This class handles all operations on files for the exercise object.
storeUploadedFile($a_http_post_file, $secure_filename=false, $is_unziped=false)
store uploaded file in filesystem
__rotateFiles($a_path)
rotate files with same name recursive method
static getASCIIFilename($a_filename)
convert utf8 to ascii filename
getExercisePath()
get exercise path public
checkFilesExist($a_files)
check if files exist
downloadAllDeliveredFiles($members)
Download all submitted files of all members.
This class handles all operations on files in directory /ilias_data/.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
redirection script todo: (a better solution should control the processing via a xml file) ...
__initDirectory()
init directory overwritten method public
storeContentAsFile($filename, $content, $secure_filename=false)
store content as file in filesystem
unlinkFile($a_filename)
unlink one uploaded file expects a filename e.g 'foo'
static deliverFile($a_file, $a_filename, $a_mime='', $isInline=false, $removeAfterDelivery=false, $a_exit_after=true)
deliver file for download via browser.
unlinkFiles($a_filenames)
unlink files: expects an array of filenames e.g.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static dirsize($directory)
get size of a directory or a file.
static ilTempnam()
Create a temporary file in an ILIAS writable directory.
static escapeShellArg($a_arg)
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
ilFileDataExercise($a_obj_id=0)
Constructor call base constructors checks if directory is writable and sets the optional obj_id...
__checkReadWrite()
check if directory is writable overwritten method from base class private