19 declare(strict_types=1);
38 $this->main_tpl = $DIC->ui()->mainTemplate();
40 $this->
lng = $DIC->language();
41 $this->error = $DIC[
'ilErr'];
47 $this->drafts_path = $this->
getPath() .
'/forum/drafts';
82 public function getFiles(): array
93 'path' => $file->getPathname(),
94 'md5' => md5($file->getFilename()),
95 'name' => $file->getFilename(),
96 'size' => $file->getSize(),
97 'ctime' => date(
'Y-m-d H:i:s', $file->getCTime())
107 public function getFilesOfPost(): array
116 if ($file->isDir()) {
120 $files[$file->getFilename()] = [
121 'path' => $file->getPathname(),
122 'md5' => md5($file->getFilename()),
123 'name' => $file->getFilename(),
124 'size' => $file->getSize(),
125 'ctime' => date(
'Y-m-d H:i:s', $file->getCTime())
134 foreach ($this->getFilesOfPost() as $file) {
137 $forum_path .
'/' . $this->obj_id .
'_' . $new_post_id .
'_' . $file[
'name']
144 public function delete():
bool 152 if (isset($files[
'name']) && is_array($files[
'name'])) {
156 $temp_name = $files[
'tmp_name'][
$index];
157 $error = $files[
'error'][
$index];
159 if (
$filename !==
'' && $temp_name !==
'' && (
int) $error === 0) {
170 if (isset($files[
'name']) && is_string($files[
'name'])) {
171 $files[
'name'] = rtrim($files[
'name'],
'/');
173 $temp_name = $files[
'tmp_name'];
202 foreach ($files as $file) {
203 if ($file[
'type'] ===
'file' && md5($file[
'entry']) === $hashedFilename) {
206 'filename' => $file[
'entry'],
207 'clean_filename' => $file[
'entry']
222 if (is_array($hashedFilenameOrFilenames)) {
223 foreach ($files as $file) {
224 if ($file[
'type'] ===
'file' && in_array(md5($file[
'entry']), $hashedFilenameOrFilenames,
true)) {
232 foreach ($files as $file) {
233 if ($file[
'type'] ===
'file' && md5($file[
'entry']) === $hashedFilenameOrFilenames) {
257 $this->error->raiseError(
'Forum directory is not readable/writable by webserver', $this->error->FATAL);
273 if (is_file($a_path)) {
284 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_reading_file'),
true);
294 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_reading_file'),
true);
301 $DIC->http()->close();
307 $filesOfDraft = $this->getFilesOfPost();
311 if (count($filesOfDraft)) {
312 ksort($filesOfDraft);
314 foreach ($filesOfDraft as $file) {
315 copy($file[
'path'], $tmp_dir .
'/' . $file[
'name']);
unlinkFile(string $a_filename)
deliverFile(string $file)
__construct(int $obj_id, int $draft_id)
ilGlobalTemplateInterface $main_tpl
This class handles all operations on files for the drafts of a forum object.
unlinkFilesByMD5Filenames($hashedFilenameOrFilenames)
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)
setDraftId(int $draft_id)
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
getFileDataByMD5Filename(string $hashedFilename)
static _sanitizeFilemame(string $a_filename)
Error Handling & global info handling uses PEAR error class.
__construct(Container $dic, ilPlugin $plugin)
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
static rename(string $a_source, string $a_target)
static newInstanceByDraftId(int $draft_id)
moveFilesOfDraft(string $forum_path, int $new_post_id)
storeUploadedFile(array $files)