ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilExPeerReviewGUI.php
Go to the documentation of this file.
1 <?php
2 
28 {
29  protected \ILIAS\Exercise\Submission\SubmissionManager $subm;
30  protected int $requested_giver_id;
31  protected \ILIAS\Exercise\Notification\NotificationManager $notification;
32  protected \ILIAS\Notes\Service $notes;
33  protected \ILIAS\Exercise\InternalGUIService $gui;
34  protected \ILIAS\Exercise\InternalDomainService $domain;
35  protected ilCtrl $ctrl;
36  protected ilTabsGUI $tabs_gui;
37  protected ilLanguage $lng;
39  protected ilObjUser $user;
40  protected ilExAssignment $ass;
42  protected int $requested_review_giver_id = 0;
43  protected int $requested_review_peer_id = 0;
44  protected string $requested_review_crit_id = "";
45  protected int $requested_peer_id = 0;
46  protected string $requested_crit_id = "";
47 
48  public function __construct(
49  ilExAssignment $a_ass,
50  ?ilExSubmission $a_submission = null
51  ) {
52  global $DIC;
53 
54  $service = $DIC->exercise()->internal();
55  $this->domain = $service->domain();
56  $this->gui = $service->gui();
57  $this->user = $this->domain->user();
58  $this->ctrl = $this->gui->ctrl();
59  $this->tabs_gui = $this->gui->tabs();
60  $this->lng = $this->domain->lng();
61  $this->tpl = $this->gui->ui()->mainTemplate();
62 
63  $this->ass = $a_ass;
64  $this->submission = $a_submission;
65 
66  $request = $DIC->exercise()->internal()->gui()->request();
67  $this->requested_review_giver_id = $request->getReviewGiverId();
68  $this->requested_review_peer_id = $request->getReviewPeerId();
69  $this->requested_review_crit_id = $request->getReviewCritId();
70  $this->requested_peer_id = $request->getPeerId();
71  $this->requested_giver_id = $request->getGiverId();
72  $this->requested_crit_id = $request->getCritId();
73  $this->gui = $DIC->exercise()->internal()->gui();
74  $this->notes = $DIC->notes();
75  $this->ctrl->saveParameter($this, array("peer_id"));
76  $this->notification = $this->domain->notification($request->getRefId());
77  $this->subm = $this->domain->submission($a_ass->getId());
78  }
79 
83  public function executeCommand(): void
84  {
85  $ilCtrl = $this->ctrl;
86  $lng = $this->lng;
87  $ilTabs = $this->tabs_gui;
88 
89  if (!$this->ass->getPeerReview()) {
90  $this->returnToParentObject();
91  }
92 
93  $class = $ilCtrl->getNextClass($this);
94  $cmd = $ilCtrl->getCmd("showpeerreviewoverview");
95 
96  switch ($class) {
97 
98  case "ilratinggui":
99  $peer_review = new ilExPeerReview($this->ass);
100  $peer_review->updatePeerReviewTimestamp($this->requested_peer_id);
101 
102  $rating_gui = new ilRatingGUI();
103  $rating_gui->setObject(
104  $this->ass->getId(),
105  "ass",
107  "peer"
108  );
109  $this->ctrl->forwardCommand($rating_gui);
110  $ilCtrl->redirect($this, "editPeerReview");
111  break;
112 
113  case "ilexsubmissiontextgui":
114  $ilTabs->clearTargets();
115  if (!$this->submission->isTutor()) {
116  $ilTabs->setBackTarget(
117  $lng->txt("back"),
118  $ilCtrl->getLinkTarget($this, "editPeerReview")
119  );
120  $this->ctrl->setReturn($this, "editPeerReview");
121  } else {
122  $ilTabs->setBackTarget(
123  $lng->txt("back"),
124  $ilCtrl->getLinkTarget($this, "showGivenPeerReview")
125  );
126  $this->ctrl->setReturn($this, "showGivenPeerReview");
127  }
128  $gui = new ilExSubmissionTextGUI(new ilObjExercise($this->ass->getExerciseId(), false), $this->submission);
129  $ilCtrl->forwardCommand($gui);
130  break;
131 
132  case "ilmessagegui":
133  $gui = $this->getMessagesGUI(
134  $this->requested_giver_id,
135  $this->requested_peer_id
136  );
137  $ilCtrl->forwardCommand($gui);
138  break;
139 
140  default:
141  $this->{$cmd . "Object"}();
142  break;
143  }
144  }
145 
146  public function returnToParentObject(): void
147  {
148  $this->ctrl->returnToParent($this);
149  }
150 
154  public static function getOverviewContent(
155  ilInfoScreenGUI $a_info,
156  ilExSubmission $a_submission
157  ): void {
158  global $DIC;
159 
160  $lng = $DIC->language();
161  $ilCtrl = $DIC->ctrl();
162  $gui = $DIC->exercise()
163  ->internal()
164  ->gui();
165 
166  $state = ilExcAssMemberState::getInstanceByIds($a_submission->getAssignment()->getId(), $a_submission->getUserId());
167 
168  $ass = $a_submission->getAssignment();
169 
170  $view_pc = "";
171  $edit_pc = "";
172 
173 
174  //if($ass->afterDeadlineStrict() &&
175  // $ass->getPeerReview())
176  if ($state->hasSubmissionEndedForAllUsers() &&
177  $ass->getPeerReview()) {
178  $ilCtrl->setParameterByClass("ilExPeerReviewGUI", "ass_id", $a_submission->getAssignment()->getId());
179 
180  $nr_missing_fb = $a_submission->getPeerReview()->getNumberOfMissingFeedbacksForReceived();
181 
182  // before deadline (if any)
183  // if(!$ass->getPeerReviewDeadline() ||
184  // $ass->getPeerReviewDeadline() > time())
185  if ($state->isPeerReviewAllowed()) {
186  $dl_info = "";
187  if ($ass->getPeerReviewDeadline()) {
188  $dl_info = " (" . sprintf(
189  $lng->txt("exc_peer_review_deadline_info_button"),
190  $state->getPeerReviewDeadlinePresentation()
191  ) . ")";
192  }
193 
194  $b = $gui->link(
195  $lng->txt("exc_peer_review_give"),
196  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExPeerReviewGUI"), "editPeerReview")
197  )->emphasised();
198  if ($nr_missing_fb) {
199  $b = $b->primary();
200  }
201  $edit_pc = $b->render();
202  } elseif ($ass->getPeerReviewDeadline()) {
203  $edit_pc = $lng->txt("exc_peer_review_deadline_reached");
204  }
205 
206  // after deadline (if any)
207  if ((!$ass->getPeerReviewDeadline() ||
208  $ass->getPeerReviewDeadline() < time())) {
209  // given peer review should be accessible at all times (read-only when not editable - see above)
210  if ($ass->getPeerReviewDeadline() &&
211  $a_submission->getPeerReview()->countGivenFeedback(false)) {
212  $b = $gui->link(
213  $lng->txt("exc_peer_review_given"),
214  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExPeerReviewGUI"), "showGivenPeerReview")
215  )->emphasised();
216  $view_pc = $b->render() . " ";
217  }
218 
219  // did give enough feedback
220  if (!$nr_missing_fb) {
221  // received any?
222  $received = (bool) sizeof($a_submission->getPeerReview()->getPeerReviewsByPeerId($a_submission->getUserId(), true));
223  if ($received) {
224  $b = $gui->link(
225  $lng->txt("exc_peer_review_show"),
226  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExPeerReviewGUI"), "showReceivedPeerReview")
227  )->emphasised();
228  $view_pc .= $b->render();
229  }
230  // received none
231  else {
232  $view_pc .= $lng->txt("exc_peer_review_show_received_none");
233  }
234  }
235  // did not give enough
236  else {
237  $view_pc .= $lng->txt("exc_peer_review_show_missing");
238  }
239  }
240  /* must give before showing received
241  else
242  {
243  $view_pc = $lng->txt("exc_peer_review_show_not_rated_yet");
244  }
245  */
246 
247  $sep = ($edit_pc != "" && $view_pc != "")
248  ? "<br><br>"
249  : "";
250 
251  $a_info->addProperty($lng->txt("exc_peer_review"), $edit_pc . $sep . $view_pc);
252 
253  $ilCtrl->setParameterByClass("ilExPeerReviewGUI", "ass_id", "");
254  }
255  }
256 
257  public function buildSubmissionPropertiesAndActions(\ILIAS\Exercise\Assignment\PropertyAndActionBuilderUI $builder): void
258  {
259  $f = $this->gui->ui()->factory();
260  $lng = $this->lng;
261  $ilCtrl = $this->ctrl;
262  $submission = $this->submission;
263  $ass = $submission->getAssignment();
264  $state = $this->domain->assignment()->state($ass->getId(), $submission->getUserId());
265 
266  $view_pc = "";
267  $edit_pc = "";
268 
269 
270  //if($ass->afterDeadlineStrict() &&
271  // $ass->getPeerReview())
272  if ($state->hasSubmissionEndedForAllUsers() &&
273  $ass->getPeerReview()) {
274  $ilCtrl->setParameterByClass("ilExPeerReviewGUI", "ass_id", $submission->getAssignment()->getId());
275 
276  $nr_missing_fb = $submission->getPeerReview()->getNumberOfMissingFeedbacksForReceived();
277 
278  $builder->addAdditionalHeadProperty(
279  $this->lng->txt("exc_given_feedback"),
280  $submission->getPeerReview()->countGivenFeedback() . " " .
281  $this->lng->txt("exc_x_of_y") . " " .
282  $submission->getAssignment()->getPeerReviewMin()
283  );
284 
285  $builder->addAdditionalHeadProperty(
286  $this->lng->txt("exc_received_feedback"),
287  $submission->getPeerReview()->countReceivedFeedbacks($submission->getUserid())
288  );
289 
290  // before deadline (if any)
291  // if(!$ass->getPeerReviewDeadline() ||
292  // $ass->getPeerReviewDeadline() > time())
293  if ($state->isPeerReviewAllowed()) {
294  $url = $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExPeerReviewGUI"), "editPeerReview");
295  $button = $f->button()->primary(
296  $lng->txt("exc_peer_review_give"),
297  $url
298  );
299  $builder->addView(
300  "give_feedback",
301  $this->lng->txt("exc_given_feedback"),
302  $url
303  );
304  $builder->setMainAction(
305  $builder::SEC_PEER_FEEDBACK,
306  $button
307  );
308  if ($ass->getPeerReviewDeadline()) {
309  $deadline = $state->getPeerReviewDeadlinePresentation();
310  } else {
311  $deadline = $lng->txt("exc_no_peer_feedback_deadline");
312  }
313  $builder->addProperty(
314  $builder::SEC_PEER_FEEDBACK,
315  $lng->txt("exc_peer_review_deadline"),
316  $deadline
317  );
318  } elseif ($ass->getPeerReviewDeadline()) {
319  $edit_pc = $lng->txt("exc_peer_review_deadline_reached");
320  $builder->addProperty(
321  $builder::SEC_PEER_FEEDBACK,
322  $lng->txt("exc_peer_review_deadline"),
323  $lng->txt("exc_peer_review_deadline_reached")
324  );
325  }
326  if ($ass->getPeerReviewDeadline()) {
327  $builder->addProperty(
328  $builder::SEC_SCHEDULE,
329  $lng->txt("exc_peer_review_deadline"),
330  $state->getPeerReviewDeadlinePresentation()
331  );
332  }
333 
334  // after deadline (if any)
335  if ((!$ass->getPeerReviewDeadline() ||
336  $ass->getPeerReviewDeadline() < time())) {
337  // given peer review should be accessible at all times (read-only when not editable - see above)
338  if ($ass->getPeerReviewDeadline() &&
339  $submission->getPeerReview()->countGivenFeedback(false)) {
340  $url = $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExPeerReviewGUI"), "showGivenPeerReview");
341  $link = $f->link()->standard(
342  $lng->txt("exc_peer_review_given"),
343  $url
344  );
345  $builder->addAction(
346  $builder::SEC_PEER_FEEDBACK,
347  $link
348  );
349  $builder->addView(
350  "give_feedback",
351  $this->lng->txt("exc_given_feedback"),
352  $url
353  );
354  }
355 
356  if ($nr_missing_fb <= 0) {
357  // received any?
358  $received = (bool) sizeof($submission->getPeerReview()->getPeerReviewsByPeerId($submission->getUserId(), true));
359  if ($received) {
360  $url = $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExPeerReviewGUI"), "showReceivedPeerReview");
361  $link = $f->link()->standard(
362  $lng->txt("exc_peer_review_show"),
363  $url
364  );
365  $builder->addAction(
366  $builder::SEC_PEER_FEEDBACK,
367  $link
368  );
369  $builder->addView(
370  "receive_feedback",
371  $this->lng->txt("exc_received_feedback"),
372  $url
373  );
374  }
375  // received none
376  else {
377  $builder->addProperty(
378  $builder::SEC_PEER_FEEDBACK,
379  $lng->txt("exc_received_peer_feedback"),
380  $lng->txt("exc_peer_review_show_received_none")
381  );
382  }
383  }
384  // did not give enough
385  else {
386  $builder->addProperty(
387  $builder::SEC_PEER_FEEDBACK,
388  $lng->txt("exc_peer_feedback_status"),
389  $lng->txt("exc_peer_review_show_missing")
390  );
391  }
392  }
393  $ilCtrl->setParameterByClass("ilExPeerReviewGUI", "ass_id", "");
394  }
395  }
396 
397  protected function canGive(): bool
398  {
399  return ($this->submission->isOwner() &&
400  $this->ass->afterDeadlineStrict() &&
401  (!$this->ass->getPeerReviewDeadline() ||
402  $this->ass->getPeerReviewDeadline() > time()));
403  }
404 
405  protected function canView(): bool
406  {
407  return ($this->submission->isTutor() ||
408  ($this->submission->isOwner() &&
409  $this->ass->afterDeadlineStrict() &&
410  (!$this->ass->getPeerReviewDeadline() ||
411  $this->ass->getPeerReviewDeadline() < time())));
412  }
413 
420  public function showGivenPeerReviewObject(): void
421  {
422  $tpl = $this->tpl;
423  $lng = $this->lng;
424 
425  $this->tabs_gui->activateTab("give_feedback");
426 
427  if (!$this->canView()) {
428  $this->returnToParentObject();
429  }
430 
431  $peer_items = $this->submission->getPeerReview()->getPeerReviewsByGiver($this->submission->getUserId());
432  if ($peer_items === []) {
433  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("exc_peer_review_no_peers"), true);
434  $this->returnToParentObject();
435  }
436 
437  $tpl->setTitle($this->ass->getTitle() . ": " . $lng->txt("exc_peer_review_given"));
438 
439  $this->gui->permanentLink()->setGivenFeedbackPermanentLink();
440 
441  $panel = $this->getReceivedFeedbackPanel($peer_items);
442 
443  $tpl->setContent($this->gui->ui()->renderer()->render($panel));
444  }
445 
452  public function showReceivedPeerReviewObject(): void
453  {
454  $ilCtrl = $this->ctrl;
455  $tpl = $this->tpl;
456  $lng = $this->lng;
457  $this->tabs_gui->activateTab("receive_feedback");
458 
459  if (!$this->canView() ||
460  (!$this->submission->isTutor() &&
461  $this->submission->getPeerReview()->getNumberOfMissingFeedbacksForReceived())) {
462  $this->returnToParentObject();
463  }
464 
465  $this->gui->permanentLink()->setReceivedFeedbackPermanentLink();
466 
467  /*
468  $this->tabs_gui->clearTargets();
469  $this->tabs_gui->setBackTarget($this->lng->txt("back"), $this->ctrl->getLinkTarget($this, "returnToParent"));*/
470 
471  $peer_items = $this->submission->getPeerReview()->getPeerReviewsByPeerId($this->submission->getUserId(), !$this->submission->isTutor());
472  if ($peer_items === []) {
473  // #11373
474  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("exc_peer_review_no_peers_reviewed_yet"), true);
475  $ilCtrl->redirect($this, "returnToParent");
476  }
477 
478  $tpl->setTitle($this->ass->getTitle() . ": " . $lng->txt("exc_peer_review_show"));
479 
480  $info_widget = new ilInfoScreenGUI($this);
481 
482  $panel = $this->getReceivedFeedbackPanel($peer_items, true);
483 
484  $tpl->setContent($this->gui->ui()->renderer()->render($panel));
485  }
486 
487  protected function getReceivedFeedbackPanel(
488  array $a_peer_items,
489  bool $a_by_peer = false
490  ): \ILIAS\UI\Component\Panel\Standard {
491  $lng = $this->lng;
492 
493  $sub_panels = [];
494  if ($this->submission->isTutor()) {
495  $props = [];
496  $user_title = $a_by_peer
497  ? $lng->txt("exc_peer_review_recipient")
498  : $lng->txt("exc_peer_review_giver");
499  $props[] = [
500  "prop" => $lng->txt("name"),
501  "value" => ilUserUtil::getNamePresentation($this->submission->getUserId(), false, false, "", true)
502  ];
503  $sub_panels[] = $this->getSubPanel(
504  $user_title,
505  $props
506  );
507  }
508 
509  if ($a_by_peer) {
510 
511  // list received feedbacks
512 
513  // submission
514  $props = [];
515  $submission = new ilExSubmission($this->ass, $this->submission->getUserId());
516  $file_info = $submission->getDownloadedFilesInfoForTableGUIS();
517 
518  $props[] = [
519  "prop" => $file_info["last_submission"]["txt"],
520  "value" => $file_info["last_submission"]["value"] .
521  $this->getLateSubmissionInfo($submission)
522  ];
523 
524  $sub_data = $this->getSubmissionContent($submission);
525  if ($sub_data === '' || $sub_data === '0') {
526  $sub_data = '<a href="' . $file_info["files"]["download_url"] . '">' . $lng->txt("download") . '</a>';
527  }
528  $props[] = [
529  "prop" => $lng->txt("exc_submission"),
530  "value" => $sub_data
531  ];
532 
533  $sub_panels[] = $this->getSubPanel(
534  $lng->txt("exc_your_submission"),
535  $props
536  );
537  }
538 
539  foreach ($a_peer_items as $peer) {
540  $props = [];
541  if (!$a_by_peer) {
542  $giver_id = $this->submission->getUserId();
543  $peer_id = $peer["peer_id"];
544  $id_title = $lng->txt("exc_peer_review_recipient");
545  $user_id = $peer_id;
546  } else {
547 
548  // list received feedbacks
549 
550  $giver_id = $peer["giver_id"];
551  $peer_id = $this->submission->getUserId();
552  $id_title = $lng->txt("exc_peer_review_giver");
553  $user_id = $giver_id;
554  }
555 
556  // peer info
557  if ($this->submission->isTutor()) {
558  $id_value = ilUserUtil::getNamePresentation($user_id, "", "", false, true);
559  } elseif (!$this->ass->hasPeerReviewPersonalized()) {
560  $id_value = $peer["seq"];
561  } else {
563  }
564 
565  $mess_gui = $this->getMessagesGUI(
566  $giver_id,
567  $peer_id
568  );
569 
570  // submission info
571 
572  if (!$a_by_peer) {
573  $submission = new ilExSubmission($this->ass, $peer_id);
574  $file_info = $submission->getDownloadedFilesInfoForTableGUIS();
575 
576  $props[] = [
577  "prop" => $file_info["last_submission"]["txt"],
578  "value" => $file_info["last_submission"]["value"] .
579  $this->getLateSubmissionInfo($submission)
580  ];
581 
582  $sub_data = $this->getSubmissionContent($submission);
583  if ($sub_data === '' || $sub_data === '0') {
584  if (isset($file_info["files"]["download_url"])) {
585  $sub_data = '<a href="' . $file_info["files"]["download_url"] . '">' . $lng->txt("download") . '</a>';
586  }
587  }
588  $props[] = [
589  "prop" => $lng->txt("exc_submission"),
590  "value" => $sub_data
591  ];
592  }
593 
594 
595  // peer review items
596 
597  $values = $this->submission->getPeerReview()->getPeerReviewValues($giver_id, $peer_id);
598 
599  foreach ($this->ass->getPeerReviewCriteriaCatalogueItems() as $item) {
600  $crit_id = $item->getId()
601  ? $item->getId()
602  : $item->getType();
603 
604  $item->setPeerReviewContext(
605  $this->ass,
606  $giver_id,
607  $peer_id
608  );
609 
610  $title = $item->getTitle();
611  $html = $item->getHTML($values[$crit_id] ?? null);
612  $props[] = [
613  "prop" => $title ?: "&nbsp;",
614  "value" => $html ?: "&nbsp;"
615  ];
616  }
617  $sub_panels[] = $this->getSubPanel(
618  $id_title . ": " . $id_value,
619  $props,
620  $mess_gui
621  );
622  }
623  return $this->gui->ui()->factory()->panel()->standard(
624  $a_by_peer
625  ? $this->lng->txt("exc_received_feedback")
626  : $this->lng->txt("exc_given_feedback"),
627  $sub_panels
628  );
629  }
630 
631  protected function getSubPanel(
632  string $title,
633  array $props,
634  ?ilMessageGUI $mess_gui = null
635  ): \ILIAS\UI\Component\Panel\Sub {
636  $f = $this->gui->ui()->factory();
637  $r = $this->gui->ui()->renderer();
638  $tpl = new \ilTemplate("tpl.panel_items.html", true, true, "components/ILIAS/Exercise/PeerReview");
639  foreach ($props as $prop) {
640  $tpl->setCurrentBlock("entry");
641  $tpl->setVariable("LABEL", $prop["prop"]);
642  $tpl->setVariable("VALUE", $prop["value"]);
643  $tpl->parseCurrentBlock();
644  }
645  $mess_html = "";
646  if ($mess_gui) {
647  $mess_html = $r->render($f->divider()->horizontal()) .
648  $mess_gui->getWidget();
649  }
650 
651  return $f->panel()->sub(
652  $title,
653  $f->legacy()->content($tpl->get() . $mess_html)
654  );
655  }
656 
657  protected function getLateSubmissionInfo(
658  ilExSubmission $a_submission
659  ): string {
660  $lng = $this->lng;
661 
662  // #18966 - late files info
663  foreach ($this->subm->getSubmissionsOfUser($a_submission->getUserId()) as $sub) {
664  if ($sub->getLate()) {
665  return '<div class="warning">' . $lng->txt("exc_late_submission") . '</div>';
666  }
667  }
668  return "";
669  }
670 
674  public function editPeerReviewObject(): void
675  {
676  $tpl = $this->tpl;
677 
678  $this->tabs_gui->activateTab("give_feedback");
679  if (!$this->canGive()) {
680  $this->returnToParentObject();
681  }
682 
683  $peer_items = $this->submission->getPeerReview()->getPeerReviewsByGiver($this->submission->getUserId());
684  if ($peer_items === []) {
685  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("exc_peer_review_no_peers"), true);
686  $this->returnToParentObject();
687  }
688 
689  $missing = $this->submission->getPeerReview()->getNumberOfMissingFeedbacksForReceived();
690  if ($missing !== 0) {
691  $dl = $this->ass->getPeerReviewDeadline();
692  if (!$dl || $dl < time()) {
693  $this->tpl->setOnScreenMessage('info', sprintf($this->lng->txt("exc_peer_review_missing_info"), $missing));
694  } else {
695  $this->tpl->setOnScreenMessage('info', sprintf(
696  $this->lng->txt("exc_peer_review_missing_info_deadline"),
697  $missing,
699  ));
700  }
701  }
702 
703  $panel = $this->getPeerReviewReceiverPanel(
704  $this->ass,
705  $this->submission->getUserId(),
706  $peer_items
707  );
708  $tpl->setContent($this->gui->ui()->renderer()->render($panel));
709  }
710 
711  protected function getPeerReviewReceiverPanel(
712  ilExAssignment $ass,
713  int $user_id,
714  array $peer_data
715  ): \ILIAS\UI\Component\Panel\Listing\Standard {
716  $personal = $ass->hasPeerReviewPersonalized();
717  $f = $this->gui->ui()->factory();
718  $lng = $this->lng;
719  $items = [];
720  foreach ($peer_data as $item) {
721  $row = array();
722 
723  if (\ilObject::_lookupType($item["peer_id"]) !== "usr") {
724  continue;
725  }
726 
727  $row["giver_id"] = $item["giver_id"];
728  $row["peer_id"] = $item["peer_id"];
729  $row["tstamp"] = $item["tstamp"];
730 
731  if (!$personal) {
732  $row["seq"] = $item["seq"];
733  } else {
734  $row["name"] = ilUserUtil::getNamePresentation($item["peer_id"]);
735  }
736 
737  // validate
738  $row["valid"] = $all_empty = true;
739  $submission = new ilExSubmission($ass, $item["peer_id"]);
740  $values = $submission->getPeerReview()->getPeerReviewValues($item["giver_id"], $item["peer_id"]);
741  foreach ($this->ass->getPeerReviewCriteriaCatalogueItems() as $crit) {
742  $crit_id = $crit->getId()
743  ? $crit->getId()
744  : $crit->getType();
745  $crit->setPeerReviewContext(
746  $this->ass,
747  $item["giver_id"],
748  $item["peer_id"]
749  );
750  if (!$crit->validate($values[$crit_id] ?? null)) {
751  $row["valid"] = false;
752  }
753  if ($crit->hasValue($values[$crit_id] ?? null)) {
754  $all_empty = false;
755  }
756  }
757  if ($all_empty) {
758  $row["valid"] = false;
759  }
760  if (!$row["valid"]) {
761  // $this->invalid++;
762  }
763 
764  $ilCtrl = $this->ctrl;
765 
766  if (isset($row["seq"])) {
767  $title = $this->lng->txt("exc_peer_review_recipient") . " " . $row["seq"];
768  } else {
769  $title = $row["name"];
770  }
771 
772  if ($row["tstamp"]) {
773  $row["tstamp"] = ilDatePresentation::formatDate(new ilDateTime($row["tstamp"], IL_CAL_DATETIME));
774  }
775  $props = [];
776  $props[$lng->txt("last_update")] = $row["tstamp"];
777 
778  $props[$lng->txt("valid")] = $row["valid"]
779  ? $this->lng->txt("yes")
780  : $this->lng->txt("no");
781 
782  $ilCtrl->setParameter($this, "peer_id", $row["peer_id"]);
783  $actions = [
784  $f->button()->shy(
785  $this->lng->txt("edit"),
786  $ilCtrl->getLinkTarget($this, "editPeerReviewItem")
787  )
788  ];
789  $ilCtrl->setParameter($this, "pid", "");
790 
791  $items[] = $f->item()->standard(
792  $title
793  )->withProperties($props)
794  ->withActions($f->dropdown()->standard($actions));
795  }
796 
797  $group = $f->item()->group("", $items);
798  return $f->panel()->listing()->standard(
799  $this->lng->txt("exc_peer_review_give"),
800  [$group]
801  );
802  }
803 
804  public function editPeerReviewItemObject(
805  ?ilPropertyFormGUI $a_form = null
806  ): void {
807  $tpl = $this->tpl;
808 
809  $this->tabs_gui->activateTab("give_feedback");
810 
811  if (!$this->canGive() && $this->canView()) {
812  $this->ctrl->redirectByClass(self::class, "showGivenPeerReview");
813  }
814 
815  if (!$this->canGive() ||
816  !$this->isValidPeer($this->requested_peer_id)) {
817  $this->returnToParentObject();
818  }
819 
820  if ($a_form === null) {
821  $a_form = $this->initPeerReviewItemForm($this->requested_peer_id);
822  }
823 
824  $sep = $this->gui->ui()->renderer()->render($this->gui->ui()->factory()->divider()->horizontal());
825  $peer_state = ilExcAssMemberState::getInstanceByIds($this->ass->getId(), $this->requested_peer_id);
826  $message_html = "";
827 
828  // show only message gui, if peer is able to access received feedback
829  if ($peer_state->isReceivedFeedbackAccessible()) {
830  $message_gui = $this->getMessagesGUI(
831  $this->user->getId(),
833  );
834  $message_html = $sep . $message_gui->getListHTML();
835  }
836 
837  $this->gui->permanentLink()->setGivenFeedbackPermanentLink();
838 
839  $tpl->setContent($a_form->getHTML() . $message_html);
840  }
841 
842  protected function getMessagesGUI(int $giver_id, int $peer_id): ilMessageGUI
843  {
844  $this->ctrl->setParameter($this, "giver_id", $giver_id);
845  $this->ctrl->setParameter($this, "peer_id", $peer_id);
846  $pr = $this->domain->peerReview()->exPeerReview($this->ass);
847  $gui = $this->notes->gui()->getMessagesGUI(
848  $peer_id,
849  $this->ass->getExerciseId(),
850  $pr->getReviewId($giver_id, $peer_id),
851  "excpf"
852  );
853  if (!$this->ass->hasPeerReviewPersonalized()) {
854  if ($giver_id === $this->user->getId()) {
855  $counterpart_name = $this->lng->txt("exc_peer_review_recipient");
856  } else {
857  $counterpart_name = $this->lng->txt("exc_peer_review_giver");
858  }
859  $gui->setAnonymised(true, $counterpart_name);
860  }
861 
862  $gui->addObserver(function (
863  int $exc_id,
864  int $pf_id,
865  string $type,
866  string $action,
867  int $note_id
868  ) use ($giver_id, $peer_id) {
869  $this->observeMessageAction(
870  $giver_id,
871  $peer_id,
872  $note_id,
873  $action
874  );
875  });
876 
877  return $gui;
878  }
879 
880  public function observeMessageAction(
881  int $giver_id,
882  int $peer_id,
883  int $note_id,
884  string $action
885  ): void {
886  if ($action !== "new") {
887  return;
888  }
889  $note = $this->notes->domain()->getById($note_id);
890  $text = $note->getText();
891 
892  if ($note->getAuthor() === $giver_id) {
893  $this->notification->sendMessageFromPeerfeedbackGiverNotification(
894  $this->ass->getId(),
895  $peer_id,
896  $text
897  );
898  } else {
899  $this->notification->sendMessageFromPeerfeedbackRecipientNotification(
900  $this->ass->getId(),
901  $peer_id,
902  $giver_id,
903  $text
904  );
905  }
906  }
907 
908 
909  protected function isValidPeer(int $a_peer_id): bool
910  {
911  $peer_items = $this->submission->getPeerReview()->getPeerReviewsByGiver($this->submission->getUserId());
912  foreach ($peer_items as $item) {
913  if ($item["peer_id"] == $a_peer_id) {
914  return true;
915  }
916  }
917  return false;
918  }
919 
920  protected function getSubmissionContent(
921  ilExSubmission $a_submission
922  ): string {
923  if ($this->ass->getType() != ilExAssignment::TYPE_TEXT) {
924  return "";
925  }
926 
927  $sub = $this->subm->getSubmissionsOfUser($a_submission->getUserId())->current();
928  if ($sub) {
929  if (trim($sub->getText()) !== '' && trim($sub->getText()) !== '0') {
930  // mob id to mob src
931  return nl2br(ilRTE::_replaceMediaObjectImageSrc($sub->getText(), 1));
932  }
933  }
934  return "";
935  }
936 
940  protected function initPeerReviewItemForm(
941  int $a_peer_id
942  ): ilPropertyFormGUI {
943  $ilCtrl = $this->ctrl;
944  $lng = $this->lng;
945 
946  // get peer data
947  $peer_items = $this->submission->getPeerReview()->getPeerReviewsByGiver($this->submission->getUserId());
948  $peer = [];
949  foreach ($peer_items as $item) {
950  if ($item["peer_id"] == $a_peer_id) {
951  $peer = $item;
952  break;
953  }
954  }
955 
956  $ilCtrl->saveParameter($this, "peer_id");
957 
958  $form = new ilPropertyFormGUI();
959  $form->setFormAction($ilCtrl->getFormAction($this, "updatePeerReview"));
960 
961  $form->setTitle($this->ass->getTitle() . ": " . $lng->txt("exc_peer_review_give"));
962 
963  // peer info
964  if (!$this->ass->hasPeerReviewPersonalized()) {
965  $id_title = $lng->txt("id");
966  $id_value = $peer["seq"];
967  } else {
968  $id_title = $lng->txt("exc_peer_review_recipient");
969  $id_value = ilUserUtil::getNamePresentation($peer["peer_id"]);
970  }
971  $id = new ilNonEditableValueGUI($id_title);
972  $id->setValue($id_value);
973  $form->addItem($id);
974 
975  // submission info
976 
977  $submission = new ilExSubmission($this->ass, $peer["peer_id"]);
978  $file_info = $submission->getDownloadedFilesInfoForTableGUIS();
979 
980  $last_sub = new ilNonEditableValueGUI($file_info["last_submission"]["txt"], "", true);
981  $last_sub->setValue($file_info["last_submission"]["value"] .
982  $this->getLateSubmissionInfo($submission));
983  $form->addItem($last_sub);
984 
985  $sub_data = $this->getSubmissionContent($submission);
986  if (($sub_data === '' || $sub_data === '0') && isset($file_info["files"]["download_url"])) {
987  $sub_data = '<a href="' . $file_info["files"]["download_url"] . '">' . $lng->txt("download") . '</a>';
988  }
989 
990  $sub = new ilNonEditableValueGUI($lng->txt("exc_submission"), "", true);
991  $sub->setValue($sub_data);
992  $form->addItem($sub);
993 
994  // peer review items
995 
996  $input = new ilFormSectionHeaderGUI();
997  $input->setTitle($lng->txt("exc_peer_review"));
998  $form->addItem($input);
999 
1000  $values = $this->submission->getPeerReview()->getPeerReviewValues($this->submission->getUserId(), $a_peer_id);
1001  // the values only contain text/selection values not files
1002 
1003  foreach ($this->ass->getPeerReviewCriteriaCatalogueItems() as $item) {
1004  $crit_id = $item->getId()
1005  ? $item->getId()
1006  : $item->getType();
1007 
1008  $item->setPeerReviewContext(
1009  $this->ass,
1010  $this->submission->getUserId(),
1011  $peer["peer_id"],
1012  $form
1013  );
1014  $item->addToPeerReviewForm($values[$crit_id] ?? null);
1015  }
1016 
1017  $form->addCommandButton("updatePeerReview", $lng->txt("save"));
1018  $form->addCommandButton("editPeerReview", $lng->txt("cancel"));
1019 
1020  return $form;
1021  }
1022 
1023  public function updateCritAjaxObject(): void
1024  {
1025  $ilCtrl = $this->ctrl;
1026  $ilUser = $this->user;
1027  $tpl = $this->tpl;
1028 
1029  if (!$this->canGive() ||
1030  !$this->requested_peer_id ||
1031  !$this->requested_crit_id ||
1032  !$ilCtrl->isAsynch()) {
1033  exit();
1034  }
1035 
1036  $peer_id = $this->requested_peer_id;
1037  $crit_id = $this->requested_crit_id;
1038  $giver_id = $ilUser->getId();
1039 
1040  if (!is_numeric($crit_id)) {
1041  $crit = ilExcCriteria::getInstanceByType($crit_id);
1042  } else {
1043  $crit = ilExcCriteria::getInstanceById($crit_id);
1044  }
1045  $crit->setPeerReviewContext($this->ass, $giver_id, $peer_id);
1046  $html = $crit->updateFromAjax();
1047 
1048  $this->handlePeerReviewChange();
1049 
1050  echo $html;
1051  echo $tpl->getOnLoadCodeForAsynch();
1052  exit();
1053  }
1054 
1055  public function updatePeerReviewObject(): void
1056  {
1057  $lng = $this->lng;
1058  $ilCtrl = $this->ctrl;
1059 
1060  if (!$this->canGive() ||
1061  !$this->isValidPeer($this->requested_peer_id)) {
1062  $this->returnToParentObject();
1063  }
1064 
1065  $peer_id = $this->requested_peer_id;
1066 
1067  $form = $this->initPeerReviewItemForm($peer_id);
1068  if ($form->checkInput()) {
1069  $valid = true;
1070 
1071  $values = array();
1072  foreach ($this->ass->getPeerReviewCriteriaCatalogueItems() as $item) {
1073  $item->setPeerReviewContext(
1074  $this->ass,
1075  $this->submission->getUserId(),
1076  $peer_id,
1077  $form
1078  );
1079  $value = $item->importFromPeerReviewForm();
1080  if ($value !== null) {
1081  $crit_id = $item->getId()
1082  ? $item->getId()
1083  : $item->getType();
1084  $values[$crit_id] = $value;
1085  }
1086  if (!$item->validate($value)) {
1087  $valid = false;
1088  }
1089  }
1090 
1091  if ($valid) {
1092  $this->submission->getPeerReview()->updatePeerReview($peer_id, $values);
1093 
1094  $this->handlePeerReviewChange();
1095 
1096  $this->tpl->setOnScreenMessage('success', $this->lng->txt("exc_peer_review_updated"), true);
1097  $ilCtrl->redirect($this, "editPeerReview");
1098  } else {
1099  $this->tpl->setOnScreenMessage('failure', $lng->txt("form_input_not_valid"));
1100  }
1101  }
1102 
1103  $form->setValuesByPost();
1104  $this->editPeerReviewItemObject($form);
1105  }
1106 
1107  protected function handlePeerReviewChange(): void
1108  {
1109  // (in)valid peer reviews could change assignment status
1110  $exercise = new ilObjExercise($this->ass->getExerciseId(), false);
1111  $exercise->processExerciseStatus(
1112  $this->ass,
1113  $this->submission->getUserIds(),
1114  $this->submission->hasSubmitted(),
1115  $this->submission->validatePeerReviews()
1116  );
1117  }
1118 
1119  public function downloadPeerReviewObject(): void
1120  {
1121  $ilCtrl = $this->ctrl;
1122 
1123  if (!$this->canView() &&
1124  !$this->canGive()) {
1125  $this->returnToParentObject();
1126  }
1127 
1131 
1132  if (!is_numeric($crit_id)) {
1133  $crit = ilExcCriteria::getInstanceByType($crit_id);
1134  } else {
1135  $crit = ilExcCriteria::getInstanceById($crit_id);
1136  }
1137 
1138  $crit->setPeerReviewContext($this->ass, $giver_id, $peer_id);
1139  $file = $crit->getFileByHash();
1140  if ($file) {
1141  ilFileDelivery::deliverFileLegacy($file, basename($file));
1142  }
1143 
1144  $ilCtrl->redirect($this, "returnToParent");
1145  }
1146 
1147 
1148 
1149  //
1150  // ADMIN
1151  //
1152 
1153  public function showPeerReviewOverviewObject(): void
1154  {
1155  $tpl = $this->tpl;
1156 
1157  if (!$this->ass ||
1158  !$this->ass->getPeerReview()) {
1159  $this->returnToParentObject();
1160  }
1161 
1163  $this,
1164  "showPeerReviewOverview",
1165  $this->ass
1166  );
1167 
1168  $panel = "";
1169  $panel_data = $tbl->getPanelInfo();
1170  if (is_array($panel_data) && count($panel_data) > 0) {
1171  $ptpl = new ilTemplate("tpl.exc_peer_review_overview_panel.html", true, true, "components/ILIAS/Exercise");
1172  foreach ($panel_data as $item) {
1173  $ptpl->setCurrentBlock("user_bl");
1174  foreach ($item["value"] as $user) {
1175  $ptpl->setVariable("USER", $user);
1176  $ptpl->parseCurrentBlock();
1177  }
1178 
1179  $ptpl->setCurrentBlock("item_bl");
1180  $ptpl->setVariable("TITLE", $item["title"]);
1181  $ptpl->parseCurrentBlock();
1182  }
1183 
1184  $f = $this->gui->ui()->factory();
1185  $r = $this->gui->ui()->renderer();
1186  $p = $f->panel()->standard(
1187  $this->lng->txt("exc_peer_review_overview_invalid_users"),
1188  $f->legacy()->content($ptpl->get())
1189  );
1190 
1191  $panel = $r->render($p);
1192  }
1193 
1194  $tpl->setContent($tbl->getHTML() . $panel);
1195  }
1196 
1197  public function confirmResetPeerReviewObject(): void
1198  {
1199  $ilCtrl = $this->ctrl;
1200  $tpl = $this->tpl;
1201  $ilTabs = $this->tabs_gui;
1202 
1203  if (!$this->ass ||
1204  !$this->ass->getPeerReview()) {
1205  $this->returnToParentObject();
1206  }
1207 
1208  $ilTabs->clearTargets();
1209 
1210  $cgui = new ilConfirmationGUI();
1211  $cgui->setFormAction($ilCtrl->getFormAction($this));
1212  $cgui->setHeaderText(sprintf($this->lng->txt("exc_peer_review_reset_sure"), $this->ass->getTitle()));
1213  $cgui->setCancel($this->lng->txt("cancel"), "showPeerReviewOverview");
1214  $cgui->setConfirm($this->lng->txt("delete"), "resetPeerReview");
1215 
1216  $tpl->setContent($cgui->getHTML());
1217  }
1218 
1219  public function resetPeerReviewObject(): void
1220  {
1221  $ilCtrl = $this->ctrl;
1222 
1223  if (!$this->ass ||
1224  !$this->ass->getPeerReview()) {
1225  $this->returnToParentObject();
1226  }
1227 
1228  $peer_review = new ilExPeerReview($this->ass);
1229  $all_giver_ids = $peer_review->resetPeerReviews();
1230 
1231  if (is_array($all_giver_ids)) {
1232  // if peer review is valid for completion, we have to re-calculate all assignment members
1233  $exercise = new ilObjExercise($this->ass->getExerciseId(), false);
1234  if ($exercise->isCompletionBySubmissionEnabled() &&
1235  $this->ass->getPeerReviewValid() != ilExAssignment::PEER_REVIEW_VALID_NONE) {
1236  foreach ($all_giver_ids as $user_id) {
1237  $submission = new ilExSubmission($this->ass, $user_id);
1238  $pgui = new self($this->ass, $submission);
1239  $pgui->handlePeerReviewChange();
1240  }
1241  }
1242  }
1243 
1244  $this->tpl->setOnScreenMessage('success', $this->lng->txt("exc_peer_review_reset_done"), true);
1245  $ilCtrl->redirect($this, "showPeerReviewOverview");
1246  }
1247 }
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
ILIAS Exercise InternalGUIService $gui
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
Exercise assignment.
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
const IL_CAL_DATETIME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getReceivedFeedbackPanel(array $a_peer_items, bool $a_by_peer=false)
ILIAS Exercise InternalDomainService $domain
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
Interface Observer Contains several chained tasks and infos about them.
__construct(ilExAssignment $a_ass, ?ilExSubmission $a_submission=null)
$valid
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
ILIAS Notes Service $notes
$url
Definition: shib_logout.php:66
static getInstanceByType(string $a_type)
const IL_CAL_UNIX
editPeerReviewItemObject(?ilPropertyFormGUI $a_form=null)
notification()
description: > Example for rendring a notification glyph.
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMessagesGUI(int $giver_id, int $peer_id)
Exercise peer review.
getSubPanel(string $title, array $props, ?ilMessageGUI $mess_gui=null)
Class ilObjExercise.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
getLateSubmissionInfo(ilExSubmission $a_submission)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
static getInstanceByIds(int $a_ass_id, int $a_user_id=0)
getSubmissionContent(ilExSubmission $a_submission)
getOnLoadCodeForAsynch()
Get js onload code for ajax calls.
buildSubmissionPropertiesAndActions(\ILIAS\Exercise\Assignment\PropertyAndActionBuilderUI $builder)
getPeerReviewReceiverPanel(ilExAssignment $ass, int $user_id, array $peer_data)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
observeMessageAction(int $giver_id, int $peer_id, int $note_id, string $action)
ILIAS Exercise Submission SubmissionManager $subm
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
Exercise submission //TODO: This class has many static methods related to delivered "files"...
Message GUI.
static _lookupType(int $id, bool $reference=false)
ILIAS Exercise Notification NotificationManager $notification
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$service
Definition: ltiservices.php:40
setVariable(string $variable, $value='')
Sets the given variable to the given value.
ilGlobalPageTemplate $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContent(string $a_html)
Sets content for standard template.
initPeerReviewItemForm(int $a_peer_id)
$r
static getInstanceById(int $a_id)