19 declare(strict_types=1);
36 public function __construct(
int $a_obj_id = 0,
int $a_pos_id = 0)
39 $this->main_tpl = $DIC->ui()->mainTemplate();
41 $this->error = $DIC[
'ilErr'];
44 $this->forum_path = $this->
getPath() .
'/' . self::FORUM_PATH;
49 $this->obj_id = $a_obj_id;
50 $this->pos_id = $a_pos_id;
65 $this->pos_id = $a_id;
76 public function getFiles(): array
78 $directory_iterator =
new DirectoryIterator($this->forum_path);
79 $filter_iterator =
new RegexIterator($directory_iterator,
"/^{$this->obj_id}_(.+)$/");
82 foreach ($filter_iterator as $file) {
84 if (!$file->isFile()) {
88 [
$obj_id,
$rest] = explode(
'_', $file->getFilename(), 2);
91 'path' => $file->getPathname(),
92 'md5' => md5($this->obj_id .
'_' .
$rest),
94 'size' => $file->getSize(),
95 'ctime' => date(
'Y-m-d H:i:s', $file->getCTime())
108 $directoryIterator =
new DirectoryIterator($this->forum_path);
109 $filterIterator =
new RegexIterator($directoryIterator,
"/^{$this->obj_id}_{$this->getPosId()}_(.+)$/");
112 foreach ($filterIterator as $file) {
113 if ($file->isFile()) {
114 list($obj_id, $pos_id,
$rest) = explode(
'_', $file->getFilename(), 3);
115 $files[
$rest] = array(
116 'path' => $file->getPathname(),
117 'md5' => md5($this->obj_id .
'_' . $this->pos_id .
'_' .
$rest),
119 'size' => $file->getSize(),
120 'ctime' => date(
'Y-m-d H:i:s', $file->getCTime())
128 public function moveFilesOfPost(
int $a_new_frm_id = 0):
bool 131 $directory_iterator =
new DirectoryIterator($this->forum_path);
132 $filter_iterator =
new RegexIterator($directory_iterator,
"/^{$this->obj_id}_(\d+)_(.+)$/");
134 foreach ($filter_iterator as $file) {
136 if (!$file->isFile()) {
141 if ((
int) $obj_id !== $this->obj_id || (
int) $pos_id !== $this->
getPosId()) {
146 $file->getPathname(),
147 $this->forum_path .
'/' . $a_new_frm_id .
'_' . $this->pos_id .
'_' .
$rest 157 public function ilClone(
int $a_new_obj_id,
int $a_new_pos_id): bool
161 $this->
getForumPath() .
'/' . $this->obj_id .
'_' . $this->pos_id .
'_' . $file[
'name'],
162 $this->
getForumPath() .
'/' . $a_new_obj_id .
'_' . $a_new_pos_id .
'_' . $file[
'name']
168 public function delete():
bool 170 foreach ($this->getFiles() as $file) {
181 if (isset($files[
'name']) && is_array($files[
'name'])) {
185 $temp_name = $files[
'tmp_name'][
$index];
186 $error = $files[
'error'][
$index];
188 if (
$filename !==
'' && $temp_name !==
'' && (
int) $error === 0) {
199 if (isset($files[
'name']) && is_string($files[
'name'])) {
200 $files[
'name'] = rtrim($files[
'name'],
'/');
202 $temp_name = $files[
'tmp_name'];
217 if (is_file($this->forum_path .
'/' . $this->obj_id .
'_' . $this->pos_id .
'_' . $a_filename)) {
218 return unlink($this->forum_path .
'/' . $this->obj_id .
'_' . $this->pos_id .
'_' . $a_filename);
231 foreach ($files as $file) {
232 if ($file[
'type'] ===
'file' && md5($file[
'entry']) === $hashedFilename) {
234 'path' => $this->forum_path .
'/' . $file[
'entry'],
235 'filename' => $file[
'entry'],
236 'clean_filename' => str_replace($this->obj_id .
'_' . $this->pos_id .
'_',
'', $file[
'entry'])
251 if (is_array($hashedFilenameOrFilenames)) {
252 foreach ($files as $file) {
253 if ($file[
'type'] ===
'file' && in_array(md5($file[
'entry']), $hashedFilenameOrFilenames,
true)) {
254 unlink($this->forum_path .
'/' . $file[
'entry']);
261 foreach ($files as $file) {
262 if ($file[
'type'] ===
'file' && md5($file[
'entry']) === $hashedFilenameOrFilenames) {
263 return unlink($this->forum_path .
'/' . $file[
'entry']);
282 if (!is_writable($this->forum_path) || !is_readable($this->forum_path)) {
283 $this->error->raiseError(
'Forum directory is not readable/writable by webserver', $this->error->FATAL);
289 if (is_writable($this->
getPath()) && mkdir($this->
getPath() .
'/' . self::FORUM_PATH) && chmod(
290 $this->
getPath() .
'/' . self::FORUM_PATH,
293 $this->forum_path = $this->
getPath() .
'/' . self::FORUM_PATH;
299 if (is_file($a_path)) {
312 $this->main_tpl->setOnScreenMessage(
'failure', $DIC->lanuage()->txt(
'error_reading_file'),
true);
322 $this->main_tpl->setOnScreenMessage(
'failure', $DIC->language()->txt(
'error_reading_file'),
true);
329 $DIC->http()->close();
340 foreach ($filesOfPost as $file) {
341 copy($file[
'path'], $tmp_dir .
'/' . $file[
'name']);
getFileDataByMD5Filename(string $hashedFilename)
deliverFile(string $file)
rotateFiles(string $a_path)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
unlinkFilesByMD5Filenames($hashedFilenameOrFilenames)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
static _sanitizeFilemame(string $a_filename)
__construct(int $a_obj_id=0, int $a_pos_id=0)
Error Handling & global info handling uses PEAR error class.
__construct(Container $dic, ilPlugin $plugin)
This class handles all operations on files for the forum object.
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
storeUploadedFile(array $files)
static rename(string $a_source, string $a_target)
unlinkFile(string $a_filename)
ilGlobalTemplateInterface $main_tpl
ilClone(int $a_new_obj_id, int $a_new_pos_id)