4 require_once(
"./Services/FileSystem/classes/class.ilFileData.php");
40 define(
'FORUM_PATH',
'forum');
41 parent::__construct();
42 $this->forum_path = parent::getPath().
"/".FORUM_PATH;
49 $this->obj_id = $a_obj_id;
50 $this->pos_id = $a_pos_id;
63 $this->pos_id = $a_id;
78 public function getFiles()
93 list($obj_id,
$rest) = explode(
'_', $file->getFilename(), 2);
94 if($obj_id == $this->obj_id)
97 'path' => $file->getPathname(),
98 'md5' => md5($this->obj_id .
'_' . $this->pos_id .
'_' .
$rest),
100 'size' => $file->getSize(),
112 public function getFilesOfPost()
127 list($obj_id,
$rest) = explode(
'_', $file->getFilename(), 2);
128 if($obj_id == $this->obj_id)
130 list($pos_id,
$rest) = explode(
'_',
$rest, 2);
134 'path' => $file->getPathname(),
135 'md5' => md5($this->obj_id .
'_' . $this->pos_id .
'_' .
$rest),
137 'size' => $file->getSize(),
151 public function moveFilesOfPost($a_new_frm_id = 0)
153 if((
int)$a_new_frm_id)
166 list($obj_id,
$rest) = explode(
'_', $file->getFilename(), 2);
167 if($obj_id == $this->obj_id)
169 list($pos_id,
$rest) = explode(
'_',
$rest, 2);
172 @rename($file->getPathname(), $this->forum_path .
'/' .$a_new_frm_id .
'_' . $this->pos_id .
'_' .
$rest);
185 foreach($this->getFilesOfPost() as
$file)
187 @copy($this->
getForumPath().
"/".$this->obj_id.
"_".$this->pos_id.
"_".$file[
"name"],
188 $this->getForumPath().
"/".$a_new_obj_id.
"_".$a_new_pos_id.
"_".$file[
"name"]);
194 foreach($this->getFiles() as
$file)
215 if(isset($files[
'name']) && is_array($files[
'name']))
217 foreach($files[
'name'] as $index => $name)
220 while(substr($name, -1) ==
'/')
222 $name = substr($name, 0, -1);
225 $temp_name = $files[
'tmp_name'][$index];
226 $error = $files[
'error'][$index];
228 if(strlen(
$filename) && strlen($temp_name) && $error == 0)
239 else if(isset($files[
'name']) && is_string($files[
'name']))
242 while(substr($files[
'name'], -1) ==
'/')
244 $files[
'name'] = substr($files[
'name'], 0, -1);
247 $temp_name = $files[
'tmp_name'];
267 if(is_array($a_filenames))
269 foreach($a_filenames as
$file)
287 if(file_exists($this->forum_path.
'/'.$this->obj_id.
'_'.$this->pos_id.
'_'.$a_filename))
289 return unlink($this->forum_path.
'/'.$this->obj_id.
'_'.$this->pos_id.
"_".$a_filename);
300 return $this->forum_path.
'/'.$this->obj_id.
'_'.$this->pos_id.
"_".$a_path;
312 foreach((array)$files as
$file)
314 if($file[
'type'] ==
'file' && md5($file[
'entry']) == $a_md5_filename)
317 'path' => $this->forum_path.
'/'.$file[
'entry'],
318 'filename' => $file[
'entry'],
319 'clean_filename' => str_replace($this->obj_id.
'_'.$this->pos_id.
'_',
'', $file[
'entry'])
336 if(is_array($a_md5_filename))
338 foreach((array)$files as
$file)
340 if($file[
'type'] ==
'file' && in_array(md5($file[
'entry']), $a_md5_filename))
342 unlink( $this->forum_path.
'/'.$file[
'entry'] );
350 foreach((array)$files as
$file)
352 if($file[
'type'] ==
'file' && md5($file[
'entry']) == $a_md5_filename)
354 return unlink( $this->forum_path.
'/'.$file[
'entry'] );
372 foreach($a_files as
$file)
374 if(!file_exists($this->forum_path.
'/'.$this->obj_id.
'_'.$this->pos_id.
'_'.$file))
403 if(is_writable($this->forum_path) && is_readable($this->forum_path))
409 $this->
ilias->raiseError(
"Forum directory is not readable/writable by webserver",$this->
ilias->error_obj->FATAL);
420 if(is_writable($this->
getPath()))
422 if(mkdir($this->
getPath().
'/'.FORUM_PATH))
424 if(chmod($this->
getPath().
'/'.FORUM_PATH,0755))
426 $this->forum_path = $this->
getPath().
'/'.FORUM_PATH;
442 if(file_exists($a_path))
445 return rename($a_path,$a_path.
'.old');
checkFilesExist($a_files)
check if files exist
unlinkFiles($a_filenames)
unlink files: expects an array of filenames e.g.
__checkReadWrite()
check if directory is writable overwritten method from base class private
getAbsolutePath($a_path)
get absolute path of filename
static getDir($a_dir, $a_rec=false, $a_sub_dir="")
get directory
__construct($a_obj_id=0, $a_pos_id=0)
Constructor call base constructors checks if directory is writable and sets the optional obj_id...
static _sanitizeFilemame($a_filename)
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) ...
unlinkFilesByMD5Filenames($a_md5_filename)
get file data of a specific attachment
__rotateFiles($a_path)
rotate files with same name recursive method
unlinkFile($a_filename)
unlink one uploaded file expects a filename e.g 'foo'
This class handles all operations on files for the forum object.
getFileDataByMD5Filename($a_md5_filename)
get file data of a specific attachment
ilClone($a_new_obj_id, $a_new_pos_id)
__initDirectory()
init directory overwritten method public
getForumPath()
get forum path public
storeUploadedFile($files)
Store uploaded files in filesystem.