19 declare(strict_types=1);
29 private readonly \ILIAS\ResourceStorage\Services
$irss;
30 private readonly \ILIAS\FileUpload\FileUpload
$upload;
37 public function __construct(
private readonly
int $obj_id = 0,
private int $pos_id = 0)
40 $this->irss = $DIC->resourceStorage();
41 $this->
upload = $DIC->upload();
52 if ($use_cache && isset($this->posting_cache[$posting_id])) {
53 return $this->posting_cache[$posting_id];
56 return $this->posting_cache[$posting_id] =
new ilForumPost($posting_id);
61 return $this->collection_cache[$this->pos_id] ?? ($this->collection_cache[$this->pos_id] = $this->irss->collection(
63 $this->irss->collection()->id(
72 $revision = $this->irss->manage()->getCurrentRevision($identification);
73 if ($revision->getTitle() === $hash) {
74 return $identification;
91 public function setPosId(
int $posting_id): void
93 $this->pos_id = $posting_id;
98 return self::FORUM_PATH_RCID;
108 $revision = $this->irss->manage()->getCurrentRevision($identification);
109 $info = $revision->getInformation();
110 $files[$info->getTitle()] = [
111 'path' => $this->irss->consume()->stream($identification)->getStream()->getMetadata(
'uri'),
112 'md5' => $revision->getTitle(),
113 'name' => $info->getTitle(),
114 'size' => $info->getSize(),
115 'ctime' => $info->getCreationDate()->format(
'Y-m-d H:i:s')
128 public function ilClone(
int $new_obj_id,
int $new_posting_id): bool
131 $new_collection_id = $this->irss->collection()->clone($current_collection_id);
133 $new_posting->setRCID($new_collection_id->serialize());
134 $new_posting->update();
139 public function delete(?array $posting_ids_to_delete =
null):
bool 141 if ($posting_ids_to_delete ===
null) {
145 foreach ($posting_ids_to_delete as $post_id) {
146 $this->irss->collection()->remove(
147 $this->irss->collection()->id(
160 if (!$this->
upload->hasBeenProcessed()) {
165 foreach ($this->
upload->getResults() as $result) {
166 if (!$result->isOK()) {
169 $rid = $this->irss->manage()->upload(
172 md5($result->getName())
174 $collection->add($rid);
176 $this->irss->collection()->store($collection);
178 $posting->setRCID($collection->getIdentification()->serialize());
187 $revision = $this->irss->manage()->getCurrentRevision($identification);
188 if ($revision->getTitle() === md5($filename)) {
189 $this->irss->manage()->remove($identification, $this->stakeholder);
202 $revision = $this->irss->manage()->getCurrentRevision($identification);
203 if ($revision->getTitle() === $hashed_filename) {
204 $info = $revision->getInformation();
207 'filename' => $info->getTitle(),
208 'clean_filename' => $info->getTitle()
221 $hashes = is_array($hashed_filename_or_filenames)
222 ? $hashed_filename_or_filenames
223 : [$hashed_filename_or_filenames];
225 foreach ($hashes as $hash) {
227 if ($identification !==
null) {
228 $this->irss->manage()->remove($identification, $this->stakeholder);
239 $this->irss->consume()->download($rid)->run();
253 ->downloadCollection($rcid, $zip_filename)
254 ->useRevisionTitlesForFileNames(
false)
263 $rcid = $this->irss->collection()->id();
264 $post->
setRCID($rcid->serialize());
267 $rcid = $this->irss->collection()->id($post->
getRCID());
270 $collection = $this->irss->collection()->get($rcid);
271 $rid = $this->irss->manage()->stream(
272 Streams::ofResource(fopen($path_to_file,
'rb')),
274 md5(basename($path_to_file))
276 $collection->add($rid);
277 $this->irss->collection()->store($collection);
static returnASCIIFileName(string $original_filename)
Converts a UTF-8 filename to ASCII.
getResourceIdByHash(string $hash)
deliverFile(string $file)
importFileToCollection(string $path_to_file, ilForumPost $post)
unlinkFile(string $filename)
ilClone(int $new_obj_id, int $new_posting_id)
getCurrentPosting(bool $use_cache=true)
readonly ilForumPostingFileStakeholder $stakeholder
Class ResourceCollection.
unlinkFilesByMD5Filenames($hashed_filename_or_filenames)
__construct(private readonly int $obj_id=0, private int $pos_id=0)
setPosId(int $posting_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPostingById(int $posting_id, bool $use_cache=true)
readonly ILIAS FileUpload FileUpload $upload
readonly ILIAS ResourceStorage Services $irss
Class ResourceIdentification.
getFileDataByMD5Filename(string $hashed_filename)
moveFilesOfPost(int $new_frm_id=0)