3 declare(strict_types=1);
77 ServerRequest $request,
83 ILIAS\
HTTP\Wrapper\RequestWrapper $request_wrapper,
110 $cmd = $this->
ctrl->getCmd();
114 case self::CMD_UPDATE:
116 case self::CMD_FINALIZE:
117 case self::CMD_FINALIZE_CONFIRMATION:
118 case self::CMD_AMEND:
119 case self::CMD_SAVE_AMEND:
120 case self::CMD_DOWNLOAD_FILE:
123 case AbstractCtrlAwareUploadHandler::CMD_UPLOAD:
124 case AbstractCtrlAwareUploadHandler::CMD_REMOVE:
125 case AbstractCtrlAwareUploadHandler::CMD_INFO:
126 parent::executeCommand();
133 protected function view(): void
140 $this->tpl->setContent($this->renderer->render($form));
143 protected function edit(): void
152 $this->tpl->setContent($this->renderer->render($form));
155 protected function update():
void 159 ->withRequest($this->request)
163 $grading = $form->getData();
164 if (is_null($grading)) {
165 $this->tpl->setContent($this->renderer->render($form));
170 $storage->deleteAllFilesBut($grading->getFile());
172 if ($grading->isFinalized()) {
173 $not_finalized_grading = $grading->withFinalized(
false);
185 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
'iass_membership_saved'),
true);
186 $this->
ctrl->redirectByClass(ilIndividualAssessmentMembersGUI::class,
'view');
198 $form->withSubmitCaption($this->
lng->txt(
"save_amend"));
199 $this->tpl->setContent($this->renderer->render($form));
205 $action = $this->
ctrl->getFormAction($this, $cmd);
206 $this->
ctrl->clearParameterByClass(self::class,
'usr_id');
214 $file_name = $this->
getMember()->fileName();
226 ->buildForm($this->
ctrl->getFormAction($this, self::CMD_AMEND),
true,
true)
227 ->withRequest($this->request)
230 $grading = $form->getData();
232 if (!is_null($grading)) {
236 $storage->deleteAllFilesBut($grading->getFile());
242 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
'iass_amend_saved'),
true);
243 $this->
ctrl->redirectByClass(ilIndividualAssessmentMembersGUI::class,
'view');
252 $date_format = $this->date_formatter->getUserDateFormat($this->
user,
false);
254 $section = $this->
getMember()->getGrading()->toFormInput(
255 $this->input_factory->field(),
263 $this->
getObject()->getSettings()->isEventTimePlaceRequired(),
267 $form = $this->input_factory->container()->form()->standard($form_action, [$section]);
268 return $form->withAdditionalTransformation(
269 $this->refinery_factory->custom()->transformation(
270 function ($values) use ($amend) {
271 return array_shift($values);
285 if (!$member->mayBeFinalized()) {
286 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
'iass_may_not_finalize'),
true);
292 $grading = $member->getGrading()->withFinalized(
true);
293 $member = $member->withGrading($grading);
294 $this->
getObject()->membersStorage()->updateMember($member);
296 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
301 if ($this->
object->isActiveLP()) {
306 $member->maybeSendNotification($this->notificator);
307 $this->
ctrl->redirectByClass(ilIndividualAssessmentMembersGUI::class,
'view');
309 $this->tpl->setOnScreenMessage(
"failure", $e->getMessage(),
true);
314 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
'iass_membership_finalized'),
true);
325 $message = $this->
lng->txt(
'iass_finalize_user_qst');
327 $finalize = $this->
ctrl->getFormActionByClass(self::class, self::CMD_FINALIZE);
328 $cancel = $this->
ctrl->getFormActionByClass(self::class, self::CMD_EDIT);
329 $this->
ctrl->clearParameterByClass(self::class,
'usr_id');
332 $this->button_factory->standard($this->
lng->txt(
'iass_confirm_finalize'), $finalize),
333 $this->button_factory->standard($this->lng->txt(
'iass_cancel'), $cancel)
336 $message_box = $this->messagebox_factory->confirmation(
$message)->withButtons($buttons);
338 $this->tpl->setContent($this->renderer->render($message_box));
343 bool $keep_examiner =
false,
347 ->withGrading($grading)
351 $member = $member->withChangerId($this->
user->getId());
354 if (!$keep_examiner) {
355 $member = $member->withExaminerId($this->
user->getId());
357 $this->
getObject()->membersStorage()->updateMember($member);
372 $array = $this->
upload->getResults();
373 $result = end($array);
379 $identifier = $storage->uploadFile($result);
380 $status = HandlerResult::STATUS_OK;
383 $status = HandlerResult::STATUS_FAILED;
385 $message = $result->getStatus()->getMessage();
393 $status = HandlerResult::STATUS_OK;
402 $path = $storage->getAbsolutePath() .
"/" . $identifier;
408 pathinfo(
$path, PATHINFO_EXTENSION)
414 $file_ids = array_filter($file_ids, fn (
$id) =>
$id !==
"");
416 return array_map(
function (
$id) use (
$path) {
422 pathinfo(
$path .
"/" . $id, PATHINFO_EXTENSION)
435 $link = $this->
ctrl->getLinkTarget($this, self::CMD_UPLOAD);
436 $this->
ctrl->setParameter($this,
'usr_id', null);
444 $link = $this->
ctrl->getLinkTarget($this, self::CMD_INFO);
445 $this->
ctrl->setParameter($this,
'usr_id', null);
453 $this->
ctrl->redirect($this, $cmd);
478 if (is_null($this->iass_access)) {
479 $this->iass_access = $this->
getObject()->accessHandler();
486 return new ilObjUser($this->request_wrapper->retrieve(
'usr_id', $this->refinery->kindlyTo()->int()));
491 $storage = $this->
getObject()->getFileStorage();
498 return $this->
getObject()->membersStorage()->loadMember(
507 if ($member->fileName() !=
'') {
509 $btn->setCaption(
'download_assessment_paper');
511 $btn->setUrl($this->
ctrl->getLinkTarget($this, self::CMD_DOWNLOAD_FILE,
"",
false,
true));
512 $this->
ctrl->setParameter($this,
'usr_id', null);
513 $this->
toolbar->addButtonInstance($btn);
568 $this->error_object->raiseError($this->
lng->txt(
"msg_no_perm_read"), $this->error_object->WARNING);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getInfoResult(string $identifier)
An entity that renders components to a string output.
getFileIdentifierParameterName()
getInfoForExistingFiles(array $file_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilErrorHandling $error_object
getRemoveResult(string $identifier)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilCtrl $ctrl, ilLanguage $lng, ilGlobalPageTemplate $tpl, ilObjUser $user, Input\Factory $input_factory, MessageBox\Factory $messagebox_factory, Button\Factory $button_factory, Refinery\Factory $refinery_factory, Data\Factory $data_factory, Renderer $renderer, ServerRequest $request, ilIndividualAssessmentPrimitiveInternalNotificator $notificator, ilToolbarGUI $toolbar, ilObjIndividualAssessment $object, ilErrorHandling $error_object, ILIAS\Refinery\Factory $refinery, ILIAS\HTTP\Wrapper\RequestWrapper $request_wrapper, ilIndividualAssessmentDateFormatter $date_formatter)
ilIndividualAssessmentAccessHandler $iass_access
buildForm(string $form_action, bool $may_be_edited, bool $amend=false)
Class ChatMainBarProvider .
Data Factory $data_factory
getFormActionForCommand(string $cmd)
ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static updateLPStatusOfMember(ilIndividualAssessmentMember $member)
setParentGUI(ilIndividualAssessmentMembersGUI $parent_gui)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
MessageBox Factory $messagebox_factory
ilGlobalPageTemplate $tpl
ilObjIndividualAssessment $object
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Input Factory $input_factory
const CMD_FINALIZE_CONFIRMATION
targetWasEditedByOtherUser(ilIndividualAssessmentMember $member)
Button Factory $button_factory
Class BasicHandlerResult.
Interface FileInfoResult.
saveMember(ilIndividualAssessmentUserGrading $grading, bool $keep_examiner=false, bool $amend=false)
Class ilCtrlAwareUploadHandler.
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
setObject(ilObjIndividualAssessment $object)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilIndividualAssessmentPrimitiveInternalNotificator $notificator
Error Handling & global info handling uses PEAR error class.
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Handles the file upload and folder creation for files uploaded in grading form.
ilIndividualAssessmentDateFormatter $date_formatter
executeCommand()
Since this is a ilCtrl aware UploadHandler executeCommand MUST be implemented.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
Refinery Factory $refinery_factory
Class BasicFileInfoResult.
ilIndividualAssessmentMembersGUI $parent_gui