65 FileSystem $a_tmp_filesystem,
67 string $a_form_action,
68 string $a_save_command,
69 string $a_cancel_command,
72 $this->document = $a_document;
74 $this->document_purifier = $a_document_purifier;
75 $this->actor = $a_actor;
76 $this->tmp_filesystem = $a_tmp_filesystem;
77 $this->file_upload = $a_fileupload;
78 $this->form_action = $a_form_action;
79 $this->save_command = $a_save_command;
80 $this->cancel_command = $a_cancel_command;
81 $this->is_editable = $a_is_editable;
93 $document_already_exists = $this->document->getId() > 0;
94 if ($document_already_exists) {
95 $this->
setTitle($this->lng->txt(
'webdav_form_edit_doc_head'));
97 $this->
setTitle($this->lng->txt(
'webdav_form_new_doc_head'));
102 $title =
new ilTextInputGUI($this->lng->txt(
'webdav_form_document_title'),
'title');
103 $title->setInfo($this->lng->txt(
'webdav_form_document_title_info'));
104 $title->setRequired(
true);
105 $title->setDisabled(!$this->is_editable);
106 $title->setValue($this->document->getTitle());
107 $title->setMaxLength(255);
110 if ($document_already_exists) {
111 $document_label = $this->lng->txt(
'webdav_form_document');
112 $document_by_line = $this->lng->txt(
'webdav_form_document_info');
114 $document_label = $this->lng->txt(
'webdav_form_document');
115 $document_by_line = $this->lng->txt(
'webdav_form_document_info');
119 $this->lng->txt(
'language'),
122 $language_selection->setRequired(
true);
125 foreach ($this->lng->getInstalledLanguages() as
$lng) {
126 $options[
$lng] = $this->lng->txt(
'meta_l_' .
$lng,
'meta');
131 $language_selection->setOptions([
'' => $this->lng->txt(
'please_choose')] + $options);
132 $language_selection->setValue((
string) ($this->document->getLanguage() ??
''));
134 $this->
addItem($language_selection);
136 if ($document_already_exists) {
138 $webdav_id->setValue($this->document->getId());
142 $document_upload->setInfo($document_by_line);
143 $document_upload->setRequired($document_already_exists ?
false :
true);
144 $document_upload->setDisabled(!$this->is_editable);
145 $document_upload->setMaxFiles(1);
146 $document_upload->setSuffixes([
'html',
'htm',
'txt']);
147 $this->
addItem($document_upload);
150 if ($this->is_editable) {
162 $this->document = $this->createFilledObject($this->document);
163 $this->mount_instructions_repository->createMountInstructionsDocumentEntry($this->document);
166 $this->translated_error .= $e->getMessage();
179 $this->document = $this->createFilledObject($this->document);
180 $this->mount_instructions_repository->updateMountInstructions($this->document);
183 $this->translated_error .= $e->getMessage();
195 return strlen($this->translated_info) > 0;
203 return strlen($this->translated_error) > 0;
237 $document_already_exists = $document->
getId() > 0;
239 if (!$document_already_exists) {
241 $upload_result = $this->getFileUploadResult();
245 if (!$document_already_exists && $upload_result->getStatus()->getCode() != ProcessingStatus::OK) {
253 $modification_ts = $document_already_exists ?
ilUtil::now() : $creation_ts;
254 $owner_id = $document_already_exists ? $document->
getOwnerUsrId() : $this->actor->getId();
255 $last_modified_usr_id = $this->actor->getId();
256 $sorting = $document_already_exists ? $document->
getSorting() : $this->mount_instructions_repository->getHighestSortingNumber() + 1;
259 if (!$document_already_exists && $this->mount_instructions_repository->doMountInstructionsExistByLanguage($language)) {
264 if ($document_already_exists && $document->
getLanguage() != $language
265 && $this->mount_instructions_repository->doMountInstructionsExistByLanguage($language) != $document->
getId()) {
269 if ($document_already_exists) {
270 $raw_mount_instructions =
'';
271 $processed_mount_instructions =
'';
275 $document_processor = $upload_result->getMimeType() ==
'text/html' 278 $processed_mount_instructions = $document_processor->processMountInstructions($raw_mount_instructions);
281 $id = $document_already_exists ? $document->
getId()
282 : $this->mount_instructions_repository->getNextMountInstructionsDocumentId();
288 $raw_mount_instructions,
289 json_encode($processed_mount_instructions),
294 $last_modified_usr_id,
312 if ($upload_result->
getName() ===
'') {
317 if ($upload_result->
getStatus()->getCode() != ProcessingStatus::OK) {
323 $this->file_upload->moveOneFileTo(
325 '/mount_instructions',
331 $path_to_file =
'/mount_instructions/' . $upload_result->
getName();
332 if (!$this->tmp_filesystem->has($path_to_file)) {
333 $this->
getItemByPostVar(
'document')->setAlert($this->lng->txt(
'form_msg_file_no_upload'));
338 $raw_content = $content = $this->tmp_filesystem->read($path_to_file);
341 $this->tmp_filesystem->delete($path_to_file);
353 if (!$this->file_upload->hasUploads()) {
355 } elseif ($this->file_upload->hasBeenProcessed()) {
359 $this->file_upload->process();
362 $upload_result = array_values($this->file_upload->getResults())[0];
364 if (!$upload_result) {
365 $this->
getItemByPostVar(
'document')->setAlert($this->lng->txt(
'form_msg_file_no_upload'));
369 return $upload_result;
static now()
Return current timestamp in Y-m-d H:i:s format.
Interface for html sanitizing functionality.
Interface ilWebDAVMountInstructionsRepository.
__construct(Container $dic, ilPlugin $plugin)