19 declare(strict_types=1);
48 $this->tpl = $DIC->ui()->mainTemplate();
49 $this->
lng = $DIC->language();
50 $this->
user = $DIC->user();
51 $this->
tabs = $DIC->tabs();
53 $this->ui_factory = $DIC->ui()->factory();
54 $this->ui_renderer = $DIC->ui()->renderer();
56 $this->
ctrl->saveParameter($this,
'mobj_id');
64 $this->mode = AttachmentManagement::MANAGE;
76 if (!($cmd = $this->
ctrl->getCmd())) {
77 $cmd =
'showAttachments';
81 AbstractCtrlAwareUploadHandler::CMD_UPLOAD,
82 AbstractCtrlAwareUploadHandler::CMD_INFO,
83 AbstractCtrlAwareUploadHandler::CMD_REMOVE => parent::executeCommand(),
84 default => $this->$cmd()
95 $sizeOfSelectedFiles = 0;
96 $filesOfRequest = $this->
http->wrapper()->query()->retrieve(
97 'mail_attachments_filename',
99 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->string()),
104 if ($filesOfRequest !== [] && $filesOfRequest[0] ===
'ALL_OBJECTS') {
105 $filesOfRequest =
array_map(
static function (array $file):
string {
106 return $file[
'name'];
107 }, $this->mfile->getUserFilesData());
110 foreach ($filesOfRequest as $file) {
111 if (is_file($this->mfile->getMailPath() .
'/' . basename($this->
user->getId() .
'_' . urldecode($file)))) {
112 $files[] = urldecode($file);
113 $sizeOfSelectedFiles += filesize(
114 $this->mfile->getMailPath() .
'/' .
115 basename($this->
user->getId() .
'_' . urldecode($file))
121 null !== $this->mfile->getAttachmentsTotalSizeLimit() &&
122 $sizeOfSelectedFiles > $this->mfile->getAttachmentsTotalSizeLimit()) {
123 $this->tpl->setOnScreenMessage(
125 $this->
lng->txt(
'mail_max_size_attachments_total_error') .
' ' .
132 $this->umail->saveAttachments($files);
134 $this->
ctrl->returnToParent($this);
140 $this->
ctrl->returnToParent($this);
145 $files = $this->
http->wrapper()->query()->retrieve(
146 'mail_attachments_filename',
148 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->string()),
153 if ($files !== [] && $files[0] ===
'ALL_OBJECTS') {
154 $files =
array_map(
static function (array $file):
string {
155 return $file[
'name'];
156 }, $this->mfile->getUserFilesData());
160 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'),
true);
161 $this->
ctrl->redirect($this);
164 $this->tpl->setTitle($this->
lng->txt(
'mail'));
167 $confirmation->setFormAction($this->
ctrl->getFormAction($this,
'confirmDeleteAttachments'));
168 $confirmation->setConfirm($this->
lng->txt(
'confirm'),
'confirmDeleteAttachments');
169 $confirmation->setCancel($this->
lng->txt(
'cancel'),
'showAttachments');
170 $confirmation->setHeaderText($this->
lng->txt(
'mail_sure_delete_file'));
173 $confirmation->addItem(
180 $this->tpl->setContent($confirmation->getHTML());
181 $this->tpl->printToStdout();
186 $files = $this->
http->wrapper()->post()->retrieve(
189 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->string()),
195 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one_mail'));
201 foreach ($files as $value) {
202 $decodedFiles[] = urldecode($value);
205 $error = $this->mfile->unlinkFiles($decodedFiles);
207 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_error_delete_file') .
' ' . $error,
true);
209 $mail_data = $this->umail->retrieveFromStage();
210 if (is_array($mail_data[
'attachments'])) {
212 foreach ($mail_data[
'attachments'] as $attachment) {
213 if (!in_array($attachment, $decodedFiles,
true)) {
214 $tmp[] = $attachment;
217 $this->umail->saveAttachments($tmp);
220 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_files_deleted'),
true);
223 $this->
ctrl->redirect($this);
228 $this->tpl->setTitle($this->
lng->txt(
'mail'));
231 $this->
tabs->clearTargets();
232 $this->
tabs->setBackTarget(
233 $this->
lng->txt(
'mail_manage_attachments_back_to_compose'),
234 $this->
ctrl->getLinkTarget($this,
'cancelSaveAttachments')
239 if ($this->mode === AttachmentManagement::MANAGE) {
240 $dropzone = $this->ui_factory
244 $this->
lng->txt(
'mail_manage_attachments'),
245 $this->
lng->txt(
'mail_manage_attachments_drop_files_msg'),
247 $this->ui_factory->input()->field()->file(
249 $this->
lng->txt(
'file')
254 $this->ui_factory->button()->shy(
255 $this->
lng->txt(
'upload'),
262 $mail_data = $this->umail->retrieveFromStage();
263 $files = $this->mfile->getUserFilesData();
266 foreach ($files as $file) {
267 if (is_array($mail_data[
'attachments']) && in_array($file[
'name'], $mail_data[
'attachments'],
true)) {
268 $checked_items[] = urlencode($file[
'name']);
272 'filename' => $file[
'name'],
273 'filesize' => (
int) $file[
'size'],
274 'filecreatedate' => (
int) $file[
'ctime'],
286 $this->
http->request(),
288 'handleTableActions',
293 $this->tpl->setContent($this->ui_renderer->render($components));
297 $this->tpl->addOnLoadCode(
' 298 const checked_items = ' . json_encode($checked_items, JSON_THROW_ON_ERROR) .
'; 299 for (const item of checked_items) { 300 const checkbox = document.querySelector("input[type=\'checkbox\'][value=\'" + item + "\']"); 302 checkbox.checked = true; 308 $this->tpl->printToStdout();
313 $query = $this->
http->wrapper()->query();
314 if (!$query->has(
'mail_attachments_table_action')) {
318 $action = $query->retrieve(
'mail_attachments_table_action', $this->
refinery->to()->string());
322 default => $this->
ctrl->redirect($this),
329 $array = $this->
upload->getResults();
330 $result = end($array);
333 $identifier = $this->mfile->storeUploadedFile($result);
334 $status = HandlerResult::STATUS_OK;
336 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
338 $status = HandlerResult::STATUS_FAILED;
340 $message = $result->getStatus()->getMessage();
348 throw new DomainException(
'Not necessary for this handler');
353 throw new DomainException(
'Not necessary for this handler');
358 throw new DomainException(
'Not necessary for this handler');
AttachmentManagement $mode
readonly ilFileDataMail $mfile
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This class handles all operations on files (attachments) in directory ilias_data/mail.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
readonly ILIAS UI Renderer $ui_renderer
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readonly ilFormatMail $umail
getFileIdentifierParameterName()
executeCommand()
Since this is a ilCtrl aware UploadHandler executeCommand MUST be implemented.
getInfoResult(string $identifier)
static http()
Fetches the global http state from ILIAS.
confirmDeleteAttachments()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static formatSize(int $size, string $a_mode='short', ?ilLanguage $a_lng=null)
Returns the specified file size value in a human friendly form.
Class BasicHandlerResult.
Interface FileInfoResult.
readonly Refinery $refinery
Class ilCtrlAwareUploadHandler.
getInfoForExistingFiles(array $file_ids)
__construct(Container $dic, ilPlugin $plugin)
readonly ILIAS UI Factory $ui_factory
getRemoveResult(string $identifier)
readonly ilGlobalTemplateInterface $tpl